.bg_pattern {
    height: 100%!important;
}
.bath_wrapper .tn-atom {
    vertical-align: middle;
}
.bath_items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    gap: 15px;
    padding-left: 50px;
}
.bath_items .bath_item:first-child {
    margin-top: 30px;
}
.bath_items .bath_item:last-child {
    margin-bottom: 30px;
}
.bath_card {
    position: relative;
    display: grid;
    align-items: end;    
    width: 390px;
    height: 176px;
    border-radius: 26px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;  
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.bath_card:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 66.66667%;
    background: linear-gradient(0.5turn, rgba(255, 255, 255, 0) 0%, rgba(61, 21, 8, 1) 75%);
    opacity: 0.6;
    z-index: 0;
}
.bath_card:hover, .bath_card.is-active {
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4);
}
.bath_content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;  
    z-index: 1;
    padding: 10px 30px;
}
.bath_card-text__city {
    font-family: 'SuisseIntl', Arial, sans-serif;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 300;
}
.bath_card-text__title {
    font-family: 'SuisseIntl', Arial, sans-serif;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
}
.bath_card-button {
    margin-bottom: 8px;
}
.bath_card-button__rounded {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgb(241 219 190 / 50%);
    border: 1px solid #ffffff;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.bath_card-button__rounded:hover {
    background-color: rgb(241 219 190 / 12.5%);
}
.bath_card-button__rounded svg {
    width: 9px;
    fill: none;
    stroke: #fff;
    margin-left: 2px;
}
.map_dot {
    width: 26px;
    transition: 0.3s ease-in-out;
}
.dot_wrapper-1.is-active .map_dot, .dot_wrapper-2.is-active .map_dot, .dot_wrapper-3.is-active .map_dot, .dot_wrapper-4.is-active .map_dot {
    transform: scale(1.1) translateY(-4%);
}
.dot_wrapper-1.is-active, .dot_wrapper-2.is-active, .dot_wrapper-3.is-active, .dot_wrapper-4.is-active {
    z-index: 4!important;
}
.map_dot svg {
    width: 100%;
    height: auto;
}
.map_dot-mark {
    fill: #ffba6c;
    transition: fill 0.3s ease-in-out;
}
.map_dot:hover .map_dot-mark, .dot_wrapper-1.is-active .map_dot-mark, .dot_wrapper-2.is-active .map_dot-mark, .dot_wrapper-3.is-active .map_dot-mark, .dot_wrapper-4.is-active .map_dot-mark {
    fill: #ffffff;
}
@media screen and (min-width: 1200px) {
    .bath_wrapper {
        height: 100%!important;
        top: 0!important;
    }
}
@media screen and (max-width: 1199px) {
    .bath_items {
        gap: 10px;
        padding-left: 40px;
    }
    .bath_items .bath_item:first-child {
        margin-top: 20px;
    }
    .bath_items .bath_item:last-child {
        margin-bottom: 20px;
    }    
    .bath_card {
        width: 260px;
        height: 118px;
        border-radius: 18px;
    }
    .bath_content {
        padding: 10px 15px;
    }
    .bath_card-text__title {
        font-size: 22px;
    }
    .bath_card-text__city {
        font-size: 8px;
    } 
    .bath_card-button {
        margin-bottom: 4px;
    }    
    .bath_card-button__rounded {
        width: 24px;
        height: 24px;
    } 
    .bath_card-button__rounded svg {
        width: 6px;
    }
    .map_dot {
        width: 18px;
    }
}
@media screen and (max-width: 767px) {
    .bath_wrapper {
        display: flex!important;
    }
    .bath_items {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 0;
        align-items: flex-end;
    }
    .bath_items .bath_item:first-child {
        margin-top: 0;
    }
    .bath_items .bath_item:last-child {
        margin-bottom: 0;
    } 
    .bath_items {
        gap: 15px;
        padding: 20px 15px;
    }    
    .bath_card {
        width: 240px;
        height: 118px;
        border-radius: 16px;
    }
    .bath_card:hover, .bath_card.is-active {
        box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.4);
    }
    .map_dot {
        width: 16px;
    }    
}