.single_page_wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    /* overflow-y: scroll; */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.single_page_wrap::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* .single_page-data-bottom {
    margin-top: 70px;
} */

.single_page_wrap > * {
    height: auto;
}

.single_page_data-body {
    margin-top: 20px;
}

.single_page-data {
    width: 28%;
}

.single_page-content {
    width: 72%;
}

.single_page_wrap,
.single_page-data,
.single_page_data-body {
    /* min-height: 790px; */
    height: calc(100% - 15px);
}

.single_page_data-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 40px;
}

.single_page-content {
    padding-left: 40px;
    border-left: 1px solid #f3f3f3;
}

/* single page button */
.single-page-button  {
    background: var(--gray-border);
    padding: 10px 24px;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-medium);
    cursor: pointer;
}

.single-page-button.single-page-button-active {
    background: var(--green-main);
    color: var(--white);
}
/*  single page button end  */

.single_page_content_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report_update_button {
    pointer-events: none;
    position: relative;
}

.report_update_button.single-page-button-active {
    pointer-events: all;
}

.single-page-button {
    position: relative;
}.single_page--field-wrap {
    margin-top: 16px;
}

.single_page--field-wrap:first-child {
    margin-top: 0;
}

.single_page-field {
    display: flex;
    flex-direction: column;
}

.single_page_field-label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 123%;
    color: var(--gray-medium);
}

.single_page_field-input {
    border: 1px solid var(--gray-border);
    padding: 4px 8px 4px 16px;
    margin-top: 4px;
    outline: none;
    min-height: 42px;
}

.single_page_field-input,
.single_page_field-input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    color: var(--gray-dark);
}

.single_page--field-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

/* .single_page--field-2 .single_page-field */
.single_page--field-wrap.single_page--field-2 > * {
    width: 47%;
}

.single_page-field {
    width: 100%;
}

/* errors */
.single_page-field.error_field input {
    border-color: var(--red-alert);
}
/* end errors */

.login_form_input input {
    width: 100%;
}

.field_error_text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    color: var(--red-alert);
    margin-top: 16px;
}

.single_page-field.deactive input,
.single_page-field.deactive input:hover,
.single_page-field.deactive input:active,
.single_page-field.deactive input:target {
    background: var(--gray-background);
    border: 1px solid var(--gray-border);
    border-color: var(--gray-border) !important;
    pointer-events: none;
}
/* content_title (no dedicated rule existed in the React CSS; matches section heading look) */
.content_title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--green-dark);
}

/* native select used for editable SinglePage selects */
.single_page-field select.single_page_field-input {
    background: #fff;
    cursor: pointer;
}
