.mx-age-verification {
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
	transition: all 1.5s;
	z-index: 9999;
	background-color: var(--ageVerificationBackgroundColor);
}

.mx-age-verification.mx-position-lg-left {
	padding: 0 10% 0 0;
	justify-content: right;
}

.mx-age-verification.mx-position-lg-center {
	justify-content: center;
}

.mx-age-verification .mx-age-verification-image {
	display: none;
}

.mx-age-verification .mx-age-verification-wrapper {
	position: relative;
	max-width: 560px;
}

.mx-age-verification .mx-age-verification-description {
	font-size: var(--mainFontSizeSmall);
	line-height: var(--mainLineHeightSmall);
}

.mx-age-verification .mx-age-verification-buttons {
	margin: 30px 0 0 0;
	display: flex;
	align-items: center;
	gap: 50px;
}

.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-agree {
	flex: 0 0 50%;
}

.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-disagree .mx-button {
	padding: 0;
	height: auto;
	background: transparent;
	box-shadow: none;
	border: none;
}

@media (max-width: 992px) {
	.mx-age-verification {
		overflow: auto;
		flex-direction: column;
		background-image: none !important;
	}

	.mx-age-verification.mx-position-lg-left,
	.mx-age-verification.mx-position-lg-center {
		padding: 0;
		justify-content: inherit;
	}

	.mx-age-verification.mx-position-md-center {
		margin: 0;
		justify-content: center;
	}

	.mx-age-verification .mx-age-verification-image {
		display: block;
		width: 100%;
	}

	.mx-age-verification .mx-age-verification-wrapper {
		padding: 0 20px;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.mx-age-verification .mx-age-verification-description {
		font-size: calc(var(--mainFontSize) / 1.28);
	}

	.mx-age-verification .mx-age-verification-wrapper {
		margin: -100px;
	}

	.mx-age-verification.no-image .mx-age-verification-wrapper {
		margin: 0;
	}

	.mx-age-verification .mx-age-verification-buttons {
		margin: 20px 0 0 0;
		display: block;
	}

	.mx-age-verification .mx-age-verification-buttons .mx-button {
		margin: 0 auto;
	}

	.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-disagree {
		margin: 20px 0 0 0;
	}
}
