/* Common elements found in the "global.css" */
/* footer {
    background-color: #f5f5f5;
    padding: 1em;
    text-align: center;
}

footer p {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
} */

#MASTER_RELOAD {

    transition: 0.3s;

    /* display: block; */
}

#SIDEBAR-1 {
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    width: 0px;
    background-color: red;
    z-index: 0;
    left: -30px;
}

#SIDEBAR-2 {
    overflow: hidden;
    height: 100%;
    position: fixed;
    top: 0;
    transition: 0.3s;
    width: 0px;
    background-color: #111412;
    z-index: 25;
    left: -30px;
}

#SUBCONTENT_PAYLOAD .row {
    padding-top: 0px;
}

.soft-cover {
    background-color: #0000009e;
    color: #666666;
    height: 100%;
    width: 100%;
    z-index: 8;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: 1.00;
    position: fixed;
    /* overflow:auto; */
}

#overlay {
    background: #111311;
    color: #666666;
    position: fixed;
    overflow: hidden;
    /* overflow:auto; */
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: 1.00;
}

#overlay2 {
    background: #111311;
    color: #666666;
    position: fixed;
    overflow: hidden;
    /* overflow:auto; */
    height: 100%;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    opacity: 1.00;
}

.spinner {
    position: relative;
    top: 270px;
    margin: 0 auto;
    height: 34px;
    width: 34px;
    animation: rotate 0.3s infinite linear;
    border: 3px solid #fbff00;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

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

.lds-ring {
    display: inline-block;
    position: relative;
    width: auto;
    height: 64px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    margin: 4px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

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