/*-------------------------------------- products page -------------------------------------*/
.product-banner {
    margin: 0px -10px;
    display: flex;
    flex-wrap: wrap;
}

    .product-banner figure {
        float: left;
        width: 33.333%;
        webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
        padding: 0 10px 20px;
        box-sizing: border-box;
    }

    .product-banner img {
        max-width: none;
        width: 100%;
    }

.products-wrap {
    margin: 0px -12px;
}

.product-box {
    display: inline-table;
    vertical-align: top;
    width: 33.333%;
    padding: 0px 12px;
    margin-right: -4px;
    margin-bottom: 45px;
    position: relative;
    box-sizing: border-box;
}

    .product-box > div {
        padding: 20px;
        position: relative;
    }

.pr-image {
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 240px;
    line-height: 240px;
}

    .pr-image > a {
        display: block;
    }

    .pr-image img {
        display: inline-block !important;
        max-height: 240px;
        -webkit-transition: all .4s ease-out;
        -moz-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        -ms-transition: all .4s ease-out;
        transition: all .4s ease-out;
    }

.heart-icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: block;
    color: #000;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    z-index: 20;
    box-sizing: border-box;
}

    .heart-icon:hover {
        transform: scale(1.1) !important;
    }

    .heart-icon.heart-full i.far {
        font-weight: 900;
        color: #EC1C2D;
    }

.pr-info {
    position: relative;
    padding: 15px 60px 0px 0px;
}

.pr-title {
    display: block;
    font-size: 14px;
    color: #222;
    font-weight: 600;
    max-width: 300px;
    margin-bottom: 7px;
    height: 36px;
    overflow: hidden;
}

    .pr-title a {
        color: #222;
    }

.product-brand {
    display: block;
    font-size: 14px;
    color: #EC1C2D;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.new-price {
    display: inline-block;
    font-size: 16px;
    color: #222;
}

.old-price {
    display: inline-block;
    color: #222;
    font-size: 14px;
    text-decoration: line-through;
    margin-right: 5px;
}

.pr-sale .new-price {
    color: #EC1C2D !important;
}

.in-stock {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.in-stock-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.in-stock-txt {
    color: #88c941;
    font-size: 10px;
}

.out-of-stock .in-stock-txt {
    color: #ff5454;
}

.awaits .in-stock-txt {
    color: #f0ad1d;
}

.overlay-btn {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(255, 255, 255, .5);
    box-shadow: 0px 1px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

    .overlay-btn .main-red-btn {
        max-width: 220px;
        padding: 12px 20px;
    }

.product-box > div:hover .overlay-btn {
    opacity: 1;
    visibility: visible;
}

.slick-slider .product-box {
    display: block;
    width: auto;
    margin-right: 0px;
    margin-top: 15px;
}

    .slick-slider .product-box > div {
        border: 1px solid #f2f2f2;
    }

/*---------------- ribbons ---------------*/
.ribbons {
    position: absolute;
    top: 30px;
    left: 0px;
    z-index: 1;
    line-height: normal;
    box-sizing: border-box;
}

    .ribbons > span {
        display: block;
        min-width: 53px;
        background: #000;
        font-size: 11px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        padding: 3px 10px;
        margin-bottom: 2px;
        box-sizing: border-box;
    }

        .ribbons > span.pr-sale {
            background: #EC1C2D;
        }

        .ribbons > span.pr-top {
            color: #000;
            background: #fff;
            border: 1px solid #000;
        }

.price-inputs {
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.range {
    width: 100px;
    height: 48px !important;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background: #141c21;
    font-size: 14px;
    outline: none;
    margin-bottom: 12px;
    box-sizing: border-box;
}

/*------------------------------ products list view -------------------------*/
.products-wrap.products-list-view {
    margin: 0px;
}

.products-list-view .product-box {
    display: block;
    width: auto;
    margin-right: 0px;
    padding: 0px 0px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

    .products-list-view .product-box > div {
        display: flex;
        flex-wrap: wrap;
        padding: 0px;
    }

.products-list-view .pr-image {
    width: 115px;
    padding-right: 15px;
    height: auto;
    line-height: normal;
    box-sizing: border-box;
}

.products-list-view .pr-info {
    width: calc(100% - 115px);
    webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    position: relative;
    padding-top: 0px;
    padding-right: 90px;
    box-sizing: border-box;
}

.products-list-view .overlay-btn {
    display: none;
}

.products-list-view .in-stock {
    top: calc(50% - 25px);
    bottom: auto;
    width: 80px;
}

.products-list-view .in-stock-icon {
    width: 34px;
    height: 34px;
}

.products-list-view .in-stock-txt {
    font-size: 13px;
}

.products-list-view .ribbons {
    top: 0px;
}

/*--------------------- responsive filter ----------------------*/
.responsive-filters {
    display: none;
    float: right;
    position: relative;
    background: #465057;
    height: 48px;
    color: #fff;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 25px 6px 43px;
    cursor: pointer;
    box-sizing: border-box;
}

    .responsive-filters::before {
        content: '\f0b0';
        font-family: 'Font Awesome 5 Pro';
        font-size: 20px;
        position: absolute;
        top: 0px;
        left: 13px;
        line-height: 48px;
    }

    .responsive-filters .how-many {
        display: block;
        float: none;
        text-transform: none;
        font-weight: normal;
        line-height: normal;
    }

.close-filter {
    display: none;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 3000;
    padding: 15px 0px;
    cursor: pointer;
    box-sizing: border-box;
}

    .close-filter::before {
        content: '\f00d';
        font-family: 'Font Awesome 5 Pro';
        font-size: 20px;
        position: absolute;
        top: 0px;
        left: 30px;
        line-height: 47px;
        font-weight: lighter;
    }
