.constructor {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}
.constructor .order-complete {
    text-align: center;
}
.constructor__radio {
    display: flex;
    flex-wrap: wrap;
}
.radio-image {
    width: 7rem;
    display: flex;
    flex-direction: column;
}
.radio-image input {
    display: none;
}
.radio-image span {
    display: block;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    padding: 0.5rem;
}
.radio-image:hover span {
    opacity: 0.8;
    cursor: pointer;
}
.radio-image input:checked + span {
    border: 2px solid #8947F3;
}
.constructor__title {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 0.5rem;
}
.constructor__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
}
.constructor__fields .field-box {
    margin: 0;
    width: 22rem;
    max-width: 100%;
}
.constructor__btn {
    width: max-content;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.5rem 1rem;
    height: auto;
}
.constructor__section .repeater {
    margin-bottom: 1rem;
}
.constructor .order__title {
    display: none;
}
.constructor .order-section .col-12 {
    padding: 12px;
}
.repeater {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.constructor__message {
    background: #e35656;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    margin-top: 1rem;
}

.repeater__item-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    background: #f3f3f3;
}
.repeater__item-head {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}
.repeater__item-head a {
    background: rgba(24,22,23,0.075);
    border-radius: 100%;
    display: inline-flex;
    width: 1.7rem;
    height: 1.7rem;
    align-items: center;
    font-size: 1.4rem;
    justify-content: center;
}
.repeater__item-title {
    font-weight: bold;
}
.repeater__item-field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.field-box__comment {
    margin-top: 0.7rem;
    line-height: 1.4;
    color: rgba(24,22,23,0.75);
}

.checkbox {
    display: grid;
    gap: 0.7rem;
    cursor: pointer;
    grid-template-columns: auto 1fr;
}
.checkbox input {
    display: none;
}
.checkbox:hover .checkbox__marker {
    border: 1px solid #8947F3;
}
.checkbox__marker {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox__marker svg {
    fill: #fff;
    display: none;
}
.checkbox input:checked + .checkbox__marker {
    background: #8947F3;
    border-color: #8947F3;
}
.checkbox input:checked + .checkbox__marker svg {
    display: block;
}