.search_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0 0 2em;
    width: 39px;
    height: 39px;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
}
.search_btn:hover {
    background-color: rgba(0,0,0,0.03);
}
.search_btn svg {
    position: absolute;
    width: 16px;
    height: 16px;
    fill: #131201;
}

@media screen and (max-width: 1000px) {
    .search_btn {
        position: absolute;
        top: 50%;
        right: 116px;
        margin: 0;
        margin-top: -21px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: rgba(0,0,0,0.05);
    }
    .search_btn svg {
        width: 16px;
        height: 16px;
    }
}

#search {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    background: #d8e0e2;
    height: 100%;
    z-index: 92;
    box-sizing: border-box;
    padding: 30px;
    -webkit-overflow-scrolling: touch;
    background-position: bottom left, top left;
    background-repeat: no-repeat, no-repeat;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 300ms;
    max-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#search.active {
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
#search input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
    background: #efefef;
    /*letter-spacing: 1px;*/
    font-weight: 400;
    padding:10px 15px;
    border: 0;
    border-radius: 2px;
    margin-bottom: 20px;
    height: 48px;
    line-height: 48px;
}
#search ul.list {
    display: block;
    padding-right: 30px;
}
#search ul.list.active {
    display: block;
}
#search ul.list li a {
    padding: 10px 0;
    display: block;
    color: #000;
    font-size: .9em;
    line-height: 1.3;
}
#search ul.list li a:hover {
    opacity: 0.5;
}
#search ul.list li p.name strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#search ul.list li p.name span.description {
    font-size: 0.9em;
    padding-top: .3em;
    display: block;
}
#search ul.list li p.name span.menu-title {
    opacity: 0.5; 
}
#search .close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius:  30px;
    box-shadow: 0 2px 1px rgba(0,0,0,0.15);
    background: #7ac142;
    background-image: url('../../images/icons/close.svg');
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}
#search .close:hover {
    background-color: #8bd253;
}
#search-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left:  0;
    background: #f00;
    z-index: 91;
    opacity: 0;
    pointer-events: none;
}
#search-bg.active {
    pointer-events: all;
    cursor: pointer;
}
