.gm-style-iw.gm-style-iw-c {
    max-height: none !important;
    padding: 20px !important;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-chr {
    display: none;
}

.gm-style-iw.gm-style-iw-c .gm-style-iw-d {
    max-height: none !important;
}

/* Force hide the close-x bar by default, to accommodate the hover tooltip infowindows */
.gm-style-iw-chr button {
    display: none !important;
}

/* Then, allow it to be restored by full-detail infowindows */
.gm-style-iw-chr.visible button {
    display: block !important;
}

#map,
#ll-google-map {
    height: 600px;
    width: 100%;
}

.map-container {
    display: flex;
    justify-content: space-between;
    background-color: #E0E3CE;
}

.map-container__map {
    flex-grow: 1;
}

.map-container__list {
    min-width: 360px;
    /* min-width: max-content; */
    /*height: 600px;
    overflow-x: hidden;
    overflow-y: auto; */
    /* padding: 0.5rem 0 1rem 0.4rem; */
    box-sizing: border-box;
}

.map-container__list h2 {
    width: 100%;
    
    margin: 0;
    padding: 0.5rem 0 0.6rem 1rem;
    
    font-family: "Cheltenham","Open Sans",sans-serif;
    font-size: 1.3rem;
    
    border-bottom: 1px solid rgba(0,0,0, 0.2);
    background-color: #80883D;
    color: #fff;
}

.map-container__list ul {
    list-style: none;
    
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    
    margin: 0;
    padding: 0.5rem 0 1rem 1.4rem;

    height: 540px;
    overflow-x: hidden;
    overflow-y: auto;
}

.map-container__list li {
    position: relative;
    display: flex;
    align-items: flex-start;

    padding-left: 20px;
    font-size: 0.9rem;
}

.map-container__list img.icon {
    position: absolute;
    top: 5px;
    left: 0;
}

.map-container__list a[data-map-location] {
    padding-right: 0.5rem;
}

.map-container__list button {
    transform: translateY(1px) !important;
    /* margin-top: 0 !important; */
    /* margin-right: 0.5rem !important;
    display: inline-flex !important; */
}


.map-container__list .tippy-box[data-theme~="light-border"] {
    background-clip: initial !important;
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0, 0.9);
    color: #333;
    border-radius: 8px;
}

@media(max-width: 768px) {
    .map-container {
        flex-direction: column;
    }

    .map-container__list {
        height: auto;
        padding: 1rem;
    }

    .map-container__list ul {
        display: block;
        column-count: 2;
    }
}

@media(max-width: 680px) {
    .map-container__list {
        min-width: 0;
    }

    .map-container__list li {
        align-items: flex-start;
    }
}

@media(max-width: 560px) {
    .map-container__list ul {
        column-count: 1;
    }
}




.info-card {
    position: relative;
    min-height:250px;
    width:400px;
    box-sizing:border-box;
}

.info-card--tooltip {
    --js-max-title-height: 40px;
    max-height: var(--js-max-title-height) !important;
    min-height: 0 !important;
}

.info-card .info-title {
    margin-bottom: 0.5rem;

    font-size: 24px;
    font-family: "Cheltenham";
    font-weight:bold;
    color:#00477f;
}

.info-card-close {
    all: unset;
    position: absolute;
    inset: 0 0 auto auto;

    display: flex;
    align-items: center;
    height: 13px;

    line-height: 1;

    font-family: "Open Sans",sans-serif !important;
    font-size: 30px !important;
    font-weight: 300 !important;

    transition: color 0.25s linear;
    cursor: pointer;

    color: #666 !important;
    background: transparent !important;
    border: none !important;
}

.info-card-close:active,
.info-card-close:hover {
    border: none !important;
    color: #000 !important;
}

.info-card .info-category {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    
    font-size:18px;
    font-family: "Open Sans", sans-serif;
    color:#00477f;
}

.info-card .info-category > img {
    width: 30px;
    margin-right: 1rem;
}

.info-card .info-card-bottom {
    display:flex;
    font-size:15px;
    font-family:"Open Sans", sans-serif;
    color: #331f00;
}

.info-card .info-thumb {
    width: 150px;
    min-width: 150px;
    padding-right: 15px;
}

.info-card .info-thumb > img {
    display: block;
    width: 100%;
}

/* The container of an .info-card, when it was invoked by hovering and is 
   not the full view, just a 'tooltip' view, title only */
body.gmap-tooltip-loading .gm-style-iw {
    opacity: 0 !important;
    transition: opacity 0.25s ease;
}

.gm-style-iw.hover-tooltip {
    padding: 0 !important;
}

.gm-style-iw.hover-tooltip .gm-style-iw-chr {
    display: none;
}

.gm-style-iw.hover-tooltip .info-card {
    padding: 0.5rem;
    width: fit-content !important;
}

.gm-style-iw.hover-tooltip .info-title {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
}

.info-btn {
    display: block;
    width: auto;
    margin: 0.5rem 0 0;

    font-family: "BreeSerif", Sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    
    background-color: var(--ll_theme_button_bg);
    color: var(--ll_theme_button_color);
    
    border-style: solid;
    border-color: #FFFFFF;
    border-width: 2px 2px 2px 2px;
    border-radius: 10px 10px 10px 10px;
}

.info-btn:hover {
    background-color: var(--ll_theme_button_color) !important;
    color: var(--ll_theme_button_bg) !important;
}

.info-btn .fa, .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa, .fab, .fad, .fal, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.info-content-info {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.info-content-info > div > div:not(last-child) {
    padding-bottom: 7px;
}

.info-content-info span {
    font-weight:bold;
}

/* LEGEND */
 .map-legend ul {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0;

    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.map-legend li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.map-legend img {
    display: block;
    width: 24px;
    height: auto !important;
}


/* LOCATIONS WRAP */
.locations-wrap {
    display:flex;
    justify-content: center;
    margin: auto;
    /* max-width: 80%;
    padding: 50px 20px; */
}

.locations-wrap .owned-properties {
    padding-right:65px;
}

.locations-wrap .title-wrap {
    position: relative;
    
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
}

.locations-wrap .title {
    flex-grow: 1;
    margin: 0;
    padding: 0;

    line-height: 1;
    font-family: Cheltenham;
    font-size: 42px;
    font-weight:bold;
}

.locations-wrap .img-wrap {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-top: 5px;
    width: 55px;
}

.locations-wrap .owned-properties .title {
    color:#00477f;
}

.locations-wrap .easements .title {
    color:#00703c;
}

.locations-wrap .tooltip {
    position: relative;
    color: #d67039;
    border: 1px solid #d67039;
    border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    font-size: 22px;
    margin-top: 5px;
    margin-left: 7px;
    cursor: pointer;
}

.locations-wrap .tooltip-bubble {
    display:none;
    color:black;
    position: absolute;
    width: 200px;
    height: auto;
    background-color: white;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid black;
    top: 0;
    right: 0;
}

.locations-wrap .tooltip-bubble span {
    font-family: "Open Sans", sans-serif !important;
}

.locations-wrap .tooltip-bubble.expanded {
    display:block;
}

.locations-wrap .content {
    width:100%;
}

.locations-wrap .content > ul {
    width: 100%;
    padding-left: 0;
    column-count:2 ;
}

.locations-wrap .content > ul > li {
    margin: 0 10px 0.75rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.locations-wrap .content > ul a {
    display: block;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 1.5 !important;
    break-inside: avoid;
}

.locations-wrap .close-tooltip-btn {
    background: transparent !important;
    color: black !important;
    padding: 3px !important;
    border: 0 !important;
    position: absolute !important;
    right: 10px !important;
    top: 5px !important;
}

.map-pointer-button {
    all: unset !important;
    cursor: pointer !important;
    margin-top: 0.25rem !important;
    width: 15px !important;
    display: flex !important;
}

.map-pointer-button img {
    width: 15px !important;
    min-width: 15px !important;
    max-width: 15px !important;
}

.locations-wrap .tippy-box[data-theme~="light-border"] {
    background-clip: initial !important;
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0, 0.9);
    color: #333;
    border-radius: 8px;
}

@media (max-width: 1150px){
    .locations-wrap {
        gap: 2%;
    }

    .locations-wrap .owned-properties,
    .locations-wrap .easements {
        padding-right: initial;
        flex-basis: 48%;
    }

    .locations-wrap .easements{
        width:100%;
    }
}


@media (max-width: 1080px) {
    .locations-wrap .title {
        font-size: 35px;
    }

    .locations-wrap .img-wrap {
        width: 25px;
    }

    .locations-wrap .tooltip {
        width: 20px;
        min-width: 20px;
        height: 20px;
        font-size: 15px;
    }
}

@media (max-width: 959px) {
    .locations-wrap .content > ul {
        column-count: 1;
    }

    .locations-wrap .owned-properties {
        padding:0;
    }
}

@media (max-width: 800px) {
    .locations-wrap .title-wrap {
        flex-direction: row-reverse;
        gap: 0.3rem;
    }

    .locations-wrap .img-wrap {
        display: none;
    }

    .locations-wrap .tooltip {
        margin-left: 0;
        transform: translateX(-5px);
    }
}

@media (max-width: 640px) {
    .locations-wrap .img-wrap {
        display: none;
    }

    .locations-wrap .title {
        white-space: wrap;
        line-height: 1;
    }
}

@media (max-width: 690px) {
    .map-legend ul {
        flex-direction: column;
        justify-content: flex-start;
        row-gap: 0.5rem;
        margin-left: 1rem;
    }
}

@media (max-width: 559px) {
    .locations-wrap .img-wrap {
        display:none;
    }
}

@media (max-width: 499px) {

    .locations-wrap .content > ul > li {
        width:100%;
        margin:0;
    }
}

@media (max-width: 466px){
    .locations-wrap .title{
        font-size: 35px;
        white-space:initial;
    }
}

@media (max-width: 420px){
    .locations-wrap .title{
        text-align:center;
    }
    .locations-wrap .title-wrap{
        justify-content:center;
    }
}

@media (min-width: 467px) and (max-width: 959px) {
    .locations-wrap .tooltip-bubble.expanded{
        top: -104px !important;
    }
}
