.search-widget-wrap {
    min-height: 200px;
}

.search-widget {
    position: relative;
    z-index: 5;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 3px 0 rgba(210, 210, 210, 0.5);
}

.search-widget_input {
    height: 40px;
    padding: 10px 20px 10px 40px;
    background: none;
    border: 0;
    background: #fff;
    border-bottom: 1px solid rgba(210, 210, 210, 0.5);
}

.search-widget_close {
    position: relative;
    float: right;
    display: flex;
    height: 40px;
    width: 40px;
    margin-top: -40px;
    justify-items: center;
    align-items: center;
    background: transparent;
    border: none;
}

.search-widget_addon {
    position: relative;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    margin-top: -40px;
    background: transparent;
    border: none;
}

.search-widget_close:hover {
    opacity: 1;
}

.search-widget_close:before,
.search-widget_close:after {
    position: absolute;
    left: 20px;
    top: 10px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #999;
}
.search-widget_close:before {
    transform: rotate(45deg);
}
.search-widget_close:after {
    transform: rotate(-45deg);
}

.search-widget_autocomplete {
    left: 0;
    display: none;
    width: 100%;
    padding: 10px 20px;
    background: #fff;
}

.autocomplete-tip-wrap {
    margin-bottom: 10px;
}

.autocomplete-tip {
    color: #00c37a;
}

.menu-sub-drop-wrap {
    position: relative;
    width: 100%;
    height: 0;
}

.menu-sub-drop {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    padding: 40px 20px;
    box-shadow: 0 0 3px 0 rgba(210, 210, 210, 0.5);
    background: #fff;
}

.menu-container {
    display: flex;
    justify-content: stretch;
}

@media screen and (max-width: 768px) {
    .menu-container {
        display: block;
    }
}

.header__menu {
    z-index: 25 !important;
    flex: 1 0;
}

.menu-open-search {
    flex: 0 0 50px;
    margin-left: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .menu-open-search {
        float: right;
        height: 65px;
        width: 60px;
    }

    .menu-open-search_icon {
        display: block;
        width: 60px;
        height: 25px;
    }
}