/* VeroWellness Gate - base styles */

.vw-get-started-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.vw-get-started-btn[hidden] {
	display: none !important;
}

.vw-gate-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, 0.6 );
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
	z-index: 100000;
}

.vw-gate-popup-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.vw-gate-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% ) scale( 0.96 );
	width: 90%;
	max-width: 520px;
	max-height: 88vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.25 );
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 100001;
}

.vw-gate-popup[hidden] {
	display: none;
}

.vw-gate-popup.is-open {
	opacity: 1;
	visibility: visible;
	transform: translate( -50%, -50% ) scale( 1 );
}

.vw-gate-popup-inner {
	position: relative;
	padding: 40px 30px 30px;
}

.vw-gate-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	padding: 4px 8px;
}

.vw-gate-popup-close:hover {
	color: #000;
}

.vw-gate-popup-title {
	margin: 0 0 20px;
	font-size: 20px;
	text-align: center;
}

body.vw-gate-popup-open {
	overflow: hidden;
}

@media ( max-width: 480px ) {
	.vw-gate-popup-inner {
		padding: 34px 18px 22px;
	}
}
