:root {
    /* Font */
    --font-family: 'Geometria', sans-serif;

    /* Logo */
    /* --logo-url: url(/custom/abs.svg); */
    --logo-url: url(/custom/logo/absjets.svg);

    /* Colors */
    --brand-select: #14284B;
    --brand-question: #000000;
    --brand-button: #CFAC66;
    --brand-progress: #14284B;
    --bg-color: #fff;
    --header-color: #14284B;
    --text-color: #0F1F3A;

    /* Option box */
    --option-shadow: none;
    --option-border: 0;

    --radius-option: 0px;
    --radius-nav-button: 4px;
    --radius-input: 10px;
    --radius-circle: 100px;

    /* Number box */
    --number-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    --number-border: 1px solid #DBDBDB;
    --number-radius: 0px;

    /* Form inputs */
    --input-border: 1px solid #ccc;
    --input-radius: 4px;
    --input-shadow: none;
    --input-outline: var(--brand-select);
}
input {
    accent-color: var(--brand-select);
}

.header {
    background: var(--header-color);
}
.header__logo-box {
    width: 155px;
}

.question__main {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-color);
}
.question__secondary {
    text-align: left;
    color: var(--text-color);
}
.numbers__notes {
    color: #777;
}
.numbers__label {
    border: var(--number-border);
}
.numbers__label:hover {
    border-color: var(--brand-select);
    /* border: ; */
}
.navigation {
    padding: 15px;
    justify-content: center;
}
.navigation * {
    text-transform: uppercase;
    border-radius: 0;
}
.navigation__next:hover {
    background: var(--brand-select);
}
.navigation__skip {
    padding: 15px 30px;
    background: transparent;
    color: #666;
    border-radius: 0;
    border: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 50px;
}
.navigation__skip:hover {
    border-color: var(--brand-select);
}
.navigation__back {
    color: var(--brand-button);
    text-transform: uppercase;
}
.navigation__back:hover {
    color: var(--text-color);
}
textarea {
    border: var(--input-border);
    box-shadow: var(--input-shadow);
    border-radius: var(--input-radius);
}

.progress__bar[value] {
    height: 10px;
}
@media (max-width: 580px) {
    .numbers__label {
        border-radius: 0;
        border-right-width: 0;
    }
    .numbers__number:last-of-type .numbers__label {
        border-right-width: 1px;
    }
    .numbers__number .numbers__label:hover {
        border-right-width: 1px;
        margin-right: -1px;
        position: relative;
        z-index: 2;
    }
}  
@media (min-width: 580px) and (max-width: 992px) {
    .numbers__number:last-of-type .numbers__label {
        border-right-width: 1px;
    }
} 
@media (min-width: 992px) {
    
    .navigation {
        gap: 40px;
        max-width: 1000px;
        margin: 25px auto;
        justify-content: center;
        padding: 15px;
    }

    .question__main {
        font-size: 38px;
    }
    .numbers__label {
        padding: 27px 33px;
        font-size: 18px;
        border: var(--number-border);
    }
    .numbers__number:last-of-type .numbers__label {
        border-right-width: 1px;
    }
}