@charset "UTF-8";

#urgent-modal_bg {
	width: 100%;
	height: 100%;
	cursor: pointer;
	background: rgba(0, 0, 0, .95);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
}

#urgent-modal {
	//width: auto;
	//min-width: 822px;
	width: 822px;
	height: auto;
	//max-height: 96vh;
	background: rgba(255, 255, 255, 0);
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	transform: translate(-50%, -50%);
	overflow: auto;
}

#urgent-modal .sheet img {
	width: 100%;
	//min-width: 822px;
	height: 100%;
	//min-height: 580px;
}

/*Checkbox styles*/
#urgent-modal .choice {
	font-size: 15px;
	width: 12em;
	min-width: 12em;
	max-width: 15em;
	margin: 30px auto 20px;
	display: block;
}

#urgent-modal .choice input[type="checkbox"] {
	display: none;
}

#urgent-modal .choice input[type="checkbox"] + label {
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	cursor: pointer;
	padding-left: 30px;
	margin-bottom: 20px;
	display: block;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

#urgent-modal .choice input[type="checkbox"] + label:last-child {
	margin-bottom: 0;
}

#urgent-modal .choice input[type="checkbox"] + label:before {
	content: '';
	width: 18px;
	height: 18px;
	display: block;
	border: 1px solid rgba(206, 204, 174, 1);
	position: absolute;
	left: 0;
	top: 0;
	opacity: .6;
	-webkit-transition: all .12s, border-color .08s;
	transition: all .12s, border-color .08s;
}

#urgent-modal .choice input[type="checkbox"]:checked + label:before {
	width: 10px;
	top: -5px;
	left: 5px;
	border-radius: 0;
	opacity: 1;
	border-color: #ca4877;
	border-top-color: transparent;
	border-left-color: transparent;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#urgent-modal_close {
	font-size: 16px;
	line-height: 1;
	text-align: center;
	width: 3em;
	min-width: 3em;
	max-width: 5em;
	margin-right: auto;
	margin-left: auto;
	padding: .6em 1em .5em;
	display: block;
	cursor: pointer;
	background-color: rgba(206, 204, 174, .8);
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

#urgent-modal_close:hover {
	background-color: rgba(206, 204, 174, 1);
}

/* Phone */
/* Portrait mode */
@media only screen and (max-width: 599px) {
#urgent-modal {
	//width: auto;
	//min-width: 275px; /* 206px */
	width: 275px; /* 206px */
	height: auto;
	//max-height: 96vh;
	background: rgba(255, 255, 255, 0);
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	transform: translate(-50%, -50%);
	overflow: auto;
}

#urgent-modal .sheet img {
	width: 100%;
	//min-width: 275px; /* 206px */
	height: 100%;
	//min-height: 412px;
}

/*Checkbox styles*/
#urgent-modal .choice {
	font-size: 15px;
	width: 12em;
	min-width: 12em;
	max-width: 15em;
	margin: 20px auto 20px;
	display: block;
}




}