﻿
.cs-search-box {
    width: 100%;
    padding: 4px;
    color: #757575;
    background: #fff;
    align-items: stretch;
    border-radius: .5rem;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(34, 36, 38, 0.15);
}

.cs-search-box__suggestion {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    width: 100%;
    border-radius: .5rem;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    max-height: 330px;
    overflow: auto;
    z-index: 3;
}

    .cs-search-box__suggestion::-webkit-scrollbar {
        width: 4px;
    }

.cs-search-box__suggestion--title {
    color: #000;
    font-weight: 500;
}

.cs-search__form {
    height: 100%;
}

.cs-search__imput {
    height: 100%;
    border: none;
    outline: none;
    box-shadow: none;
}

    .cs-search__imput:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

.cs-search-box__btn-search {
    margin: 0 !important;
}

.cs-search-box__btn-clear {
    cursor: pointer;
}

    .cs-search-box__btn-clear:hover {
        color: #2C2C2C;
    }

.cs-search-box__entry-point {
    cursor: pointer;
    padding: 6px;
    border-radius: .5rem;
    color: #2C2C2C;
}

    .cs-search-box__entry-point:hover {
        background: var(--btn-hover-color);
    }

    .cs-search-box__entry-point .icon {
        border-radius: 50%;
        padding: 6px;
        background: #80cbc433;
        color: #009BA1;
    }

.cs-search-box__backdrop {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    opacity: 0.65;
    transition: opacity 0.4s linear;
    padding-right: 17px;
}


.cs-search-box__suggestion--guid ul {
    margin: 0;
}

    .cs-search-box__suggestion--guid ul li {
        margin-top: 4px;
    }

        .cs-search-box__suggestion--guid ul li::marker {
            content: "•  ";
        }

@media screen and (max-width: 992px) {
    .cs-search-container, .searchBarSale .cs-search-box {
        display: none;
    }

    .cs-search-container__mobile {
        padding: .5rem 1rem;
    }

    .cs-search-box {
        padding: .2rem;
        background: #F2F2F2;
    }

    .cs-search-box__btn-search {
        border-radius: .5rem !important;
        padding: .5rem !important;
    }

    .cs-search__imput {
        background: #F2F2F2;
    }

    .cs-search-box__suggestion {
        max-height: unset;
        padding: .5rem;
        width: 100dvw;
        right: -1rem;
        left: unset;
    }

    .mobile-header .cs-search-container__mobile {
        padding-top: 0;
        padding-bottom: 0;
        transition: all 0.4s ease;
    }
}
