@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
body {
    font-size: 20px;
}
:root {
    
    /* Font */
    --font-family: 'Lato', sans-serif;

    /* Logo */
    --logo-url: url(/custom/logo/ferrari-logo.png);

    /* Colors */
    --brand-select: #AA0000;
    --brand-progress: #AA0000;
    --brand-question: black;
    --brand-button: #AA0000;
    --bg-color: #ececec;
    
    /* Option box */
    --option-shadow: 0 5px 10px 0 rgba(0, 0, 0, .08);
    --option-border: none;

    --radius-option: 6px;
    --radius-nav-button: 100px;
    --radius-input: 10px;
    --radius-circle: 100px;

    /* Number box */
    --number-shadow: 0 5px 10px 0 rgba(0, 0, 0, .08);
    --number-border: 0;
    --number-radius: 6px;

    /* Form inputs */
    --input-border: none;
    --input-radius: 6px;
    --input-shadow: 0 5px 10px 0 rgba(0, 0, 0, .08);
    --input-outline: var(--brand-select);
}

.checkbox {
    padding: 20px 18px 12px;
    background: white;
    min-height: 60px;
}
.checkbox__input:checked ~ .checkbox__label::after {
    background: url(/custom/logo/ferrari-logo--white.svg) no-repeat center;
    width: 25px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 1px;
}

.checkbox__label::before {
    top: 0;
}

.checkbox__label {
    padding-left: 40px;
    font-size: 20px;
}

@media (min-width: 768px) {
    .multiple__input:checked ~ .multiple__label::after {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background: var(--brand-button) url(/custom/logo/ferrari-logo--white.svg) no-repeat center;
        background-size: 13px;
        position: absolute;
        top: -11px;
        left: 1px;
    }
}

.checkbox__label::before {
    width: 26px;
    height: 26px;
}

.radio__input:checked ~ .radio__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: var(--brand-button) url(/custom/logo/ferrari-logo--white.svg) no-repeat center;
    background-size: 13px;
    position: absolute;
    top: 1px;
    left: 1px;
}

.rangeSlider__handle {
    background: var(--brand-button) url(/custom/logo/ferrari-logo--white.svg) no-repeat center;
}

.question__main {
    text-align: left;
    line-height: 36px;
}

.question__secondary {
    text-align: left;
}

.header__logo-box {
    min-height: 75px;
}

.option__input:checked~.option__label {
    background: var(--brand-button) url(/custom/logo/ferrari-logo--white.svg) no-repeat 10px;
    background-size: 26px;
    padding-left: 25px;
}

.navigation__back, .navigation__next, .navigation__submit {
    font-size: 20px;
}

.header {
    padding: 5px 15px;
}

.progress__note {
    color: #333;
}

body.rtl .option__input:checked~.option__label {
    background: var(--brand-button) url(/custom/logo/ferrari-logo--white.svg) no-repeat right;
    background-size: 26px;
    background-position-x: calc(100% - 10px);
    padding-right: 25px;
    padding-left: 0px;
}

h1 p {
    /* font-size: 16px; */
    font-weight: 400;
    /* line-height: 26px; */
}

@media screen and (max-width: 560px) {    
    .checkbox__label {
        font-size: 16px;
    }
    .option__text {
        font-size: 16px;
    }
    .question__main {
        font-size: 18px;
    }
    .question__secondary {
        font-size: 16px;
    }
    .final-heading {
        font-size: 22px;
        line-height: 34px;
    }
}
/*
.navigation__back {
    display: none!important;
}
*/