﻿#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 150px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: transform 0.3s ease;
}

    #scrollToTopBtn:hover {
        transform: scale(1.1);
    }
@media (min-width: 1024px) and (max-width: 1440px) {
    #scrollToTopBtn {
        right: 100px !important;
    }
}

@media (max-width: 425px) and (max-height: 751px) {
    #scrollToTopBtn {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }
}



.kf-filter-scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    gap: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1 1 auto;
    min-width: 0;
    cursor: grab;
    user-select: none;
}

    .kf-filter-scroll::-webkit-scrollbar {
        display: none;
    }


@media (max-width: 768px) {
    .kf-filter-scroll {
        padding-left: 10px;
        padding-right: 60px;
    }

        .kf-filter-scroll a {
            min-width: 110px;
            text-align: center;
        }
}


@keyframes tabActiveAnim {
    0% {
        transform: scale(1);
        background: #C5973A;
    }

    50% {
        transform: scale(1.08);
        background: #e6b85a;
    }

    100% {
        transform: scale(1);
        background: #C5973A;
    }
}

.kf-filter-scroll a.active {
    color: #fff;
    background: #C5973A;
    animation: tabActiveAnim 0.4s;
    box-shadow: 0 2px 8px 0 rgba(198,151,58,0.15);
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.text-warning {
    color: #C5973A !important;
}