/* === info ====================================================== */
#cdt-modal-inf-area {
	display: none;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, 0.2);
}
#cdt-modal-inf-content {
	max-width: 550px;
	margin: 25vh auto 0 auto;
	border: 1px solid #888888;
	box-shadow: 0 1px 3px #555555;
	background-color: #fefefe;
}
#cdt-modal-inf-w-message {
	padding: 40px 10px 10px 10px;
	text-align: center;
}
#cdt-modal-working {
	width: 40px;
	height: 40px;
	margin: 10px auto 20px auto;
	border-width: 14px;
	border-style: solid;
	border-color: #2266cc #bbbbbb #2266cc #bbbbbb;
	border-radius: 40px;
	animation: rotate-circle infinite 2s linear;
}
@keyframes rotate-circle {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
/* ------------------------------------------------------- */
@media screen and (max-width: 600px) {
	#cdt-modal-inf-content {
		margin-left: 10px;
		margin-right: 10px;
	}
}
/* === message =================================================== */
#cdt-modal-msg-area {
	display: none;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, 0.2);
}
#cdt-modal-msg-content {
	max-width: 550px;
	margin: 25vh auto 0 auto;
	border: 1px solid #888888;
	box-shadow: 0 1px 3px #555555;
	background-color: #fefefe;
}
#cdt-modal-msg-w-close {
	float:right;
	cursor: pointer;
	font-size: 28px;
	display: inline-block;
	padding: 3px 5px 2px 5px;
	color: #444444;
}
#cdt-modal-msg-w-close:hover {
	background-color: #e0e0e0;
}
#cdt-modal-w-close:active {
	color: #000000;
}
#cdt-modal-msg-w-header {
	height: 33px;
	line-height: 33px;
	border-bottom: 1px solid #e5e5e5;
	padding: 5px 0 0 8px;
	background-color: #eeeeee;
}
#cdt-modal-msg-w-message {
	padding: 40px 10px 50px 10px;
	text-align: center;
}
#cdt-modal-msg-w-footer {
	border-top:	1px solid #f5f5f5;
	padding: 5px;
	background-color: #eeeeee;
}
/* buttons */
#cdt-modal-msg-w-button {
	display: block;
	margin: 1px auto 1px auto;
}
#cdt-modal-msg-w-button:focus {
	margin: 0 auto;
}
/* following button properties are to be set by parent page
#cdt-modal-msg-w-button {
	width: 90px;
	padding: 5px;
	color: #444444;
	text-align: center;
	cursor: pointer;
	border: 1px solid #bbbbbb;
	border-left-color: #e7e7e7;
	border-top-color: #e7e7e7;
	background-color: #dddddd;
}
#cdt-modal-msg-w-button:hover {
	background-color: #d0d0d0;
}
#cdt-modal-msg-w-button:active {
	color: #000000;
}*/
/* ------------------------------------------------------- */
@media screen and (max-width: 600px) {
	#cdt-modal-msg-content {
		margin-left: 10px;
		margin-right: 10px;
	}
}
/* === dialog ==================================================== */
#cdt-modal-dlg-area {
	display: none;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, 0.2);
}
#cdt-modal-dlg-content {
	max-width: 550px;
	margin: 25vh auto 0 auto;
	border: 1px solid #888888;
	box-shadow: 0 1px 3px #555555;
	background-color: #fefefe;
}
#cdt-modal-dlg-w-close {
	float:right;
	cursor: pointer;
	font-size: 28px;
	display: inline-block;
	padding: 3px 5px 2px 5px;
	color: #444444;
}
#cdt-modal-dlg-w-close:hover {
	background-color: #e0e0e0;
}
#cdt-modal-dlg-w-close:active {
	color: #000000;
}
#cdt-modal-dlg-w-header {
	height: 33px;
	line-height: 33px;
	border-bottom: 1px solid #e5e5e5;
	padding: 5px 0 0 8px;
	background-color: #eeeeee;
}
#cdt-modal-dlg-w-message {
	padding: 40px 10px 50px 10px;
	text-align: center;
}
#cdt-modal-dlg-w-footer {
	text-align: center;
	height: 40px;
	border-top:	1px solid #f5f5f5;
	padding: 5px;
	background-color: #eeeeee;
}
/* buttons */
#cdt-modal-dlg-yes-button {
	display: inline-block;
	margin: 5px 0 0 0;
}
#cdt-modal-dlg-no-button {
	display: inline-block;
	margin: 5px 0 0 0;
}
/* ------------------------------------------------------- */
@media screen and (max-width: 600px) {
	#cdt-modal-dlg-content {
		margin-left: 10px;
		margin-right: 10px;
	}
}