/* ── Page Loader ─────────────────────────────────────────────────────────── */
.loader {
    position: fixed;
    display: table;
    overflow: hidden;
    background: #666;
    align-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 120px 90px 0 6%;
    width: calc(94% - 88px);
    height: calc(100% - 178px);
    z-index: 800;
    box-shadow: 0 0 20px 10px rgba(0,0,0,.02), inset 0 0 100px hsla(0,0%,0%,.3);
    border-top: solid;
    border-bottom: solid;
    border-color: #414141;
    border-width: 1px;
}
.loader-center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.loader .load-text {
    text-align: center;
    opacity: .8;
    margin-top: 20px;
    padding-bottom: 40px;
    letter-spacing: 1px;
}
.loader .spinner {
    margin: auto;
    width: 100px;
    height: 100px;
    position: relative;
}
.loader .double-bounce1,
.loader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
.loader .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0); transform: scale(0); }
    50%       { -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes sk-bounce {
    0%, 100% { transform: scale(0); }
    50%       { transform: scale(1); }
}

/* Information page hides the loader */
body.information-page .loader { display: none; }
