body.overlay,
body.overlay1 {
    overflow-y: hidden;
}

.desktop-search {
    float: left;
    width: 100%;
    height: 100%;
    background-color: #005FFF;
    padding: 210px 0 50px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    transition: all 0.4s ease;
    z-index: 999;
    background-size: cover;
    background-position: left top
}

.desktop-search h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: #333;
    font-family: 'ZalandoSans-Bold';
    font-size: 16px;
    line-height: 42px;
    margin-bottom: 25px
}

.desktop-search.search-open {
    opacity: 1;
    visibility: visible
}

@media screen and (max-width: 767px) {
    .desk-search.desk-search-mobile {
        display: block;
    }

    .desktop-search.result-search {
        padding: 0;
        /* padding-top: 150px; */
        padding-top: 250px;
    }
}

a.search-close {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 65px;
    height: 65px;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

@media screen and (max-width: 767px) {
    a.search-close {
        top: 20px;
        right: 20px;
    }
}

a.search-close:hover {
    opacity: 0.7;
}

a.search-close img {
    width: auto;
}