.path-search .main ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.search-form #edit-help-link {
    display: none;
}
.search-form .help-block {
    font-size: 85%;
}
.search-toggle {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    height: 80px;
}
.search-toggle > svg {
    display: block;
}
#search-block-form .help-block {
    display: none;
}
.search-block-form {
    position: relative;
}
#search-block-form {
    display: none;
    opacity: 0;
    position: absolute;
    box-shadow: 0 10px 30px 10px rgb(0 0 0 / 5%);
    background: #fff;
    padding: 17px;
    min-width: 300px;
    margin-top: -15px;
    margin-right: -30px;
    z-index: 10000;
    right: 100%;
    transition: opacity .2s ease-out;
}
#search-block-form:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 5px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    transform: translate3d(-7px,-6px,0);
}
#search-block-form > .form-group {
    margin: 0;
}
#search-block-form.show {
    opacity: 1;
    display: block;
}
#search-block-form .form-submit > svg {
    display: block;
}
#search-block-form .form-search {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: none;
}
#search-block-form .form-submit {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-left: 0;
}

@media screen and (max-width: 767px) {
    .search-toggle {
        display: none;
    }
    #search-block-form {
        display: block;
        padding-bottom: 15px;
        padding-top: 15px;
    }
}

@media screen and (min-width: 768px) {
    .search-block-form {
        float: right;
        margin-left: 10px;
    }
}
