/* =========================================================
   Pop-up Promotional Rotativ - EVASTAFF
   ========================================================= */

.e-promo-popup{
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}
.e-promo-popup[hidden]{ display: none; }

.e-promo-popup-backdrop{
	position: absolute;
	inset: 0;
	background: rgba(8, 10, 14, 0.7);
	backdrop-filter: blur(3px);
}

.e-promo-popup-panel{
	position: relative;
	width: 100%;
	max-width: 640px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 70px rgba(0,0,0,.45);
	background: #000;
}

.e-promo-popup-slide{ display:block; line-height:0; }
.e-promo-popup-slide[hidden]{ display:none; }
.e-promo-popup-slide img{ width: 100%; height: auto; display: block; }

.e-promo-popup-close{
	position: absolute;
	top: .75rem; right: .75rem;
	z-index: 3;
	width: 32px; height: 32px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.9);
	color: #0d0f12;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .15s ease;
}
.e-promo-popup-close:hover{ background: #fff; }

@media (max-width: 480px){
	.e-promo-popup-panel{ max-width: calc(100vw - 1.5rem); }
}
