.route-search h1 {
    display: flex;
    align-items: center;
}

.route-search h1:after {
    content: '';
    display: block;
    width: 29px;
    height: 35px;
    background: url(/images/yacht/anchor.png) no-repeat center;
    margin-left: 10px;
}

.route-search h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.route-search-header h2 {
    color: gray;
    margin-bottom: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.route-search__form {
    border: 1px solid #D3D3D3;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.route-search-rent-type-warning {
    margin-bottom: 25px;
}

.route-search__fields {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

.route-search__fields > * {
    width: 200px;
    max-width: 100%;
}

.route-search__fields label {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 4px;
}

.route-search__fields .select2 .select2-selection--single {
    height: 40px !important;
    display: flex;
    align-items: center;
    box-shadow: none;
    border: 1px solid #D3D3D3;
}

.route-search__fields .select2-container--krajee-bs3 .select2-selection--single .select2-selection__clear {
    top: 11px;
}

.route-search__fields label {
    color: #333;
}

.route-search__fields input {
    height: 40px;
    border: 1px solid #D3D3D3;
    border-radius: 0;
    box-shadow: none;
}

.route-search__sliders {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.route-search__sliders .sliders {
    display: flex;
}

.route-search__sliders .slider {
    width: 350px;
    font-size: 16px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.route-search__sliders .slider .caption {
    align-self: flex-start;
    margin-bottom: 20px;
}

.route-search__sliders .slider input {
    border: none;
    background: transparent;
    width: auto;
}

.route-search__sliders .slider:not(:first-child) {
    margin-left: 40px;
}

.route-search__sliders .ui-widget.ui-widget-content {
    width: calc(100% - 20px);
    display: flex;
    justify-content: center;
    border: none;
}

.route-search__form button {
    width: 200px;
    height: 40px;
    background-color: #14B1BB;
    color: white;
    align-self: center;
    margin-left: auto;
}

.route-search__additional label {
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 4px;
}

.route-search__additional .options-grid {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 40px;
}

.route-search__additional .toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.route-search__additional .arrow {
    display: block;
    width: 13px;
    height: 13px;
    background: url(/images/yacht/arrow.png) center no-repeat;
    margin-left: 8px;
}

.route-search__additional.expanded .arrow {
    transform: rotate(180deg);
}

.route-search__additional:not(.expanded) .body {
    display: none;
}

.route-search .ui-widget.ui-widget-content {
    background: #D3D3D3;
    height: 5px;
}

.route-search .ui-slider-horizontal .ui-slider-range {
    background: #14B1BB;
}

.route-search .ui-slider .ui-slider-handle {
    width: 26px;
    height: 26px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: none;
    top: -12px;
    border-radius: 15px;
}

.route-search-accordion {
    padding-top: 45px;
    margin-bottom: 70px;
    border-top: 4px solid #14B1BB;
}

.route-search-accordion .container {
    max-width: 970px;
}

.route-search-accordion-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.route-search-accordion-header h2 {
    text-align: inherit;
    margin-bottom: 15px;
}

.route-search-accordion-header p {
    margin-bottom: 40px;
}

.route-search-contact {
    height: 400px;
    background: url(/images/yacht/contact-bg.jpg) center no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}

.route-search-contact h2 {
    color: white;
    font-size: 35px;
    margin-bottom: 40px;
    text-align: center;
}

.route-search-contact a {
    max-width: 350px;
    width: 100%;
    background: #F0592B;
    color: white;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

@media (max-width: 1199px) {

    .route-search__additional .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .route-search__sliders {
        flex-direction: column;
        align-items: flex-start;
    }
    .route-search__sliders .sliders {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        margin-bottom: 20px;
    }
    .route-search__sliders .slider {
        margin-left: 0 !important;
        width: auto;
    }
    .route-search__sliders .submit {
        align-self: center;
    }
}

@media (max-width: 767px) {
    .route-search-contact h2 {
        font-size: 24px;
    }
    .route-search-contact a {
        font-size: 16px;
    }
    .route-search__fields {
        flex-direction: column;
    }
    .route-search__form button {
        align-self: center;
        margin-left: 0;
        margin-top: 5px;
    }
    .route-search__fields .form-group {
        margin-bottom: 0;
    }
}