﻿#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 1085;
    background: rgba(255, 255, 255, 0.3);
}

    #loading .loading-inside {
        width: 120px;
        height: 120px;
        flex: 0 0 120px;
        max-width: 120px;
        line-height: 120px;
        font-size: 12px;
        color: #FF8900;
        letter-spacing: 0;
        text-align: center;
        position: relative;
    }

    #loading .loading-bg {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 120px;
        height: 120px;
    }

        #loading .loading-bg img {
            width: 100%;
        }

#wave {
    position: relative;
    text-align: center;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 231, 204, 0.85);
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
    border-radius: 100%;
    line-height: 105px;
}

    #wave .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 0 5px;
        background: #FF8900;
        animation: wave 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) infinite;
    }

        #wave .dot:nth-child(2) {
            animation-delay: -3s;
        }

        #wave .dot:nth-child(3) {
            animation-delay: -6s;
        }

@keyframes wave {
    0%, 60%, 100% {
        transform: initial;
    }

    30% {
        transform: translateY(-15px);
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating {
    animation: rotating 1s linear infinite;
}

.icheckbox_square-grey, .iradio_square-grey {
    transform: scale(0.9);
    margin-right: 3px;
    position: relative;
    top: -2px;
}
