.filters-panel {
    display: flex;
    gap: 8px;
    max-height: 56px;
}

.filters-panel__filters {
    display: flex;
    gap: 8px;

    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--grey--grey80, #D7D7D7);
}

.filters-panel-mobile {
    display: none;
}

.filters-panel-mobile__icon {
    transform: translateY(-42px);
    margin-bottom: -29px;
    width: 112px;
}

.filters-panel-mobile__item {
    position: relative;
}

.filters-panel-mobile__title {
    color: var(--black--black10, #222324);
    font-size: 16px;
    font-weight: 500;
}

.filters-panel__buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    flex: 1 1 auto;
}

.filters__divider {
    align-self: center;
    height: calc(100% - 8px);
    width: 1px;
    background-color: var(--grey--grey80, #D7D7D7);
}


.filters__term {
    display: flex;
    position: relative;
    gap: 2px;

}
.animated-selector {
    position: absolute;
    border: 1px solid var(--azure--azure90, #B3D3F7);
    background: var(--azure--azure100, #E6F0FC);
    border-radius: 8px;
    transition: all 0.2s ease;
    z-index: 1;
    height: 100%;
    opacity: 0;
}
.animated-selector.initialized {
    opacity: 1;
}
.term-option {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 16px;
    font-weight: 400;

    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all .2s ease;
}
.term-option:hover {
    cursor: pointer;
}
.term-option:not(.active):hover {
    background-color: var(--grey--grey90, #F7F7F7);
}

.filters__rooms {
    display: flex;
}
.filters__options {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2px;
}

.room-option {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
}
.room-option * {
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.room-option label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.room-option.selected {
    background: var(--azure--azure100, #E6F0FC);;
}

.room-option:hover {
    background-color: var(--grey--grey90, #F7F7F7);
}

.room-option.selected:hover {
    background: var(--azure--azure90, #C8D7EF);
}

.filters__price {
    display: flex;
    max-width: 200px;
}
.filters__price label {
    margin: 0;
}
.price__input {
    height: 100%;
    width: 100%;
    padding: 0 12px;
    border: none !important;
    border-radius: 8px !important;
}
.price__input:hover {
    border: none;
}
.price__input::placeholder {
    color: var(--grey--grey60, #999);
    font-weight: 400;
}
.map__button {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;

}
.map-link {
    color: var(--black--black10, #222324);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    padding: 12px 24px;
    gap: 8px;
    background: var(--azure--azure95, #CCE2FA);
}
.map-link:hover {
    color: var(--black--black10, #222324);
    background: var(--azure--azure90, #B3D3F7);
}
.offers__button {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.offers-link {
    color: var(--white--white100, #ffffff);
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    padding: 12px 24px;
    background: var(--azure--azure50, #006BE2);
    justify-content: center;
}
.offers-link:hover {
    color: var(--white--white100, #ffffff);
    background: var(--azure--azure40, #0056B6);
}

@media only screen and (max-width: 1280px) {
    .filters-panel {
        display: none;
    }
    .filters-panel-mobile {
        display: flex;
        gap: 15px;
        margin: 40px 0;
    }
    .filters-panel-mobile__item {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        padding-bottom: 10px;

        border-radius: 20px;

        background: var(--grey--grey90, #F7F7F7);
    }
}