@charset "utf-8";

.full-screen {
	position: fixed;
	visibility: hidden;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: none;
	transition: background-color 0.3s linear;
}

.full-screen.show {
	visibility: visible;
	background-color: rgba( 0, 0, 0, 0.2 );
}

div#-popup {
	z-index: 10;
}

div#-popup iframe {
	position: fixed;
	left: calc((100% - 600px) / 2);
	top: 100%;
	width: 600px;
	height: 400px;
	background: #fff;
	border: none;
	box-shadow: 0 0 10px #000;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

div#-popup.show iframe {
	top: 20%;
}
/*
div#-zoom {
	top: 100%;
	background-image: url('img/loading.gif');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto;
	transition: top 0.2s ease-out;
	z-index: 10;
}

div#-zoom.show {
	visibility: visible;
	top: 0;
	background-color: rgba( 0, 0, 0, 0.9 );
}

div#-zoom div.close {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	color: #fff;
	font-size: 40px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background-color: #000;
	opacity: 0.5;
}
*/
div#-alert {
	z-index: 10;
}

div#-alert section {
	display: block;
	position: relative;
	top: 15%;
	width: 250px;
	height: 130px;
	margin: 100px auto;
	padding-top: 10px;
	text-align: center;
	border: solid 2px #ccc;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px #000;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

div#-alert.show section {
	opacity: 1;
}

div#-alert section p#-title,
div#-alert section p#-message {
	font-size: 120%;
	margin: 10px 0;
	white-space: pre-wrap;
}

div#-alert section p#-title {
	font-weight: bold;
}

div#-alert section div {
	position: absolute;
	bottom: 10px;
	width: 100%;
}

div#-alert section button {
	margin: 5px 10px;
}

div#-slidein {
	display: none;
	position: fixed;
	left: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	transition: left 0.2s ease-out;
	background-color: #fff;
}

div#-slidein.show {
	left: 0;
}

div#-slidein iframe {
	width: 100%;
	height: 100%;
	margin-top: -40px;
	padding-top: 40px;
	box-sizing: border-box;
	border: none;
	overflow-y: scroll;
}

div#-inner-pane {
	display: none;
	position: fixed;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	border-top: solid 1px #000;
	background-color: #fff;
	transition: all 0.3s ease-out;
}

div#-inner-pane.show {
	border-top: solid 1px #fff;
	top: 0;
}

div#-inner-pane iframe {
	width: 100%;
	height: 100%;
	border: none;
}

#toast {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 10px;
	color: #fff;
	opacity: 0;
	white-space: nowrap;
	border-radius: 10px;
	background-color: rgba( 0, 0, 0, 0.6 );
	filter: drop-shadow(0 0 10px #000);
	pointer-events: none;
	transition: opacity 0.3s;
}

#toast.show {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	div#-popup iframe {
		width: 90% !important;
		left: 5% !important;
	}
}
