body.header_search_open {
    overflow-y: hidden;
}

.header_search_overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: 99;
}

.header_search_overlay.open {
    top: 0;
    opacity: 1;
}

.header_search_wrap {
    position: relative;
    width: 80%;
    margin: -150px auto 0;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.header_search_wrap.show {
    margin-top: 30px;
}

.header_search_form_wrap {
    position: relative;
    padding-right: 70px;
}

.header_search_form_wrap .search-form {
    display: flex;
    position: relative;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 4px;
    overflow: hidden;
}

.header_search_form_wrap .search-form .form-control {
    width: 100%;
    font-size: 1.5rem !important;
    line-height: 1.5rem;
    padding: 15px 60px 15px 25px;
    border: none !important;
    background: #fff;
}

.header_search_form_wrap .search-submit {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: url("../../../../img/svg/loupe.svg") center no-repeat;
    background-size: 35px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.header_search_form_wrap .search-submit:hover {
    opacity: 0.8;
}

.search-button-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-button {
    font-size: 20px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    opacity: 0.5;
    cursor: pointer;
}

.search-button:hover {
    opacity: 1;
}

.header_search_button_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: url("../../../../img/close.png") center no-repeat, #fff;
    background-size: 40px;
    opacity: 1;
}

@media all and (max-width: 768px){
    .header_search_wrap {
        width: 100%;
    }
    .header_search_form_wrap .search-submit {
        width: 30px;
        height: 30px;
        background-size: 25px;
    }
}


/* ********************************* */
div.search-popup {
    z-index: 99999 !important;
}