#loading_ring_container {
    position: fixed;
    top:0;
    left:0;
    background-color: rgba(7, 7, 7, 0.918);
    width:100%;
    height:100vh;
    text-align: center;
    z-index: 6000;
    display: none;
}
#loading_ring {
    margin-top:50vh;
    margin-left:50%;
    transform: translate(-50%, -50%);
    width:150px;
    height:150px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius:50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 15px;
    color: goldenrod;
    letter-spacing:4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px goldenrod;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#loading_ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid rgb(0, 153, 230);
    border-right: 3px solid rgb(0, 153, 230);
    border-radius:50%;
    animation: animateCircle 2s linear infinite;
}

#loading_ring  span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

#loading_ring span::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius:50%;
    background-color: rgb(0, 153, 230);
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px rgb(0, 153, 230);
}
#loading_eclipse_data_section {
    font-size: 13px;
    position:relative;
    bottom: 65px;
    margin: auto;
    text-align: center;
    color:white;
    line-height:1.6em
}
@keyframes animateCircle {
    0% {
        transform: rotate(0deg);
    }
    100%  {
        transform: rotate(360deg)
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }
    100%  {
        transform: rotate(405deg)
    }
}
@media only screen and (max-width:802px){
    #loading_ring {
        margin-top:35vh;
        margin-left:50%;
    }

}