﻿body{font-family: 'Fira Sans';}
.error2 {
    display: none;
    font-size: 12px;
    padding-top: 5px;
}
.error2 {
    color: #ff0000!important;
}

.fs-11pt5px {
    font-size: 11.5px;
}

.loc-accuracy {
    display: none;
    margin: 10px 0;
}

/*Loader CSS*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader-location {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-box {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #3498db;
    border-top: 6px solid transparent;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
