#map {
    height: calc(100vh - 120px);

    .controls {
        background-color: #fff;
        border-radius: 2px;
        border: 1px solid transparent;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        /* font-family: Roboto; */
        font-size: 15px;
        font-weight: 300;
        height: 30px;
            margin-top: 16px;
        outline: none;
        padding: 0 11px 0 13px;
        text-overflow: ellipsis;
        width: 400px;
    }

    .controls:focus {
        border-color: #4d90fe;
    }

    .title {
        font-weight: bold;
    }

    ul[role="menu"] li[role="menuitemradio"] {
        font-size: 14px !important;
        width: auto;
        /* Add padding and margin */
        padding: 6px 14px !important;
        /* Adjust padding as needed */
        margin: 5px !important;
    }
    ul[role="menu"] li[role="menuitemcheckbox"],label {
        font-size: 14px !important;
        width: auto;
        /* Add padding and margin */
        padding: 4px 8px !important;
        /* Adjust padding as needed */
        margin: 2px !important;
    }
}

* button [type="button"] {
    all: unset;

    &:hover {
        all: unset
    }
}


* [role="button"] {
    all: unset;

    &:hover {
        all: unset
    }
}
/* CSS to set font size of map type control to 14px on Google Maps */
button[title="Change map style"] {
    font-size: 14px !important;
    width: auto !important;
    /* Add padding and margin */
    padding: 6px 14px !important;
    /* Adjust padding as needed */
    margin: 5px !important;
}

#shoppingCartButton, #inquiryFormButton, #businessPageButton, #partnerRedirectButton {
    color: #fff;            /* Button text color */
    border: none;             /* Remove button border */
    padding: 10px 0 10px 0;   /* Adjust padding for smaller size */
    font-size: 18px;          /* Reduce font size for smaller text */
    cursor: pointer;          /* Add cursor pointer on hover */
    border-radius: 5px;       /* Add border radius for rounded corners */
    width: 100%;              /* Full width button */
    margin-top: 25px;         /* Add space above button */
}

#map .gmnoprint {
    width: 85px !important;
}

/* Adjust the styling of the keyboard shortcuts in Google Maps */
.gm-style .gm-style-cc a, .gm-style .gm-style-cc button, .gm-style .gm-style-cc span {
    white-space: normal !important;
}

/* CSS to hide map controls on screens smaller than 768px (typical mobile screens) */
@media screen and (max-width: 480px) {
    #map .controls {
        width: calc(100vw - 40vw);
    }
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 4px solid #f3f3f3;
    /* Light grey border */
    border-top: 4px solid #3498db;
    /* Blue border on top */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    /* Spin animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: block;
    max-width: 250px !important;
}

#map #infowindow-content #place-content {
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    top: -0.25em;
}

