.large_map {
    position: relative;
    width: 70%;
    margin-top: 80px;
}

.large_map_wrap {
    position: relative;
}

.interactive_map_heading {
    position: absolute;
    font-size: 18px !important;
    margin: 0;
    font-style: normal;
    font-family: 'noah_grotesqueextrabold';
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 200;
}

.small_interactive_map_heading {
    font-size: 11px !important;
}

.large_map h2 {
    margin-bottom: 30px;
}

.large_map p {
    width: 500px;
    margin: 0 auto 80px;
}

.map_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px auto;
}

.map_jump {
    position: absolute;
    margin-top: -250px;
}

.reverse_sides {
    flex-direction: row-reverse;
}

.map {
    width: calc(((100% - 96px) / 2));
}

.map_section_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    margin-top: -61px;
    margin-bottom: 20px;
    overflow: hidden;
}

.map_section_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.map_content {
    width: calc(((100% - 96px) / 2));
    margin-left: 96px;
}

.reverse_sides .map_content {
    margin-left: 0;
    margin-right: 96px;
}

.map_content h2 {
    margin-top: -5px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.map_subcontent {
    display: none;
}

.modal_remove {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: 999; 
}

.show {
    display: flex;
    transition: 0.4s all ease-in-out;
}

.close_button_wrapper {
    position: relative;
    z-index: 20;
    background-color: var(--light-grey);
    padding-left: 15px;
    padding-bottom: 15px;
    width: max-content;
    margin-left: auto;
}

.close_button {
    /* position: absolute; */
    top: 0;
    right: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.close_button i {
    /* position: absolute; */
    font-size: 20px;
    top: 15px;
    right: 15px;
    height: 42px;
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    background-color: var(--white);
    border: 2px solid var(--border-grey);
}

.map_modal {
    position: relative;
    background-color: var(--white);
    border: 2px solid var(--border-grey);
    box-sizing: border-box;
    z-index: 999;
    padding: 15px 10px 15px 15px;
    width: 700px;
    height: max-content;
    max-height: 700px;
    overflow-y: scroll;
    animation-name: animateup;
    animation-duration: 0.4s;
}

/* width */
.map_modal::-webkit-scrollbar {
    width: 4px;
}
  
/* Track */
.map_modal::-webkit-scrollbar-track {
    background: #E8E7E3;
}
  
/* Handle */
.map_modal::-webkit-scrollbar-thumb {
    background: #1D1D1B;
}

.modal_wrapper {
    position: relative;
    background-color: var(--light-grey);
    border: 2px solid var(--border-grey);
    padding: 15px;
    box-sizing: border-box;
}

.modal_wrapper h3 {
    margin-top: -10px;
    width: calc(100% - 61px);
    margin-bottom: -10px;
}

.modal_wrapper p {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal_wrapper p span {
    font-weight: 700;
}

.modal_wrapper p span i {
    width: 30px;
}

.modal_wrapper p span .fa-clone,
.modal_wrapper p span .fa-seedling {
    margin-left: 2px;
    margin-right: -2px;
}

.modal_wrapper p span .fa-wine-glass-alt {
    margin-left: 5px;
    margin-right: -5px;
}

.modal_wrapper p:last-of-type {
    margin-bottom: 0;
}

.modal_wrapper .map_separator {
    height: 2px;
    background-color: var(--border-grey);
    width: 100%;
    margin: 5px 0;
}

@keyframes animateup {
    from {bottom: -500px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@media (max-width: 1350px) {
    .map,
    .map_content {
        width: calc(((100% - 30px) / 2));
    }

    .map_content {
        margin-left: 30px;
    }

    .reverse_sides .map_content {
        margin-left: 0;
        margin-right: 30px;
    }
}

@media (max-width: 1250px) {
    .large_map {
        width: 100%;
    }

    .map_wrapper {
        margin: 150px auto;
    }
}

@media (max-width: 1000px) {
    .map_wrapper {
        flex-direction: column;
        margin: 96px auto 0 auto;
    }

    .map,
    .map_content {
        width: 100%;
    }

    .map_content,
    .reverse_sides .map_content {
        margin: 0;
        margin-top: 80px;
    }
}

@media (max-width: 900px) {
    #Layer_large_map {
        display: none;
    }
}

@media (max-width: 800px) {
    .large_map p {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .map_content {
        text-align: center;
    }
}