#loading-container {
    transition: opacity 0.5s ease-out;
}
#progress-bar {
    transition: width 0.2s linear;
}

/* 2xl adjust ads location */
@media (min-width: 1500px) {
    #left-ad {
        left: max(24px, calc((100vw - 70vw) / 2 - 180px)) !important;
    }
    #right-ad {
        right: max(24px, calc((100vw - 70vw) / 2 - 180px)) !important;
    }
}

/* ads not fixed style */
.ads-absolute {
    position: absolute !important;
    top: 100vh !important;
    transform: translateY(-50%) !important;
}

.sprunki-more-games-text::before {
    content: "More Sprunki Games";
    margin-right: 0.5rem;
}

.sprunki-more-text::before {
    content: "More Games";
    margin-right: 0.5rem;
}

.sprunki-more-games-text-2::before {
    content: "More";
    margin-right: 0.5rem;
}

.progress-animation {
	animation: progress 60s linear;
}
@keyframes progress {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}