/* ==========================
   Upload Spinner
   ========================== */
#upload-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    text-align: center;
    width: 20vw;
    max-width: 160px;
    min-width: 80px;
}

.spinner {
    border: 1em solid #f3f3f3;
    border-top: 1em solid #84c015;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;
    animation: spin 0.8s linear infinite;
    box-sizing: border-box;
}

/* ==========================
   Fade Out Animation for Spinner
   ========================== */
#upload-spinner.fade-out {
    animation: fadeOut 1s ease-out forwards;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ==========================
   Success Checkmark
   ========================== */
#success-check {
    display: none;
    width: 100%;
    height: auto;
}

#success-check svg {
    width: 100%;
    height: auto;
    fill: #84c015;
    animation: checkmark-pop 0.3s ease-out;
}

/* ==========================
   Mobile Map
   ========================== */
