.site-header {
    width: 100%;
    height: 80px;
    z-index: 800;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.site-logo {
    margin-left: 50px;
    padding-top: 20px;
    width: 170px;
    display: block;
}

#configurator {
    display: flex;
    margin: 50px;
}

.summary {
    width: 300px;
    color: #53585c;
}

.summary-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.summary-field .label {
    font-weight: bold;
}

.summary-field a {
    color: #ba0f2a;
    cursor: pointer;
}

.summary-field {
    margin-bottom: 20px;
}

.steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1000px;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.field .title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ba0f2a;
}

.field .options {
    padding: 20px;
}

.field .options.with-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.field .options .option {
    cursor: pointer;
    width: 150px;
    display: flex;
    flex-direction: column;
    border: 1px solid #DEDEDE;
}

.field .options .option .image {
    height: 148px;
}

.field .options .option .label {
    background-color: rgb(246, 246, 246);
    color: #53585c;
    border-top: 1px solid #DEDEDE;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 15px 10px;
}

.field .options .option.active {
    border: 2px solid #ba0f2a;
    ;
    background-color: #fff;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.nav button {
    border-radius: 0;
    font-size: 1rem;
    padding: 15px 30px;
}

.nav button.active {
    background-color: #379dbe;
    color: #fff;
}

button.blue {
    border-radius: 0;
    font-size: 1rem;
    padding: 15px 30px;
    background-color: #379dbe !important;
    color: #fff;
}