:root {

    /* Font */
    --font-family: 'Noto Sans', sans-serif;

    /* Logo */
    --logo-url: url(/custom/logo/samsung.svg);

    /* Colors */
    --brand-select: #000;
    --brand-progress: #000;
    --brand-question: #000;
    --brand-button: #000;
    --bg-color: #f6f6f6;


    /* 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);
}

textarea {
    border-radius: 8px;
}
textarea:focus {
    outline: 1px solid var(--brand-button);
}
.header {
    background-color: var(--brand-button);
    padding: 20px;
}
.header__logo-box {
    min-height: 20px;
}