﻿/*

16px = 1rem
18px = 1.125rem
20px = 1.25rem
22px = 1.375rem
24px = 1.5rem
26px = 1.625rem
28px = 1.75rem
30px = 1.875rem
32px = 2rem

sm (small devices)
@media (max-width: 575px) {}
@media (min-width: 576px) {}

md (medium devices)
@media (max-width: 767px) {}
@media (min-width: 768px) {}

lg (large devices)
@media (max-width: 991px) {}
@media (min-width: 992px) {}
@media (min-width: 992px) {}

xl (extra large devices)
@media (max-width: 1199px) {}
@media (min-width: 1200px) {}

*/

/*font-family: myriad-pro, sans-serif;
font-weight: 400;
font-style: normal;

font-family: myriad-pro, sans-serif;
font-weight: 700;
font-style: normal;

font-family: poppins, sans-serif;
font-weight: 400;
font-style: normal;

font-family: poppins, sans-serif;
font-weight: 600;
font-style: normal;*/

.container {
    max-width: 767px;
}

html {
    /* prevents the browser from silently re-adjusting scroll position when
       an ajax-swapped section (images, video) changes height above the fold,
       which is what was fighting scrollToTop() */
    overflow-anchor: none;
}
body {
    font-family: myriad-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.2;
    color: #A62B4E;
    background-color: #FF9A9A;
}
html, body {
    font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;
    color: #5F3E2B;
}
h1 {
    font-size: 6rem;
    line-height: 1;
}
h2 {
    font-size: 3rem;
    line-height: 1.2;
}
h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}
h4 {font-size: 1.25rem;}
h5 {font-size: 1rem;}
h6 {font-size: 0.75rem;}

p {margin-bottom: 1.5rem;}

a {
    color: #fff;
    text-decoration: underline;
}
a:hover {
    color: #fff;
    text-decoration: none;
}
strong {
    font-weight: 600;
}

td.noWrap{
     white-space: nowrap;
}
td.maxWidth{
    width:100%;
}

/* Input */
.required-field {
    display: none;
}
inputErr {
    background-color: #ffe5e5;
}

.btn.submit-loader,
.btn.submit-loader:hover {
    color: transparent !important;
    background: transparent url("/images/submit-loader.gif") center center no-repeat !important;
}

/* Input */
input[type=checkbox] {
    vertical-align: top;
    margin-top: 6px;
}
input[type=radio] + label,
input[type=checkbox] + label {
    margin-left: 4px;
    margin-right: 10px;
    margin-bottom: 0;
    display: inline-block;
}
.required-field {
    display: none;
}
.inputErr {
    background-color: #ffe5e5;
}
table.inputErr,
span.inputErr {
    border-radius: 4px;
}
table.inputErr td,
span.inputErr,
div.RadAsyncUpload.inputErr {
    padding: 10px;
}

/* buttons */
.btn-primary {
    background-color: #D91E49 !important;
    border-color: #D91E49 !important;
    border-width: 2px !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
    width: 100% !important;
}
.btn-primary:hover,
.btn-primary.active,
.btn-primary:focus {
    background-color: #fff !important;
    border-color: #D91E49 !important;
    color: #D91E49 !important;
    text-decoration: none !important;
}

.btn-primary.green {
    background-color: #81AD6D !important;
    border-color: #81AD6D !important;
}

.RadAjaxPanel {
    width: 100%;
}

/* sections*/
.section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: #E6D3CA;
}
.section .container,
.section .row,
.section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    
}
.section-content {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 60px;
    color: #5F3E2B;
    font-size: 1rem;
    font-weight: 400;
}
@media (max-width: 767px) {
    .section-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-content-footer {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
}
/* Telerik wraps the question/explanation content in #Q1-#Q5 in three nested
   divs (.RadAjaxPanel > div#RadAjaxPanelN (no class) > .RadAjaxPanel), which
   breaks the .section-content-footer margin-top:auto bottom-alignment since
   the footer is no longer a direct flex child of .section-content. Making
   every wrapper level a flex column that fills the remaining space lets the
   footer's margin-top:auto reach all the way through and push it to the
   bottom again. Telerik also leaves an empty duplicate .RadAjaxPanel sibling
   behind on the ajax-updated path, so :has() scopes this to only the
   wrappers that actually lead to a footer - otherwise the empty duplicate
   would claim an equal share of the growth and the footer would fall short
   of the bottom. */
.section-content .RadAjaxPanel:has(.section-content-footer),
.section-content .RadAjaxPanel > div:not([class]):has(.section-content-footer) {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}
.section-content-footer {
    margin-top: auto;
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
    align-self: stretch;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    padding-top: 10%; /* ≈ height of the wave */
    padding-left: 60px;
    padding-right: 60px;
 }

.section-bg-footer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}
.section-content-footer .btn {
    position: relative;
    z-index: 1;
    margin: 0;
}

/*start*/
#start .section-content {
    position: relative;
    color: #A62B4E;
    background-color: #fff;
}
#start img.visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
#start .start-text {
    padding-top: 80px;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 2.25rem;
}
@media (max-width: 767px) {
    #start .start-text {
        font-size: 2rem;
    }
}
#start .start-text h3 {
    color: #fff;
    font-size: 2.75rem;
}
#start .start-text .btn-primary {
    width: auto !important;
    border-color: #fff !important;
    border-radius: 50px !important;
}
#start .section-content-footer {
    position: relative;
    z-index: 1;
}
#start .section-content-footer .logo {
    position: relative;
    z-index: 1;
    width: 200px;
    height: auto;
}

/*start2*/
#start2 .section-content {
    justify-content: center;
    color: #A62B4E;
    background-color: #fff;
}
#start2 .section-content h3 {
    margin-top: auto;
    color: #A62B4E;
    font-size: 3rem;
}
#start2 .section-content-footer .btn-primary {
    border-color: #fff !important;
    border-radius: 50px !important;
}

/*intro*/
#intro .section-content {
    color: #4D4D4F;
    background-color: #fff;
}
#intro .section-content h3 {
    color: #D91E49;
    /*font-size: 3rem;*/
}
#intro strong {
    color: #A62B4E;
}

.section-content-footer .btn-primary {
    border-color: #fff !important;
    border-radius: 50px !important;
}

/*questions*/
#Q1 .section-content,
#V2 .section-content,
#Q2 .section-content,
#Q3 .section-content,
#Q4 .section-content,
#Q5 .section-content,
#result .section-content{
    background-color: #FF9A9A;
}
#Q1 .question,
#V2 .question,
#Q2 .question,
#Q3 .question,
#Q4 .question,
#Q5 .question,
#result .result-score {
    margin-left: -60px;
    margin-right: -60px;
    padding-top: 20px;
    padding-bottom: 100px;
    width: calc(100% + 120px);
    align-self: stretch;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 60px;
    padding-right: 60px;
    overflow: hidden; /* clips the rotated image */
}
#Q1 .question-bg-header,
#V2 .question-bg-header,
#Q2 .question-bg-header,
#Q3 .question-bg-header,
#Q4 .question-bg-header,
#Q5 .question-bg-header,
#result .question-bg-header {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(180deg);
    transform-origin: center center;
}
#Q1 .question h3,
#V2 .question h3,
#Q2 .question h3,
#Q3 .question h3,
#Q4 .question h3,
#Q5 .question h3,
#result .result-score h3 {
    padding-bottom:30px;
    z-index: 1;
    color: #fff;
}

#Q1 .section-content .explanation,
#V2 .section-content .explanation,
#Q2 .section-content .explanation,
#Q3 .section-content .explanation,
#Q4 .section-content .explanation,
#Q5 .section-content .explanation {
    animation-delay: 1s;
}

.section-content .section-content-reference {
    margin-top: auto;
    font-size: x-small;
}


/*video*/
.video-wrap {
    position: relative;
    width: 100%;
}
.video-wrap .video {
    display: block;
    margin-left: -60px;
    margin-right: -60px;
    display: block;
    width: calc(100% + 120px);
    height: auto;
}
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}
.video-play img {
    display: block;
    width: 80px;
    height: auto;
}
.video-wrap.is-playing .video-play {
    display: none;
}

/* timer */
.timer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -60px;
    margin-right: -60px;
    padding: 10px 60px 10px 60px;
    width: calc(100% + 120px);
    font-size: 1.2rem;
    color: #fff;
    background-color: #A62B4E;
}
.timer .timer-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.timer .timer-label img {
    width: auto;
    height: 30px;
}
.timer .timer-score {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.timer .timer-score img {
    width: auto;
    height: 30px;
}
.timer .timer-clock {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.timer .timer-clock img {
    width: auto;
    height: 30px;
}
.timer .timer-progress {
    position: absolute;
    left: 0;
    top: CALC(100% - 2px);
    bottom: 0;
    width: 100%; /* full width for now – later you can animate it narrower */
    background-color: #FF9A9A;
    z-index: 1;
}

/* checkbox */
.section-content table.checkbox {
    width: 100%;
}
.section-content table.checkbox td {
    margin:0;
    padding: 0;
}
.section-content .checkbox input{
    display:none;
}
.section-content .checkbox label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 10px 0 10px 0;
    padding: 2px 10px 2px 2px;
    border: 1px solid #FFFAFA;
    background-color: #FFFAFA;
    border-radius: 10px;
    cursor: pointer;
}
.section-content .checkbox label div.char {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
    background-color: #FFFAFA;
    color: #D91E49;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 50px;
    min-height: 50px;
}
.section-content .checkbox label div.score {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #D91E49; 
    height: 50px;
    width: 80px;
    min-width: 80px;
    min-height: 50px;
    border-radius: 50px;
    margin-left: auto;
}
.section-content .collegue {
    width: 100%;
    text-align: right;
    margin-top: 20px;
}

/*error*/
.section-content .checkbox span.error input:checked + label {
    background-color: #D91E49;
    border-color: #D91E49;
    color: #fff;
}
.section-content .checkbox span.error input:checked + label div {
    background-color: #D91E49;
}
.section-content .checkbox span.error label div.char {
    color: #fff;
}
.section-content .checkbox span.error label div.score {
    color: #fff;
}
    
/*correct*/
.section-content .checkbox span.correct input:checked + label {
    background-color: #658D1B;
    border-color: #658D1B;
    color: #fff;
}
.section-content .checkbox span.correct input:checked + label div {
    background-color: #658D1B;
}
.section-content .checkbox span.correct label div.char {
    color: #fff;
}

.section-content .checkbox span.correct label div.score {
    color: #fff;
}

/*result*/
span.result {
    display: flex;
    flex-direction: column;
    align-items: center;
}
span.result-error {
    color: #D91E49;
}
span.result-error h3 {
    color: #D91E49;
}
span.result-correct {
    color: #658D1B;
}
span.result-correct h3 {
    color: #658D1B;
}

/*explanation*/
.explanation {
}
.explanation-content {
    margin-top: 40px;
    margin-bottom:40px;
    padding: 20px;
    color: #4D4D4F;
    background-color: #F4E9E9;
    border-radius: 25px;
}
.explanation-content H3 {
    color: #A62B4E;
}
.explanation-footer {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}
.explanation-reference {
    font-size: x-small;
}
.explanation-score {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    width: fit-content;
    margin-top: -40px;
    background-color: #F41E49;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 10px;
}
.explanation-score img {
    width: 50px;
    height: auto;
    margin-bottom:-15px;
    margin-left:-15px
}


.hidden {
    display: none;
}

/* result */
#result.section .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #A62B4E;
}
#result.section .section-content h3 {
    color: #fff;
}

#result.section .section-content .result-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#result.section .section-content .result-score p {
    color: #fff;
    font-size: 1.5rem;
    z-index: 1;
}
#result .section-content .btn-primary.purple {
    border-color: #A62B4E !important;
    background-color: #A62B4E !important;
    border-radius: 50px !important;
    color: #fff;
}
#result .section-content .btn-primary.purple:hover {
    border-color: #A62B4E !important;
    background-color: #fff !important;
    color: #A62B4E;
}
#result .section-content .btn-primary.green {
    border-color: #658D1B !important;
    background-color: #658D1B !important;
    border-radius: 50px !important;
    color: #fff;
}
#result .section-content .btn-primary.green:hover {
    border-color: #658D1B !important;
    background-color: #fff !important;
    color: #658D1B;
}
#result .section-content .result-buttons {
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
    padding: 40px 60px 20px 60px;
    background-color: #FFBCBC;
    border-radius: 50px;
    color: #A62B4E;
}
    #result .section-content .result-buttons h3 {
        color: #A62B4E;
    }


/* reCaptcha */
@media (max-width: 991px) {
    .grecaptcha-badge {
        visibility: hidden;
    }
}

/* Animations */
.shake-horizontal {
    -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
    /* ----------------------------------------------
 * Generated by Animista on 2025-11-6 12:35:35
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
    /**
 * ----------------------------------------
 * animation shake-horizontal
 * ----------------------------------------
 */
    @-webkit-keyframes shake-horizontal {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

        10%, 30%, 50%, 70% {
            -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
        }

        20%, 40%, 60% {
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }

        80% {
            -webkit-transform: translateX(8px);
            transform: translateX(8px);
        }

        90% {
            -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
        }
    }

    @keyframes shake-horizontal {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

        10%, 30%, 50%, 70% {
            -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
        }

        20%, 40%, 60% {
            -webkit-transform: translateX(10px);
            transform: translateX(10px);
        }

        80% {
            -webkit-transform: translateX(8px);
            transform: translateX(8px);
        }

        90% {
            -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
        }
    }


.slide-in-top {
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
    /* ----------------------------------------------
 * Generated by Animista on 2026-1-15 9:5:14
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
    /**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
    @-webkit-keyframes slide-in-top {
        0% {
            -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slide-in-top {
        0% {
            -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }

.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
    /* ----------------------------------------------
 * Generated by Animista on 2026-1-15 9:7:38
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
    /**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
    @-webkit-keyframes slide-in-bottom {
        0% {
            -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slide-in-bottom {
        0% {
            -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1;
        }
    }


.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out 1.5s 2 both;
    animation: heartbeat 1.5s ease-in-out 1.5s 2 both;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-8-21 14:11:59
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}


    .jello-horizontal {
        -webkit-animation: jello-horizontal 0.9s both;
        animation: jello-horizontal 0.9s both;
    }
    /* ----------------------------------------------
 * Generated by Animista on 2026-1-16 14:7:58
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
    /**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
    @-webkit-keyframes jello-horizontal {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }

        30% {
            -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
        }

        40% {
            -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
        }

        50% {
            -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
        }

        65% {
            -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
        }

        75% {
            -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
        }

        100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
    }

    @keyframes jello-horizontal {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }

        30% {
            -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
        }

        40% {
            -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
        }

        50% {
            -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
        }

        65% {
            -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
        }

        75% {
            -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
        }

        100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
        }
    }

    .shake-top {
        -webkit-animation: shake-top 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
        animation: shake-top 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    }
    /* ----------------------------------------------
 * Generated by Animista on 2026-1-20 16:45:10
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
    /**
 * ----------------------------------------
 * animation shake-top
 * ----------------------------------------
 */
    @-webkit-keyframes shake-top {
        0%, 100% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
        }

        10% {
            -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
        }

        20%, 40%, 60% {
            -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
        }

        30%, 50%, 70% {
            -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
        }

        80% {
            -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
        }

        90% {
            -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
        }
    }

    @keyframes shake-top {
        0%, 100% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transform-origin: 50% 0;
            transform-origin: 50% 0;
        }

        10% {
            -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
        }

        20%, 40%, 60% {
            -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
        }

        30%, 50%, 70% {
            -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
        }

        80% {
            -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
        }

        90% {
            -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
        }
    }




/* nieuw */
.bounce-top {
    -webkit-animation: bounce-top 0.9s both;
    animation: bounce-top 0.9s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-2-27 9:57:7
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    25%, 55%, 75%, 87% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}

@keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-45px);
        transform: translateY(-45px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    25%, 55%, 75%, 87% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}

.wobble-hor-bottom {
    -webkit-animation: wobble-hor-bottom 0.8s both;
    animation: wobble-hor-bottom 0.8s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-2-27 9:59:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation wobble-hor-bottom
 * ----------------------------------------
 */
@-webkit-keyframes wobble-hor-bottom {
    0%, 100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    15% {
        -webkit-transform: translateX(-30px) rotate(-6deg);
        transform: translateX(-30px) rotate(-6deg);
    }

    30% {
        -webkit-transform: translateX(15px) rotate(6deg);
        transform: translateX(15px) rotate(6deg);
    }

    45% {
        -webkit-transform: translateX(-15px) rotate(-3.6deg);
        transform: translateX(-15px) rotate(-3.6deg);
    }

    60% {
        -webkit-transform: translateX(9px) rotate(2.4deg);
        transform: translateX(9px) rotate(2.4deg);
    }

    75% {
        -webkit-transform: translateX(-6px) rotate(-1.2deg);
        transform: translateX(-6px) rotate(-1.2deg);
    }
}

@keyframes wobble-hor-bottom {
    0%, 100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    15% {
        -webkit-transform: translateX(-30px) rotate(-6deg);
        transform: translateX(-30px) rotate(-6deg);
    }

    30% {
        -webkit-transform: translateX(15px) rotate(6deg);
        transform: translateX(15px) rotate(6deg);
    }

    45% {
        -webkit-transform: translateX(-15px) rotate(-3.6deg);
        transform: translateX(-15px) rotate(-3.6deg);
    }

    60% {
        -webkit-transform: translateX(9px) rotate(2.4deg);
        transform: translateX(9px) rotate(2.4deg);
    }

    75% {
        -webkit-transform: translateX(-6px) rotate(-1.2deg);
        transform: translateX(-6px) rotate(-1.2deg);
    }
}



.scale-in-hor-center {
    -webkit-animation: scale-in-hor-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-hor-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2026-8-21 13:54:59
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-hor-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-hor-center {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes scale-in-hor-center {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 1;
    }
}

.pulsate-fwd {
    -webkit-animation: pulsate-fwd 0.5s ease-in-out 2 both;
    animation: pulsate-fwd 0.5s ease-in-out 2 both;
}
/* ----------------------------------------------
 * Generated by Animista on 2026-8-21 15:32:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
