body {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}

.initial-loader {
    background: #666666!important;
    background: -moz-radial-gradient(center, ellipse cover, #666666 0%, #333333 100%)!important;
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #666666), color-stop(100%, #333333))!important;
    background: -webkit-radial-gradient(center, ellipse cover, #666666 0%, #333333 100%)!important;
    background: -o-radial-gradient(center, ellipse cover, #666666 0%, #333333 100%)!important;
    background: -ms-radial-gradient(center, ellipse cover, #666666 0%, #333333 100%)!important;
    background: radial-gradient(ellipse at center, #666666 0%, #333333 100%)!important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#666666, endColorstr=#333333, GradientType=1 )!important;

    position: relative;
    height: 100vh;
    line-height: 100vh;
    vertical-align: middle;
    text-align: center;
}

.initial-loader::after {
    content: "";
    background: url("../assets/logos/icon-bg.png") no-repeat center center fixed;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    left: 0;
    opacity: 0.25;
}
    
@keyframes flicker {
    0%   { opacity:1; }
    50%  { opacity:0.5; }
    100% { opacity:1; }
}
@-o-keyframes flicker {
    0%   { opacity:1; }
    50%  { opacity:0.5; }
    100% { opacity:1; }
}
@-moz-keyframes flicker {
    0%   { opacity:1; }
    50%  { opacity:0.5; }
    100% { opacity:1; }
}
@-webkit-keyframes flicker {
    0%   { opacity:1; }
    50%  { opacity:0.5; }
    100% { opacity:1; }
}
    
.initial-loader img {        
    -webkit-animation: flicker 0.75s infinite;
    -moz-animation: flicker 0.75s infinite;
    -ms-animation: flicker 0.75s infinite;
    -o-animation: flicker 0.75s infinite;
    animation: flicker 0.75s infinite;

    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);

    height: 56px;
    margin-bottom: 32px;
}

.initial-loader .page-spinner-bar {
    top: 52px!important;

    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

footer.initial-footer {
    position: fixed;
    bottom: 12px;
    text-align: center;
    left: 20px;
    right: 20px;
    line-height: 24px;
    font-size: 12px;
    min-height: 24px;
    max-height: 48px;
    color: #ddd;
    text-shadow: 0px 0px 5px #000;
}

footer.initial-footer:focus,
footer.initial-footer:hover {
    color: #eee;
}

footer.initial-footer a,
footer.initial-footer a:link,
footer.initial-footer a:visited {
    color: #fff;
}

footer.initial-footer a:focus,
footer.initial-footer a:hover {
    color: #2C0321;
}

footer.initial-footer a:active {
    color: #A51F60;
}