/**
* This file is part of the jwcModal distribution.
*
* @version      1.0.45 2025-07-17
* @copyright    Copyright (C)2025 Stimulus Advertising. All rights reserved.
* @license      http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
* @link         https://www.stimulusadvertising
*/

.jwcModalIframe {
	display: block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
}

.jwcModalOverlay {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	z-index: 99999;
	background: #333;
	opacity: 0.8;
}

.jwcModalContent {
	display: block;
	position: fixed;
	top: 0px;
	margin: 10px;
	padding: 0px 5px 0px 5px;
	z-index: 100000;
	background: #FFF;
	opacity: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2) inset;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	overflow: visible;
}

.jwcModalClose {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	position: fixed;
	margin: -12px 0px 0px -18px;
	cursor: pointer;
	background-size: cover;
	z-index: 999999;
}

.jwcModalClose svg {
	fill: #999;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

.jwcHiddenHtmlModal {
	display: none !important;
}

.jwcModalAutoClose {
	display: block;
	height: 4px;
	line-height: 4px;
	background: #999;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

.jwc-stop-scrolling {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
}

.modalImageContainer {
	display: block;
	margin: 0px;
	padding: 0px;
	position: relative;
	width: 100%;
	height: 100%;
	line-height: 1px;
}

.modalImageContainer img.modalImage {
	display: block;
	display: block;
	margin: 10px 0px 0px 0px;
	padding: 0px;
	position: relative;
	width: 100%;
	height: auto;
	line-height: 1px;
}

@media (max-width: 600px) {
	.jwcModalClose {
		width: 50px;
		height: 50px;
		line-height: 50px;
		margin: -15px 0px 0px -10px;
	}
}
