.woo-featured {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.woo-featured .swiper {
    width: 100%;
}

.woo-featured .swiper-wrapper {
    align-items: stretch;
}

.woo-featured .swiper-slide {
    box-sizing: border-box;
    height: auto;
}

/* product card */
.woo-featured .featured-product {
    padding: 0px;
    text-align: left;
    height: 100%;
}

/* background image */
.woo-featured .featured-product-image{
    display: block;
    min-height: 380px;
    background: #f5f5f5;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #ddd;
    border-radius: 2px;
    text-align: left;
}

/* sale label */
.woo-featured .sale-label{
    display: inline-block;
    margin-top: 10px;
    margin-left: 10px;
    background: #5E5B4F;
    color: #FFFEF9;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    width: auto;
    padding: 5px 7px;
    border-radius: 2px;
}

.woo-featured .featured-product-title{
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: #5c5c53;
}

.woo-featured .featured-product-price{
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: #000;
}

/* scrollbar */
.woo-featured .swiper-scrollbar {
    position: relative !important;
    margin-top: 15px;
    height: 8px !important;
    width: 100%;
    left: 0;
    background: #FFFEF9;
}

.woo-featured .swiper-scrollbar .swiper-scrollbar-drag {
    background: #5c5c53;
    height: 6px;
    top: 1px;
}

/* mobile spacing refinement */
@media (max-width: 768px) {

    .woo-featured .featured-product-image{
        min-height: 70vh;
    }
}

/* CHECKBOX STYLE */
input[type="checkbox"]{
    display: inline-block;
    border: .125rem solid;
    border-color: #bebebe !important;
    border-radius: .1875rem;
    width: 1.4375rem;
    height: 1.4375rem;
    position: relative;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    margin-right: .8125rem;
    transition: all .3s;
    cursor: pointer
}

input[type="checkbox"]:checked {
    border-color: #212227 !important;
}

input[type="checkbox"]::before{
    content: " ";
    display: block;
    height: .75rem;
    width: .375rem;
    background-color: transparent;
    position: absolute;
    top: .125rem;
    left: .4375rem;
    border-bottom: 3px solid #212227;
    border-right: 3px solid #212227;
    opacity: 0;
    transition: opacity .2s;
    transform: rotate(45deg)
}

input[type="checkbox"]:checked::before {
    opacity: 1;
}
