﻿#map-loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: black;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

#map-loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    /*background: red;*/
    z-index: 1000;
    border-radius: 50%;
    transform: translate(-50%, -100%);
    background-image: url("/img/Marker.svg");
    background-repeat: no-repeat;
    background-position: right, left;
}

#map {
    position: relative;
    min-height: 45vh;
}

#my-location-main-container {
    min-height: 47vh;
}

#my-location-main-contaner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#continue-btn {
    margin-top: 2em;
}
