body, html {
    font-family: Arial, Helvetica, sans-serif;
}

.ie-dialog-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.ie-dialog-container-title {
    display: flex;
    justify-content: center;
    margin: 25px;
}

.no-ie-support {
    width: 50%;
    height: 300px;
    background-color: #313945;
    /*display: none;*/
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    color: white;
    font-size: 1.8em;
    align-items: center;
    justify-content: center;
}

.ie-dialog-container-footer {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.browser-icon-container {
    display: flex;
    justify-content: space-around;
    margin-left: 25px;
    margin-right: 25px;
}

.browser-icon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
}

.browser-icon  img {
    height: 100px;
}

.browser-icon span {
    margin-top: 25px;
}

.cursor-pointer {
    cursor: pointer;
}

.splash-screen {
    width: 100%;
    display: flex;
    height: 100vh;
    align-items: center;
    background-color: #363636;
    text-align: center;
    vertical-align: middle;
    line-height: 100vh;
    position: fixed;
    z-index: 999;
}

.hide-splash-screen {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 1s, opacity 1s linear;
}

.loader {
    text-align: center;
}

.loader div {
    width: 2px;
    height: 50px;
    background-color: white;
    margin: 10px;
    display: inline-block;
}

.line1 {
    -webkit-animation: go-left 1.4s ease infinite;
    -o-animation: go-left 1.4s ease infinite;
    animation: go-left 1.4s ease infinite;
}

.line2 {
    -webkit-animation: rotate 1.4s ease infinite;
    -o-animation: rotate 1.4s ease infinite;
    animation: rotate 1.4s ease infinite;
}

.line3 {
    -webkit-animation: go-right 1.4s ease infinite;
    -o-animation: go-right 1.4s ease infinite;
    animation: go-right 1.4s ease infinite;
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes go-left {
    0% {
        margin-right: 10px;
    }
    50% {
        margin-right: 20px;
    }
    100% {
        margin-right: 10px;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(-180deg);
    }
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes go-right {
    0% {
        margin-left: 10px;
    }
    50% {
        margin-left: 20px;
    }
    100% {
        margin-left: 10px;
    }
}

