.banner-universal {
	top: 50%;
	transform: translateY(-50%);
	position: fixed;
	padding: 24px;
	color: #fff;
	text-align: center;
	hyphens: auto;
	z-index: -1;
	box-sizing: border-box;
	width: 426px;
	height: 426px;
	left: 17px;
	/* background-image: linear-gradient(201.67deg, #e8860f 9.48%, #fc1100 95.32%); */
	outline: 9px solid rgba(255, 255, 255, 0.22);
	border-radius: 33px;
	outline-offset: -9px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-50%) scale(1.1);
	transition: transform .4s, visibility .4s, opacity .4s;
}

.banner-universal_loaded {
	visibility: visible;
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.banner-universal__close {
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	outline: 4px solid rgba(255, 255, 255, .04);
	outline-offset: -4px;
	border-radius: 50%;
	position: absolute;
	top: 0px;
	right: -35px;
	z-index: 2;
	cursor: pointer;
	pointer-events: auto !important;
	/* background-image: linear-gradient(210.77deg, #e8860f 11.1%, #ea3124 111.55%); */
	padding: 7px;
}

.banner-universal__logo {
	width: 103px;
	height: auto;
	margin-bottom: 24px;
	display: inline-block;
}

.banner-universal__emo {
	position: absolute;
	top: -40px;
	width: 88px;
	height: 88px;
	margin-bottom: 24px;
	display: inline-block;
}

.banner-universal h3 {
	font: 400 32px / 1.1 Onest;
	margin-bottom: 18px;
}
.banner-universal p {
	font: 400 18px / 1.1 Onest;
}

.banner-universal__button {
	padding: 21px 29px;
	margin-top: 24px;
	display: inline-block;
	background: linear-gradient(95.05deg, #F6BE5D -11.23%, #E84E0F 133.48%);
	outline: 5px solid rgba(255, 255, 255, 0.09);
	border-radius: 333px;
	outline-offset: -5px;
	font: 500 18px / 1.1 Onest;
}

@media (max-width: 500px) {
	.banner-universal {
		width: calc(100% - 6px);
		aspect-ratio: 1 / 1;
		height: auto;
		left: 3px;
		min-height: 400px;
	}
	.banner-universal__close {
		top: 15px;
		right: 15px;
	}

}

@media (max-width: 400px) {
	.banner-universal h3 {
		font: 400 24px / 1.1 Onest;
		margin-bottom: 18px;
	}
	.banner-universal p {
		font: 400 16px / 1.1 Onest;
	}
	
}

