
/* Promotion Topbar */
.promotion-topbar {
	border-radius: 0 0 12px 12px;
	background: #2e0940;
	padding: 10px;
	text-align: center;
	position: relative;
	z-index: 10001;
}
.promotion-topbar p, .promotion-topbar div, .promotion-topbar span, .promotion-topbar small {
    color: #fff;
}
.promotion-topbar .container {
	color: #fff;
}
.promotion-topbar .promotion-topbar-close {
	position: absolute;
	right: 10px;
	top: 8px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}
.promotion-topbar .promotion-cta {
    background: #fff;
    color: #000;
    border-radius: 6px;
}

/* Promotion Popup */
.promotion-popup {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.5);
	z-index: 10000;
}
.promotion-popup h3{
	margin-bottom: 0;
	background:#fdc300;
	padding-left: 8px;
	border-radius: 8px 8px 0 0;
    color: var(--color-secondary);
}
.promotion-popup-inner {
	background: transparent;
    max-width: 900px;
    width: 500px;
    padding: 0;
    position: relative;
    border-radius: 0;
    max-height: 70vh;
}
.promotion-popup-close {
	position: absolute;
	right: 12px;
	top: 12px;
	border: none;
	background: transparent;
	font-size: 22px;
	cursor: pointer;
	z-index: 10;
}
.promotion-popup-image {
	text-align: center;
	margin-bottom: 0;
}
.promotion-popup-image img {
	max-width: 100%;
    height: auto;
    border-radius: 0;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}
.promotion-popup-cta {
    margin-top: 0;
    text-align: right;
    background: var(--color-secondary);
	padding:5px;
	border-radius: 0 0 8px 8px;
}
.promotion-popup-cta a{
    margin-top: 0;
    text-align: right;
    color: #fff;
	border-radius: 0;
}
