@CHARSET "UTF-8";

.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 10; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 10% auto; /* 15% from the top and centered */
	padding: 10px;
	border: 1px solid #888;
	width: 35%; /* Could be more or less, depending on screen size */
}

.modal-content label{
	font-size: 16px;
}

.modal-footer {
	display: inline-block;
	width: 100%;
	margin-top: 8px;
}

.close {
	width: 100%;
	display: inline-block;
	padding: 8px 0;
	box-sizing: border-box;
	font-size: 18px;
	color: white;
	text-align: center;
	background: #166ac3;
}

.close:hover, .close:focus {
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

@media screen and (max-width:768px) { /* 아이패드 */
	.modal-content {
		width: 90%;
	}
}

@media screen and (min-width: 769px) {
	.modal-content{
		max-width: 500px; 
	}
}


/* bootstrap style css 없어서 임시적용*/

.modal-content > form > div{
 	margin-bottom: 12px;
}

.modal-content > form > div:last-of-type{
	margin-bottom: 0;
}

.form-control {
    /* display: block; */
/*     width: 100%; */
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    /*margin-left: 10px;*/
}

.panel {
       border: 1px solid transparent;
}
.panel-default {
    border-color: #ddd;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
} 

.panel-heading {
    padding: 8px 10px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-align: center;
    background-color: #f5f5f5;
} 

.panel-heading span{
	float: right;
	margin-top: 4px;
}

.panel-body {
    padding: 15px;
}

.panel-body table{
	width: 100%;
}

.panel-body th, .panel-body td{
	font-size: 14px;
	color: #444;
}

.panel-body th{
	vertical-align:top;
	padding: 4px 0;
}

.panel-body td{
	padding: 4px 12px;
}

.panel-body td input[type=text], .panel-body td textarea {
	width: 100%;
}

.label-input > *{
	display: inline-block;
}

.label-input label{
	width: 60px;
}

.label-input input{
	width: calc(100% - 84px);
}

.fr{
	font-size: 16px;
	font-weight: bold;
	color: #444;
}