.overlay-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    height: 100vh;
    padding: 2rem 17.5rem;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1000;
}
.modal-section {
    background-color: #ffffff;
    border-radius: .25rem;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.modal-section_orange {
    --bg-content: #ffd091;
    --border-color-light: #ca9f63;
    --border-color: #ea6d35;
    --tab-color-active: #2e0000;
    --tab-color: #977137;
}
.modal-section_blue {
    --bg-content: #e8ffff;
    --border-color-light: #b6cccc;
    --border-color: #42b2e5;
    --tab-color-active: #001c41;
    --tab-color: #596d6d;
}
.modal-section_gray {
    --bg-content: #f5f7f9;
    --border-color-light: #b6cccc;
    --border-color: #aab2bd;
    --tab-color-active: #001c41;
    --tab-color: #596d6d;
}
.modal-section__header {
    padding: 1.5625rem 1.5625rem .9375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-section .alert {
    margin: 0 1.5625rem .9375rem;
}
.modal-section__header__titles {
    flex: 1 auto;
    padding-right: 2rem;
}
.modal-section__header__titles__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}
.modal-section__header__buttons {
    display: flex;
    align-items: center;
}
.modal-section__header__buttons__button {
    outline: none;
    border-width: 1px;
    border-style: solid;
    padding:0 1.8rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: .25rem;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.375rem;
}
.modal-section__header__buttons__button_icon-only {
    padding: 0;
    width: 2.375rem;
}
.modal-section__header__buttons__button + .modal-section__header__buttons__button {
    margin-left: .5rem;
}
.modal-section__header__buttons__button_default {
    color: #42b2e5;
    background-color: #ffffff;
    border-color: #42b2e5;
}
.modal-section__header__buttons__button_default:hover {
    cursor: pointer;
    background-color: #42b2e5;
    color: #ffffff;
}
.modal-section__header__buttons__button_danger {
    color: #f0300b;
    background-color: #ffffff;
    border-color: #f0300b;
}
.modal-section__header__buttons__button_danger:hover {
    cursor: pointer;
    background-color: #f0300b;
    color: #ffffff;
}
.modal-section__header__buttons__button_success {
    color: #ffffff;
    background-color: #34a853;
    border-color: #34a853;
}
.modal-section__header__buttons__button_success:hover {
    color: #ffffff;
    background-color: #3abb5d;
    border-color: #3abb5d;
}
.modal-section__header__buttons__button_success_outlined {
    color: #3abb5d;
    background-color: #ffffff;
    border-color: #3abb5d;
}
.modal-section__header__buttons__button_success_outlined:hover {
    color: #ffffff;
    background-color: #3abb5d;
    border-color: #3abb5d;
}
.modal-section__body {
    padding: 3rem 0 0;
}
.modal-section__body__content {
    width: 100%;
    position: relative;
    background-color: var(--bg-content);
    border-top: 1px solid var(--border-color-light);
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.modal-section__body__content__tabs {
    position: absolute;
    top: -3rem;
    left: 0;
    height: 3rem;
    width: 100%;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.modal-section__body__content__tabs__tab {
    height: 3rem;
    padding: 0 1rem;
    text-transform: uppercase;
    font-weight: 700;
    background-color: transparent;
    border-width: 2px 1px 0;
    border-style: solid;
    border-color: transparent;
    display: flex;
    align-items: center;
    color: var(--tab-color);
    font-size: .9rem;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.modal-section__body__content__tabs__tab_active {
    border-color: var(--border-color-light);
    border-top-color: var(--border-color);
    background-color: var(--bg-content);
    color: var(--tab-color-active);
}
.modal-section__body__content__tabs__tab:not(.modal-section__body__content__tabs__tab_active):hover {
    cursor: pointer;
    color: var(--border-color);
}
.modal-section__body__content__body {
    padding: 25px;
}
.modal-section__body__content__body__container {
    background-color: #ffffff;
    border: 1px solid #b6cccc;
    border-radius: .25rem;
    padding: 1.5625rem;
}
.input-side__testimonials {
    display: flex;
    position: relative;
    width: 100%;
    padding: .3125rem .625rem;
    border: 1px solid #bccdd7;
    border-radius: .25rem;
    background-color: #F5F7FA;
    margin-bottom: .3125rem;
}
.input-side__testimonials .modal__form__button {
    max-width: 100%;
}
.input-side_testimonials__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% / 6);
    padding-right: .625rem;
}
.input-side_testimonials__image_preview {
    padding-bottom: .3125rem;
}
.input-side_testimonials__image_preview img {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    border-radius: 50%;
}
.input-side_testimonials__text {
    flex: 1 auto;
}
.input-side_testimonials__text > div:not(:first-child) {
    padding-top: .3125rem;
}
.dropdown-elem {
    position: relative;
    display: flex;
    align-items: center;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    margin-right: .625rem;
    border: 1px solid #bccdd7;
    border-radius: .25rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #393939;
    background-color: #fff;
    box-shadow: inset 0 1px 3px 0 #e6f0f6;
}
.dropdown-elem__icon-dropdown {
    margin-left: 1rem;
    color: #aab2bd;
}
.dropdown-elem__wrapper-list {
    display: none;
    position: absolute;
    top: calc(100% + 0.312rem);
    left: 0;
    padding: .3125rem;
    border: 1px solid #bccdd7;
    border-radius: .25rem;
    background-color: #ffffff;
    z-index: 3;
}
.dropdown-elem_active .dropdown-elem__wrapper-list {
    display: block;
}
.dropdown-elem__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 14.1875rem;
    max-height: 15rem;
    overflow-y: scroll;
}
.dropdown-elem__list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: .3125rem;
    border: 1px solid #ccd1d9;
    border-radius: .25rem;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.dropdown-elem__list__item:hover {
    cursor: pointer;
    background-color: #e6e9ed;
}
input[type="radio"]:checked + .dropdown-elem__list__item {
    background-color: #e6e9ed;
}
.input-side__element__handler_block {
    display: flex;
    align-items: center;
    height: calc(2.25rem + 2px);
    margin-right: .625rem;
}
.input-side__element__handler_absolute {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    z-index: 1;
}
.input-side__element__handler_topbar {
    margin-right: .625rem;
}
.input-side__element__handler * {
    font-size: 1.5rem;
    color: #656d78;
}
.input-side__element__handler:hover {
    cursor: grab;
}
.input-side__element__handler:hover * {
    color: #5E94FF;
}