#loader-wrapper {
    /* position: fixed; */
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 30%;
    width: 150px;
    height: 150px;
    margin: 75px 0 0 -75px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: #5c80d1;

    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;

    box-sizing: unset;
}

#loader:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: #393e46;

    -webkit-animation: spin 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation: spin 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-sizing: unset;
}

#loader:after {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: #5c80d1;

    -webkit-animation: spin 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation: spin 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-sizing: unset;
}

#ball {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #5c80d1;
    position: fixed;
    bottom: 55px;
    right: 55px;
    left: 55px;
    top: 55px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#label {
    display: block;
    position: relative;
    top: 33%;
    margin: 24px 0 0 0px;
}

h5 {
    color: #393e46;
    font-size: 1.777em;
    line-height: 1.2;
    text-align: center;
}
