﻿@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700); 

#i21page-loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3333;
    display: none;
}

#spinner-logo {
    width: 150px;
    height: 75px;
}

.hidden-spinner, .hidden-cover {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .2s, opacity .2s linear;
}

.spinner-wrapper {
    max-height: 100%;
    overflow: hidden;
}

.spinner-container {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1F4F8;
    font-family: 'Open Sans',sans-serif;
    font-size: 20px;
}

.spinner-content {
    position: relative;
    width: 450px;
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 20%) 0px 2px 10px 0px;
    padding: 60px 0px 54px;
}

.spinner-linear-container {
    position: absolute;
    top: 0px;
    width: 100%;
    left: 0px;
    height: 5px;
    background-color: rgba(117, 73, 188, 0.098);
    overflow: hidden;
}

.spinner-linear {
    position: absolute;
    top: 0px;
    width: 160px;
    height: 100%;
    background-color: rgb(0, 45, 85);
    will-change: transform;
    animation-name: spinner-linear-animate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-timing-function: linear;
    backface-visibility: hidden;
}

.spinner-header {
    text-align: center;
}

.spinner-main {
    font-size: 20px;
    text-align: center;
    max-width: 80%;
    margin: 30px auto;
}

.spinner-footer {
    text-align: center;
    font-size: 12px;
    opacity: .8;
}

.spinner-link {
    color: rgb(0, 45, 85);
    text-decoration: underline;
}

.skeleton-loader {
    width: 100%;
    display: block;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
        ),
        #eeeeee;
    background-repeat: repeat-y;
    background-size: 50px 500px;
    background-position: 0 0;
    animation: shine 2s infinite;
    margin-bottom: 5px;
    border-radius: 3px;
    height: 20px;
    pointer-events: none;
}

.skeleton-loader > a {
    color: transparent !important;
}

@keyframes shine {	
    to {
        background-position: 100% 0, /* move highlight to right */ 0 0;
    }
}

@keyframes spinner-linear-animate {
    0% {
        transform: translateX(-160px);
    }

    30% {
        transform: translateX(152px) scale(1.2, 1);
    }

    100% {
        transform: translateX(880px) scale(1.3, 1);
    }
}