.oxy-map-sticky-wrapper {
    width: 100%;
    flex-shrink: 0;
}

.map-sticky {
    display: flex !important;
    flex-direction: column;
}

.map-sticky .ct-section-inner-wrap {
    width: 100% !important;
}

#oxy-google-location-map {
    position: relative;
    top: 0;
    transition: position 0.3s ease;
    width: auto;
}

.show-map-button {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: #4285F4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.show-map-button:hover {
    background: #3367D6;
}

.close-map-button {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 9999;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

/* Make map static for smaller devices */
@media (max-width: 992px) {

    .map-loading {
        position: relative !important;
    }

    .map-sticky {
        flex-direction: row !important;
    }

    .oxy-map-sticky-wrapper {
        position: relative !important;
    }

    .map-sticky>.ct-section-inner-wrap {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px;
     } 

    .map-sticky>.ct-section-inner-wrap>* {
        flex: 0 0 90%;
        max-width: 100%;
    } 
}


.map-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #555;
    background-image: url('https://i.imgur.com/llF5iyg.gif');
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: left center;
    padding-left: 30px;
    display: none;  /* default hidden */
}

.oxy-marker:hover {
    transform: scale(1.2);
    cursor: pointer;
}

@media (min-width: 992px) {
    .show-map-button {
        display: none !important;
    }
}