@charset "UTF-8";

.modal {
    display: none;
}
.modal-background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1301;
}
.modal-container {
	position: absolute;
	width: 550px;/*defalut*/
	background-color: #fff;
	box-shadow: 2px 2px 5px #777;
}
.modal-container.detail {
	height:526px;	
}
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 35px;
	background-color: #585858;
	color: #fff;
	font-size: 0.8rem;
	padding: 0 7px 0 15px;
}
 .modal-header .modal-btn-close {
	padding: 8px;
}
.modal-header .modal-btn-close span {
	display: block;
	width: 14px;
	height: 14px;
	background: url('/image/icon/cross-free-icon-font.png') no-repeat;
	background-size: 14px;
}
.modal-div {
    width: 1800px;
    height: 645px;
    border-bottom: 1px solid #E3E3E3;		
}
.modal-content {
	padding: 10px 20px;
	height: calc(100% - 55px);
}
.modal-content.left-content {
	float:left;
	width: calc(100% - 672px);
    height: calc(100% - 16px);
    border-right: 1px solid #E3E3E3;	
}
.modal-content.right-content {
	float:right;
	width: calc(100% - 1210px);
	height: calc(100% - 16px);
}
.modal-content.bottom-content {
	width: calc(100% - 40px);
    height: calc(100% - 700px);
    display: flex;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}
.modal-content div.form {
	min-width: initial;
	padding:0; 
}
.modal-content div.form .form-content.no-header {
	border: none;
}
.modal-content div.form .form-content.yes-header {
    border: 1px solid #E3E3E3;
}
.modal-content div.form .form-group div.form-input {
	padding: 0;
}
.modal-content div.form .form-group div.form-input.modal {
	min-width: 591px;
}

.pwChgPopUp.show, .background-popup.show {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;	
	z-index: 3;
    display: block; 
    background:rgba(0,0,0,.5);   
}

.pwChgPopUp.show .main-contents.login {
	display:block;
}
@media ( max-width :765px) {
.modal-container {
	width: 100% !important;
	height: 100%;
	box-shadow: none;
}

.modal-header {
	position: fixed;
	width: 100%;
	height: 40px;
	background-color: #fff;
	color: #777;
	font-size: 0.9rem;
	font-weight: bold;
	border-bottom: 1px solid #e3e3e3;
	padding: 0;
	justify-content: center;
}
 .modal-header .modal-btn-close {
	position: absolute;
	right: 0;
	padding: 13px;
	background-color: #585858;
}

.modal-content {
	margin-top: 41px;
	padding: 0 20px;
	height: calc(100% - 41px);
	overflow-y: auto;
}

.leftPopUp.show {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;	
	z-index: 99;
    display: block; 
    background:rgba(0,0,0,.5);   
}
}