.pop-up {
	position: fixed;
	justify-content: center;
	align-content: center;
	background-color: var(--primary-color-dark);
	width: 100%;
	height: 100%;
	z-index: 999;
	overflow-y: auto;
}
@media (max-width: 499px) {
	.pop-up p {
		font-size: .85em !important;
	}
	.pop-up h2, .pop-up h3 {
		font-size: 1em !important;
	}
	.fs-5 {
		font-size: 1em !important;
	}
}

.roulette-spinner {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}
.roulette-spinner .arrow {
	position: absolute;
	top: calc(50% - 20px);
	right: 0;
	max-width: 40px;
	z-index: 9;
}
.roulette-spinner .circle {
	max-width: 500px;
	width: 400px;
}
.fade-out {
	animation: fadeOut .4s forwards;
}
@keyframes fadeOut {
	0% { opacity: 1; }
	99% { opacity: 0; }
	100% { opacity: 0; display: none; }
}
@media (max-width: 899px) {
	.roulette-spinner .circle {
		width: 300px;
	}
}
@media (max-width: 767px) {
	.logo {
		max-width: 120px !important;
	}
	.roulette-content {
		padding-bottom: 220px;
	}
	.roulette-spinner {
		position: absolute;
		bottom: -250px;
		left: calc(50% - 250px);
	}
	.roulette-spinner .circle {
		max-width: 500px;
		width: 500px;
	}
	.roulette-spinner .arrow {
		position: absolute;
		top: 20px;
		right: calc(50% - 20px);
		rotate: -90deg;
	}
}

.spinning {
	animation: rotateroulette forwards 6s;
	transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
}
@media (max-width: 767px) {
	.spinning {
		animation: rotateroulette-mob forwards 6s;
		transition-timing-function: cubic-bezier(0, 0.55, 0.47, 0.99);
	}
}
@keyframes rotateroulette {
	0% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(7248deg);
	}
	90% {
		transform: rotate(7240deg);
	}
	100% {
		transform: rotate(7242deg);
	}
}
@keyframes rotateroulette-mob {
	0% {
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(6976deg);
	}
	90% {
		transform: rotate(6968deg);
	}
	100% {
		transform: rotate(6970deg);
	}
}

.offer-box {
	background-color: #f0f6f9;
	border-radius: 2em;
	border: 4px dashed var(--primary-color);
}
@media (max-width: 767px) {
	.offer-box h2, .offer-box h3, .offer-box .fs-5 {
		font-size: 1.2em !important;
	}
}