body {
    position: relative;
}

.azs-map-block {
    width: 100%;
    border-radius: 20px;
    background: #F7F3EF;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px auto 150px;
}

.azs-map-info {
    width: 400px;
    flex-shrink: 0;
    padding: 35px 20px 0 35px;
}

.azs-map {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
}

#map-builder {
    height: 700px;
    border-radius: 20px;
}

.azs-map-tabs-nav {
    margin-bottom: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: wrap;
}

.azs-map-tabs-nav-item {
    cursor: pointer;
    transition: .3s;
    color: #18181880;
    font-size: 22px;
    font-weight: 700;
    margin-right: 36px;
}

.azs-map-tabs-nav-item.active {
    transition: .3s;
    text-decoration: underline;
    color: #000;
}

.azs-map-tabs-nav-item:hover {
    transition: .3s;
    color: #000;
}

.azs-map-tabs-list {

}

.azs-map-tab {
    display: none;
}

.azs-map-tab.active {
    display: block;
}

.azs-map-filters-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.azs-map-search-form {
    width: 100%;
    border-radius: 48px;
    position: relative;
}

.azs-map-search-input {
    width: 100%;
    height: 48px;
    border: 1px solid #B9B8B5;
    border-radius: 48px;
    background: transparent;
    padding: 12px 40px 12px 16px;
    box-sizing: border-box !important;
    transition: .3s;
    color: #181818;
}

.azs-map-search-input:hover, .azs-map-search-input:focus {
    transition: .3s;
    border-color: #181818;
}

.azs-map-search-btn {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    /*cursor: pointer;*/
    background: url("../img/search_icon.svg") no-repeat center/100%;
    z-index: 1;
    transform: translateY(-50%);
    border: none;
    outline: none;
}

.show-azs-map-filters-btn {
    width: 131px;
    flex-shrink: 0;
    margin-left: 8px;
    height: 48px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #181818;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    border: 2px solid #181818;
    border-radius: 48px;
    cursor: pointer;
    transition: .3s;
}

.show-azs-map-filters-btn.active {
    border-color: #B6000B;
    color: #B6000B;
}

.show-azs-map-filters-btn.active .show-azs-map-filters-btn-inner {
    background-image: url("../img/filters_icon_red.svg");
}

.show-azs-map-filters-btn:hover {
    transition: .3s;
    background: #EBE7DC;
}

.show-azs-map-filters-btn-inner {
    padding-right: 28px;
    background: url("../img/filters_icon.svg") no-repeat right center/20px;
}

.azs-map-items-list {
    overflow-y: auto;
    max-height: 578px;
    margin-top: 20px;
    padding-right: 5px;
}

.azs-map-items-list::-webkit-scrollbar-track-piece  {
    background-color: #E1E1E1;
    border-radius: 4px;
}

.azs-map-items-list::-webkit-scrollbar-thumb:vertical {
    background-color: #C1C1C1;
    border-radius: 4px;
}

.azs-map-items-list::-webkit-scrollbar {
    width: 8px;
    border-radius: 4px;
}

.azs-map-item {
    border: 2px solid #B9B8B5;
    border-radius: 48px;
    margin-bottom: 20px;
    width: 100%;
    background: #F7F3EF;
    transition: .3s;
    padding: 24px;
}

.azs-map-item:hover, .azs-map-item.active {
    background: #EBE7DC;
    border-color: #EBE7DC;
    transition: .3s;
}

.azs-map-item-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.azs-map-item-address {
    padding: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.azs-map-btn {
    background: transparent;
    width: 100%;
    height: 48px;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #181818;
    border-radius: 48px;
    font-size: 16px;
    line-height: 1.5;
    color: #181818 !important;
    font-weight: 600;
}

.azs-map-btn-inner {
    padding-right: 36px;
    position: relative;
}

.azs-map-btn-inner:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    transition: .3s;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../img/arrow_right_icon.svg") no-repeat center/100%;
}

.azs-map-btn:hover .azs-map-btn-inner:after {
    transition: .3s;
    right: -5px;
}

.azs-marker-content {
    width: 100%;
    max-width: 720px;
    box-sizing: border-box;
    padding: 36px 36px 20px;
    background: #fff;
    border-radius: 48px;
    font-family: "Montserrat", sans-serif !important;
}

.azs-marker-content p {
    padding: 0;
}

.azs-marker-top {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.azs-marker-title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
    padding: 0;
    margin-right: 20px;
}

.azs-marker-route-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: url("../img/route_icon.svg") no-repeat center/100%;
    cursor: pointer;
    transition: .3s;
}

.azs-marker-info-block {
    margin-bottom: 28px;
}

.azs-marker-info-item {
    display: flex;
    font-size: 16px;
}

.azs-marker-info-item + .azs-marker-info-item {
    margin-top: 8px;
}

.azs-marker-info-item-title {
    width: 166px;
    flex-shrink: 0;
}

.azs-marker-info-item-value {
    width: 100%;
    font-weight: 700;
}

.azs-marker-block {

}

.azs-marker-block-title {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 16px;
}

.azs-marker-prices-list {
    width: calc( 100% + 16px );
    margin: 0 -8px;
    display: flex;
    flex-flow: wrap;
}

.azs-marker-price-item {
    width: calc( 25% - 16px );
    margin: 0 8px 16px;
    height: 72px;
    padding: 16px;
    background: #F7F3EF;
    border-radius: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.azs-marker-price-item-title {
    background: #B6000B;
    flex-shrink: 0;
    margin-right: 8px;
    width: 48px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: #fff;
}

.azs-marker-price-item-value {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #181818;
}

.azs-marker-services-block {
    margin-top: 12px;
}

.azs-marker-services-list {
    width: calc( 100% + 16px );
    margin: 0 -8px;
    display: flex;
    flex-flow: wrap;
}

.azs-marker-service-item {
    width: calc( 25% - 16px );
    margin: 0 8px 16px;
    height: 144px;
    padding: 20px;
    background: #fff;
    border: 1px solid #B9B8B5;
    border-radius: 28px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
}

.azs-marker-service-item-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.azs-marker-service-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #000 url("../img/service_item.svg") no-repeat center/50%;
}

/*.azs-marker-service-item-icon.service_wc {*/
/*    background-image: url("../img/services/bathtub.svg");*/
/*}*/

/*.azs-marker-service-item-icon.service_wi_fi {*/
/*    background-image: url("../img/services/wifi-high.svg");*/
/*}*/

/*.azs-marker-service-item-icon.service_store {*/
/*    background-image: url("../img/services/shopping-cart.svg");*/
/*}*/

/*.azs-marker-service-item-icon.service_coffee {*/
/*    background-image: url("../img/services/coffee.svg");*/
/*}*/

.azs-marker-service-item-icon.service_wi_fi {
    background: #000 url("../img/services/service_wi_fi.svg") no-repeat center/55%;
}

.azs-marker-service-item-icon.service_wc {
    background: #000 url("../img/services/service_wc.svg") no-repeat center 52%/55%;
}

.azs-marker-service-item-icon.service_store {
    background: #000 url("../img/services/service_store.svg") no-repeat center/55%;
}

.azs-marker-service-item-icon.service_coffee {
    background: #000 url("../img/services/service_coffee.svg") no-repeat center 32%/50%;
}

.gm-style .gm-style-iw-c, .gm-style .gm-style-iw-d {
    padding: 0 !important;
    width: 720px !important;
    max-width: 720px !important;
    max-height: 750px !important;
    overflow: hidden !important;
}

.gm-style-iw-ch {
    display: none;
}

.gm-style-iw-chr {
    position: absolute;
    top: 0;
    right: 0;
}

.gm-style-iw-chr > button {
    width: 44px !important;
    height: 44px !important;
    position: absolute !important;
    top: 36px !important;
    right: 36px !important;
    background: url("../img/close_icon.svg") no-repeat center/100% !important;
}

.gm-style-iw-chr > button > span {
    display: none !important;
}

.azs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100vh;
    display: none;
}

.close-azs-popup-btn {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 36px;
    right: 36px;
    background: url('../img/close_icon.svg') no-repeat center / 100%;
    cursor: pointer;
}

.azs-popup {
    width: 100%;
    max-width: 720px;
    background: #fff;
    box-sizing: border-box;
    padding: 36px;
    border-radius: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.azs-map-popup-filters-list {
    width: 100%;
    display: flex;
    flex-flow: wrap;
}

.azs-map-popup-filter-item {
    width: 50%;
    padding: 0 20px 0 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 20px;
    transition: .3s;
    cursor: pointer;
}

.azs-map-popup-filter-item:before {
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid #B9B8B5;
    border-radius: 50%;
    background: #fff;
    transition: .3s;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.azs-map-popup-filter-item.active:before {
    background: #fff url("../img/checked_icon.svg") no-repeat center/100%;
    transition: .3s;
    border-color: #EBE7DC;
}

.azs-map-popup-filters-buttons-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.clear-map-filters-btn {
    font-size: 16px;
    white-space: nowrap;
    line-height: 1.5;
    cursor: pointer;
    transition: .3s;
    color: #B6000B;
    font-weight: 600;
}

.clear-map-filters-btn .btn-inner {
    padding-left: 28px;
    background: url("../img/trash_icon.svg") no-repeat left center/20px;
}

.clear-map-filters-btn:hover {
    transition: .3s;
    filter: brightness(1.25);
}

.apply-map-filters-btn {
    width: 50%;
    white-space: nowrap;
}

.azs-map-route-link {
    display: none;
}

.azs-map-route-info {
    display: none;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    border-radius: 48px;
    background: #EBE7DC;
    width: 100%;
    margin-top: 24px;
    padding: 2px 12px 2px 18px;
    min-height: 64px;
    font-size: 16px;
    color: #181818;
    flex-flow: wrap;
}

.azs-map-route-duration {
    padding: 8px 12px 8px 42px;
    background: #F7F3EF url("../img/duration_icon.svg") no-repeat left 12px center/20px;
    border-radius: 48px;
    font-weight: 600;
    color: #181818;
    white-space: normal;
    margin: 6px 0;
}

.azs-map-route-distance {

}

.azs-map-route-summary {

}

.azs-map-route-info-main {
    display: inline-flex;
    min-height: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column;
    padding: 5px;
}

.azs-map-points-block {
    margin-bottom: 20px;
}

.azs-map-point {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.azs-map-point + .azs-map-point {
    position: relative;
    margin-top: 20px;
}

.azs-map-point + .azs-map-point:before {
    content: '';
    width: 2px;
    height: 38px;
    background: url("../img/dotted_line.svg") no-repeat center/100%;
    position: absolute;
    left: 15px;
    bottom: calc( 100% - 8px );
    z-index: 0;
    display: block;
}

.azs-map-point-label {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    background: #181818;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.azs-map-point-item {
    width: 100%;
    height: 48px;
    padding: 12px 53px 12px 16px !important;
    background: #F7F3EF url("../img/geolocation_icon.svg") no-repeat right 16px center/20px !important;
    border-radius: 48px;
    font-size: 16px;
    line-height: 1.5;
    color: #181818;
    border: 1px solid #B9B8B5;
    font-weight: 600;
    margin: 0 !important;
}

.destination-point-select {
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    background: #F7F3EF url("../img/arrow_down_icon.svg") no-repeat right 18px center/16px;
    border-radius: 48px;
    font-size: 16px;
    line-height: 1.5;
    color: #181818;
    border: 1px solid #B9B8B5;
    font-weight: 600;
}

.home-slide-img {
    width: 100%;
    height: 100%;
}

.home-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sws-home-slide .home-slide-wp {
    min-height: 0;
}

.sws-home-slide .home-slide-circle-left, .sws-home-slide .home-slide-circle-right {
    /*display: none;*/
}

.sws-home-slide-img {
    height: auto;
    overflow: hidden;
}

.sws-home-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
}

.sws-slide-title {
    width: 100%;
    max-width: 900px;
    font-size: 65px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
}

.sws-home-slide-mobile-img {
    display: none;
}

.sws-loyalty-table td {
    padding: 20px;
    vertical-align: top;
}

.sws-loyalty-table td h2, .sws-loyalty-table td h3 {
    margin: 0 auto 10px;
}

.home-price-lists {
    flex-flow: wrap;
    justify-content: center;
}

.azs-popup-inner {
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 !important;
    display: block !important;
}

.hidden-input {
    display: none !important;
}

.azs-popup .btn-form {
    width: 100%;
    margin-top: 10px;
}

.azs-popup .wpcf7-form > div > p {
    padding: 0;
}

.news-list-t {
    margin-top: 24px;
}

.sws-post-featured-image {
    border-radius: 10px;
    margin: 24px auto 0;
}

.news-lists__sidebar .news-list-t {
    margin-top: 24px;
}

.sws-date-image-block {
    width: 100%;
    position: relative;
    margin: 24px auto;
}

.sws-date-image-block .sws-post-featured-image {
    margin: 0;
    border-radius: 48px;
}

.sws-date-image-block .news-date {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    margin: 0;
}

.azs-popup .wpcf7-form br {
    display: none;
}

@media (min-width: 1024px) {
    .home-price {
        padding: 40px 60px;
    }
}

@media screen and (max-width: 1499px) {
    .home-slide-info {
        flex-flow: column;
        justify-content: flex-end;
        gap: 30px;
    }

    .sws-slide-title {
        max-width: 800px;
        font-size: 50px;
    }

    #map-builder {
        height: 600px;
    }

    .azs-map-items-list {
        max-height: 478px;
    }

    .azs-map-block {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 1350px) {
    .sws-slide-title {
        max-width: 700px;
        font-size: 50px;
    }
}

@media screen and (max-width: 1249px) {
    .home-slide-info {
        padding: 30px 0 32px 40px;
        gap: 25px;
    }

    .sws-slide-title {
        font-size: 42px;
    }

    .azs-map-block {
        margin-bottom: 80px;
        flex-flow: wrap;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0;
    }

    .azs-map-info {
        width: 100%;
        order: 2;
        border-radius: 0;
        padding: 30px 40px;
    }

    .azs-map {
        width: 100%;
        order: 1;
        padding: 0;
        border-radius: 0;
    }

    #map-builder {
        border-radius: 0;
        height: 75vh;
        min-height: 500px;
    }

    .azs-map-items-list {
        padding: 0;
        max-height: none;
    }

    .azs-map-items-list::-webkit-scrollbar {
        width: 0;
    }

    .azs-map-tabs-nav {
        margin-bottom: 25px;
    }

    .azs-marker-block-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .azs-marker-top {
        margin-bottom: 15px;
    }

    .azs-marker-title {
        font-size: 24px;
    }

    .azs-marker-route-btn {
        width: 36px;
        height: 36px;
    }

    .gm-style-iw-chr > button {
        width: 36px !important;
        height: 36px !important;
        top: 25px !important;
        right: 30px !important;
    }

    .azs-marker-services-block {
        margin-top: 0;
    }

    .azs-marker-service-item {
        height: 80px;
        border-radius: 10px;
        padding: 8px 12px;
    }

    .azs-marker-service-item-title {
        font-size: 14px;
        font-weight: 600;
    }

    .azs-marker-service-item-icon {
        width: 34px;
        height: 34px;
    }

    .azs-marker-content {
        padding: 25px 30px 10px;
    }

    .azs-marker-price-item {
        height: 48px;
    }

    .azs-marker-price-item-title {
        height: 32px;
    }

    .azs-marker-info-item p {
        font-size: 14px;
    }

    .azs-marker-info-block {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1023px) {
    .home-price-lists {
        display: flex;
        flex: 0 1 100%;
        width: 100%;
        flex-flow: wrap;
    }

    .home-price-list {
        width: calc((100% - 50px) / 3);
    }

    .sws-slide-title, .sws-home-slide-tx {
        width: 100%;
        max-width: none;
        color: #fff !important;
        text-align: center;
    }

    .sws-slide-title {
        font-size: 26px;
    }

    .sws-home-slide .home-slide-wp {
        flex-flow: column;
        justify-content: space-between;
    }

    .sws-home-slide-info {
        order: 2;
        text-align: center;
        width: 100%;
        position: relative;
        padding: 25px 30px 50px;
    }

    .sws-home-slide .home-slider-count {
        bottom: -30px;
    }

    .sws-home-slide.home-slider .lSAction>a {
        bottom: -10px;
    }

    .home-slide-tx {
        margin: 0 auto;
    }

    .sws-home-slide-img {
        height: auto;
        overflow: visible;
    }

    .sws-home-slide.home-slider .lSAction>a {
        /*bottom: -35px;*/
    }

    .sws-home-slide .home-slider-count {
        /*bottom: -55px;*/
    }

    .sws-home-slide :where(.lSSlideOuter, .lSSlideWrapper) {
        overflow: visible;
    }
}

@media screen and (max-width: 767px) {
    .sws-date-image-block .sws-post-featured-image {
        border-radius: 16px;
    }

    .sws-date-image-block {
        margin-bottom: 12px;
    }

    .sws-date-image-block .news-date {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 16px;
    }

    .home-price-list {
        width: calc((100% - 25px) / 2);
        padding: 0;
    }

    .sws-loyalty-table tr {
        display: flex;
        flex-flow: wrap;
    }

    .sws-loyalty-table tr td {
        width: 100% !important;
    }

    .sws-home-slide-info {
        padding-top: 5px;
    }

    .sws-home-slide-desktop-img {
        display: none;
    }

    .sws-home-slide-mobile-img {
        display: block;
    }

    .azs-map-popup-filters-buttons-container {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 5px;
    }

    .close-azs-popup-btn {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 10px;
    }

    .azs-popup {
        width: 95%;
        border-radius: 12px;
        padding: 15px 20px 20px;
    }

    .azs-popup .azs-marker-top {
        margin-bottom: 20px;
    }

    #map-builder {
        height: 50vh;
    }

    .azs-map-info {
        padding: 30px 5%;
    }

    .azs-marker-content {
        width: 100%;
    }

    .gm-style .gm-style-iw-c, .gm-style .gm-style-iw-d {
        width: 95vw !important;
        max-width: 95vw !important;
        max-height: 400px !important;
    }

    .azs-marker-info-item {
        flex-flow: wrap;
    }

    .azs-marker-info-item-title {
        width: 100%;
    }

    .azs-marker-content {
        padding: 15px 15px 10px;
    }

    .azs-marker-title {
        font-size: 20px;
    }

    .azs-marker-route-btn {
        width: 30px;
        height: 30px;
    }

    .azs-marker-top {
        padding-right: 30px;
        margin-bottom: 6px;
    }

    .azs-marker-block-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .azs-marker-price-item {
        width: calc(50% - 8px);
        margin: 0 4px 8px;
        height: 32px;
        padding: 0 8px 0 0;
        justify-content: flex-start;
    }

    .azs-marker-prices-list {
        width: calc(100% + 8px);
        margin: 0 -4px;
    }

    .azs-marker-service-item {
        height: 38px;
        border-radius: 6px;
        padding: 8px 12px;
    }

    .azs-marker-price-item-title {
        height: 32px;
    }

    .azs-marker-price-item-value {
        font-size: 14px;
    }

    .azs-marker-services-block {
        margin-top: 5px;
    }

    .azs-marker-service-item {
        width: calc( 50% - 8px );
        margin: 0 4px 8px;
    }

    .azs-marker-service-item-icon {
        display: none;
    }

    .gm-style-iw-chr > button {
        width: 30px !important;
        height: 30px !important;
        top: 15px !important;
        right: 10px !important;
    }

    .azs-map-tabs-nav-item {
        font-size: 20px;
    }

    .azs-map-item {
        border-radius: 24px;
        padding: 20px;
        margin-bottom: 12px;
        border-width: 1px;
    }

    .clear-map-filters-btn {
        width: 100%;
        max-width: 400px;
        border: 1px solid #B6000B;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 48px;
        font-size: 15px;
    }

    .azs-map-btn {
        border-width: 1px;
        width: 100%;
        max-width: 400px;
        margin-top: 12px;
    }

    .show-azs-map-filters-btn {
        border-width: 1px;
    }

    .azs-map-item-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .azs-map-item-address {
        font-size: 14px;
    }

    .azs-map-btn-inner {
        font-size: 15px;
    }



}

.sws-post-media-gallery-slider:not(.slick-initialized) {
    opacity: 0;
}

.sws-post-video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.circle-left, .circle-right {
    display: none !important;
}
