@charset "utf-8";
    /*
        author : Jinwoo Park, Publisher

        info: 
        	.bl_modal : 대화상자 팝업창
        	.bl_popup : 레이어 팝업창
        	.bl_modal_title, .bl_popup_title : 대화상자/레이어 팝업 타이틀        	 
        	.bl_modal_message, .bl_popup_message: 대화상자/레이어 팝업 내용        	
        	.bl_modal_desc, .bl_popup_desc : 대화상자/레이어 부연 설명 
        	.el_handleArea : 버튼 container
        	.el_handleOk : 확인 버튼
        	.el_handleCancel : 취소 버튼
        	.el_close_popup : 팝업 닫는 'X' 아이콘
            
        
        ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ

        changes
        - 20210302 : initially created
    */



/* 사용자영상상세, 치과계 동정 팝업창 & 버튼 module */
.bl_modal, .bl_popup{
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 50%;	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0 26px 40px;
	border-radius: 3px;
	box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.6);
    border: solid 1px #9398a6;
    background-color: #f3f5f8;
    z-index: 9999;	
    letter-spacing: -0.071em;
}
.bl_modal_title, .bl_popup_title{
	width: 100%;
	padding: 11px 0;
	border-bottom: 1px solid #c4c4c4;
	font-size: 17px;    
    color: #333333;
}
.bl_modal_message, .bl_popup_message{
	line-height: 1.47;
	text-align: center;
	font-size: 15px;
	font-weight: bold;  
	color: #333;
}
.bl_modal > strong, .bl_popup > strong{
	margin-bottom: 10px;
	font-size: 23px;
	font-weight: bold;
	color: #3434b3;
}
.bl_modal_desc, .bl_popup_desc{
	padding-top: 6px;
	font-weight: normal;
}
.el_handleArea{
	display: flex;
	justify-content: center;
}
.el_handleOk, .el_handleCancel{	
	width: 152px;
	height: 42px;
	line-height: 42px;
	background-color: #5b5bee;	
	box-shadow: 0 4px 8px 0 rgba(12, 12, 94, 0.24);
	font-size: 16px;
	font-weight: bold;	
	color: #fff;
}
.el_handleCancel{
	background-color: #424242;
}
.el_handleArea button:nth-of-type(2){
	margin-left: 4px;
}

.el_handleSave {
    width: 152px;
    height: 42px;
    line-height: 42px;
    background-color: #5b5bee;
    box-shadow: 0 4px 8px 0 rgb(12 12 94 / 24%);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}


.el_handleOk:hover{	background-color: #7878fe; }
.el_handleOk:active{ background-color: #3f3fe6; }
.el_handleCancel:hover{	background-color: #5f5f5f; }
.el_handleCancel:active{ background-color: #333; }
.el_handleSave:hover{	background-color: #5f5f5f; }
.el_handleSave:active{ background-color: #333; }

.el_close_popup{
	position: absolute;
	top: 9px; right: 9px;
	width: 28px;
	height: 28px;
	background: url(/images/btn-close-b-n.svg) no-repeat center;	
}

.el_close_popup:hover{
	background: url(/images/btn-close-b-hs.svg) no-repeat center;	
}

.el_close_popup:active{
	background: url(/images/btn-close-b-hs.svg) no-repeat center;	
}












.completed_popup{
	width: 460px;
}
.completed_popup .bl_popup_message {
	margin-top: 36px;
}
.completed_contents{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.completed_contents .history_area{
	width: 100%;
	padding: 19px 0;
	margin-top: 18px;
	background-color: #fff;
}
.history_area > ul{	
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}
.history_area li{
	position: relative;
	width: 50%;
	padding-left: 8px;
}
.history_area li:after{
	content: '';
	position: absolute;
	top: 7px;	
	width: 4px;
	height: 4px;
	background-color: #333; 
}
.history_area li:nth-of-type(odd){ padding-left: 50px; }
.history_area li:nth-of-type(even){	padding-left: 25px; }
.history_area li:nth-of-type(odd):after{ left: 42px; }
.history_area li:nth-of-type(even):after{ left: 17px; }
.history_area li:nth-of-type(n+3){ margin-top: 6px; }
/* .dimmed_layer{
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: rgba(0,0,0,.3);	
	z-index: 9998;
	overflow: hidden;
} */

/* vod upload 팝업창 */
.vod_upload_popup{	
	width: 740px;	
}
.vod_upload_popup > strong{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 21px 0 20px;
	margin: 0;
	font-size: 17px;
    font-weight: bold;      
    color: #333;
}
.vod_upload_popup > strong > img{
	margin-right: 6px;
}

.caution_list{
	padding: 10px 16px 10px 12px;
	border-radius: 3px;
    background-color: #e4e6ea;
}
.caution_list > li{
	position: relative;
	padding-left: 6px;
	line-height: 1.57;
	font-size: 14px;
	color: #333;	
	letter-spacing: -0.0688em;
}
.caution_list > li:after{
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #333;
}

.dropzone .dz-message{
	margin: 0;
}
.upload_zone{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 0 26px;
	margin-top: 20px;
	border-radius: 3px;
  	border: dashed 2px #c2c7d0;
  	background-color: transparent;
  	cursor: pointer;
}
.upload_zone figure{
	text-align: center;
}
.upload_zone figcaption{
	margin-top: 14px;		
	font-weight: bold;
	color: #333;
	font-size: 15px;
}
.vod_upload{
	align-self: center;
	display: flex;
	justify-content: center;		
    margin-top: 30px;    
    appearance: none;
    cursor: pointer;
}
.vod_upload > button{
	width: 100%;
}
.btnCompledtedConfirm{
	margin-top: 30px;
}


/* progress */
.progress_popup, .get_message_popup{	
	align-items: center;
	width: 590px;	
	z-index: 99999;
}
.progress_popup{
	padding-bottom: 60px;
}


/* circle progress */
.spinner {
	margin: 58px 0;
  	animation: rotator 1.4s linear infinite;
}
@keyframes rotator {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(50deg); }
}
.path {
  stroke-dasharray: 188;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation:
    dash 1.4s ease-in-out infinite, 
    colors 2.8s ease-in-out infinite;
}
@keyframes colors {
  0% { stroke: #6a14d1; }
  50% { stroke: #c82090; }	
  100% { stroke: #6a14d1; }
}
@keyframes dash {
 0% { stroke-dashoffset: 188; }
 50% {
   stroke-dashoffset: 46.75;
   transform:rotate(135deg);
 } 
 100% {
   stroke-dashoffset: 188;
   transform:rotate(400deg);
 }
}


/* linear progress */
.progress { 
	width: 340px;
	height: 6px;
	margin: 120px 0 110px;
	border-radius: 3px;
	background-color: #e5e9eb;		 
}
.status {
	position: relative;
	width: 0%; 
	height: 100%;	  
	border-radius: 3px;
	background-image: linear-gradient(to right, #6a14d1, #c82090); 
}
.shadow{
	position: absolute;
	top: 100%;
	width: 100%;
	height: 4em;
	transform: skew(45deg);
	transform-origin: 0 0;
	background-image: linear-gradient(to bottom, #eaecee, transparent);
}





/* result 팝업창 */
.result_popup{ width: 420px; }
.upload_completed, .upload_fail{ text-align: center; }
.result_popup p { margin: 46px 0 28px; }
.upload_fail p { line-height: 1.47 }



/* 메시지 도착 알림 팝업창 */

.get_message_popup > p { margin-bottom: 30px; }
.wrap_message_icon{ margin: 40px 0; }


