* {
    font-family: 'Quicksand';
}

.result {
    font-size: 50px;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
    padding-bottom: 5vh;
    font-weight: bold;
}



.result.geslaagd {
    color: Green;
}

.result.gezakt {
    color: red;
}

* {
    box-sizing: border-box;
}

.intro {
    height: 300px;
    background-color: #c7d655;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #eee;
}

nav {
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: space-between;
}

.next,
.uitslag,
.start,
.prev {
    cursor: pointer;
    padding: 15px;
    border: none;
    background-color: #00366b;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    gap: 20px;
}

.next svg,
.uitslag svg,
.start svg,
.prev svg {
    width: 20px;
    fill: #fff;
}

.label {
    background-color: green;
    display: inline-block;
    padding: 12px;
    padding-left: 22px;
    padding-right: 22px;
    border-bottom-right-radius: 8px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    left: 0px;
    top: 0px;
    position: absolute;
    z-index: 100;
}

.question {
    background-color: #fff;
    position: relative;
    padding: 20px;
    padding-top: 0x;
    margin: 4vw;
    max-width: 1200px;
    margin: 0px auto;
    margin-top: 120px;
}

.question .title {
    font-size: 30px;
    margin-bottom: 40px;
    color: #00366b;
}

.exit {
    background-color: #e64853;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 80px;
}

.exit svg {
    height: 50px;
    fill: #fff;
}

.has_images {
    flex-direction: row !important;
}

.has_images li {
    flex-direction: column-reverse !important;
}

.header {
    z-index: 100;
    background-color: #fff;
    display: flex;
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    gap: 30px;
    align-items: center;
    height: 60px;
    justify-content: space-between;
}

.header .logo {
    width: 200px;
    margin-right: 20px;
    margin-left: 20px;
}

.header .logo img {
    width: 100%;
}

.header .exit {
    padding: 5px;
    width: 200px;
}

.icon svg {
    width: 30px;
}

.timeLine {
    border-radius: 20px;
    overflow: hidden;
    background-color: #ccc;
    height: 30px;
    width: calc(100%);
    position: relative;
    display: flex;
    align-items: center;
}

.timeLine span.bar {
    height: 30px;
    background-color: #80bc5c;
}

.timeLine span.time {
    position: absolute;
    display: block;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.center-button {
    display: flex;
    justify-content: center;
    margin-bottom: 10vh;
}

.drag .container {
    display: flex;
    align-content: center;
    justify-content: center;
}

.drag .answers-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.drag .image {
    position: relative;
    max-height: 60vh;
    display: inline-block;
}

.drag .image img {
    max-width: 100%;
    max-height: 50vh;
    margin: 0px;
    padding: 0px;
}

.draggable {
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid black;
    font-weight: bold;
}

.droppable {
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
}

.input input {
    padding: 15px;
    width: 100%;
    font-size: 20px;
}

.title {
    font-weight: bold;
}

button:disabled {
    opacity: 0.3;
}

.has_image {
    display: flex;
    align-items: start;
}

.has_image .image {
    width: 50%;
    margin-right: 5%;
    max-height: 400px;
    object-fit: contain;
}

.has_image .right {
    width: 50%;
}

.multiple {
    display: flex;
    align-items: start;
}

.multiple .image {
    max-width: 50%;
    margin-right: 5%;
}

.multiple .buttons {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.multiple .buttons li {
    cursor: pointer;
    padding: 15px;
    width: 100%;
    background-color: #ccc;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.multiple .buttons li.active {
    background-color: green;
    color: #fff;
}

.multiple .buttons li.active .check {
    width: 40px;
}

.multiple .buttons li.active .check .not-selected {
    display: none;
}

.multiple .buttons li.active .check .selected {
    display: block;
    fill: #fff;
}

.multiple .buttons li.active .check svg {
    width: 20px;
}

.multiple .buttons li .check {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
}

.multiple .buttons li .check .selected {
    display: none;
}

.multiple .buttons li .check svg {
    width: 20px;
}

@media only screen and (max-width: 769px) {
    .multiple {
        display: block !important;
    }

    .multiple .image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .question {
        margin-top: 60px;
    }

    .question .title {
        font-size: 25px;
        margin-top: 10px;
    }
}

.drag .container {
    display: flex;
    align-content: center;
    justify-content: center;
}

.drag .answers-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.drag .image {
    position: relative;
    max-height: 60vh;
    display: inline-block;
}

.drag .image img {
    max-width: 100%;
    max-height: 50vh;
    margin: 0px;
    padding: 0px;
}

.draggable {
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid black;
    font-weight: bold;
    background-color: green;
    cursor: move;
    color: #fff;
}

.draggable.draggable-check svg {
    fill: #fff;
}

.droppable {
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
}

.droppable.current {
    color: #fff;
    font-weight: bold;
    background-color: Green;
}

.droppable.current svg {
    fill: #fff;
}

.input input {
    padding: 15px;
    width: 100%;
    font-size: 20px;
}

.title {
    font-weight: bold;
}

button:disabled {
    opacity: 0.3;
}

.has_image {
    display: flex;
    align-items: start;
}

.has_image .image {
    width: 50%;
    margin-right: 5%;
    max-height: 400px;
    object-fit: contain;
}

.has_image .right {
    width: 50%;
}

@media screen and (max-width: 749px) {
    .has_image {
        display: block;
    }

    .has_image .right {
        width: 100%;
    }

    .has_image .image {
        width: 100%;

    }
}

.multiple {
    display: flex;
    align-items: start;
}

.multiple .image {
    max-width: 50%;
    margin-right: 5%;
}

.buttons {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buttons li {
    cursor: pointer;
    padding: 15px;
    width: 100%;
    background-color: #ccc;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 749px) {
    .multiple .buttons li {
        cursor: pointer;
        padding: 5px;
    }
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 749px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}


@media only screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait),
only screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}



.buttons li.active {
    background-color: green;
    color: #fff F;
}

.multiple .buttons li.active .check {
    width: 40px;
}

.multiple .buttons li.active .check .not-selected {
    display: none;
}

.multiple .buttons li.active .check .selected {
    display: block;
    fill: #fff;
}

.multiple .buttons li.active .check svg {
    width: 20px;
}

.multiple .buttons li .check {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
}

.multiple .buttons li .check .selected {
    display: none;
}

.multiple .buttons li .check svg {
    width: 20px;
}

.w-100 {
    width: 100%;
}

.signup {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.signup .visual {
    width: 50%;
}

@media only screen and (max-width: 769px) {
    .signup {
        display: block;
    }
}

.signup form {
    padding: 30px;
    width: 50%;
}

@media only screen and (max-width: 769px) {
    .signup form {
        width: 100%;
    }
}

.signup form .error {
    background-color: red;
    padding: 12px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}

.signup form div {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.signup form div label {
    width: 160px;
    font-weight: bold;
}

.signup form div input {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.btn-aanmaken {
    background-color: green;
    padding: 12px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 22px;
    border: none;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.chooseType {
    display: flex;
    width: 100%;
    gap: 20px;
}

.chooseType div {
    padding: 20px;
    cursor: pointer;
    background-color: #eee;
    border-radius: 20px;
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.chooseType div img {
    width: 100%;
}

@media only screen and (max-width: 769px) {
    .chooseType {
        display: block;
    }

    .chooseType>div {
        margin-bottom: 30px;
    }

    .chooseType div {
        width: 100%;
        padding: 10px;
    }

    .chooseType img {
        width: 30% !important;
    }

    .buttons.has_images {
        display: block;
    }

    .buttons.has_images li {
        display: flex;
        margin-bottom: 5px;
        flex-direction: row !important;
    }

    .buttons.has_images li img {
        width: 240px !important;
    }
}
.preload{
    text-align: center;
}
.preload h1{
    color: #00366b;
}

@media only screen and (max-width: 769px) {
    .result {
        font-size: 30px;
        text-align: center;
    }
    .preload h1{
        color: #00366b;
        font-size: 30px;
    }
}