.categories {
    display: none !important;
}

main {
    margin-top: 48px;
}

.filter-area {
    position: fixed;
    width: 100%;
}


.filter-choose {
    display: flex;
    overflow-x: scroll;
    white-space: nowrap;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    border-bottom: 1px solid #CCCCCC;
    font-size: 14px;
    background-color: #fff;
    padding: 4px 8px;
}

    .filter-choose::-webkit-scrollbar {
        display: none
    }

    .filter-choose > li {
        margin: 0px 8px;
    }

.filter-title {
    padding: 6px 36px 6px 16px;
    position: relative;
    border: 1px solid #EEEEEE;
    border-radius: 20px;
}

.arrow {
    position: absolute;
    top: 11px;
    right: 16px;
    border: solid #656565;
    border-width: 0px 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

.filter-value {
    display: none;
    position: fixed;
    top: 92px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.25);
    z-index: 10;
}

    .filter-value ul {
        padding: 16px;
        height: 300px;
        overflow: scroll;
        padding-bottom: 0;
        background-color: #fff;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

        .filter-value ul::-webkit-scrollbar {
            display: none
        }


.filter-btn {
    background-color: #fff;
    padding: 12px 16px;
    border-top: 1px solid #EEEEEE;
}

    .filter-btn a {
        display: block;
        text-align: center;
        padding: 8px 0;
        border-radius: 5px;
        font-size: 14px;
        border: 1px solid #CCCCCC;
    }

.active .filter-value {
    display: block;
}


.filter-value li {
    width: 48%;
    text-align: center;
    margin-bottom: 16px;
    background-color: #F3F3F3;
}

.checkbox-container {
    border-radius: 5px;
    padding: 12px 0;
    width: 100%;
}

.filter-value input {
    display: none;
}



.color-dot {
    margin-right: 10px;
}

.product-sort {
    padding: 16px;
    background-color: #fff;
}



    .product-sort li {
        margin-right: 16px;
    }

.product-list {
    padding: 97px 16px 0 16px;
}

.product {
    width: 100%;
    margin-bottom: 22px;
}

    .product:hover {
        cursor: pointer;
    }

.product-img {
    width: 164px;
    height: 164px;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.normal-img {
    display: none;
}

    .normal-img.show {
        display: block;
    }

.pc-image,
.mb-image {
    display: none;
}

    .mb-image.show {
        display: block;
    }

.tag {
    background: #F8F8F8;
    border-radius: 5px;
    padding: 5px;
    font-size: 11px;
    margin-bottom: 8px;
}

    .tag img {
        margin-right: 4px;
    }

.period {
    color: #63C856;
}

.diameter {
    color: #56C8BB;
}

.moisture {
    color: #51A8DA;
}

.name {
    margin-bottom: 4px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.brand {
    color: #979494;
    font-size: 13px;
    margin-bottom: 4px;
}

.discount-price {
    color: #D22727;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

.origin-price {
    color: #A8A6A6;
    text-decoration: line-through;
    font-size: 11px;
    margin-right: 5px;
}

.price-tag {
    margin-left: 5px;
    display: inline-block;
    /*margin-top: -2px;*/
    color: #fff;
    background-color: #FFCC55;
    padding: 0 2px;
    border-radius: 2px;
    font-size: 12px;
    margin-bottom: 5px;
}

.load-products-position {
    width: 100%;
    height: 0;
    opacity: 0;
}

.filter-active {
    color: #63C856;
    border-color: #63C856;
}

.filter-qty {
    display: none;
}

.filter-active .filter-qty {
    display: inline;
}

.checkbox-container-active {
    color: #63C856;
    background-color: rgba(99,200,86,0.3);
}

.product-sort .active {
    color: #63C856;
}

.product-list-end-bg {
    background-color: #F8F8F8;
    padding: 40px 40px 80px 40px;
    background-image: url("../../Images/Home/exclamation-mark.png");
    background-position: bottom 30px right 30px;
    background-repeat: no-repeat;
    margin-bottom: 80px;
}

    .product-list-end-bg h4 {
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 28px;
    }

.not-eligible {
    padding-top: 200px;
    padding-bottom: 100px;
    width: 100%;
}

    .not-eligible h6 {
        margin-bottom: 12px;
        font-weight: bold;
        text-align: center;
    }

    .not-eligible p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 24px;
    }

.clear-choose {
    border: 1px solid #656565;
    border-radius: 100px;
    padding: 5px 20px;
}

@media(min-width:373px) {
    .product {
        width: 48%;
    }
}


@media(min-width:576px) {
    main {
        margin-top: 0;
    }

    .filter-area {
        position: relative;
        max-height: 100%;
    }


    .categories {
        display: flex !important;
    }

    .filter-choose {
        display: block;
        padding: 0;
        border: 0;
    }

        .filter-choose > li {
            margin: 0;
        }

    .filter-title {
        display: inline-block;
        padding: 16px;
        min-width: 130px;
        background-color: #F8F8F8;
        border: 0;
        border-radius: 0;
    }

    .filter-value {
        display: block;
        position: static;
        padding: 16px 0;
        margin-left: 25px;
        border-bottom: 1px solid #EBEBEB;
        flex-grow: 1;
        background-color: transparent;
    }

        .filter-value ul {
            padding: 0;
            background-color: transparent;
            height: auto;
            overflow: auto;
        }

    .active .filter-value {
        display: block;
    }

    .filter-value li {
        background-color: #fff;
        margin-bottom: 0;
        padding: 0;
        width: auto;
        margin-right: 32px;
    }

    .filter-value input {
        display: inline-block;
        margin-right: 10px;
        width: 16px;
        height: 16px;
        border: 0.5px solid #C4C4C4;
        border-radius: 5px;
    }

    .swiper-container {
        margin-bottom: 40px;
    }

        .swiper-container img {
            width: 100%;
        }

    .swiper-pagination-bullet-active {
        background-color: #63C856;
    }

    /*checkbox customer*/
    .checkbox-container {
        border-radius: 0;
        display: block;
        position: relative;
        padding: 0;
        padding-left: 26px;
        cursor: pointer;
        font-size: 14px;
        /*text-align: start;*/
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        /* Hide the browser's default checkbox */
        .checkbox-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

    /* Create a custom checkbox */
    .checkmark {
        position: absolute;
        top: 2px;
        left: 0;
        height: 16px;
        width: 16px;
        border: 0.5px solid #C4C4C4;
        border-radius: 5px;
    }

    /* On mouse-over, add a grey background color */
    .checkbox-container:hover input ~ .checkmark {
        background-color: #eee;
    }

    /* When the checkbox is checked, add a blue background */
    .checkbox-container input:checked ~ .checkmark {
        background-color: #63C856;
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    /* Show the checkmark when checked */
    .checkbox-container input:checked ~ .checkmark:after {
        display: block;
    }

    /* Style the checkmark/indicator */
    .checkbox-container .checkmark:after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /*checkbox customer*/
    .product-sort {
        background-color: #F8F8F8;
        margin-top: 16px;
        margin-bottom: 30px;
        padding: 30px 16px;
    }

        .product-sort li {
            margin-right: 30px;
            cursor: pointer;
            font-size: 14px;
        }

    .product {
        width: 21%;
        margin-right: 5.33%;
        margin-bottom: 30px;
    }

    .product-img {
        width: 242px;
        height: 242px;
    }

    .pc-image.show {
        display: block;
    }

    .mb-image.show {
        display: none;
    }

    .product:nth-child(4n) {
        margin-right: 0;
    }

    .tag {
        background-color: transparent;
        font-size: 14px;
        padding: 0;
        background-color: #f8f8f8;
        border-radius: 5px;
    }

        .tag span {
            padding: 8px 10px;
            background-color: #F8F8F8;
        }

    .name {
        margin-bottom: 10px;
    }

    .brand {
        font-size: 14px;
    }

    .origin-price {
        font-size: 14px;
        margin-right: auto
    }

    .price-tag {
        color: #656565;
        background-color: #FFCC55;
        padding: 2px 7px;
    }

    .filter-category {
        height: 54px;
        overflow: hidden;
    }

    .secondary {
        margin-top: 17px;
    }

    .filter-value .toggle-filter {
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 0;
        color: #63C856;
        cursor: pointer;
    }

    .toggle-filter img {
        margin-top: -3px;
        margin-left: 6px;
    }

    .show-more {
        height: auto;
    }

        .show-more img {
            transform: rotate(180deg)
        }

    .selected {
        margin-top: 24px;
    }

    .selected-title {
        font-size: 14px;
    }

    .selected-tag {
        display: inline-block;
        padding: 5px 16px;
        border: 1px solid #CCCCCC;
        border-radius: 10px;
        margin-left: 12px;
        font-size: 14px;
        margin-top: 16px;
        cursor: pointer;
    }

        .selected-tag img {
            width: 12px;
            height: 12px;
            margin-top: -1px;
            margin-left: 8px;
            cursor: pointer;
        }

    .clear-selected {
        display: inline-block;
        padding: 5px 16px;
        color: #63C856;
        border: 1px solid #63C856;
        border-radius: 10px;
        margin-left: 12px;
        font-size: 14px;
        cursor: pointer;
        margin-top: 16px;
    }

    .filter-active {
        color: #656565;
    }

    .filter-qty {
        display: none !important;
    }

    .checkbox-container-active {
        background-color: transparent;
        color: #656565;
    }

    .product-list {
        padding-top: 0;
    }

    .product-list-end-bg {
        padding: 50px 355px 50px 70px;
        background-color: #EEEEEE;
        border-radius: 10px;
        background-size: 200px;
        background-position: bottom 40px right 70px;
    }

        .product-list-end-bg h4 {
            text-align: start;
            font-size: 24px;
        }

    .not-eligible {
        padding-top: 40px;
        padding-bottom: 250px;
    }

        .not-eligible h6 {
            margin-bottom: 5px;
            font-size: 18px;
        }

    .router-link {
        padding-top: 25px;
        padding-bottom: 16px;
        font-size: 14px;
    }

        .router-link a:hover {
            color: #000;
        }

        .router-link img {
            width: 20px;
            height: 20px;
        }
}
