@media screen and (min-width: 700px) {
    ::-webkit-scrollbar {
        width: 8px;
        background-color: rgba(0, 0, 0, 0);
        -webkit-border-radius: 100px;
    }

    ::-webkit-scrollbar:hover {
        background-color: rgba(0, 0, 0, 0.09);
    }

    ::-webkit-scrollbar-thumb:vertical {
        background: rgba(0, 0, 0, 0.5);
        -webkit-border-radius: 100px;
    }

    ::-webkit-scrollbar-thumb:vertical:active {
        background: rgba(0, 0, 0, 0.61);
        -webkit-border-radius: 100px;
    }
}

* {
    box-sizing: border-box;
    font-family: "Work Sans", sans-serif;
}

.full-page-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url('img/bg-img-bw.jpg');
    background-position: 30% 0;
    background-size: cover;
}

.full-page-message .message-wrapper {
    text-align: center;
    max-width: 400px;
    background-color: rgba(255,255,255,.7);
    padding: 20px;
    margin: 0 auto;
    margin-top: 10%;
}
.full-page-message .message-wrapper h1 {
    font-size: 20px;
    padding-bottom: 15px;
}

.loader-overlay {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 10vh;
    background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 700px) {
    .loader-overlay {
        height: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        top: 46px;
    }
}

#login-empty .overlay {
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#login-empty .showbox {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

#login-empty .loader {
    position: relative;
    margin: 0 auto;
    width: 75px;
}

#login-empty .loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

#login-empty .circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#login-empty .path {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -45px;
    stroke: white;
}

#start-screen {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

body {
    background-color: #EDEDED;
    font-family: "Work Sans", sans-serif;
    color: #53535C;
    padding: 0;
    margin: 0;
    height: 100vh;
}

body, #start-screen, redirect {
    background-image: url('img/bg-img-bw.jpg');
    background-position: 30% 0;
    background-size: cover;
}

@media screen and (max-width: 1000px) {
    body > .container {
        padding-left: 6px;
        padding-right: 6px;
    }

    body, #start-screen, .full-page-message {
        background-position: 90% 0;
    }
}

p {
    line-height: 1.4em;
}
