/* ============================================
   MATERIAL SYMBOLS SETUP
   ============================================ */
.button_back::before {
    font-family: 'Material Symbols Sharp';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

[dir="rtl"] .button_back::before {
    transform: scaleX(-1);
}

/* ============================================
   WIZARD STYLES
   ============================================ */
body {
    background-color: #fff;
}

.wizard_shaded {
    background-color: #f5f5f5;
}

.wizard_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.wizard_block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.wizard_inputs {
    padding: 0 32px 32px;
    width: 100%;
}

.nobackheader {
    padding-top: 32px;
}

/* BACK BUTTON REFACTOR */
.button_back {
    height: 48px;
    width: 48px;
    margin: var(--gap) 0 8px -8px;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_back::before {
    content: 'arrow_back';
    color: var(--color_base);
    font-size: 32px;
}

.wizard_header {
    font-size: 28px;
    line-height: 140%;
    font-weight: var(--font_bold);
    margin: 24px 0 24px;
}

.wizard_preview {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--font_labels);
    position: relative;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* ============================================
   RESPONSIVE (min-width: 600px)
   ============================================ */
@media all and (min-width: 600px) {
    .wizard_wrapper {
        flex-direction: row;
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .wizard_block {
        width: 50vw;
    }

    .wizard_inputs {
        padding: 0;
        margin: 10vh 10vw;
    }

    .nobackheader {
        padding-top: 60px;
    }

    .button_back {
        margin: 0 0 8px -8px;
        border-radius: 24px;
    }

    .button_back:hover {
        background-color: var(--color_input);
    }

    .wizard_preview {
        width: 50vw;
    } 
}