/* woo custom search */
.woo-custom-search{
    display: table;
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-bottom: 1px #E0DDD9 solid;
}

.parent-padding{
    padding: 10px;
}

.woo-custom-search.mobile{
    display: none;
}
.woo-custom-search.mobile.open{
    display: table;
}
.woo-custom-search-icon{
    display: inline-block;
    color: #1F1F1D;
    width: 40px;
    height: 40px;
    padding: 10px;
}
.woo-custom-search-icon svg{
    fill:#1F1F1D !important
}
#woo-custom-search-input,
#woo-custom-search-mobile-input{
    display: inline-block;
    width: calc(100% - 60px);
    background-color: transparent !important;
    border: 0px;
    border-radius: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #625A5A;
    position: absolute;
    top: 0;
    padding: 8px 8px 0px 8px;
}

#woo-custom-search-mobile-input{
    line-height: 45px;
}

#woo-custom-search-input:focus,
#woo-custom-search-input:active,
#woo-custom-search-mobile-input:focus,
#woo-custom-search-mobile-input:active{
    outline: none;
}

ul#woo-custom-search-results,
ul#woo-custom-search-mobile-results{
    list-style: none;
    display: table;
    width: 100%;
    position: absolute;
    z-index: 99;
    margin: 0px;
    padding: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
ul#woo-custom-search-mobile-results{
    left: 0px;
}

ul#woo-custom-search-results li,
ul#woo-custom-search-mobile-results li{
    display: flex;
    width: 100%;
    padding: 10px 10px 5px 10px;
    background-color: #fff;
    color: #000;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 500;
}
ul#woo-custom-search-results li:hover,
ul#woo-custom-search-mobile-results li:hover{
    background-color: #efefef;
}
ul#woo-custom-search-results li .woo-custom-result-img,
ul#woo-custom-search-mobile-results li .woo-custom-result-img{
    width: 80px !important;
    max-width: 80px !important;
    line-height: 100px !important;
    flex-shrink: 0; /* Prevent shrinking beyond the max-width */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    text-align: center;

}
ul#woo-custom-search-results li .woo-custom-result-img img,
ul#woo-custom-search-mobile-results li .woo-custom-result-img img{
    max-height: 100px !important;
    height: auto !important;
    max-width: 100% !important;
    vertical-align: middle !important;

}
ul#woo-custom-search-results li .woo-custom-result-text,
ul#woo-custom-search-mobile-results li .woo-custom-result-text{
    flex-grow: 1;
    padding: 10px 20px;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
a.woo-search-product-title{
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #1F1F1D;
}
a.woo-search-product-title:hover{
    color: #F36F21;
}

.woo-custom-result-cat a{
    font-size: 13px;
    font-weight: 500;
    color: #1F1F1D;    
}
.woo-custom-result-cat a:hover{
    color: #F36F21;    
}

/* 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;
}
