.slick-next::before,
.slick-prev::before {
    content: none;
}

.slick-dots li button:before {
    font-size: 40px;
}

.slick-dots li.slick-active button:before {
    color: #4DCBA3
}

.brand-slide-wrapper .slick-slide {
    margin: 0 10px;
}

.category-slide-wrapper .slick-slide {
    margin: 0 15px;
}

#category,
#product {
    background-color: rgb(242, 242, 242);
}

#brand {
    position: relative;
    background-color: rgba(0, 0, 0, .7);
}

.filter-description .filter-remove {
    font-size: .7rem;
    cursor: pointer;
}

#brand .background {
    content: '';
    position: absolute;
    background-image: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    inset: 0;
    opacity: 0.065;
    transition: all .15s ease-out;
}

#brand .image-wrapper {
    cursor: pointer;
}

.category-slide-wrapper .card,
.relate-products-slide-wrapper .card {
    background-color: white;
    color: black;
    font-weight: 0;
    cursor: pointer;
    height: 130px;
    border: 12px !important;
    border: none;
}

.category-slide-wrapper .card:has(.active),
.relate-products-slide-wrapper .card:has(.active) {
    background-color: #4DCBA3;
    transition: background-color 0.15s, color 0.15s;
}

.category-slide-wrapper .card:has(.active) i,
.category-slide-wrapper .card:has(.active) img {
    filter: brightness(0) invert(1);
}

.category-slide-wrapper .card i {
    font-size: 50px;
}

.category-slide-wrapper .card:has(.active) p {
    color: white;
}

.category-slide-wrapper .slick-arrow,
.brand-slide-wrapper .slick-arrow {
    z-index: 1;
    width: 35px;
    height: 40px;
    color: darkgray;
    font-size: 30px;
    border: none;
    cursor: pointer;
}

.brand-slide-wrapper .slick-prev {
    padding-right: 2.5px;
}

.brand-slide-wrapper .slick-next {
    padding-left: 2.5px;
}

.category-slide-wrapper .slick-arrow:hover,
.relate-products-slide-wrapper .slick-arrow:hover,
.brand-slide-wrapper .slick-arrow:hover {
    color: black;
}

.category-slide-wrapper .slick-arrow:active,
.relate-products-slide-wrapper .slick-arrow:active {
    color: #4DCBA3;
}

#product .add-to-cart,
#product .add-to-like {
    cursor: pointer;
}

#category .tabs .detail {
    /* min-height: 45px; */
    font-size: 18px;

    @supports (-webkit-line-clamp: 1) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
}

#category .tabs{
    margin-bottom: 15px;
}

#brand .category-name,
#brand .brand-name {
    isolation: isolate;
    font-size: 1.5rem;
    color: #f5f5f5;
}

#brand .category-description,
#brand .brand-description {
    isolation: isolate;
    font-size: 1rem;
    color: #f5f5f5;
}


#brand .image-wrapper {
    height: 130px;
    border: none;
    border-radius: 12px;
    background-color: white;
}

#brand .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#product .filter button {
    font-size: .45rem;
    width: 65px;
    height: 20px;
    border: 1px solid #707070;
    color: #707070;
}

#product .filter button.active {
    background-color: #4DCBA3 !important;
    color: white !important;
    border: none;
    pointer-events: none;
}

.clear-sort {
    font-size: .7rem;
    cursor: pointer;
    transition: all .1s ease;
}

.clear-sort:hover {
    font-size: .8rem;
}

.mobile-sort.active {
    background-color: #4DCBA3 !important;
    color: white !important;
    border: none;
}

.dropdown-item.sort-btn.active {
    background-color: #4DCBA3 !important;
    color: white !important;
}

.mobile-sort {
    border: 1px solid #707070;
    color: #707070;
    cursor: pointer;
}

#product .filter button:hover {
    opacity: 0.6;
}

#product .all-product {
    font-size: 1rem;
}

#product .found-product,
#product .sort-by {
    font-size: 0.5rem;
}

#product .found-product {
    color: #383838;
}

#product .sort-by {
    color: #686868;
}

.brand-slide-wrapper .slick-slide {
    padding-top: 5px;
    padding-bottom: 5px;
}

.brand-slide-wrapper .image-wrapper {
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
}

.brand-slide-wrapper .image-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 35%;
    height: 5px;
    background-color: transparent;
    transition: background-color 0.3s;
    border-radius: 3px;
}

.brand-slide-wrapper .image-wrapper.selected::after {
    background-color: #4DCBA3;
}

@media (min-width: 992) {
    #product .filter button {
        width: 100px;
    }

    .brand-slide-wrapper .image-wrapper {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {

    .slick-arrow,
    .slick-dots {
        display: inline-block !important;
    }

    .brand-slide-wrapper .slick-slide {
        margin: 0 10px;
    }

    #product .filter button {
        font-size: 16px;
        width: 120px;
        height: 40px;
    }

    #product .all-product {
        font-size: 30px;
    }

    #product .found-product,
    #product .sort-by {
        font-size: 16px;
    }

    #main .product-name-detail {
        font-size: 1.35rem;
    }

    #main .product-price-detail {
        font-size: 1.25rem;
    }

    #brand .category-name,
    #brand .brand-name {
        font-size: 40px;
    }

    #brand .category-description,
    #brand .brand-description {
        font-size: 20px;
    }

}

@media (min-width: 1400) {
    #product .filter button {
        width: 149px;
    }
}