/* CSS Document */
.popup-overlay{
	display:none;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 21000;
	width: 100%;
	height: 100%;
	background-color: rgba(100,100,100,0.7);	
}
#popup-content-box{
	position:fixed;
	top:0px;
	width:94%;
	margin:5vh 3%;
	max-height:90vh;
	overflow-y:scroll;
	background-color:#FFF;
	border:1px solid #CCC;
	border-radius:8px;
	box-shadow:2px 2px 14px rgba(0,0,0,0.4);
}
#popup-result_message-box{
	z-index:1000;
	position:fixed;
	top:0px;
	width:92%;
	margin:10vh 4%;
	max-height:70vh;
	overflow-y:scroll;
	/*background-color:#FFF;*/
	box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}	
#popup-result_message-content .popup-result_message-content-item{
	overflow-y:scroll;
	max-height:60vh;
}
#popup-result_message-close{
	cursor:pointer;
	position: absolute;
	top: 16px;
	right: 12px;
	color: #666;
	border: 1px solid #666;
	border-radius: 100%;
	padding: 0px 6px 2px 6px;
}
.popup-close-btn{
	z-index: 20000;
  	position: sticky;
  	top: 0px;
	float: right;
	padding: 6px 10px;
	border: 1px solid #CCC;
	border-right: none;
	border-top: none;
	font-size: 120%;
}
.popup-content-switch-corner{
	position:absolute;
	top:0px;
	right:0px;
	padding:8px;
	border:1px solid #1378F4;
	border-radius:0px 0px 0px 8px;
}
#popup-result-box .result-success,
#popup-result-box .result-nextsteps,
#popup-result-box .result-warning,
#popup-result-box .result-error{
	margin:0px;
	text-align:center;
}
.popup-loading{
	font-size:140%;
	text-align:center;
	background-color:#FFF;
	border:1px solid #CCC;
	padding:30px 0px;
}



