﻿/* Splash */

.splash-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 2147483650;
}

    .splash-screen .splash-container {
        position: relative;
        top: 40%;
        width: 275px;
        margin: auto;
        text-align: center;
    }

.splash-container h4 {
    position: absolute;
    color: #fff;
    margin: 0;
    padding: 0;
    font-weight: normal;
    z-index: 900;
    left: -9px;
    top: 50px;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: #fff;
    font-size: 50px;
    font-weight: bold;
}

.splash-screen .spinner {
    margin: auto;
    margin-top: -5px;
    width: 75px;
    height: 50px;
    text-align: center;
    font-size: 10px;
}

    .splash-screen .spinner > div {
        height: 150px;
        width: 6px;
        margin-right: 4px;
        padding: 0px;
        display: inline-block;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .splash-screen .spinner .rect1 {
        background: #E15E3F;
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .splash-screen .spinner .rect2 {
        background: #E15E3F;
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .splash-screen .spinner .rect3 {
        background: #E15E3F;
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .splash-screen .spinner .rect4 {
        background: #E15E3F;
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .splash-screen .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
        background: #E15E3F;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}
