.registration-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(/styles/pictures/bg/r_figures.png);
}

.registration-form__validate-tips {
    margin-bottom: 16px;
    color: var(--danger-color);
}

.registration-form__form {
    background: rgba(41, 95, 175, 0.8);
}

.registration-form__btns {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.registration-form__btn {
    width: 177px;
}

.customer-selection-step,
.select-region-step,
.category-selection-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-selection-step__title {
    margin-bottom: 12px;
}

.customer-selection-step__wrapper,
.category-selection-step__wrapper {
    max-width: 975px;
    width: 100%;
}

.timing-step__step,
.customer-selection-step__step,
.select-region-step__step,
.category-selection-step__step {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    text-align: center;
}

.customer-selection-step__step,
.category-selection-step__step {
    color: var(--white-color);
}

.timing-step__text,
.select-region-step__text,
.category-selection-step__text {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    text-align: center;
}

.category-selection-step__text {
    color: var(--white-color);
}

.category-selection-step__tree-element {
    margin-bottom: 12px;
}

.select-region-step__wrapper {
    max-width: 760px;
}

.select-region-step__parts {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
}

.select-region-step__text {
    margin-bottom: 0;
}

.select-region-step__checkbox {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 8px;
}

.customer-selection-step__row-igroup {
    margin-bottom: 12px;
}

.timing-step {
    margin-bottom: 0;
}

.timing-step__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.timing-step__time {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.timing-step__text {
    margin-bottom: 0;
}

.timing-step__checkbox {
    margin-bottom: 10px;
}

@media (max-width: 1579px) {

    .customer-selection-step__step,
    .select-region-step__step,
    .select-region-step__wrapper {
        width: 100%;
    }

    .customer-selection-step__wrapper,
    .select-region-step__wrapper {
        max-width: initial;
    }

    .select-region-step__parts {
        justify-content: space-between;
    }

    .timing-step__options {
        width: 100%;
    }
}

@media (max-width: 905px) {

    .select-region-step__parts {
        gap: 12px;
    }
}

@media (max-width: 719px) {

    .select-region-step__text {
        text-align: initial;
    }

    .timing-step__time {
        flex-direction: column;
    }
}

@media (max-width: 469px) {

    .registration-form__btn {
        width: auto;
        padding: 6px 15px;
    }
}