
body.body--fade {
    position: relative;
}
body.body--no-scroll {
    overflow: hidden;
}
.jsTooglerSearch:before{
    content: '\e90b';
    font-family: IcoMoon;
    font-size: 32px;
    color: #252425;
}

.search-box{
    position: absolute;
    background: #fff;
    left: 0;
    top: -100%;
    opacity: 0;
    pointer-events: none;
    min-height: 125px;
    padding: 60px 0;
    width: 100%;
    transition: all 0.3s ease;
    border-top: 1px solid #f1f1f1;
}
.search-box.is_active {
    top: calc(100% + 0px);
    opacity: 1;
    z-index: 99;
    pointer-events: all;
    right: 0;
}
.container--small {
    max-width: 1075px;
}
.search-box .header-search-top {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.search-box .header-search-top::before {
    content: "";
    position: absolute;
    /*left: -10px;*/
    bottom: 0;
    height: 2px;
    width: calc(100% + 0px);
    /*background: #dfdfdf;*/
    z-index: 1;
}

.search-box .header-search-top input {
    border: none;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    padding: 15px 30px;
    position: relative;
    width: 100%;
    padding-right: 45px;
    background: #f1f1f1;
    border-radius: 50px;
    font-size: 15px;
}

.search-box .header-search-top a {
    height: 38px;
    width: 38px;
    min-width: 38px;
    line-height: 38px;
    background: #0bbdb4;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 50%;

    position: absolute;
    right: 15px;
    bottom: 9px;
}

.search-box .header-search-top a:before{
    content: '\e913';
    font-family: 'icomoon';
}

body::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.29);
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9;
}
body.body--fade::before {
    opacity: 1;
    pointer-events: all;
}

.containt-small {
    max-width: 1075px;
}
.search-box .header-search-top input:focus{
    outline: none;
}

@media (max-width: 1100px) {
    .containt-small{
        max-width: 720px;
    }
}
@media (max-width:767px ) {
    .jsTooglerSearch{
        height: 20px;
        width: 20px;
    }

    .search-box.is_active{
        right: 0;
    }
    .search-box{
        padding: 25px 15px;
    }
    .containt-small{
        padding: 0px !important;
    }

    .search-box .header-search-top::before{
        left: 0;
    }

    .search-box .header-search-top input{
        font-size: 17px;
    }
}