/**
 * Search Form
 */
#search-form-container {
    position: absolute;
    z-index: 99;
    width: 100%;
    margin-top: -74px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

#search-form {
    background-color: #FFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
}

#search-form .column:not(:last-child) {
    border-right: 1px solid #dee2e6;
    padding-top: 5px;
    padding-left: 1rem;
}

#search-form .column:first-child {
    padding-left: 0;
}

#search-form .column:first-child .form-label {
    padding-left: 1rem;
}

#search-form .form-label {
    margin-bottom: 0;
}

#search-form .form-control {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border: none;
    padding-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#search-form .btn-search {
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 0;
    padding: 0 25px;
    height: 100%;
    min-height: 50px;
    cursor: pointer;
    outline: none;
    width: 100%;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background-color: #e14d67;
    margin-right: -1px;
    border-radius: 0;
}

#search-form .btn-search:hover {
    background-color: #008489;
    color: #fff;
}

#search-form .select2-container--bootstrap-5 .select2--large.select2-selection--single {
    border: none;
}

#search-form .select2-container--bootstrap-5.select2-container--focus .select2-selection,
#search-form .select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none;
}

#search-form .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

#search-form .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ced4da;
    padding: 10px 0 0 0 !important;
}

#search-form .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    box-shadow: none;
}

.select2-results {
    overflow-y: hidden !important;
}

.select2-search input {
    background: none !important;
}
/* Search Form End */


/**
 * Banners
 */
.banners {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 3rem;
}
/* Banners End */

/**
 * Customers
 */
.customers h5 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 20px;
}


@media only screen and (max-width: 1199px) {
    .banners {
        justify-content: space-evenly;
    }
}

@media only screen and (max-width: 768px) {
    #search-form .column:not(:last-child) {
        border-bottom: 1px solid #dee2e6;
    }
    .banners {
        padding-top: 14rem;
    }
}

@media only screen and (max-width: 1200px) {
    /**
     * Customers
     */
    .customers h5 {
        text-align: center;
    }
}
