﻿.loader {
    border: 7.5px solid gray;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    overflow: initial;
    margin: auto;
    position: relative;
    top: 40%;
}

.circle {
    width: 20px;
    height: 20px;
    background: gray;
    border-radius: 50%;
    margin: -15px auto;
    border: 5px solid gray;
}

.inner-circle {
    width: 80px;
    height: 80px;
    background: #323232;
    border-radius: 50%;
    margin: 22px auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    height: 100%;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    background-color: rgba(85, 85, 85, 0.7);
    overflow-x: hidden;
    width: 100%;
    display: none;
}

.loading-overlay > .loading-content{
    width: 120px;
    height: 120px;
    overflow: initial;
    margin: auto;
    position: relative;
    top: 40%;
}
.loading-overlay > .loading-content > img {
    border: 2px solid white;
    padding: 5px;
    background: #000000;
    border-radius: 15px;
}
