.iframe-lightbox,
.iframe-lightbox .backdrop {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.iframe-lightbox {
	margin-left: 10%;
	margin-top: 10%;
	width: 80%;
	height: 80%;
	display: none;
	position: fixed;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	z-index: 999999;
	max-height: 980px !important;
}

.iframe-lightbox .backdrop {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.92);
	cursor: default;
}

.iframe-lightbox .content-holder {
	width: 90%;
	height: 90%;
	position: relative;
	margin-top: 2%;
	margin-left: auto;
	margin-right: auto;
}

.iframe-lightbox .content {
	position: relative;
	height: 100%;
	width: 100%;
}

.iframe-lightbox .content > .body {
	position: relative;
	width: 100%;
	height: 100%;
}

/*!
 * another pure css spinner
 * @see {@link https://epic-spinners.epicmax.co/}
 */

.iframe-lightbox .content > .body .half-circle-spinner,
.iframe-lightbox .content > .body .half-circle-spinner * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.iframe-lightbox .content > .body .half-circle-spinner {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	position: fixed;
	top: 50%;
	left: 50%;
	margin: 0 -50% 0 0;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.iframe-lightbox .content > .body .half-circle-spinner .circle {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: calc(60px / 10) solid transparent;
}

.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-1 {
	border-top-color: #FFFFFF;
	-webkit-animation: half-circle-spinner-animation 1s infinite;
	animation: half-circle-spinner-animation 1s infinite;
}

.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-2 {
	border-bottom-color: #FFFFFF;
	-webkit-animation: half-circle-spinner-animation 1s infinite alternate;
	animation: half-circle-spinner-animation 1s infinite alternate;
}

@-webkit-keyframes half-circle-spinner-animation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes half-circle-spinner-animation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.iframe-lightbox .content > .body.is-loaded .half-circle-spinner {
	display: none;
}

.iframe-lightbox iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	-webkit-box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
	box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
	/*!
 * in js: iframe onload="this.style.opacity=1;" style="opacity:0;border:none;"
 */

	/* opacity: 0; */
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.iframe-lightbox.is-showing {
	display: block;
}

.iframe-lightbox.is-opened {
	opacity: 1;
}

.iframe-lightbox .btn-close {
	display: block;
	top: 1.000rem;
	right: 1.000rem;
	width: 1.500rem;
	height: 1.500rem;
	font-size: 1.000rem;
	outline: none;
	cursor: pointer;
	border: 0;
	background-color: transparent;
}


.iframe-lightbox .btn-close:before,
.iframe-lightbox .btn-close:after {
	content: " ";
	width: 0.125em;
	height: 1.500em;
	position: absolute;
	top: 1.0em;
	right: 1.500em;
	background-color: #FFFFFF;
}

.iframe-lightbox .btn-close:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.iframe-lightbox .btn-close:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.iframe-lightbox--open {
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-touch-action: auto;
	touch-action: auto;
	height: auto;
}

@media (max-width: 992px) {
	.iframe-lightbox,
	.iframe-lightbox .backdrop {
		width: 100%;
		height: 90%;
		top: 0;
		left: 0;
	}

	.iframe-lightbox {
		margin-left: 10%;
		margin-top: 10%;
		width: 80%;
		height: 80%;
		display: none;
		position: fixed;
		opacity: 0;
		-webkit-transition: opacity 0.2s ease;
		transition: opacity 0.2s ease;
		z-index: 999999;
		max-height: 980px !important;
	}

	.iframe-lightbox .backdrop {
		position: absolute;
		background-color: rgba(0, 0, 0, 0.92);
		cursor: default;
		top: 10%;
	}

	.iframe-lightbox .content-holder {
		width: 90%;
		height: 89%;
		position: relative;
		margin-top: 2%;
		margin-left: auto;
		margin-right: auto;
		top: 10%;
	}

	.iframe-lightbox .content {
		position: relative;
		height: 100%;
		width: 100%;
	}

	.iframe-lightbox .content > .body {
		position: relative;
		width: 100%;
		height: 100%;
	}

	/*!
     * another pure css spinner
     * @see {@link https://epic-spinners.epicmax.co/}
     */
	.iframe-lightbox .content > .body .half-circle-spinner,
	.iframe-lightbox .content > .body .half-circle-spinner * {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.iframe-lightbox .content > .body .half-circle-spinner {
		width: 60px;
		height: 60px;
		border-radius: 100%;
		position: fixed;
		top: 50%;
		left: 50%;
		margin: 0 -50% 0 0;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.iframe-lightbox .content > .body .half-circle-spinner .circle {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		border-radius: 100%;
		border: calc(60px / 10) solid transparent;
	}

	.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-1 {
		border-top-color: #FFFFFF;
		-webkit-animation: half-circle-spinner-animation 1s infinite;
		animation: half-circle-spinner-animation 1s infinite;
	}

	.iframe-lightbox .content > .body .half-circle-spinner .circle.circle-2 {
		border-bottom-color: #FFFFFF;
		-webkit-animation: half-circle-spinner-animation 1s infinite alternate;
		animation: half-circle-spinner-animation 1s infinite alternate;
	}

	@-webkit-keyframes half-circle-spinner-animation {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		100% {
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
		}
	}

	@keyframes half-circle-spinner-animation {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		100% {
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
		}
	}

	.iframe-lightbox .content > .body.is-loaded .half-circle-spinner {
		display: none;
	}

	.iframe-lightbox iframe {
		display: block;
		width: 100%;
		height: 100%;
		border: 0;
		-webkit-box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
		box-shadow: 0.267rem 0.267rem 0.267rem 0 rgba(3, 3, 3, 0.3);
		/*!
     * in js: iframe onload="this.style.opacity=1;" style="opacity:0;border:none;"
     */

		/* opacity: 0; */
		-webkit-transition: opacity 0.2s ease;
		transition: opacity 0.2s ease;
	}

	.iframe-lightbox.is-showing {
		display: block;
	}

	.iframe-lightbox.is-opened {
		opacity: 1;
	}

	.iframe-lightbox .btn-close {
		display: block;
		top: 1.000rem;
		right: 1.000rem;
		width: 1.500rem;
		height: 1.500rem;
		font-size: 1.000rem;
		outline: none;
		cursor: pointer;
		border: 0;
		background-color: transparent;
	}


	.iframe-lightbox .btn-close:before,
	.iframe-lightbox .btn-close:after {
		content: " ";
		width: 0.125em;
		height: 1.500em;
		position: absolute;
		top: 12%;
		right: 3em;
		background-color: #0E2231;
	}

	.iframe-lightbox .btn-close:before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.iframe-lightbox .btn-close:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.iframe-lightbox--open {
		overflow: hidden;
		-webkit-overflow-scrolling: touch;
		-ms-touch-action: auto;
		touch-action: auto;
		height: auto;
	}

	.iframe-lightbox .btn-close {
		display: block;
		top: 1.000rem;
		right: 1.000rem;
		width: 1.000rem;
		height: 1.000rem;
		font-size: 1.000rem;
		outline: none;
		cursor: pointer;
		border: 0;
		background-color: transparent;
	}


	.iframe-lightbox .btn-close:before,
	.iframe-lightbox .btn-close:after {
		content: " ";
		width: 0.125em;
		height: 1.500em;
		position: absolute;
		top: 60px;
		right: 0.900rem;
		background-color: #FFFFFF;
	}

	.iframe-lightbox .btn-close:before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.iframe-lightbox .btn-close:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

}