#screens {
    display: none;
    background: #226cab;
}
#splash_screen {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

#splash_progress_container {
    position: fixed;
    bottom: 0;
    left: 2%;
    right: 2%;
    bottom: 2%;
    height: 100px;
    color: #434645;
    font-family: Calibri, Roboto, Droid Sans, Lucida;
    font-size: 18px;
    text-align: center;
}

#splash_screen_progress {
    border: 2px solid #333333;
    width: 100%;
    height: 30px;
    border-radius: 30px;
    background-color: #666666;
    overflow: hidden;
    margin-top: .5em;
    margin-bottom: .5em;
}

@keyframes progressbar {
    from {
        background-position: -57px 0;
    }
    to {
        background-position: 0px 0;
    }
}

#splash_screen_progress_filled {
    display: block;
    width: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, #226ca6 20px, #226ca6 40px), linear-gradient(to bottom, #226ca6, #32a3fa);
    background-size: 200% 100%;
    border-right: 2px solid #333333;
    height: 100%;
    border-radius: 30px;
    transition-property: width;
    transition: 0.4s linear;
    animation-name: progressbar;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#splash_screen_logo,#splash_screen_icon {
    width: 100%;
    height: 100%;
    text-align: center;
}

@media (min-device-height: 550px) {
    #splash_msign_logo {
        width: 80%;
        max-height: 30vh;
        margin-top: 5vh;
    }

    #splash_msign_icon {
        width: 50%;
        max-height: 40vh;
        margin-top: 5vh;
    }
}
@media (max-device-height: 549px), (min-device-height: 550px) AND (orientation: landscape) {
    #splash_msign_logo, #splash_msign_icon {
        display: inline-block;
        float: left;
        margin-left: 2.5%;
        margin-right: 2.5%;
        width: 45%;
        max-height: calc(100vh - 100px - 5vh);
        margin-top: 5vh;
    }
}