.brand-pop {
	position: fixed;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 98;

	width: 45rem;

	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 3rem;

	border-radius: 2rem;
	background-color: #fff;

	padding: 1rem;
}

.brand-pop.show {
	display: flex;
}

.brand-pop--yoga-day {
	height: 22.3rem;
}

.brand-pop--prevent-age {
	height: 27.3rem;
}

.brand-pop--veg-life {
	height: 27.7rem;
}

.brand-pop--bad-expo {
	height: 30.6rem;
}

.brand-pop__title {
	font-size: 2.4rem;
	font-weight: 500;
}

.brand-pop__text {
	max-width: 39rem;
	width: 100%;

	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.3;

	margin-bottom: 0;
}

.brand-pop.brand-pop--prevent-age .brand-pop__text {
	max-width: 36.2rem;
	width: 100%;
}

.yoga-day-pop__close {
	top: 1rem;
	right: 1rem;
}


/* Adaptiv */

@media (max-width: 460px) {
	.brand-pop {
		width: 100%;
	}

	.brand-pop__text,
	.brand-pop.brand-pop--prevent-age .brand-pop__text {
		max-width: 100%;

		text-align: center;
	}
}