.search-bar-wrapper #search-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
    border: solid 2px rgba(0, 0, 0, .3);
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 580px;
    min-width: 280px;
    background-clip: padding-box;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.search-bar-wrapper .search-item.dropdown-btn {
    position: relative;
    height: 36px;
}
.search-bar-wrapper .search-item.dropdown-btn .expand-button::after {
    background: url(https://resources.videvo.net/videvo_framework/assets/images/icon-chevron-down.svg) center center no-repeat;
    top: calc(50% - 12px);
    width: 26px;
    height: 26px;
    content: "";
    opacity: .4;
    position: absolute;
    right: 2px;
}

@media screen and (max-width: 550px){
    .hidden {
        display: none;
    }
}

.search-item {
    padding: 7px 30px 10px 10px !important;
    border: none;
}

.search-item.search-field {
    margin: 0 !important;
}

.search-bar-wrapper #search-top .dropdown-wrapper {
    float: left;
    min-width: fit-content;
    overflow: hidden;
}



.search-bar-wrapper #search-top .search-wrapper {
    display: flex;
    flex-grow: 1;
    background-color: rgba(0,38,61,0.08);
    color: rgba(0,0,0,.3) !important;
}

.search-bar-wrapper #search-top .search-wrapper:hover {
    background-color: #fff;
}

.search-bar-wrapper #search-top .dropdown-wrapper .dropdown-btn:hover > #expand-arrow {
    opacity: 1;
}

.search-bar-wrapper #search-top .dropdown-wrapper .dropdown-btn {
    background-color: rgba(0,38,61,0.15);
    border-right: solid 1px rgba(0,38,61,0.12);
    line-height: 1.4;
}

.search-bar-wrapper #search-top .dropdown-wrapper .dropdown-btn:hover {
    background-color: rgba(0,38,61,0.2);
}


.search-bar-wrapper #search-top .dropdown-wrapper .dropdown-btn #text {
    display: inline-block;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 700;
}

.search-bar-wrapper #search-top .dropdown-wrapper .dropdown-btn .expand-arrow {
    height: 26px;
    width: 26px;
    font-size: 12px;
    color: #2b2b2b;
    opacity: 0.4;
    margin-left: 5px;
}

.search-bar-wrapper #search-top .search-field {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    padding: 0 !important;
    padding-left: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.search-bar-wrapper #search-top .search-field:focus {
    background: #fff;
}

.search-bar-wrapper #search-top .search-field:focus + .search-item.search-logo {
    background: #fff;
}

.search-bar-wrapper #search-top .search-field::placeholder {
    color: rgba(0,0,0,.3) !important;
}

.search-bar-wrapper #search-top .search-logo {
    opacity: 1;
    color: #2b2b2b;
    padding: 5px 5px 5px 5px !important;
}

.search-bar-wrapper #search-top .search-logo img {
    max-width: 28px;
    max-height: 28px;
    width: 28px;
    height: 28px;
}

.search-bar-wrapper #search-top .dropdown-wrapper .dropdown-menu {
    display: none;
    position: absolute;
    min-width: 220px;
    min-height: 100px;
    background: #ffff;
    z-index: 9999;
    overflow: auto;
    padding: 0;
    left: 2px;
}

.open {
    display: block !important;
}

#dropdown-content ul {
    padding: 10px;
}

#dropdown-content li a {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    color: #2b2b2b;
    height: 36px;
}

#dropdown-content li a:hover {
    background-color: #ececec;
    text-decoration: none;
}

#dropdown-content li a.select {
    background-color: #1b95e0;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    line-height: 1.43;
    padding: 6px 10px;
    font-weight: 700;
}

#search-bar-desktop {
    display: flex;
    flex: auto;
    max-width: 580px;
    min-width: 280px;
    position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1023px){
    #search-bar-desktop {
        max-width: unset;
        flex: 1 0 100%;
        order: 4;
        margin-bottom: 12px;
    }
    .search-bar-wrapper #search-top {
        max-width: unset;
        flex: 1 0 100%;
        order: 4;
    }
}
@media screen and (min-width: 1023px) and (max-width: 1099px){
    #search-bar-desktop {
        flex: 0;
    }
    .search-bar-wrapper #search-top {
        flex: 0;
    }
}

@media screen and (min-width: 769px){
    #search-bar-mobile {
        display: none;
    }
}