.custom_search-block{
    z-index: 99999;
    padding-bottom: 10px;
}
.custom_search-block .wrapper{
    padding: 20px 40px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_search-block h2{
    margin-bottom: 0;
    margin-right: 48px;
}

#searchBar{
    display: flex;
    align-items: center;
}

#searchBar .button{
    color: #fff!important;
    border-radius: 40px!important;
}
#searchBar .button.disabled{
    pointer-events: none;
}

.dd-wrapper {
    position: relative;
    width: 444px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #000;
    padding: 0;
    margin-right: 20px;
}

#dd-toggle {
    color: #000000;
    position: relative;
    padding: 11px 15px 13px;
}
#dd-toggle.default{
    font-style: italic;
    color: #00000070;
}
#dd-toggle:after{
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    border: solid #545F71;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.dd-list {
    list-style-type: none;
    padding: 0!important;
    margin: 0;
    top: 48px;
    left: -1px!important;
    border: 1px solid #000;
    border-top: none;
    display: none;
    position: absolute;
    width: calc(100% + 2px);
    background-color: white;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.dd-list li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}
.dd-list li a:hover {
    background-color: var(--light_blue);
    color: #000;
    text-decoration: none;
}

@media screen and (max-width: 1580px){
    #searchBar .button{
        min-width: 150px;
    }
    .custom_search-block .wrapper{
        justify-content: space-between;
    }
    .dd-wrapper{
        width: 380px;
    }
}

@media screen and (max-width: 1349px){
    .custom_search-block h2{
        font-size: 2em;
    }
    .dd-wrapper{
        width: 320px;
    }
}

@media screen and (max-width: 1199px){
    .custom_search-block .wrapper{
        padding: 20px 30px;
    }
    .custom_search-block h2{
        font-size: 1.5em;
    }
    .dd-wrapper{
        width: 250px;
    }
}

@media screen and (max-width: 991px){
    .custom_search-block .wrapper{
        display: block;
        padding: 30px;
        float: left;
        width: 100%;
        border-radius: 40px;
    }
    .custom_search-block h2{
        font-size: 1.5em;
        width: 100%;
        float: left;
        margin-bottom: 20px;
        text-align: center;
        margin-right: 0;
    }
    #searchBar{
        float: left;
        width: 100%;
    }
    .dd-wrapper{
        width: calc(100% - 170px);
    }
}

@media screen and (max-width: 767px){
    .custom_search-block{
        padding-top: 30px;
    }
    .custom_search-block .wrapper{
        padding: 35px 25px;
        background: linear-gradient(189deg, #9DC8EA 19.08%, #00C389 73.24%, #2D3494 123.23%)!important;
    }
    .custom_search-block h2{
        margin-bottom: 20px;
    }
    #searchBar .button{
        width: 100%;
        margin-top: 20px;
    }
    #searchBar{
        display: block;
    }
    .dd-wrapper{
        width: 100%;
    }
}



