/* Uiverse loader - dexter-st */
.loader-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    font-family: "Inter", sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    color: white;
    border-radius: 50%;
    background-color: transparent;
    user-select: none;
}

.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: transparent;
    animation: loader-rotate 2s linear infinite;
    z-index: 0;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(90deg);
        box-shadow: 0 10px 20px 0 #fff inset, 0 20px 30px 0 #ad5fff inset, 0 60px 60px 0 #471eec inset;
    }

    50% {
        transform: rotate(270deg);
        box-shadow: 0 10px 20px 0 #fff inset, 0 20px 10px 0 #d60a47 inset, 0 40px 60px 0 #311e80 inset;
    }

    100% {
        transform: rotate(450deg);
        box-shadow: 0 10px 20px 0 #fff inset, 0 20px 30px 0 #ad5fff inset, 0 60px 60px 0 #471eec inset;
    }
}

.loader-letter {
    display: inline-block;
    opacity: 0.4;
    transform: translateY(0);
    animation: loader-letter-anim 2s infinite;
    z-index: 1;
    border-radius: 50ch;
    border: none;
}

.loader-letter:nth-child(1) {
    animation-delay: 0s;
}

.loader-letter:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-letter:nth-child(3) {
    animation-delay: 0.2s;
}

.loader-letter:nth-child(4) {
    animation-delay: 0.3s;
}

.loader-letter:nth-child(5) {
    animation-delay: 0.4s;
}

.loader-letter:nth-child(6) {
    animation-delay: 0.5s;
}

.loader-letter:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes loader-letter-anim {
    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: scale(1.15);
    }

    40% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

.mobile-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 18px;
}

.mobile-quick-actions .mobile-search-btn {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.mobile-quick-actions .mobile-signin-btn {
    width: 100%;
    justify-content: center;
}

.tv-hero-section.style-8 .hero-content-left .title.sec-title {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.08;
    margin-bottom: 14px;
}

.tv-hero-section.style-8 .hero-content-left .text-icon .text {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    /* Eliminate excessive padding at top of main section on mobile, since navbar is position:relative here */
    [class*="-premium-section"],
    .model-catalog-hero,
    .tv-blog-detail-section,
    .tv-hero-section.style-8 .hero-content-left {
        padding-top: 40px !important;
    }

    .tv-hero-section.style-8 .hero-content-left .title.sec-title {
        font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    }
}

@media (max-width: 575.98px) {
    /* Further optimization for small mobile devices */
    [class*="-premium-section"],
    .model-catalog-hero,
    .tv-blog-detail-section,
    .tv-hero-section.style-8 .hero-content-left {
        padding-top: 30px !important;
    }

    .tv-hero-section.style-8 .hero-content-left .title.sec-title {
        font-size: 1.55rem;
        line-height: 1.12;
    }

    .tv-hero-section.style-8 .hero-content-left .text-icon .text {
        font-size: 0.86rem;
        line-height: 1.55;
    }
}

