@charset "UTF-8";
/* ----------------------------------------------------------------------- FONTS */ 
@font-face {
    font-family: roboto-light;
    src: url(../fonts/Roboto-Light.ttf);
    font-weight: thin;
}
@font-face {
    font-family: roboto-reg;
    src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: roboto-bold;
    src: url(../fonts/Roboto-Bold.ttf);
    font-weight: bold;
}

/* ----------------------------------------------------------------------- BASE STUFF */ 
body, html {
    width: 100%;
    overflow-x: hidden;
}
body {
    font-family: "roboto-reg", verdana, helvetica, arial, sans-serif;
    font-size: 100%;
    font-size: 1.2em;
    line-height: 1.2em;
    color: #1d1e20;
    background-color: #f4f2ed;
}
a:link {
    color: #09445D;
    text-decoration: none;
}
a:visited {
    color: #09445D;
    text-decoration: none;
}
a:hover {
    color: #09445D;
    text-decoration: none;
}
a:active {
    color: #09445D;
    text-decoration: none;
}

#page {
    background-color: #faf9f6;
    width: 90%;
    max-width: 480px;
    margin: 1em auto;
    padding-bottom: 4em;
    position: relative;
    border-radius: 4px;
    overflow-x: hidden;
}
header {
    background-color: #e7d7c3;
    color: white;
    padding: .5em;
    font-size: .75em;
    font-family: "roboto-bold", verdana, helvetica, arial, sans-serif;
    font-weight: bold;
    border-radius:  4px 4px 0em 0em;
    height: 1.5em;
}
#logo {
    height: 1em;
    margin: .25em;
    float: left;
}
#help {
    float: right;
    margin-right: .25em;
}
#item_con {
    width: 6400%
}
@supports (-ms-ime-align:auto) {
    #item_con {
    width: 6410%
}
}
.item {
    float: left;
    width: calc(100% / 64);
}
.question_con {
    padding: 0 1em;
    margin-bottom: 2em;
    height: 6em;
    display: flex;
}
.question {
    text-align: center;
    margin: auto;
}
.intro {
    text-align: left;
    margin: auto;
    margin-bottom: 2em;
    font-size: .8em;
    padding: 0 1em;
}
.outro {
    text-align: center;
    margin: auto;
    margin-bottom: 2em;
    font-size: .8em;
    padding: 0 1em;
}
.answer, #start, #beeindig {
    display: block;
    width: 150px;
    background-color: #a7ded0;
    margin: 1em auto;
    padding: .5em;
    text-align: center;
    text-transform: uppercase;
    font-size: .75em;
    font-family: "roboto-bold", verdana, helvetica, arial, sans-serif;
    font-weight: bold;
    border-radius: .5em;
    position: relative;
}
#start, #beeindig {
    margin-bottom: -2em;
    border-radius: 0;
    border: none;
}
#text_area {
    width: 80%;
    height: 6em;
    margin: 1em 10%;
    padding: .5em;
}
.answer:hover, #start:hover, #beeindig:hover {
    cursor: pointer;
    background-color: #54c3aa;
}
.answer_con a:link {
    color: #1d1e20;
    text-decoration: none;
}
.answer_con a:visited {
    color: #1d1e20;
    text-decoration: none;
}
.answer_con a:hover {
    color: #1d1e20;
    text-decoration: none;
}
.answer_con a:active {
    color: #1d1e20;
    text-decoration: none;
}
.answer_nr {
    position: absolute;
    left: -1.5em;
    opacity: .75;
    color: #e7d7c3;
}
.answer_selected {
    background-color: #e7d7c3;
}
.answer_selected:hover {
    cursor: auto;
    background-color: #e7d7c3;
}
#counter {
    display: none;
    width: 50px;
    text-align: center;
    font-size: .75em;
    font-family: "roboto-bold", verdana, helvetica, arial, sans-serif;
    font-weight: bold;
    position: absolute;
    left: 50%;
    bottom: 1em;
    margin-left: -25px;
    color: #bdad99;
}
.question_header {
    text-align: center;
    font-size: .65em;
    font-family: "roboto-bold", verdana, helvetica, arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #bdad99;
}
#progress_bar {
    width: 100%;
    height: 4px;
    background-color: #fff;
}
#progress {
    width: 0%;
    height: 4px;
    background-color: #54c3aa;
    transition: width .3s;
}
.nav_arrow {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 8px;
    background-size: 100%;
    opacity: .5;
    transition: opacity .3s;
    display: none;
}
.nav_arrow:hover {
    cursor: pointer;
    opacity: 1;
}
#nav_arrow_left {
    left: 8px;
    background-image: url(../beeld/arrow_left.png);
}
#nav_arrow_right {
    right: 8px;
    background-image: url(../beeld/arrow_right.png);
}
.login_screen {
    text-align: center;
}
.login_screen p {
    margin: 2em;
}
.login_screen td {
    padding: .5em;
}
.error {
    color: #b80b0b;
    font-size: .8em;
}
#new_account {
    width: 100%;
    text-align: center;
    font-size: .8em;
}
.fww {
    font-size: .7em;
    position: relative;
    top: 5em;
}
.login_screen {
    background-image: url(../beeld/faces.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}