.m-map .m-map-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    padding: 0 var(--lateralMargin);
    justify-content: space-between;
}

.m-map .text-inner {
    position: relative;
    display: block;
    width: 31.25vw; /*450px*/
    height: fit-content;
    padding: 1.12vw 0 0; /*16px 0 0*/
}

.m-map .text-inner .title {
  padding-bottom: 2.08vw; /*30px*/
}

.m-map .text-inner .text p {
    margin-bottom: 1.45vw; /*21px*/
}

.m-map .text-inner .text p:last-child {
    margin-bottom: 0px;
}

.m-map .text-inner .columns {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    padding-top: 2.083vw; /*30px*/
    row-gap: 1.67vw; /*24px*/
}

.m-map .text-inner .columns .column {
    position: relative;
    display: flex;
    flex-flow: column;
    width: 50%;
    height: fit-content;
    row-gap: .556vw; /*8px*/
}

.m-map .text-inner .columns .column .name {
    font-size: 1.5rem;
}

.m-map .text-inner .columns .column .text .map-marker-cta {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.m-map .text-inner .columns .column .text .map-marker-cta.is-active {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: .347vw; /*5px*/
}
    
.m-map .text-inner .columns .column .text svg {
    position: relative;
    display: inline-block;
    margin-left: .28vw; /*4px*/
    width: .55vw; /*8px*/
    height: .55vw; /*8px*/
}



.m-map .map-inner {
    position: relative;
    display: block;
    width: 60vw; /*870px*/
    height: 43.05vw; /*620px*/
    border-radius: 6px;
    overflow: hidden;
}

.m-map .map-inner .map {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.pin.marker-hotel {
    position: relative;
    display: block;
    width: 2.08vw; /*30px*/
    height: 2.78vw; /*40px*/
    background-image: url('../../assets/images/marker-01.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.pin.marker {
    position: relative;
    display: block;
    width: 2.08vw; /*30px*/
    height: 2.78vw; /*40px*/
    background-image: url('../../assets/images/marker-02.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.pin.marker.is-active,
.pin.marker-hotel.is-active {
    transform: scale(1.6) translate(0,-.694vw); /*0,-10px*/
    transform-origin: center;
    z-index: 9999;
}

.leaflet-popup-content-wrapper {
    border-radius: .278vw; /*4px*/
}

.leaflet-popup-tip-container {
    opacity: 0 !important;
}

.leaflet-fade-anim .leaflet-popup {
    bottom: 3.5vw !important;
}

.leaflet-popup-content {
    margin: .902vw 1.67vw .902vw 1.389vw; /*13px 24px 13px 20px*/
    min-height: 1px;

    text-align: center !important;
    font-family: 'Brandon Grotesque Regular', Arial, Helvetica, sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
}

.leaflet-popup-content-wrapper, 
.leaflet-popup-tip {
    background: var(--beige);
    color: var(--green) !important;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--green) !important;
    width: 1.388vw !important; /*20px*/
    height: 1.388vw  !important; /*20px*/
    font: 1.18vw/1.12vw Tahoma, Verdana, sans-serif !important; /*17px/16px*/
}


@media screen and (max-width: 1440px) {
    .m-map .text-inner {
        width: 450px;
    }

    .m-map .text-inner .title {
        padding-bottom: 30px;
    }

    .m-map .text-inner .text p {
        margin-bottom: 21px;
    }

    .m-map .text-inner .columns {
        padding-top: 30px;
        row-gap: 24px;
    }

    .m-map .text-inner .columns .column {
        row-gap: 8px;
    }

    .m-map .text-inner .columns .column .text .map-marker-cta.is-active {
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
    }
        
    .m-map .text-inner .columns .column .text svg {
        margin-left: 4px;
        width: 8px;
        height: 8px;
    }

    .m-map .map-inner {
        width: calc(100% - 490px);
        height: auto;
    }

    .pin.marker.is-active,
    .pin.marker-hotel.is-active {
        transform: scale(1.7) translate(0,-10px);
    }
}


@media only screen and (max-width: 1024px) {
    .m-map .text-inner {
        width: 100%;
        max-width: 450px;
    }

    .m-map .m-map-inner {
        flex-flow: column-reverse;
        justify-content:flex-start;
        row-gap: 55px;
    }

    .m-map .map-inner {
        width: 100%;
        height: 620px;
    }

    .pin.marker-hotel {
        width: 30px;
        height: 40px;
    }

    .pin.marker {
        width: 30px;
        height: 40px;
    }

    .pin.marker.is-active,
    .pin.marker-hotel.is-active {
        transform: scale(1.7);
    }

    .leaflet-popup-content-wrapper {
        border-radius: 4px; /*4px*/
    }

    .leaflet-fade-anim .leaflet-popup {
        bottom: 43px !important;
    }

    .leaflet-popup-content {
        margin: 13px 24px 13px 20px;
    }

    .leaflet-popup-content-wrapper, 
    .leaflet-popup-tip {
        background: var(--beige);
        color: var(--green) !important;
        box-shadow: 0 3px 14px rgba(0,0,0,0.4);
    }

    .leaflet-container a.leaflet-popup-close-button {
        width: 20px !important;
        height: 20px !important;
        font: 17px/16px Tahoma, Verdana, sans-serif !important;
    }
}


@media only screen and (max-width: 550px) {
    .m-map .map-inner {
        height: 144.18vw; /*620px*/
    }
}