﻿:root {
    --primary-background-color: #1f4659;
    --back-next-button-color: #54b8df;
}



@font-face {
    font-family: "XeroxGlyph";
    src: url(../css/fonts/xeroxglyph/xeroxglyph-regular-webfont.eot);
    src: url(../css/fonts/xeroxglyph/xeroxglyph-regular-webfont.eot?#iefix) format('embedded-opentype'), url(../css/fonts/xeroxglyph/xeroxglyph-regular-webfont.woff) format('woff'), url(../css/fonts/xeroxglyph/xeroxglyph-regular-webfont.ttf) format('truetype'), url(../css/fonts/xeroxglyph/xeroxglyph-regular-webfont.svg#@@{icon-font-svg-id}) format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../css/fonts/ubuntu-regular.woff") format("woff2"), url("../css/fonts/ubuntu-regular.woff") format("woff");
}


html, body {
    height: 100%;
    margin: 0; /* remove default margin to avoid scrollbars */
}

.main {
    background-color: #1f4659;
    font-style: normal;
    font-size: x-large;
    color: #FFFFFF;
    text-align: center;
    padding: 0px;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.header-items {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    -webkit-align-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.header-items-left {
    margin-left: 40px;
    height: 100%;
    width: 20%;
    display: -webkit-flex;
    -webkit-align-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: start
}

.header-items-right {
    margin-right: 40px;
    height: 100%;
    width: 20%;
    display: -webkit-flex;
    -webkit-align-content: center;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end
}

.back-button {
    position: absolute;
    z-index: 99999;
    bottom: 20px;
    left: -20px;
    width: 200px;
    height: 80px;
    border-radius: 8px;
    border: 0;
    box-shadow: none;
    background-color: #54b8df;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-size: 30px;
    font-weight: 900;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.next-button {
    position: absolute;
    z-index: 99999;
    bottom: 20px;
    right: -20px;
    width: 200px;
    height: 80px;
    border-radius: 8px;
    border: 0;
    box-shadow: none;
    background-color: #54b8df;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-size: 30px;
    font-weight: 900;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


.main-button-parent {
    overflow: hidden;
    height: 150px;
    width: 45%;
    margin: 0 10px 20px;
    position: relative;
    border-radius: 12px;
    border: 0;
    background-color: #1f4659;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2), 0 6px 20px rgba(0,0,0,0.19);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* old Safari support */
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
    -webkit-align-items: center;
}

.main-button-parent > :first-child {
    position: relative;
    color: white;
    width: 80%;
    text-decoration: none;
    font-size: 2.8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* old Safari support */
    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
}




.cs-loader-inner {
    margin-top: -1rem;
    color: #FFF;
    padding: 0 100px;
    text-align: center;
}

    .cs-loader-inner label {
        font-size: 20px;
        opacity: 0;
        display: inline-block;
        color: #54b8df;
    }

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}



#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #ebf892;
    color: #425b76;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 24px;
    border-radius: 15px;
    font-weight: bold;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

