.search_btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 60px;
    padding-right: 1px;
    width: 60px;
    height: 60px;
    font-size: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    z-index: 1;
    background-color: #00565d;
}
.search_btn:hover {}
.search_btn svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}
#search {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    background-color: rgba(0, 86, 93, 0.97);
    height: 100%;
    z-index: 420420;
    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;
    margin-bottom: 20px;
    padding: 10px 48px 10px 15px;
    width: 100%;
    height: 48px;
    font-family: metronic-slab;
    font-size: 18px;
    color: #06565d;
    font-weight: 400;
    line-height: 48px;
    border: 0;
    border-radius: 2px;
    box-sizing: border-box;
    background: #f5f5f5;
}
#search ul.list {
    display: block;
    margin-left: 15px;
    padding-right: 15px;
}
#search ul.list.active {
    display: block;
}
#search ul.list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
#search ul.list li a {
    padding: 20px 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    font-size: .9em;
    line-height: 1.3;
}
#search ul.list li a:hover {
    opacity: 0.5;
}
#search ul.list li a .url {
    display: block;
    margin-bottom: 8px;
    width: 100%;
    font-size: 13px;
    order: 2;
    opacity: 0.5;
}
#search ul.list li a strong {
    display: block;
    margin-bottom: 2px;
    width: 100%;
    font-family: metronic-slab;
    font-size: 21px;
    font-weight: 400;
    order: 1;
}
#search ul.list li a span {
    font-size: 14px;
    order: 3;
}
#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: 30px;
    top: 30px;
    width: 48px;
    height: 48px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
    background-color: #fff;
    background-image: url(../../images/icons/close.svg?2);
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: center;
}
#search .close:hover {}
#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;
}
@media screen and (max-width: 600px) {
    .search_btn {
        right: 46px;
        width: 46px;
        height: 46px;
    }
    .search_btn svg {
        width: 30px;
        height: 30px;
    }
    #search {
        width: 90%;
    }
    #search ul.list {
        display: block;
        margin-left: 0;
        padding-right: 0;
    }
}