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;
}
.button_back {
    content: url(/svg/back.svg?45);
    height: 48px;
    width: 48px;
    padding: 8px;
    margin: var(--gap) 0 8px -8px;
    pointer-events: auto;
    cursor: pointer;
}
.wizard_header {
    font-size: 28px;
    line-height: 140%;
    font-weight: var(--font_bold);
    margin: 8px 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%;
    
}

@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; /*88px;*/
    }
    .button_back {
        margin: 0 0 8px -8px;
        border-radius: 24px;
    }
    .button_back:hover {
        background-color: var(--color_input);
    }
    .wizard_preview {
        width: 50vw;
    } 
}