.mx-age-verification {
	padding: 40px 0 0 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	gap: 40px;
	display: flex;
	align-items: center;
	justify-content: 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-age-verification-image {
	position: relative;
}

.mx-age-verification .mx-age-verification-image .mx-corner {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 100%;
	background-color: var(--bodyBackgroundColor);
}

.mx-age-verification .mx-age-verification-image .mx-corner.top {
	top: -35px;
}

.mx-age-verification .mx-age-verification-image .mx-corner.left {
	left: -35px;
}

.mx-age-verification .mx-age-verification-image .mx-corner.right {
	right: -35px;
}

.mx-age-verification .mx-age-verification-image .mx-corner.bottom {
	bottom: -35px;
}

.mx-age-verification .mx-age-verification-wrapper {
	position: relative;
	max-width: 440px;
}

.mx-age-verification .mx-age-verification-description {
	line-height: var(--mainLineHeight);
	color: var(--mainPrimaryColorOpacity1);
}


.mx-age-verification .mx-age-verification-buttons {
	margin: 30px 25px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-agree {
	flex: 0 0 70%;
}

.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-disagree .mx-button {
	background: transparent;
	height: auto;
	line-height: 100%;
	border: none;
	outline: none;
	box-shadow: none;
}

.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-disagree .mx-button::after,
.mx-age-verification .mx-age-verification-buttons .mx-age-verification-button-disagree .mx-button::before {
	content: unset;
}

@media (max-width: 992px) {
	.mx-age-verification {
		padding: 20px;
		overflow: auto;
		flex-direction: column;
		background-image: none !important;
	}

	.mx-age-verification .mx-age-verification-image {
		position: relative;
		height: 40%;
		overflow: hidden;
	}

	.mx-age-verification .mx-age-verification-image::after {
		content: '';
		background: linear-gradient(0deg, var(--ageVerificationBackgroundColor) 5%, rgba(0, 0, 0, 0) 50%);
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	}

	.mx-age-verification .mx-age-verification-image img {
		display: block;
		width: 100%;
	}

	.mx-age-verification .mx-age-verification-wrapper {
		max-width: 100%;
		margin: -100px 0 0 0;
	}

	.mx-age-verification.no-image .mx-age-verification-wrapper {
		margin: 0;
	}
}

@media (max-width: 768px) {
	.mx-age-verification .mx-age-verification-description {
		font-size: calc(var(--mainFontSize) / 1.2);
		line-height: 140%;
	}

	.mx-age-verification .mx-age-verification-buttons {
		margin: 15px 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 .mx-button {
		margin: 30px auto 0 auto;
	}
}
