﻿.rcomui-overlay {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255,255,255,0.85);
    display: none;
}

    .rcomui-overlay.show {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        /*color: #2bbbe4*/
    }

    .rcomui-overlay h3 {
        font-size: 20px;
        font-weight: 400;
        text-transform: none;
    }

    .rcomui-overlay h6 {
        margin-top: 30px;
        font-size: 14px;
        color: #d23a2a;
    }

    .rcomui-overlay .fa {
        font-size: 50px;
        color: #d23a2a
    }

    .rcomui-overlay .loading-providers span {
        font-size: 13px;
        color: #d23a2a;
    }

    .rcomui-overlay .loading-providers .fa {
        font-size: 14px;
        margin-right: 5px;
    }

    .rcomui-overlay .loading-providers h4 {
        color: #d23a2a;
    }

    .rcomui-overlay .loading-providers .loaded * {
        color: green !important;
    }

.side-bar .rcomui-overlay h3 {
    font-size: 15px;
}


.fa-spin-custom, .glyphicon-spin {
    -webkit-animation: spin 3000ms infinite linear;
    animation: spin 3000ms infinite linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}