﻿
.loading-div {
    /*background-color: rgba(0,0,0,0.4);*/
}

    .loading-div p {
        font-family: Arial;
        font-weight: bold;
        font-size: large;
        top: 50%;
        left: 50%;
        margin-top: 31px;
        margin-left: -40px;
        text-align: center;
        margin-bottom: -15px;
    }

.loading {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.loading-wheel {
    position: absolute;
    width: 20px;
    height: 20px;
    margin-top: -5px;
    margin-left: -40px;
    top: 50%;
    left: 50%;
    border-width: 20px;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
}

.loading-wheel-small {
    width: 20px;
    height: 20px;
    margin-top: -5px;
    margin-left: -40px;
    top: 50%;
    left: 50%;
    border-width: 20px;
    border-radius: 50%;
    -webkit-animation: spin-reverse 1s linear infinite;
    position: absolute;
}

.wheel-container .loading-wheel {
    border-style: double;
    border-color: #525252 transparent;
}

.wheel-container .loading-wheel-small {
    border-style: double;
    border-color: #fac20a transparent;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(-360);
    }
}

@-webkit-keyframes spin-reverse {
    from {
        -webkit-transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}
