﻿/**************************\
    Map Display
\**************************/
.college-map {
    padding: 0 2vw 4vw 2vw;
}

    .college-map #map {
        height: 900px;
        width: 750px;
        margin: 0 auto;
        box-shadow: 0 5px 10px #ccc;
    }

@media (max-width: 768px) {
    .college-map {
        padding: 0 1vw 6vw 1vw;
    }

        .college-map #map {
            width: 740px;
        }
}

/* ≤ 600px */
@media (max-width: 600px) {
    .college-map {
        width: 100%;
        padding: 0 0 8vw 0;
    }

        .college-map #map {
            height: 600px;
            width: 90%;
        }
}

@media (max-width: 450px) {
    .college-map {
        width: 100%;
        padding: 0 0 12vw 0;
    }

        .college-map #map {
            height: 600px;
            width: 90%;
        }
}

/**************************\
    Map Info Windows
\**************************/
/*
#map .gm-style-iw-chr button {
    height: 24px !important;
    width: 24px !important;
}

    #map .gm-style-iw-chr button > span {
        height: 16px !important;
        width: 16px !important;
    }
*/

.custom-infowindow {
    font-family: 'proximamodules-nova', sans-serif;
    font-size: 1rem;
}

    .custom-infowindow div h2,
    .custom-infowindow div h3 {
        margin-bottom: 0;
        line-height: 1.1em;
    }

    .custom-infowindow .custom-infowindow-address {
        margin-bottom: 1em;
    }

    .custom-infowindow .custom-infowindow-contacts > b {
        display: block;
        font-weight: bold;
    }

    .custom-infowindow .custom-infowindow-links {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
