/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
.buy-animate-btn {
    box-shadow: 0 4px 24px 0 rgba(80, 80, 255, 0.10), 0 1.5px 8px 0 rgba(80, 80, 255, 0.10);
    transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.2s cubic-bezier(.4, 0, .2, 1);
}

.buy-animate-btn .buy-animate-glow {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #6366f1 0%, #818cf8 50%, #6366f1 100%);
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.3s cubic-bezier(.4, 0, .2, 1);
}

.buy-animate-btn:hover {
    box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.25), 0 3px 16px 0 rgba(129, 140, 248, 0.18);
    transform: scale(1.07) translateY(-2px) rotate(-1deg);
}

.buy-animate-btn:hover .buy-animate-glow {
    opacity: 0.7;
    animation: buy-glow-move 1.2s linear infinite;
}

@keyframes buy-glow-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}
/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes title-pop {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-pop-in {
    animation: pop-in 0.7s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-title-pop {
    animation: title-pop 1s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-slide-in-left {
    animation: slide-in-left 1s cubic-bezier(.4, 0, .2, 1) both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}