@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Bold.woff2') format('woff2'),
        url('../fonts/PTSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Italic.woff2') format('woff2'),
        url('../fonts/PTSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Regular.woff2') format('woff2'),
        url('../fonts/PTSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-BoldItalic.woff2') format('woff2'),
        url('../fonts/PTSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}





#art-map-container {
    /* font-family: 'PT Sans' !important;
    font-weight: 400; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    width: calc(100vw - 50px);
    max-width: 1920px;
    margin: 25px auto;
}


#art-map {
    height: calc(100vh - 175px);
    width: 100% !important;
    border-radius: 0 0 1.5vw 1.5vw;
}

#art-map-header {
    height: 125px;
    width: 100% !important;
    background: #00752f;
    color: #fff;
    border-radius: 1.5vw 1.5vw 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.art-map-header-left {
    width: 50%;
    padding-left: 50px;
}

.art-map-header-left h1 {
    font-size: 46px;
    line-height: 46px;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.art-map-header-left h1 span {
    display: block;
    font-size: 70%;
    font-weight: 400;
    padding-left: 100px;
}

.art-map-header-right {
    width: 50%;
    text-align: right;
    padding-right: 50px;
}

.art-map-header-right img {
    width: 13vw;
    max-width: 230px;
}

.gm-style-iw {
    padding: 0 !important;
}

.gm-style-iw-d {
    overflow: visible !important;
    max-height: none !important;
}

.gm-style-iw-c {
    max-height: none !important;
}

.gm-style-iw-tc {
    display: none !important;
}

.gm-style-iw-chr {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
}

.gm-style-iw-chr button {
    background: #fff !important;
    width: 36px !important;
    height: 36px !important;
    opacity: 1 !important;
    border-radius: 100% !important;
}

.gm-style-iw-chr button span {
    width: 20px !important;
    height: 20px !important;
    margin: 8px !important;
}

.artwork-details p {
    margin: 10px 0;
    line-height: 1.4;
    font-weight: 400;
    font-size: 14px;
}

.artwork-gallery {
    display: none !important;
}

.artwork-gallery.slick-initialized {
    display: block !important;
}

.artwork-gallery .slick-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.artwork-gallery .slick-next {
    display: flex;
    justify-content: center;
    align-items: center;
    right: 10px;
    width: 36px !important;
    height: 36px !important;
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 100% !important;
    z-index: 1;
}

.artwork-gallery .slick-next img {
    width: 15px !important;
    height: 15px !important;
    margin-left: 2px;
}

.artwork-gallery .slick-next::before {
    display: none !important;
}

.artwork-gallery .slick-dots {
    bottom: 10px !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    opacity: 1 !important;
    color: #fff !important;
}

.slick-dots li {
    margin: 0 0 !important;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #000 !important;
}

.slick-dots li:only-child {
    display: none !important;
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
    opacity: 0;
}

.expanded-content.show {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.expanded-content p {
    transition: opacity 0.3s;
    opacity: 0;
}

.expanded-content.show p {
    opacity: 1;
}



/* Responsive Design */

@media all and (max-width: 1025px) {

    .art-map-header-left h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .art-map-header-right img {
        width: 175px;
    }

    #art-map-header {
        height: 110px;
    }

}


@media all and (max-width: 982px) {

    .art-map-header-left {
        width: 70%;
        padding-left: 35px;
    }

    .art-map-header-right {
        width: 30%;
        padding-right: 35px;
    }

    .art-map-header-left h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .art-map-header-right img {
        width: 165px;
    }

    #art-map-header {
        height: 110px;
    }

}



@media all and (max-width: 600px) {

    #art-map-container {
        width: 100%;
        margin: 0;
    }

    #art-map-header {
        height: 75px;
        border-radius: 0;
    }

    .art-map-header-left {
        width: 60%;
        padding-left: 20px;
    }

    .art-map-header-right {
        width: 30%;
        padding-right: 20px;
    }

    .art-map-header-left h1 {
        font-size: 22px;
        line-height: 24px;
    }

    .art-map-header-left h1 span {
        font-size: 65%;
        padding-left: 0;
    }

    .art-map-header-right img {
        width: 135px;
    }

    #art-map {
        height: calc(100dvh - 75px);
        width: 100% !important;
        border-radius: 0;
    }


}
