body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px;
    /*min-width: 1140px;*/
    color: #333;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    background: url('../img/background_1.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
body.overflow-hidden {
    overflow: hidden;
    padding-right: var(--scrollWidth);
}
*,
*:after,
*:before {
    box-sizing: border-box;
}
h1 {
    font-size: 40px;
    margin: 0 0 20px;
}
p {
    margin: 10px 0;
}
a,
button,
input,
select,
textarea {
    outline: none;
}
pre {
    white-space: break-spaces;
    font-family: "Roboto", sans-serif;
}
.header {
    padding: 20px 0 80px 0;
    background-image: linear-gradient(180deg, #e03a40 0%, #87272a 100%);
}
.header__top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.header__middle {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header__logo-img {
    min-width: 92px;
    width: 92px;
    height: 92px;
    margin-right: 20px;
}
.header__logo-text {
    display: flex;
    flex-direction: column;
    width: 204px;
    min-width: 204px;
}
.header__logo-text-title {
    color: #000;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 800;
}
.header__logo-text-subtitle {
    color: #fff;
    line-height: 1;
    font-size: 20px;
}
.header__controls {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}
.header__controls-item + .header__controls-item {
    margin-left: 30px;
}
.header__bottom {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    margin-top: 30px;
}
.header__bottom-button {
    width: 260px;
    margin-right: 20px;
    min-width: 260px;
}
.header__bottom-form {
    flex-basis: 100%;
    display: flex;
}
.header__bottom-form-input {
    flex-basis: 100%;
    height: 46px;
    background: #eceeef;
    padding: 0 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    border-radius: 5px 0 0 5px;
    border: none;
}
.header__bottom-form-button {
    min-width: 46px;
    width: 46px;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #87272a;
    color: #fff;
    transition: 0.3s;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.header__bottom-form-button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    margin: -16px 0 0 -16px;
    opacity: 0;
    transition: 0.3s;
}
.header__bottom-form-button:hover {
    background: #e03a40;
}
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px;
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #87272a;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    position: relative;
}
.button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    margin: -16px 0 0 -16px;
    opacity: 0;
    transition: 0.3s;
}
.button_padding_no {
    padding: 0;
}
.button_size_small {
    line-height: 1.5;
    padding: 5px 10px;
}
.button_size_v-small {
    font-size: 12.8px;
    line-height: 1.5;
    padding: 5px 10px;
}
.button_size_big {
    font-size: 19.2px;
    font-weight: 600;
    line-height: 1;
    padding: 20px 20px;
}
.button_background_grey {
    background: #c8c8c8;
    color: #54595f;
}
.button_background_grey:hover {
    color: #fff;
}
.button_style_link {
    line-height: 1.5;
    padding: 10px;
    background: none;
}
.button_style_link .button__icon {
    margin-right: 10px;
}
.button_style_link .button__icon_position_right {
    margin-left: 10px;
    margin-right: 0;
}
.button_style_red-link {
    line-height: 1.5;
    padding: 10px;
    background: none;
    color: #87272a;
}
.button:hover {
    background: #e03a40;
}
.button_color_grey {
    background: #eceeef;
    color: #87272a;
}
.button_color_grey:hover,
.button_color_grey.button_clickable_active {
    background: #e03a40;
    color: #fff;
}
.button_color_grey:hover .badge,
.button_color_grey.button_clickable_active .badge {
    background: #fff;
    color: #87272a;
}
.button_hover_white:hover {
    background: #fff;
    color: #87272a;
}
.button_style_link:hover {
    background: #87272a;
}
.button_style_red-link:hover {
    color: #7a7a7a;
    background: none;
}
.button_style_red-small {
    padding: 0;
    text-decoration: none;
    border-bottom: #87272a 1px dashed;
    color: #87272a;
    background: none;
    font-size: 12.8px;
    line-height: 1.5;
    border-radius: 0;
}
.button_style_red-small:hover {
    color: #e03a40;
    background: none;
    border-color: #e03a40;
}
.button__icon {
    margin-right: 10px;
}
.button__icon_position_right {
    margin-left: 10px;
    margin-right: 0;
    margin-top: 2px;
    margin-bottom: -2px;
}
.button__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 15px 15px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    color: #333;
    z-index: 1;
}
.button_has_children {
    position: static;
}
.button_has_children:hover:not(.button_clickable) .button__dropdown,
.button_has_children.button_clickable_active .button__dropdown {
    visibility: visible;
    opacity: 1;
}
.button_loading {
    color: transparent;
}
.button_loading:before {
    opacity: 1;
}
.button__badge {
    margin-left: 10px;
}
.button_width_full {
    width: 100%;
}
.sections-tiles {
    display: flex;
    width: 100%;
    max-width: 890px;
    margin: -70px auto 32px;
    flex-wrap: wrap;
}
.sections-tiles__item {
    flex-basis: calc(50% - 30px);
    margin: 15px;
    background: #eceeef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    text-decoration: none;
}
.sections-tiles__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.4;
    z-index: 1;
    transition: 0.3s;
}
.sections-tiles__item-img {
    width: calc(100% + 50px);
    transform: translate3d(-40px, 0, 0);
    transition: 0.3s;
    display: block;
}
.sections-tiles__item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px 32px 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-size: 41.6px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
    transform: translate3d(0, 10px, 0);
    line-height: 1.2;
}
.sections-tiles__item:hover:before {
    opacity: 0.7;
}
.sections-tiles__item:hover .sections-tiles__item-img {
    transform: translate3d(0, 0, 0);
}
.sections-tiles__item:hover .sections-tiles__item-title {
    transform: translate3d(0, -30px, 0);
}
.content__title {
    margin: -10px -10px 0;
    background: #87272a;
    border-radius: 0 0 15px 15px;
    padding-bottom: 15px;
    display: flex;
    transition: 0.3s;
    transform: translate3d(0, -100%, 0);
    position: relative;
    opacity: 0;
}
.content__title_wrap {
    flex-wrap: wrap;
}
.content__title_active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.content__title-left,
.content__title-right {
    flex-basis: 26%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.content__title-middle {
    flex-basis: 48%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 39px;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    text-align: center;
}
.content__title-link {
    font-weight: 600;
    text-decoration: none;
    color: #ae5457;
    transition: 0.3s;
}
.content__title-link-icon {
    margin-right: 5px;
}
.content__title-link:hover {
    color: #aaa;
}
.content__title-filter {
    flex-basis: 100%;
    padding: 20px 20px 5px;
}
.content__title-filter .field_active .field__label {
    color: #fff;
}
.content__title-filter .field__input,
.content__title-filter .field__select {
    background: #fff;
}
.content__title-filter .button {
    background: #ba2c30;
}
.content__title-filter .button:hover {
    background: #e03a40;
}
.content__box {
    padding: 50px 0;
}
.content__top {
    position: relative;
    display: flex;
    margin: 0 -5px;
}
.content__top-item {
    margin: 0 5px;
}
.content__top .button__dropdown {
    left: 5px;
    right: 5px;
}
.content__middle {
    margin-top: 30px;
}
.content__sections {
    margin: -5px;
    text-align: center;
}
.content__sections-button {
    margin: 5px;
}
.content__block_offset_medium {
    margin-bottom: 10px;
}
.content__block_offset_big {
    margin-bottom: 20px;
}
.content__block_offset_v-big {
    margin-bottom: 30px;
}
.field {
    padding-top: 25px;
    position: relative;
    margin-bottom: 15px;
}
.field_hidden {
    display: none;
}
.field__label {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 0;
    transform: translate3d(0, 35px, 0);
    transition: 0.3s;
    opacity: 0.3;
    z-index: 1;
    line-height: 1.5;
    font-size: 16px;
}
.field__label_static {
    position: static;
    transform: none;
    opacity: 1;
}
.field__input {
    background: #eaeaea;
    border-radius: 10px;
    position: relative;
}
.field__input:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    margin: -16px 0 0 0;
    opacity: 0;
    transition: 0.3s;
}
.field__input-control {
    background: none;
    border: none;
    height: 44px;
    padding: 0 10px;
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 1;
    width: 100%;
    transition: 0.3s;
}
.field__select {
    background: #eaeaea;
    border-radius: 10px;
    position: relative;
}
.field__select:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    margin: -16px 0 0 0;
    opacity: 0;
    transition: 0.3s;
}
.field__select-control {
    background: none;
    border: none;
    height: 44px;
    padding: 0 6px;
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: transparent;
    position: relative;
    z-index: 1;
    width: 100%;
    cursor: pointer;
    appearance: none;
}
.field__select-control option {
    color: #333;
}
.field__select-control option[value=""] {
    color: #7a7a7a;
}
.field__select-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    height: 20px;
    margin-top: -10px;
    z-index: 1;
    display: flex;
    align-items: center;
    color: #7a7a7a;
    font-size: 14px;
}
.field__textarea {
    background: #eaeaea;
    border-radius: 10px;
    position: relative;
}
.field__textarea:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 32px;
    height: 32px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    margin: -16px 0 0 0;
    opacity: 0;
    transition: 0.3s;
}
.field__textarea-control {
    background: none;
    border: none;
    height: 160px;
    resize: vertical;
    padding: 10px;
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 1;
    width: 100%;
}
.field__textarea-control_unresizable {
    resize: none;
    height: 60px;
}
.field_active .field__label {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.field_active .field__select-control {
    color: #333;
}
.field__checkbox {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}
.field__checkbox:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 14px;
    width: 16px;
    height: 16px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}
.field__checkbox-text {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 34px;
}
.field__checkbox-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: #eaeaea;
    transition: 0.3s;
}
.field__checkbox-text:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 16px;
    border-left: #87272a 2px solid;
    border-bottom: #87272a 2px solid;
    width: 16px;
    height: 8px;
    transform: rotateZ(-45deg);
    opacity: 0;
    transition: 0.3s;
    margin-top: -5px;
}
.field__checkbox-control {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 0;
    height: 0;
}
.field__checkbox-control:focus + .field__checkbox-text:before {
    background: #e5e5e5;
}
.field__checkbox-control:checked + .field__checkbox-text:after {
    margin-top: 0;
    opacity: 1;
}
.field_error .field__label {
    color: #e03a40;
    opacity: 1;
}
.field_error .field__input {
    background: #ebd9d9;
}
.field_error .field__select {
    background: #ebd9d9;
}
.field_error .field__textarea {
    background: #ebd9d9;
}
.field_loading .field__input:before {
    opacity: 1;
}
.field_loading .field__input-control {
    padding-right: 52px;
}
.field_loading .field__checkbox:before {
    opacity: 1;
}
.field_loading .field__textarea:before {
    opacity: 1;
}
.field_loading .field__textarea-control {
    padding-right: 52px;
}
.field_animation_skip .field__label {
    transition: none;
}
.field_type_hidden {
    display: none;
}
.field_type_multi-checkboxes {
    padding-top: 0;
}
.authorisation {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.authorisation__buttons {
    padding-top: 15px;
    display: flex;
    justify-content: center;
}
.authorisation__buttons-button {
    min-width: 200px;
}
@keyframes notificationsAnimation {
    from {
        transform: translate3d(120%, 0, 0);
    }
}
.notifications {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.notifications__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #f2f2f2;
    border-radius: 5px;
    padding: 20px;
    animation: notificationsAnimation 0.3s;
    transition: 0.3s;
    margin-top: 10px;
    position: relative;
    color: #333;
}
.notifications__item_hide {
    transform: translate3d(120%, 0, 0);
}
.notifications__item-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #333;
    font-size: 20px;
    opacity: 0.5;
    transition: 0.3s;
}
.notifications__item-close:hover {
    opacity: 1;
}
.notifications__item_type_info {
    background: #eaeaea;
    color: #7a7a7a;
}
.notifications__item_type_info .notifications__item-close {
    color: #7a7a7a;
}
.notifications__item_type_success {
    background: #66de93;
    color: #fff;
}
.notifications__item_type_success .notifications__item-close {
    color: #fff;
}
.notifications__item_type_error {
    background: #e03a40;
    color: #fff;
}
.notifications__item_type_error .notifications__item-close {
    color: #fff;
}
.notifications__item-title {
    display: flex;
    align-items: flex-start;
    font-size: 20px;
    margin-bottom: 10px;
    padding-right: 20px;
}
.notifications__item-title-icon {
    margin-right: 10px;
    margin-top: 5px;
}
.submenu {
    display: flex;
    margin: -10px;
    justify-content: center;
}
.submenu_narrow {
    width: 100%;
    max-width: 890px;
    margin: 0 auto;
}
.submenu__item {
    margin: 10px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}
.submenu__item:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
    margin: -32px 0 0 -32px;
    opacity: 0;
    transition: 0.3s;
    z-index: 1;
}
.submenu__item:hover {
    color: #87272a;
    background: #f2f2f2;
}
.submenu__item-icon {
    font-size: 32px;
    margin-top: 3px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.submenu__item-text {
    text-align: center;
    max-width: 250px;
    transition: 0.3s;
}
.submenu__item_loading {
    color: #87272a;
    background: #f2f2f2;
}
.submenu__item_loading:before {
    opacity: 1;
}
.submenu__item_loading .submenu__item-icon {
    opacity: 0.5;
}
.submenu__item_loading .submenu__item-text {
    opacity: 0.5;
}
.submenu__item_loading .upload-file_submenu {
    z-index: auto;
}
.submenu__item_padding_no {
    padding: 0;
}
.submenu_wrap {
    flex-wrap: wrap;
}
.submenu_wrap .submenu__item {
    flex-basis: calc(50% - 20px);
}
.badge {
    width: 20px;
    height: 20px;
    background: #87272a;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.grid__row {
    display: flex;
    margin: -5px;
    flex-wrap: wrap;
}
.grid__row_offset_bottom {
    margin-bottom: 15px;
}
.grid__column {
    flex-basis: calc(100% - 10px);
    margin: 5px;
}
.grid__column_size_2 {
    flex-basis: calc(50% - 10px);
}
.grid__column_size_3 {
    flex-basis: calc(33.33% - 10px);
}
.grid__column_size_4 {
    flex-basis: calc(25% - 10px);
}
.table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}
.table thead tr:first-child .table__th:first-child {
    border-radius: 5px 0 0 0;
}
.table thead tr:first-child .table__th:last-child {
    border-radius: 0 5px 0 0;
}
.table__th {
    font-weight: 600;
    padding: 15px;
    background: #f2f2f2;
    border-bottom: #eaeaea 1px solid;
    border-right: #eaeaea 1px solid;
}
.table__th:last-child {
    border-right: none;
}
.table__th_align_left {
    text-align: left;
}
.table__th_align_center {
    text-align: center;
}
.table__th_align_right {
    text-align: right;
}
.table__th-link {
    display: block;
    color: #333;
    text-decoration: none;
}
.table__th-link-sort {
    margin-right: -15px;
    opacity: 0;
    transition: 0.3s;
    vertical-align: middle;
}
.table__th-link-sort_active {
    opacity: 1;
}
.table__th-link-sort.fa-sort-up {
    margin-top: 5px;
}
.table__th-link-sort.fa-sort-down {
    margin-top: -9px;
}
.table__th-link:hover .table__th-link-sort {
    opacity: 1;
}
.table__td {
    padding: 15px;
    border-bottom: #eaeaea 1px solid;
    border-right: #eaeaea 1px solid;
}
.table__td:last-child {
    border-right: none;
}
.table__td_align_left {
    text-align: left;
}
.table__td_align_center {
    text-align: center;
}
.table__td_align_right {
    text-align: right;
}
.table__td_cell_actions {
    white-space: nowrap;
}
.table__td-link {
    color: #333;
    text-decoration: underline;
    transition: 0.3s;
}
.table__td-link:hover {
    color: #87272a;
    text-decoration: none;
}
.table__td-button {
    color: #333;
    font-size: 14px;
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    margin: 5px;
    transition: 0.3s;
    text-decoration: none;
}
.table__td-button:hover {
    background: #eceeef;
}
.table__td .field {
    margin: 0;
    padding: 0;
}
.table__td .field_type_checkbox {
    display: block;
    height: 24px;
}
.table__td .field__checkbox-text {
    min-height: 24px;
}
.table__td .field__checkbox-text:before {
    top: 0;
}
.table__td .field__checkbox-text:after {
    top: 6px;
}
@keyframes tooltipAnimation {
    from {
        opacity: 0;
        visibility: hidden;
    }
}
.tooltip {
    position: fixed;
    left: 0;
    top: 0;
    background: #000;
    color: #fff;
    font-size: 14px;
    animation: tooltipAnimation 0.3s;
    padding: 10px;
    opacity: 0.8;
    visibility: visible;
    z-index: 100;
    transition: opacity 0.3s, visibility 0.3s;
    max-width: 250px;
    white-space: pre-wrap;
    border-radius: 5px;
}
.tooltip_hide {
    opacity: 0;
    visibility: hidden;
}
.tooltip:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #000;
    border-width: 5px;
    margin-left: -5px;
}
.tooltip_aligned_left:after {
    left: 15px;
}
.tooltip_aligned_right:after {
    left: calc(100% - 15px);
}
.pagination {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    color: #7a7a7a;
    font-size: 14px;
}
.pagination__left {
    display: flex;
    justify-content: flex-start;
}
.pagination__right {
    display: flex;
    justify-content: flex-end;
}
.pagination__right-pages {
    display: flex;
    margin-left: 10px;
}
.pagination__page {
    color: #7a7a7a;
    width: 21px;
    height: 21px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    margin: 0 1px;
    text-decoration: none;
}
.pagination__page:hover {
    background: #eceeef;
    color: #7a7a7a;
}
.pagination__page_active {
    background: #87272a;
    color: #fff;
    cursor: default;
}
.pagination__page_active:hover {
    background: #87272a;
    color: #fff;
}
.pagination__page_disable {
    cursor: default;
    background: none;
}
.pagination__page_disable:hover {
    background: none;
}
.upload-file {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    padding: 15px 30px;
    border-radius: 5px;
}
.upload-file_submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    z-index: 1;
}
.upload-file__control {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.upload-file_button {
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes popupWrapperAnimation {
    from {
        opacity: 0;
    }
}
@keyframes popupBoxAnimation {
    from {
        transform: scale(0.5);
    }
}
.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: popupWrapperAnimation 0.3s;
    transition: 0.3s;
}
.popup__box {
    min-width: 400px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    margin: auto auto;
    transform: scale(1);
    animation: popupBoxAnimation 0.3s;
    transition: 0.3s;
}
.popup_hide {
    opacity: 0;
}
.popup_hide .popup__box {
    transform: scale(0.5);
}
.popup__close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #333;
    font-size: 20px;
    opacity: 0.5;
    transition: 0.3s;
}
.popup__close:hover {
    opacity: 1;
}
.popup__title {
    font-size: 20px;
    margin-bottom: 30px;
    padding-right: 20px;
}
.popup__content {
    margin-bottom: 30px;
}
.popup__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup__button {
    margin: 0 5px;
}
.font_size_small {
    font-size: 12px;
}
.spoiler__preview {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}
.spoiler__preview:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: #fff;
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 65%, white 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 65%, white 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 65%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.spoiler__preview_full {
    max-height: none;
}
.spoiler__preview_full:before {
    content: none;
}
.spoiler__button {
    color: #333;
    font-size: 14px;
    text-decoration: underline;
    transition: 0.3s;
}
.spoiler__button:hover {
    color: #87272a;
    text-decoration: none;
}
.spoiler__buttons_hide {
    display: none;
}
.stats {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.stats__item {
    margin: 15px;
    flex-basis: calc(50% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stats__item-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    max-width: 300px;
}
.stats__item-number {
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    color: #87272a;
}
.stats__item-sub {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}
.stats__item-sub-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}
.stats__item-sub-row:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    right: 0;
    border-bottom: #333 1px dashed;
}
.stats__item-sub-label {
    text-align: start;
}
.stats__item-sub-label span {
    padding-right: 5px;
    background: #fff;
    position: relative;
}
.stats__item-sub-value {
    font-weight: 700;
    text-align: end;
    color: #87272a;
}
.stats__item-sub-value span {
    padding-left: 5px;
    background: #fff;
    position: relative;
}
.letters {
    display: flex;
    flex-wrap: wrap;
}
.letters__item {
    flex-basis: 10%;
    text-align: center;
}
.letters__item-link {
    font-size: 48px;
    margin: 10px;
    font-weight: 700;
    color: #87272a;
    text-decoration: none;
    transition: 0.3s;
}
.letters__item-link:hover {
    color: #e03a40;
}
.subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-top: 10px;
}
.file {
    padding-right: 10px;
}
.file__iframe {
    display: block;
    width: 100%;
    aspect-ratio: 1/1.365;
    min-height: 200px;
    border: none;
    border-radius: 10px;
}
.file__image {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.file__video {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 200px;
    background: #000;
    border-radius: 10px;
}
.file__button {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.file__button > .button {
    margin: 5px 0;
}
.file__button_inline {
    flex-direction: row;
    justify-content: center;
}
.file__button_inline > .button {
    margin: 5px;
}
.file_fullscreen {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 0;
}
.file_fullscreen .file__inner {
    height: calc(100vh - 66px);
    overflow: auto;
}
.file_fullscreen .file__iframe {
    height: calc(100vh - 66px);
    aspect-ratio: auto;
    border-radius: 0;
}
.file_fullscreen .file__image {
    border-radius: 0;
}
.file_fullscreen .file__video {
    height: calc(100vh - 66px);
    aspect-ratio: auto;
    border-radius: 0;
}
.file_fullscreen .js-file-document {
    display: none;
}
.case {
    height: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}
.case__preview {
    height: 253px;
    position: relative;
    border-radius: 15px 15px 0 0;
    display: block;
}
.case__preview:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    transition: 0.3s;
    border-radius: 15px 15px 0 0;
}
.case__preview-img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px 15px 0 0;
}
.case__preview-title {
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 32px;
    top: 32px;
    right: 32px;
    padding: 0;
}
.case__preview-title-inner {
    display: block;
    position: relative;
    margin: 0 0 10px;
    max-height: 180px;
    overflow: hidden;
    transition: 0.3s;
}
.case__preview-title-inner_fade {
    background: -moz-linear-gradient(top, white 0%, white 66%, rgba(255, 255, 255, 0.85) 82%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, white 0%, white 66%, rgba(255, 255, 255, 0.85) 82%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, white 0%, white 66%, rgba(255, 255, 255, 0.85) 82%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.case__preview-title-line {
    position: relative;
    margin: 0 0 10px;
    display: block;
    height: 3px;
    overflow: hidden;
}
.case__preview-title-line:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #fff;
    height: 3px;
    transform: translate3d(-100%, 0, 0);
    transition: 0.3s;
}
.case__preview-title-info {
    color: #fff;
    font-size: 14px;
    display: block;
    opacity: 0;
    transition: 0.3s;
}
.case__preview-sections {
    right: 15px;
    bottom: 4px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: calc(100% - 30px);
}
.case__preview-sections-section {
    background: rgba(255, 255, 255, 0.29);
    margin-bottom: 11px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}
.case__preview:hover:before {
    opacity: 0.6;
}
.case__preview:hover .case__preview-title-inner {
    max-height: 90px;
}
.case__preview:hover .case__preview-title-inner_fade2 {
    background: -moz-linear-gradient(top, white 0%, white 66%, rgba(255, 255, 255, 0.85) 82%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, white 0%, white 66%, rgba(255, 255, 255, 0.85) 82%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, white 0%, white 66%, rgba(255, 255, 255, 0.85) 82%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.case__preview:hover .case__preview-title-line:after {
    transform: translate3d(0, 0, 0);
}
.case__preview:hover .case__preview-title-info {
    opacity: 1;
}
.case__info {
    padding: 10px 15px 20px;
    border-radius: 0 0 15px 15px;
}
.case__info-documents {
    border-bottom: #c8c8c8 1px solid;
    padding-bottom: 15px;
}
.case__info-documents-title {
    font-size: 15px;
    color: #54595f;
    text-align: center;
    position: relative;
    padding: 10px 0;
    margin-bottom: 5px;
}
.case__info-documents-title:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 52%;
    background: #c8c8c8;
    height: 1px;
}
.case__info-documents-title span {
    padding: 0 10px;
    background: #fff;
    position: relative;
    z-index: 1;
}
.case__info-documents-row {
    font-size: 14.4px;
    color: #7a7a7a;
}
.case__info-documents-row_faded {
    opacity: 0.5;
}
.case__info-columns {
    display: flex;
    border-top: #c8c8c8 1px solid;
    padding: 10px 0;
    margin-top: 20px;
    line-height: normal;
}
.case__info-columns + .case__info-columns {
    margin-top: 0;
}
.case__info-columns-column {
    flex-basis: 50%;
}
.case__info-columns-column_left {
    text-align: left;
}
.case__info-columns-column_right {
    text-align: right;
}
.case__info-columns-column strong {
    font-weight: 600;
}
.case__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 0;
}
.case__buttons_bordered {
    border-top: #c8c8c8 1px solid;
}
.case__badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.case__badge {
    padding: 0 10px;
    background: #eceeef;
    border-radius: 5px;
}
.text_align_center {
    text-align: center;
}
.text_not-found {
    text-align: center;
    padding: 30px 0;
    font-size: 20px;
    opacity: 0.5;
}
.text_faded {
    opacity: 0.5;
}
.text_break_all {
    word-break: break-all;
}
.text_font-16 {
    font-size: 16px;
}
.text_nowrap {
    white-space: nowrap;
}
.static-field {
    padding-top: 25px;
    position: relative;
    margin-bottom: 15px;
}
.static-field__label {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 0;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    z-index: 1;
    line-height: 1.5;
    font-size: 16px;
}
.static-field__value {
    background: #eaeaea;
    border-radius: 10px;
    position: relative;
    padding: 10px;
}
.static-field__value a {
    color: #ae5457;
    text-decoration: none;
    transition: 0.3s;
}
.static-field__value a:hover {
    color: #aaa;
}
.static-field__value_faded {
    color: rgba(51, 51, 51, 0.5);
}
.documents {
    margin-top: 40px;
    background: #eaeaea;
    padding: 10px;
    border-radius: 15px;
}
.documents__title {
    font-weight: 600;
    font-size: 28.8px;
    text-align: center;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
}
.documents__title:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 52%;
    background: #c8c8c8;
    height: 1px;
}
.documents__title span {
    padding: 0 10px;
    background: #eaeaea;
    position: relative;
    z-index: 1;
}
.documents__buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    align-items: center;
}
.documents__buttons-button {
    margin: 5px;
}
.list {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}
.list__item {
    margin: 15px;
    flex-basis: calc(33.33% - 30px);
}
.list__item-link {
    font-size: 20px;
}
.list__item-link-element {
    color: #ae5457;
    text-decoration: none;
    transition: 0.3s;
}
.list__item-link-element:hover {
    color: #aaa;
}
.list__item-date {
    color: #7a7a7a;
    font-size: 14px;
    margin-top: 5px;
}
@keyframes currentLoadingAnimation {
    from {
        opacity: 0;
    }
}
.current-loading {
    position: fixed;
    left: 10px;
    bottom: 10px;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    max-width: 330px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    align-items: center;
    animation: currentLoadingAnimation 0.3s;
}
.current-loading__icon {
    margin-bottom: 10px;
    width: 32px;
    height: 32px;
    background: url(../img/loading.svg) center center no-repeat;
    background-size: contain;
}
.current-loading__text {
    text-align: center;
} /*# sourceMappingURL=styles.css.map */
