.product_archive{
    padding: 50px 0;
}
.product_filter{
    position: relative;
    padding: 35px 30px;
}
.product_filter .heading{
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 27px;
    padding-bottom: 3px;
    font-weight: 600;
}
.checkbox_list .form-check{
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    padding-left: 0;
    position: relative;
}
.checkbox_list .form-check .form-check-label{
    padding-left: 25px;
    cursor: pointer;
    color: var(--white);
}
.checkbox_list .form-check .form-check-label:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-radius: 3px;
    left: 0;
    background:var(--t_color) ;
}
.checkbox_list input:checked + label:before{
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 9;
}
.sort_filter .dropdown-toggle {
    border: 0;
    background: transparent;
}
.sort_filter .dropdown-toggle::after{
    display: none;
}
.sort_filter .dropdown-menu{
    padding: 15px 15px;
    width: max-content;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 3px 20px 0 rgb(0 0 0 / 6%);
    margin-top: 7px !important;
    position: absolute;
    z-index: 99;
    display: none;
    min-width: 10rem;
    background-color: #fff;
    background-clip: padding-box;
    right: 0;
}
.dropdown-menu.show {
    display: block;
}
.sort_filter .dropdown-menu:after {
    content: '';
    border-style: solid;
    border-width: 10px 10px;
    border-color: transparent;
    border-bottom-color: var(--white);
    position: absolute;
    bottom: 100%;
    right: 10px;
}

.sort_filter .form-radio {
    margin-bottom: 9px;
    position: relative;
    display: flex;
    align-items: center;
    width: min-content;
}
.sort_filter .form-radio .form-radio-label{
    padding-left: 20px;
    cursor: pointer;
}
.sort_filter .form-radio .form-radio-label:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;/*
    border: 1px solid #DCDCDC;
    border-radius: 50%;*/
    left: 0;
    /*background: var(--white);*/
    background: url(../images/icons/radio_button_disable.svg) 100% no-repeat;
}
.sort_filter .radio_list input:checked + label:after{
    background-image: url(../images/icons/radio_button_active.svg) !important;   
}
.sort_filter .form-radio .radio-input{
    visibility: hidden;
    position: relative;
}
/*.sort_filter .radio_list input:checked + label:after{
    border-color: var(--t_color);
}*/
/*
.radio_list input:checked + label:before {
    content: '';
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--t_color);
    z-index: 9;
    border-radius: 50%;
    margin-top: 3px;
    left: 0;
    margin-left: 3px;
}*/
/*.products{
    display: flex;
    flex-wrap: wrap;
}*/
/*.products .product {
    width: 31.8%;
    margin-right: 20px;
    margin-bottom: 20px;
}
.products .product:nth-child(3n+0) {
    margin-right: 0;
}*/
.products {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: repeat(3,1fr);
}

.category_filter, .close_cat_filter{
    display: none;
}
.category_filter img {
    width: 25px;
}
.close_cat_filter {
    width: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
}
@media (max-width:767px){
    .dropdown.sort_filter {
        margin-left: 10px !important;
    }
    /*.products .product {
        width: 48.5%;
        margin: 0 10px 15px 0 !important;
    }*/ 
    .products .product:nth-child(2n+0) {
        margin-right: 0 !important;
    }
    .product_archive {
        padding: 25px 0;
    }
    .category_filter, .close_cat_filter{
        display: block;
    }
    .product_filter {
        padding-top: 55px;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 300px;
        z-index: 999;
        transform: translateX(-100%);
        transition: all .35s ease-in-out;
        border-radius: 0 15px 15px 0;
    }
    .category_filter {
        position: absolute;
        right: 26%;
        border-right: 1px solid #afafaf;
        padding-right: 15px;
    }
    .product_filter.open_category{
        transform: translateY(0);
    }
    .radio_list input:checked + label:before {
        top: 2.4px;
    }
     .sort_filter .form-radio .form-radio-label {
        font-size: 12px;
        width: max-content;
    }
    .products {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        grid-template-columns: repeat(2,1fr);
    }
    .sort_filter .dropdown-menu {
        padding: 15px 10px;
        min-width: 185px;
    }
    .sort_filter .form-radio .form-radio-label {
        padding-left: 13px;
    }
}

@media (max-width:320px){
    /*.products .product {
        width: 47.5%;
        margin: 0 10px 15px 0 !important;
    } */
    .category_filter {
        margin-right: 6px;
    }
    .category_filter img {
        width: 20px;
    }
    .product .category_badge {
        left: 6px;
        top: 6px;
    }
    .product .category_badge img {
        margin-bottom: 5px;
        width: 23px;
    }
   
}
