.page__tour .tour-block.agencies h2 {
    margin-bottom: 20px;
}

.tour-agencies__title {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.tour-agencies__subtitle {
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 14px;
    color: #616161;
}

.tour-agencies__form {
    padding-top: 40px;
    border-top: 1px solid #C0BDA2;
    display: grid;
    grid-template-columns: minmax(160px, auto) 1fr;
    grid-gap: 48px;
    font-size: 14px;
}

.tour-agencies .section-label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tour-agencies__sidebar [class$=__items] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-agencies .form-style-checkbox .checker {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: transparent;
    border-width: 1.5px;
    border-color: #CAD1E1;
}

.tour-agencies .form-style-checkbox input:checked ~ .checker {
    background-color: transparent;
    border-color: #FFC219;
}

.tour-agencies .form-style-checkbox .checker:after {
    border-color: #FFC219;
    left: 5px;
    top: 1px;
    width: 3px;
    height: 8px;
    border-width: 0 2px 2px 0;
}

.tour-agencies__countries__items {
    height: 83px;
    overflow-y: auto;
    margin-bottom: 25px;
}

.tour-agencies__cities__items {
    height: 240px;
    overflow-y: auto;
}

.tour-agencies__items {
    height: 320px;
    overflow-y: auto;
}

.tour-agencies__search-input {
    width: 450px;
    height: 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border: 1px solid #C0BDA2;
    border-radius: 8px;
    padding: 0 10px 0 16px;
    gap: 8px;
    margin-bottom: 20px;
}

.tour-agencies__search-input input {
    border: none;
    background: transparent;
    outline: none;
    font: inherit;
}

.tour-agencies__search .icon-after {
    margin-left: auto;
}

.tour-agencies__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 16px;
    border-bottom: 1px solid #E4E4E4;
    padding: 16px 20px;
}

.tour-agencies__item:first-child {
    border-top: 1px solid #E4E4E4;
}

.tour-agencies__item-info {
    width: 50%;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tour-agencies__item-contact .tour-agencies__item-contact__link {
    display: flex;
    width: 237px;
    max-width: 100%;
    height: 36px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #FFC219;
}

.tour-agencies__item-contact .tour-agencies__item-contact__link:hover {
    background-color: #FFC219;
    color: white;
}

.tour-agencies__item-name {
    font-weight: bold;
}

.tour-agencies__item-city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.tour-agencies__item-contact__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.tour-agencies__item-contact__title {
    font-weight: bold;
}

.tour-agencies__item-contact__info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tour-agencies__item-contact__info-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 1199px) {
    .tour-agencies__form {
        grid-gap: 20px;
    }
    .tour-agencies__search-input {
        width: auto;
    }
}

@media (max-width: 768px) {
    .tour-agencies__item {
        flex-direction: column;
    }
    .tour-agencies__item-info {
        width: 100%;
        justify-items: center;
    }
    .page__tour .tour-block.agencies h2 {
        margin-bottom: 10px;
    }
    .agencies__title {
        margin-bottom: 10px;
    }
    .tour-agencies__subtitle {
        margin-bottom: 25px;
    }
    .tour-agencies__form {
        padding-top: 25px;
    }
}

@media (max-width: 575px) {
    .tour-agencies__form {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .tour-agencies__cities__items {
        height: 83px;
    }
    .tour-agencies__item-contact__info {
        gap: 10px;
        flex-direction: column;
    }
    .tour-agencies__sidebar [class$=__items] {
        gap: 10px;
    }
    .tour-agencies__countries__items {
        height: 65px;
    }
}