.sandwichPage-form {
    padding-top: 4rem;
    position: relative;
}
.sandwichPage-form > div:nth-child(2) {
    background-color: var(--color-dark-red);
    border-radius: 2rem;
    padding: 1rem;
}

.sandwichPage-form .sandwichPage-form__buttons button {
    position: relative;
    background: #ffffff;
    display: block;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    border: 0.1rem outset white;
}
.sandwichPage-form .sandwichPage-form__buttons button:active{
    border: 0.1rem inset white;
}
.sandwichPage-form__header {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 125%;
    margin-bottom: 2rem;
}
.sandwichPage-form .sandwichPage-form__buttons {
    gap: 1rem;
}
.sandwichPage-form[data-step="2"] .sandwichPage-form__buttons button {
    padding: 0.5rem;
    font-size: 1rem;
}
.sandwichPage-form .sandwichPage-form__buttons button[data-price]::after {
    content: 'От 'attr(data-price)' \20bd';
    width: calc(100vw - 100% - var(--rst-body-otstup) * 2 - 1rem);
    left: calc(100% + 1rem);
    font-size: 1.5rem;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
}
.sandwichPage-form > div:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    height: 10rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    z-index: -1;
}
.sandwichPage-form > div:nth-child(1) > span {
    box-shadow: 0 0 3rem rgba(0,0,0,0.3);
    margin-top: 1rem;
    font-size: 2rem;
    border-radius: 2rem 2rem 0 0;
    padding-top: 1rem;
}
.sandwichPage-form[data-step="1"] > div:nth-child(1) > span:nth-child(1), 
.sandwichPage-form[data-step="2"] > div:nth-child(1) > span:nth-child(2), 
.sandwichPage-form[data-step="3"] > div:nth-child(1) > span:nth-child(3) {
    font-size: 2rem;
    padding-top: 2rem;
    transition: all 1s ease-in-out;
}