﻿@charset "UTF-8";

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font: normal normal 14px / normal Roboto, sans-serif;
}

*,
:before,
:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #f5f7fc;
    position: relative;
    min-width: 320px;
    color: #333;
}

header,
footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

img,
iframe,
video {
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    height: auto;
}

a {
    color: #1abc9c;
}

a img {
    /*для IE10 */
    border: none;
}
/*
p {
    margin: 0;
}*/

em {
    font-style: inherit;
    color: #76839d;
}

*:focus {
    outline: none;
}

*:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*элементы форм */
input,
textarea,
button,
select {
    font: inherit;
    color: inherit;
}

textarea {
    resize: none;
    overflow: auto;
}

.alert {
    background-color: #f44336;
    color: white;
    margin-right: auto;
    margin-left: 9px;
}

[type="text"],
[type="email"],
[type="tel"],
[type="password"],
[type="url"],
[type="date"],
[type="search"],
[type="number"],
textarea {
    display: block;
    border: 1px solid #dfe2e8;
    background-color: #fff;
    font-size: 18px;
    line-height: normal;
    padding: 12px;
    color: #555;
    background-repeat: no-repeat;
    background-position: 12px 50%;
    background-size: 24px auto;
    min-width: 0;
    border-radius: 4px;
}

[type="text"]::-webkit-input-placeholder,
[type="email"]::-webkit-input-placeholder,
[type="tel"]::-webkit-input-placeholder,
[type="password"]::-webkit-input-placeholder,
[type="url"]::-webkit-input-placeholder,
[type="date"]::-webkit-input-placeholder,
[type="search"]::-webkit-input-placeholder,
[type="number"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #dfe2e8;
}

[type="text"]::-moz-placeholder,
[type="email"]::-moz-placeholder,
[type="tel"]::-moz-placeholder,
[type="password"]::-moz-placeholder,
[type="url"]::-moz-placeholder,
[type="date"]::-moz-placeholder,
[type="search"]::-moz-placeholder,
[type="number"]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #dfe2e8;
}

[type="text"]:-ms-input-placeholder,
[type="email"]:-ms-input-placeholder,
[type="tel"]:-ms-input-placeholder,
[type="password"]:-ms-input-placeholder,
[type="url"]:-ms-input-placeholder,
[type="date"]:-ms-input-placeholder,
[type="search"]:-ms-input-placeholder,
[type="number"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #dfe2e8;
}

[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 45px;
    background-image: url(../images/magnify.svg);
}

[type="search"]::-webkit-search-decoration,
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-results-button,
[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.param-inp__wrapper {
    margin: auto;
    display: flex;
    font-size: 12px;
    max-height: 28px;
    max-width: 120px;
    flex-direction: row;
}
.param-inp,
.param-select {
    z-index: 1;
    max-height: 28px;
    font-size: 12px;
    padding: 6px 7px;
    border-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: all 0.3s ease;
}
.param-inp:focus,
.param-select:focus {
    outline: 0;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}
.param-select {
    width: 100%;
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid #dfe2e8;
}
.param-inp__param {
    color: #495057;
    min-width: 32px;
    display: flex;
    align-items: center;
    padding: 3px 7px;
    justify-content: center;
    border: 1px solid #ced4da;
    background-color: #e9ecef;
    text-transform: lowercase;
    border-radius: 2px;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tooltip.right {
    right: -5px !important;
    left: auto !important;
}

.tooltip.right:before {
    right: 11px !important;
    left: auto !important;
}

.hasDatepicker {
    padding-left: 45px;
    padding-right: 5px;
    background-image: url(../images/calendar.svg);
    position: relative;
}

[type="date"]::-webkit-calendar-picker-indicator {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 100%;
}

[type="date"]::-webkit-clear-button,
[type="date"]::-webkit-inner-spin-button {
    display: none;
}

[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 1px solid #76839d;
    border-radius: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 15px auto;
    background-position: center;
    margin: 0 10px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    cursor: pointer;
}

[type="checkbox"]:checked {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAyLjQiIGhlaWdodD0iMjA3LjkiIHZpZXdCb3g9IjAgMCAzMDIuNCAyMDcuOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMjcwLjEgNS41MzRjNy4zNzktNy4zNzkgMTkuMzQtNy4zNzkgMjYuNzIgMCA3LjM4IDcuMzggNy4zOCAxOS4zNCAwIDI2LjcybC0xNzAuMSAxNzAuMWMtNy4zNzkgNy4zNzktMTkuMzQgNy4zNzktMjYuNzIgMGwtOTQuNDktOTQuNDljLTcuMzc5LTcuMzc5LTcuMzc5LTE5LjM0IDAtMjYuNzIgNy4zNzktNy4zNzkgMTkuMzQtNy4zNzkgMjYuNzIgMGw4MS4xMyA4MS4xMyAxNTYuNy0xNTYuNyIgZmlsbD0iIzMzMyIvPjwvc3ZnPg0K);
}

.cursor-pointer {
    cursor: pointer;
}
.cursor-default {
    cursor: default;
}

.classic-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkbox__wrapper {
    display: flex;
    align-items: center;
}
.checkbox {
    max-width: 24px;
    max-height: 24px;
}
.checkbox.copy {
    margin: 0 6px;
}

.label__txt {
    user-select: none;
}

.div_input_users input {
    margin-top: 10px !important;
}

.fio {
    margin-bottom: 10px;
}

.div_input_users {
    width: 100%;
    padding: 10px 18px 0 0;
    display: flex;
    justify-content: space-between;
}

.div_input_users > div {
    width: 49%;
}

.div_input_users.fio > div {
    width: 32%;
}

.classic-label__text {
    display: inline-block;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.classic-label__text img {
    height: 25px;
    vertical-align: top;
}

/* .classic-label .tooltip {
    left: -2px;
} */

.select,
.pseudoselect {
    position: relative;
}

.select {
    width: 100%;
}
.select__label {
    width: 100%;
    color: #333;
    display: block;
    padding: 0 6px;
    font-size: 18px;
    min-width: 100px;
    margin: 10px 0;
    word-break: break-all;
}
.select__input {
    width: 100%;
    display: block;
    overflow: hidden;
    padding-left: 45px;
    text-overflow: ellipsis;
    background-size: 12px auto;
    background-position-x: 18px;
    background-image: url(../images/caret-down.svg);
}
.select.loading .select__input {
    background-image: url(../images/caret-down.svg), url(../images/spinner.svg);
    background-size: 12px auto, 2rem auto;
    background-position-x: 18px, 99%;
}
.select__dropdown {
    height: 0;
    display: none;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 10;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 350px;
    position: absolute;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #76839d;
    box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
}
.select--active .select__dropdown {
    height: auto;
    display: block;
}
.select__dropdown__list {
    margin: 0;
    padding: 0;
}
.select__list__option {
    margin: 0 16px;
    font-size: 14px;
}
.option_btn {
    margin: 0;
    padding: 4px 0;
    border: none;
    width: 100%;
    background: none;
    text-align: left;
}
.option_btn:hover {
    color: #1abc9c;
}
.option_btn:focus {
    opacity: 0.8;
    color: #1abc9c;
}
/* .select .validation__message {
    padding: 4px 6px;
    position: absolute;
} */

.pseudoselect__input {
    margin: 0;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 45px;
    background-image: url(../images/caret-down.svg);
    background-size: 12px auto;
    background-position-x: 18px;
}

.pseudoselect__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #76839d;
    border-radius: 4px;
    padding: 10px;
    max-height: 350px;
    overflow: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    z-index: 1;
}

.pseudoselect__dropdown li {
    margin-left: 0 !important;
}

.pseudoselect__current {
    margin: 0 0 1em;
    color: #76839d;
    text-align: left;
}

.pseudoselect__list {
    list-style-position: inside;
    text-align: left;
    padding: 0;
}

.pseudoselect__list > li {
    margin: 0 0 1em;
    cursor: pointer;
}

.pseudoselect__list > li:last-child {
    margin-bottom: 0;
}

.pseudoselect__input.loading {
    background-image: url(../images/caret-down.svg), url(../images/spinner.svg);
    background-size: 12px auto, 2rem auto;
    background-position-x: 18px, 95%;
}

input.disabled,
textarea.disabled {
    opacity: 0.9;
    cursor: default;
    background-color: #f5f7fc;
}

/*кнопки */
button,
[type="submit"],
[type="reset"],
[type="image"] {
    cursor: pointer;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    cursor: pointer;
    max-width: 100%;
    font: normal normal 18px/48px Roboto, sans-serif;
    padding: 0 35px;
    background-color: #1abc9c;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-height: 47px;
}
.btn:hover {
    background-color: #38a7a3;
}

.btn--grad {
    background: -webkit-gradient(linear, left top, right top, from(#6cd8c6), to(#38a7a3));
    background: linear-gradient(to right, #6cd8c6, #38a7a3);
}

.btn--disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.btn_add {
    width: auto;
    background: #008dd1;
}
.btn_add:hover {
    background: #0171a7;
}
.file-upload__inp {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.file-upload__btn {
    margin: 0;
}
.file-upload__name {
    padding: 10px 5px;
    text-align: center;
    max-height: 55px;
    overflow: hidden;
    display: block;
    word-break: normal;
}

/*заголовки */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: inherit;
    font-size: inherit;
}

h1,
h2 {
    font-size: 18px;
    line-height: 1.3333333333;
}

/*списки */
ul,
ol {
    margin: 0 0 1em;
}

/*таблицы */
.table-wrapper {
    max-width: 100%;
    overflow: hidden;
}
.table__message {
    padding: 15px;
    text-align: right;
}

/*.table-wrapper--scrollable {
    -webkit-mask: linear-gradient(to left, transparent, black 35px);
}*/

table {
    border-collapse: collapse;
    width: 100%;
}

table small {
    font-size: 0.8571428571em;
}

table img {
    display: block;
    width: 100%;
    max-width: 25px;
    margin: 0 auto 0.5em;
}

table img:last-child {
    margin-bottom: 0;
}

td,
th {
    padding: 5px 15px;
    font-weight: inherit;
    text-align: inherit;
}

.bcg-red {
    background-color: #ff0000;
}
.bcg-red:hover {
    background-color: #e90000;
}
.bcg-gray {
    background: #b5bdcc;
}
.bcg-gray:hover {
    background: #9298a5;
}
.bcg-blue {
    background: #008dd1;
}
.bcg-blue:hover {
    background: #0171a7;
}

/*
---------------
Всплывающее окно / PopUp window
---------------
*/
.popup,
.image_view {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    z-index: 10;
}
.popup--active .popup,
.image_view--active .image_view {
    display: flex;
}
body.popup--active,
body.image_view--active {
    overflow: hidden;
}
.popup_window {
    position: relative;
    max-width: 520px;
    min-width: 290px;
    max-height: 600px;
    z-index: 99;
    box-shadow: 2px -2px 15px rgb(0 0 0 / 50%);
    display: flex;
    border-radius: 6px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    align-self: center;
    margin: 10px;
    overflow: hidden;
}
.popup_window__header {
    margin: 0;
    font-size: 18px;
    line-height: 2;
    padding: 15px;
}
.popup_window__body {
    display: flex;
    padding: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    /* align-items: center; */
    flex-direction: column;
    background-color: #e8ebf2;
}
.popup_window__body .qr-img {
    width: 250px;
    height: 250px;
    align-self: center;
}
.popup_window__footer {
    display: flex;
    padding: 9px 15px;
    justify-content: center;
}
.popup_window__footer .btn {
    margin: 0;
    min-width: 100px;
}
.popup_window__txt {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}
.popup__message,
.popup__message--list {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
    text-overflow: ellipsis;
}
.popup__message--txt_center {
    text-align: center;
}
.popup__message--list {
    padding: 0 20px;
}

.popup_type--error .popup_window__body {
    background-color: #f5989d;
}
.popup_type__footer--2_btns .popup_window__footer {
    justify-content: space-around;
}
.popup_type__footer--2_btns .btn-1 {
    margin-right: 5px;
}
.popup_type__footer--2_btns .btn-2 {
    margin-left: 5px;
}
.popup_type_wide .popup_window {
    width: 100%;
    height: 100%;
    max-width: 620px;
}
.popup_type__footer--none .popup_type__footer {
    display: none;
}
.popup_type__form .catalog__label {
    margin: 10px 0;
}
.popup_type__form textarea,
.popup_type__form input {
    width: 100%;
    margin: 5px 0 15px;
}
.popup_type__form textarea {
    min-height: 120px;
}

/*
---------------
Просмотр изображения
---------------
*/
.image_view {
    z-index: 100;
    padding: 15px;
    align-items: center;
}
.image_view__item {
    z-index: 99;
    box-shadow: 2px -2px 15px rgb(0 0 0 / 50%);
}
img.image_view__item {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    background-color: #fff;
}
embed.image_view__item {
    max-width: 900px;
}
.image_view__btn {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 68px;
    width: 68px;
    z-index: 101;
    border: none;
    padding: 20px;
    background: none;
    transition: 0.15s;
    border-radius: 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-image: url("/images/cross.png");
    background-color: rgb(0 0 0 / 50%);
}
.image_view__btn:hover {
    opacity: 0.8;
}

.container {
    width: 100%;
}

/*
---------------
Согласие о публичной оферте
---------------
*/
.agreement_iframe {
    height: 100%;
    border: none;
    min-height: 439px;
}
.agreement_footer {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

/*------------------------------------------------------------*/
/* custom tab for Owners/Edit */
.catalog__tabs {
    display: flex;
    flex: 1 0 100%;
    position: relative;
    border: 1px solid #ddd;
}
.catalog__tabs .tabsingle__txt {
    margin: 0;
}

.tabs {
    display: flex;
    flex: 1 0 100%;
    position: relative;
}
.tab-active {
    background: #e8ebf1 !important;
    color: black !important;
}
.tabsingle {
    padding: 0 10px;
    outline: 1px solid #e8ebf1;
    background: white;
    color: #e8ebf1;
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    cursor: pointer;
    justify-content: center;
}
.tabsingle__txt {
    word-break: break-word;
    white-space: break-spaces;
    text-align: center;
}
i.checked {
    color: #1abc9c;
    border-radius: 10px;
    position: relative;
    top: -10px;
    margin-left: 50px;
    background-color: white;
    padding: 2px;
}

.targetdiv {
    display: none;
}
.targetdiv-active {
    display: block;
}
/*------------------------------------------------------------*/

.nosort {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: bottom;
}

.nosort::after {
    content: "";
    display: block;
    width: 12px;
    height: 16px;
    margin: 10px auto 0;
}

.sort {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: bottom;
}

.sort:after {
    content: "";
    display: block;
    width: 12px;
    height: 16px;
    margin: 10px auto 0;
    background: url(../images/sort/sort.svg) no-repeat center/contain;
}

.sort-up:after {
    background-image: url(../images/sort/sort-up.svg);
}

.sort-down:after {
    background-image: url(../images/sort/sort-down.svg);
}

thead td,
thead th {
    padding: 5px 0;
    background-color: #555;
    color: #fff;
    font-size: 12px;
}
thead th {
    word-break: break-word;
}
tbody tr:nth-child(odd) {
    background-color: #fff;
}

tbody tr:nth-child(even) {
    background-color: #fafbfd;
}

tbody td,
tbody th {
    border-bottom: 1px solid #e1e1e1;
}

tfoot {
    background-color: #e1e1e1;
}

tfoot td,
tfoot th {
    padding: 30px 10px;
}

/*контейнеры */
.wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/*всякое общее барахло */
.gradient-text {
    color: #1abc9c;
}

@supports (-webkit-background-clip: text) {
    .gradient-text {
        color: transparent;
        background: linear-gradient(120deg, #64d0c1, #39a9a4 80%);
    }
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f7fc;
}

.custom-scroll::-webkit-scrollbar:horizontal {
    height: 6px;
    width: auto;
    background-color: #f5f7fc;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #76839d;
    border-radius: 3px;
    width: 6px;
}

.tooltip {
    display: none;
    background-color: #5a5a5b;
    color: #fff;
    font: normal normal 12px/1.67 Roboto, sans-serif;
    padding: 0 0.5em;
    position: absolute;
    top: calc(100% - 20px);
    left: auto;
    right: -5px;
    z-index: 2;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.tooltip:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    right: 11px;
    border-bottom: 5px solid #5a5a5b;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
.tooltip--left {
    left: -8px;
    right: auto;
}
.tooltip--left:before {
    left: 11px;
    right: auto;
}

/*ШАПКА */
.menu-btn {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 4;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-highlight-color: transparent;
    margin-right: 30px;
    cursor: pointer;
}

.menu-btn:before,
.menu-btn:after {
    content: "";
    display: block;
    position: absolute;
    left: 2.5px;
    width: calc(100% - 5px);
    border-top: 2px solid;
    -webkit-transition-property: border-width, -webkit-transform;
    transition-property: border-width, -webkit-transform;
    transition-property: transform, border-width;
    transition-property: transform, border-width, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.menu-btn:before {
    height: 20px;
    top: 5px;
    border-bottom: 2px solid;
}

.menu-btn:after {
    top: calc(50% - 1px);
}

.menu-btn--active:before {
    border-width: 1px;
    height: 2px;
    top: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-btn--active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hidden {
    display: none;
}

/*
---------------
Валидация / Validation
---------------
*/
.validation__message {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}
.field-validation-error {
    color: #f44336;
    font-weight: bold;
}
.input-validation-error,
.input-validation--error {
    border: 1px solid #f44336;
    background-color: silver;
}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
    min-width: 100%;
    max-height: 100%;
    height: 100%;
}

.header {
    background-color: #333333;
    color: #fff;
    padding: 25px 0;
}
.header.header__subscription--hidden {
    padding: 30px 0;
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 140px 0 0;
    height: 40px;
}

.header__breadcrumbs {
    margin: 0 auto 0 0;
    font-size: 18px;
    font-weight: 300;
}

.header__breadcrumbs a {
    text-decoration: none;
    color: inherit;
}

.header__right_menu {
    display: flex;
    padding-left: 10px;
    align-items: flex-end;
    flex-direction: column;
}

.header__subscription {
    color: #b5bdcc;
    margin-top: 10px;
}
.header__subscription--hidden .header__subscription {
    display: none;
}
.header__subscription .value {
    color: #fff;
}

.header__tool {
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 0 0 20px;
}

.header__tool-icon {
    font-size: 1.3888888889em;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.header__tool-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
}

/*ОСНОВНОЕ СОДЕРЖИМОЕ */
.sidebar-page {
    top: 0;
    bottom: 0;
    display: flex;
    overflow: auto;
    position: relative;
}

.sidebar-page__content {
    right: 0;
    left: 50px;
    padding: 0;
    z-index: 1;
    width: 100%;
    /* position: absolute; */
    margin: 0 auto;
    max-width: 1300px;
}

.sidebar-page__others {
    width: calc(50% + 307px);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    /*padding: 0 calc(50% - 570px) 50px 30px;*/
}

.sidebar {
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: 50px;
    position: absolute;
    background-color: #fff;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.2);
}

.sidebar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 18px;
    color: #333;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100%;
    overflow: hidden;
}

.sidebar__menu > li {
    position: relative;
}

/* .sidebar__menu > li.active {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE0LjciIGhlaWdodD0iMjQ2LjciIHZpZXdCb3g9IjAgMCAxMTQuNyAyNDYuNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOS42NDkgMjQ2LjFhOS40NSA5LjQ1IDAgMCAxLTcuMDgxLTE1LjZsODkuNDUtMTA3LjMtODkuNDUtMTA3LjNhOS40NSA5LjQ1IDAgMSAxIDE0LjUyLTEyLjFsOTQuNDkgMTEzLjRhOS40NSA5LjQ1IDAgMCAxIDAgMTIuMWwtOTQuNDkgMTEzLjRhOS40NSA5LjQ1IDAgMCAxLTcuNDM3IDMuNTAzeiIgZmlsbD0iI2I4YzBjZSIvPjwvc3ZnPg0K)
        no-repeat right 18px center/auto 16px #f3f4f7;
} */

/* .sidebar__menu > li.classifier.active {
    background: url("/images/arrow_d.png") no-repeat right 15px center/auto 22px #f3f4f7;
} */

/* .sidebar__menu > li.classifier_down.active {
    background-color: #f9fafb;
} */

/* .sidebar__menu > li.classifier_down {
    font-size: 14px;
    display: none;
}

li.classifier_down.show {
    display: block !important;
} */

/* .sidebar__menu > li.classifier_down > a {
    padding: 30px 30px 30px calc(100% - 183px);
} */

.sidebar__menu > li > a {
    display: flex;
    color: inherit;
    padding: 30px 0;
    text-decoration: none;
    justify-content: center;
}

.sidebar__menu > li > a img {
    margin: 0;
    width: 1.3333333333em;
    height: 1.3333333333em;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.sidebar__menu > li > a span {
    display: none;
}

.sidebar__submenu {
    display: flex;
    flex-direction: column;
}
.sidebar__submenu__wrapper > a.active {
    background: url("/images/arrow_d.png") no-repeat right 15px center/auto 22px #f3f4f7;
}
.sidebar__submenu a {
    display: flex;
    width: 100%;
    padding: 30px 30px 30px calc(100% - 210px);
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
.sidebar__submenu a:hover {
    background-color: #f3f4f7;
}
.sidebar__submenu.subsubmenu a {
    padding: 30px 30px 30px calc(100% - 180px);
}
.sidebar__submenu__link img {
    width: 1.3333333333em;
    height: 1.3333333333em;
    margin: 0 10px 0 0;
}

.sidebar--active .sidebar {
    max-width: 300px;
}
.sidebar--active .sidebar__menu > li > a {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 30px 30px calc(100% - 263px);
    justify-content: flex-start;
}
.sidebar--active .sidebar__menu > li > a img {
    margin: 0 10px 0 0;
}
.sidebar--active .sidebar__menu > li > a span {
    display: block;
}

.line-chart__title {
    font-size: 18px;
    margin: 0 0 0.5em;
}

.line-chart__inner {
    display: flex;
    height: 8px;
    padding: 0 4px;
    margin-top: 21px;
}

.line-chart__item {
    position: relative;
    background-color: #76839d;
}

.line-chart__item:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.line-chart__item:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.line-chart__item:nth-child(n + 2):before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: inherit;
    position: absolute;
    left: -4px;
    top: 0;
}

.line-chart__value {
    font-size: 12px;
    line-height: 1.7;
    white-space: nowrap;
    color: #76839d;
    display: inline-block;
    position: absolute;
    bottom: 100%;
    left: 0;
}

.progress {
    width: 100%;
    height: 14px;
    margin: auto;
    max-width: 130px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background-color: #e9ecef;
}
.progress__bar {
    width: 100%;
    height: 100%;
}
.progress__bar {
    background-color: #28a745;
}
.progress__bar__value {
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 12px;
    position: absolute;
    line-height: 14px;
}

.no_arrow::after {
    background: none;
}

.no_arrow {
    cursor: inherit;
}

.btn.catalog__btn.delete_item_ok {
    background: #e30714;
}

.btn.catalog__btn.delete_item_ok:hover {
    background: #bb0611;
}

/* 
---------------
Изображение
---------------
*/
.image__wrapper {
    display: flex;
    flex-direction: column;
    width: 35%;
    margin: 20px;
}
.image-upload {
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: #f5f7fc;
}
.image-preview {
    height: 100%;
    width: 100%;
    max-height: 390px;
    max-width: 270px;
    background-color: white;
    margin: auto;
    border: dotted 3px #e8ebf1;
    position: relative;
    overflow: hidden;
}
.image-preview span,
.image-preview canvas {
    width: 270px;
    height: 390px;
    display: flex;
    align-items: center;
}
.image-preview-txt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 0 10px;
    text-align: center;
    height: min-content;
    pointer-events: none;
}
.image-preview-txt .title {
    font-size: 20px;
}
.image-preview-txt .description {
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
.image-preview__bcg {
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: 0.15s;
    position: absolute;
    background-image: url(/images/magnify.svg);
    background-color: rgb(0 0 0 / 100%);
    pointer-events: none;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: 64px;
}
.image-upload__btn {
    margin: 10px 0;
}
.image {
    width: auto;
    height: auto;
    max-width: 264px;
    max-height: 384px;
    display: block;
}
.image:hover + .image-preview__bcg {
    opacity: 0.6;
}
.image:hover ~ .image-preview-txt {
    visibility: hidden;
}
.image__menu,
.image__menu-1 {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.image__menu-1 .btn {
    margin: 10px 8px;
}
.image__menu .btn,
.image__menu-1 .btn {
    min-width: 160px;
}
.image__menu .btn {
    align-self: center;
}

/* 
---------------
Страницы редактрования/добавления
---------------
*/
.catalog__head__row {
    display: flex;
    flex: 1 0 100%;
}
.catalog__head__row_wide,
.catalog__head__row_double,
.catalog__head__row_some {
    align-items: center;
    justify-content: space-between;
}
.catalog__head__row_wide .catalog__select,
.catalog__head__row_wide .catalog__input {
    margin-left: 0;
    margin-right: 0;
}
.catalog__head__row_double {
    flex-direction: row;
}
.catalog__head__row__box {
    display: flex;
}
.catalog__head__row_some {
    margin-top: 10px;
    padding-top: 10px;
}
.catalog__head__row_some .catalog__select,
.catalog__head__row_some .catalog__input {
    margin: 0;
}
.catalog__head__row_some .catalog__head__row__box {
    margin: 0 9px;
}
.catalog__head__row_some .catalog__head__row__box.first {
    margin-left: 0;
}
.catalog__head__row_some .catalog__head__row__box.last {
    margin-right: 0;
}
.catalog__head__row .catalog__input.last {
    margin-right: 0;
}
.catalog__head__row .catalog__label {
    padding: 0;
}
.catalog__head__row .select {
    margin: 0;
    margin-left: 9px;
}

.catalog__head form {
    display: flex;
    flex-direction: column;
}
.head__row {
    display: flex;
}
.head__row__box {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 10px 6px;
    align-items: center;
    justify-content: flex-end;
}
.head__row__box--auto {
    width: auto;
}
/* .head__row__box.btn {
    justify-content: center;
} */
.head__row__box .select,
.head__row__box .catalog__input {
    margin: 0;
}
.head__row__box .catalog__input--date {
    width: 100%;
    min-width: 200px;
}
.head__row__box .catalog__input--date.last {
    margin-left: 6px;
}
.head__row__box__text {
    font-size: 18px;
    min-width: 120px;
}
.head__row--multiple {
    justify-content: space-between;
}

/* 
---------------
Страницы редактрования/добавления
---------------
*/
.edite_add_block {
    width: 100%;
    display: flex;
    padding: 0 7px;
    flex-wrap: wrap;
    background: #e8ebf1;
    justify-content: center;
}
.edite_add_block__row {
    display: flex;
    flex: 1 0 100%;
}
.edite_add_block__row--wide {
    width: 100%;
    max-width: none;
    flex-direction: column;
}
.edite_add_block__row--double,
.edite_add_block__row--triple {
    justify-content: space-between;
}
.edite_add_block__row--double .edite_add_block__row__box {
    width: 100%;
    max-width: 50%;
}
.edite_add_block__row_items--center .edite_add_block__row__box,
.edite_add_block__row_items--center .pseudoselect {
    align-items: center;
    justify-content: center;
}
.edite_add_block__row__box.section_title,
.edite_add_block__row__box.subsection_title {
    width: 100%;
    font-size: 22px;
    padding: 12px 0;
    margin-top: 20px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #b5bdcc;
}
.edite_add_block__row__box.subsection_title {
    font-size: 18px;
    padding: 0 6px;
    border: none;
    font-weight: 600;
    margin-top: 30px;
}
.edite_add_block__row--triple .edite_add_block__row__box {
    width: 100%;
    max-width: 275px;
    align-self: flex-end;
}
.edite_add_block__row--triple .edite_add_block__row__box input {
    width: 100%;
}
.edite_add_block__row__box {
    display: flex;
    margin: 10px 9px 0;
    flex-direction: column;
}
.file-upload__box {
    padding-top: 10px;
    align-items: center;
}
.edite_add_block .catalog__label {
    width: 100%;
    margin: 10px 0;
    display: block;
}
[type="text"],
[type="number"] .edite_add_block input {
    /* margin-top: auto; */
    width: 100%;
}
[type="checkbox"] .edite_add_block input {
    margin: 10px 0;
}

.edite_add_block .btn.catalog__btn {
    margin: 40px 8px;
    min-width: 20%;
    max-width: 280px;
}
.edite_add_block .btn.file-upload__btn {
    margin: 0;
}

.edite_add_block .btn.catalog__btn.gray {
    background: #b5bdcc;
}

.edite_add_block .btn.catalog__btn.gray:hover {
    background: #9298a5;
}
.edite_add_block__row_passport .passport_data__wrapper,
.edite_add_block__row_rent .rent_data__wrapper,
.edite_add_block__row_bid .bid__wrapper {
    width: 65%;
    display: flex;
    margin-top: 15px;
    flex-direction: column;
}
.edite_add_block__row_passport1,
.edite_add_block__row_org_name {
    align-items: flex-end;
}
.edite_add_block__row_passport1 .issued {
    width: 50%;
    display: flex;
    flex: 1 1 auto;
    margin: 0px 9px 10px;
    flex-direction: column;
}
.edite_add_block__row_passport .address {
    display: flex;
}
/* .edite_add_block__row_passport .address .address_type__select, */
.edite_add_block__row_org_address .address,
.edite_add_block__row_login .login,
.edite_add_block__row_command .terminal,
.edite_add_block__row_command .command {
    flex: 1 1 auto;
    margin: 0px 9px 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 200px;
}
.edite_add_block__row_login .login {
    width: auto;
}
.edite_add_block__row_command .terminal,
.edite_add_block__row_command .command {
    width: 100%;
    align-items: center;
    align-self: flex-start;
}
.edite_add_block__row_command .command .catalog__select {
    margin: 0;
    width: 100%;
}
.edite_add_block__row__box.catalog__select {
    margin: 10px 9px 0;
}
.edite_add_block__row_command .command .pseudoselect__dropdown {
    left: 0px;
    right: 0px;
    width: 100%;
    position: absolute;
}
.edite_add_block__row_command_params {
    padding: 10px 9px;
}
.edite_add_block__row_command_params .catalog__label {
    width: auto;
    display: flex;
    margin-top: 0;
    align-items: center;
}

.edite_add_block .catalog__btn.image-upload__btn,
.edite_add_block__row .terminal .catalog__label,
.edite_add_block__row .command .catalog__label {
    display: block;
    margin: 10px 0;
}
.edite_add_block__row_login {
    align-items: flex-end;
}
.edite_add_block__row_login .btn.catalog__btn.change_password__btn {
    margin-bottom: 11px;
}
.edite_add_block__row_navigate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.edite_add_block__row .checkbox__wrapper,
.edite_add_block__row .toggle__wrapper {
    display: flex;
    align-items: flex-end;
    padding: 0 9px;
    height: 100%;
    align-self: flex-end;
    margin-bottom: 10px;
}
.edite_add_block__row .toggle__wrapper {
    align-items: center;
}
.edite_add_block__row .checkbox__wrapper .checkbox {
    margin-right: 0;
}
.edite_add_block__row .checkbox__wrapper .checkbox.copy {
    margin: 0 6px;
}
.edite_add_block__row .checkbox__wrapper > .catalog__label {
    margin: 0;
    margin-left: 10px;
}
.edite_add_block__row_name {
    flex-direction: column;
}

.help__wrapper {
    margin: 9px;
}

.toggle {
    display: flex;
    height: 38px;
    position: relative;
    user-select: none;
}
.toggle .toggle-switch {
    display: inline-block;
    height: 38px;
    width: 104px;
    box-sizing: border-box;
    position: relative;
    border-radius: 4px;
    background: #b5bdcc;
    transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
}
.toggle .toggle-switch:before {
    content: attr(data-label-on);
    display: inline-block;
    box-sizing: border-box;
    width: 50px;
    padding: 2px 6px;
    position: absolute;
    top: 0;
    left: 50px;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    line-height: 36px;
}
.toggle .toggle-switch:after {
    content: attr(data-label-off);
    display: inline-block;
    box-sizing: border-box;
    width: 48px;
    border-radius: 3px;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 0;
    text-transform: uppercase;
    text-align: center;
    background: white;
    line-height: 32px;
    font-size: 12px;
    font-weight: 600;
    color: #777;
    transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
}
.toggle input[type="checkbox"] {
    display: none;
}
.toggle input[type="checkbox"]:checked + .toggle-switch {
    background-color: #008dd1;
}
.toggle input[type="checkbox"]:checked + .toggle-switch:before {
    content: attr(data-label-off);
    left: 0;
}
.toggle input[type="checkbox"]:checked + .toggle-switch:after {
    content: attr(data-label-on);
    color: #008dd1;
    transform: translate3d(50px, 0, 0);
}
.toggle input[type="checkbox"]:not(:disabled) + .toggle-switch:hover {
    cursor: pointer;
}
/* .toggle input[type="checkbox"]:disabled + .toggle-switch {
    opacity: 0.6;
    filter: grayscale(50%);
} */
.toggle.focused .toggle-switch:after {
    box-shadow: inset 0px 0px 4px #ff5623;
}
.toggle.copy {
    margin: 0 6px;
}
.toggle.disabled,
.toggle.loading {
    opacity: 0.9;
    cursor: default;
    background-color: #f5f7fc;
}
.toggle.disabled .toggle-switch:after,
.toggle.disabled .toggle-switch:before,
.toggle.loading .toggle-switch:after,
.toggle.loading .toggle-switch:before {
    opacity: 0.5;
    cursor: default;
}
.toggle.loading .toggle-switch {
    background-image: url(../images/spinner.svg);
    background-size: 32px auto, 2rem auto;
    background-position: 50%, 0;
    background-repeat: no-repeat;
}

.catalog__head__row_page_settings {
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}
.catalog__head__row_page_settings .catalog__label {
    margin: 0;
    padding: 0;
    display: flex;
    padding-left: 15px;
    flex-direction: row;
}
.catalog__head__row_page_settings .catalog__input {
    margin: 0;
    width: 100%;
}
.catalog__head__row_page_settings .catalog__btn {
    margin: 0 0 0 9px;
}

/*
---------------
Уровень сигнала / Signal level
---------------
*/
.signal_level {
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 20px;
    margin: auto;
}
.signal_level__item {
    width: 100%;
    max-width: 5px;
    background-color: #76839d;
}
.signal_level__item.one {
    height: 100%;
    max-height: 10%;
}
.signal_level__item.two {
    height: 100%;
    max-height: 20%;
}
.signal_level__item.three {
    height: 100%;
    max-height: 30%;
}
.signal_level__item.four {
    height: 100%;
    max-height: 40%;
}

/*
---------------
Клиенты / Owner
---------------
*/
.edite_add_block__row_inn .catalog__select {
    width: auto;
}
.edite_add_block__row_fns .catalog__label {
    display: flex;
    padding: 0 10px;
    align-items: center;
}
.catalog__owner .telegram_name {
    height: 0;
}
.catalog__owner .telegram_name > a {
    z-index: 1;
    position: relative;
}

/*
---------------
Заявки / Requests, Tickets
---------------
*/
.catalog__head__row_requests .btn.btn_add {
    flex-shrink: 0;
    margin: 0 9px;
}
.catalog__head__row_requests .period {
    padding: 0;
    width: 100%;
    flex-shrink: 1;
}
.catalog__head__row_requests .pseudoselect {
    width: auto;
}
/* .catalog__head__row_requests .catalog__label {
    min-width: 156px;
} */
.catalog__head__row_requests .catalog__input--date {
    width: 100%;
    max-width: 182px;
}
.catalog__head__row_requests .catalog__label_type,
.catalog__head__row_requests .catalog__label_state,
.catalog__head__row_requests .btn_add {
    min-width: 172px;
}

.catalog__request .caption {
    justify-content: space-between;
}
.edite_add_block__row_agreement {
    flex-direction: column;
}
.edite_add_block__row_agreement .catalog__label {
    display: initial;
}
.edite_add_block__row_agreement .txt {
    font-size: 18px;
    text-decoration: underline;
}
.catalog__request .edite_add_block__row textarea {
    min-height: 150px;
}
.catalog__request .edite_add_block__row.terminal .edite_add_block__row__box {
    width: 100%;
}
.catalog__request .edite_add_block__row__box .period {
    display: flex;
    justify-content: space-between;
}
/* .catalog__request .edite_add_block__row__box .period .item1,
.catalog__request .edite_add_block__row__box .period .item2 {
    max-width: 205px;
} */
.catalog__request .edite_add_block__row__box .period .item1 {
    margin-right: 4px;
}
.catalog__request .edite_add_block__row__box .period .item2 {
    margin-left: 4px;
}
.catalog__request .edite_add_block__row .catalog__select {
    margin-top: 10px;
}
.catalog__request .edite_add_block__row.terminal .pseudoselect {
    width: 100%;
}
.catalog__request .edite_add_block__row.terminal .inp.first {
    margin-right: 9px;
}
.catalog__request .edite_add_block__row.ticket_message--hidden,
.catalog__request .edite_add_block__row.terminal--hidden,
.catalog__request .edite_add_block__row.tids--hidden {
    display: none;
}
.catalog__owner .edite_add_block__row_inn,
.catalog__owner .edite_add_block__row_fullname,
.catalog__owner .edite_add_block__row_contacts,
.catalog__request .edite_add_block__row_inn,
.catalog__request .edite_add_block__row_fullname,
.catalog__request .edite_add_block__row_contacts,
.catalog__request .edite_add_block__row_passport1 {
    align-items: flex-end;
    justify-content: space-between;
}
.catalog__owner .edite_add_block__row_inn .edite_add_block__row__box,
.catalog__owner .edite_add_block__row_fullname .edite_add_block__row__box,
.catalog__owner .edite_add_block__row_contacts .edite_add_block__row__box,
.catalog__request .edite_add_block__row_inn .edite_add_block__row__box,
.catalog__request .edite_add_block__row_fullname .edite_add_block__row__box,
.catalog__request .edite_add_block__row_contacts .edite_add_block__row__box,
.catalog__request .edite_add_block__row_passport1 .edite_add_block__row__box {
    width: 100%;
    max-width: 275px;
}
.catalog__request .edite_add_block__row_inn .edite_add_block__row__box {
    max-width: none;
}
.catalog__owner .edite_add_block__row_inn input,
.catalog__owner .edite_add_block__row_fullname input,
.catalog__owner .edite_add_block__row_contacts input,
.catalog__request .edite_add_block__row_inn input,
.catalog__request .edite_add_block__row_fullname input,
.catalog__request .edite_add_block__row_contacts input {
    width: 100%;
}
.catalog__request .edite_add_block__row__box {
    width: auto;
}
.catalog__request .edite_add_block__row__box.attachment {
    width: 100%;
}
.catalog__request .edite_add_block__row--double .edite_add_block__row__box {
    width: 100%;
    max-width: 50%;
}
.catalog__request .edite_add_block__row_org_site .edite_add_block__row__box {
    width: 100%;
}
.catalog__request .edite_add_block__row--triple .edite_add_block__row__box {
    width: 100%;
    max-width: 275px;
}
.ticket__attachments.loading .ticket__attachments__header {
    background: url(/images/spinner.svg);
    background-size: 22px auto, 4rem auto;
    background-position-x: 99px, 0;
    background-repeat: no-repeat;
}

.edite_add_block__row .commission_txt {
    width: 100%;
    display: flex;
    flex: 1 1 auto;
    font-size: 18px;
    margin: 0px 9px 10px;
    align-self: flex-end;
    max-width: max-content;
}
.commission_txt--hidden,
.edite_add_block__row .commission_txt--hidden {
    display: none;
}
.edite_add_block__row_agreement,
.edite_add_block__row_offer {
    flex-direction: row;
}
.edite_add_block__row_agreement .agreement_data__wrapper,
.edite_add_block__row_offer .offer_data__wrapper {
    margin: 20px 0;
    padding: 0 20px 0 30px;
}
.agreement_data__wrapper .list,
.offer_data__wrapper .list {
    margin: 0;
    padding: 0;
    font-size: 18px;
}
.agreement_data__wrapper .list li,
.offer_data__wrapper .list li {
    margin-top: 5px;
    margin-bottom: 30px;
}
.agreement_data__wrapper .list p,
.offer_data__wrapper .list p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}
.agreement_data__wrapper .list .btn,
.offer_data__wrapper .list .btn {
    margin: 0;
    margin-top: 20px;
}

.reaction_indicator {
    width: 16px;
    height: 16px;
    margin: 0 auto;
    border-radius: 50%;
}
.reaction_indicator-red {
    background-color: #ff0000;
}
.reaction_indicator-yellow {
    background-color: #ffbb33;
}
.reaction_indicator-green {
    background-color: #1abc9c;
}
.reaction_indicator-gray {
    background-color: #ebebeb;
}

.catalog__owner .catalog__select,
.catalog__request .catalog__select {
    position: relative;
}

/*
---------------
Микромаркеты / Micromarkets
---------------
*/
.catalog_micromarkets .catalog__head__row__box.states {
    width: 100%;
    display: flex;
    max-width: 300px;
    margin-top: 20px;
    justify-content: space-around;
}
.catalog_micromarkets .catalog__head__row__box.states .catalog__option {
    margin: 0;
    min-width: 55px;
}

/*
---------------
Продажи / Sales
---------------
*/
.chart__body {
    background-color: #fff;
    height: 684px;
    padding: 15px 15px 5px;
}
.chart__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    height: 100%;
}
.chart__item {
    min-width: 82px;
    padding: 15px 7px 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #1abc9c;
    color: #fff;
    border-bottom: 4px solid #fff;
    margin: 0 15px 0 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 0;
}
.chart__item:nth-child(2n) {
    background-color: #529f90;
}
.chart__value {
    font-size: 18px;
    text-align: center;
    word-break: break-word;
}
.chart__date {
    font-size: 12px;
}
.chart__week-day {
    font-size: 18px;
}
.chart__legend {
    background-color: #555;
    color: #fff;
    padding: 15px;
}
.chart__legend small {
    font-size: 0.8571428571em;
    line-height: 2;
}

/*
---------------
Подразделения
---------------
*/
.edite_add_block__row.owners .catalog__select {
    position: relative;
}

/*
---------------
Абонентская плата / Subscriptions
---------------
*/
.catalog_subscriptions .edite_add_block__row__box.date,
.catalog_subscriptions .edite_add_block__row__box.catalog__select {
    max-width: 200px;
    margin: 10px 9px 0;
}
.catalog_subscriptions .edite_add_block__row__box.catalog__select {
    max-width: none;
}
.catalog_subscriptions .edite_add_block__row__box.date .catalog__input--date {
    margin: 0;
}
.comment textarea,
.catalog_subscriptions .edite_add_block__row__box.comment textarea {
    min-height: 150px;
}
.catalog__table .subscriptions__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subscriptions__result ul {
    margin: 0;
    padding: 0;
    text-align: left;
    list-style-type: none;
}
.subscriptions__result ul > li {
    display: flex;
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.2;
    align-items: center;
}
.subscriptions__result ul > li .value {
    padding: 0 5px;
    font-size: 18px;
    font-weight: 500;
}
.subscriptions__result .btn_add {
    margin: 0;
}
.subscriptions__result .remainder {
    color: #ff0000;
}
.subscriptions__result__actions {
    display: flex;
    flex-direction: column;
    max-width: 300px;
}
.subscriptions__result__actions .file-upload__box {
    padding: 0;
}
.subscriptions__result__actions .btn {
    align-self: flex-end;
    margin-top: 15px;
}

.payment-details {
    display: flex;
}
.payment-details .wrapper {
    margin: auto;
    border: solid;
    display: flex;
    max-width: 600px;
    padding: 30px 20px;
    font-size: 16px;
    flex-direction: column;
    background-color: lightgrey !important;
}
.payment-details .wrapper .item {
    display: flex;
}
.payment-details .wrapper .qr-img {
    width: 250px;
    height: 250px;
}
.payment-details .wrapper li {
    margin-bottom: 10px;
}
.payment-details .wrapper li .title {
    font-weight: 600;
}

/*
---------------
Отчёты
---------------
*/
.catalog_reports .subscriptions__result {
    justify-content: flex-end;
}

/*
---------------
Бонусы
---------------
*/
.edite_add_block__row_card_info {
    justify-content: space-between;
}
.edite_add_block__row_card_info .card_info {
    flex: 1 1 auto;
    margin: 0px 9px 10px;
    display: flex;
    position: relative;
}

/*
---------------
Товарная матрица
---------------
*/
.product_matrix {
    margin-top: 20px;
}
.product_matrix .inp-number {
    margin: auto;
    min-width: 60px;
    max-width: 60px;
}
.product_matrix .add_item {
    width: auto;
    margin: 20px 8px;
}
.product_matrix .table__row td {
    padding: 15px;
}
.product_matrix .table__row .catalog__select,
.product_matrix .table__row .edite_add_block__row__box {
    margin: 0;
    width: 100%;
}
.product_matrix .table__row .actions__wrapper {
    display: flex;
    justify-content: center;
}
.product_matrix .table__row .classic-label__text img {
    margin: 0;
}
.product_matrix .btn_add,
.product_matrix .btn.catalog__btn {
    margin: 0 0 40px 0;
}

/*
---------------
Транзакции
---------------
*/
.catalog__head__row_transactions,
.catalog__head__row_packet_logs,
.catalog__head__row_requests,
.catalog__head__row_reports,
.catalog__head__row_terminals_moving,
.catalog__head__row_terminals {
    margin-top: 20px;
    align-items: center;
}
.catalog__head__row_transactions .catalog__label,
.catalog__head__row_packet_logs .catalog__label,
.catalog__head__row_requests .catalog__label,
.catalog__head__row_reports .catalog__label,
.catalog__head__row_terminals_moving .catalog__label,
.catalog__head__row_terminals .catalog__label {
    margin: 0 9px;
}
.catalog__head__row_transactions .catalog__input,
.catalog__head__row_transactions .btn,
.catalog__head__row_transactions .catalog__select,
.catalog__head__row_requests .catalog__input,
.catalog__head__row_requests .btn,
.catalog__head__row_requests .catalog__select,
.catalog__head__row_packet_logs .catalog__input,
.catalog__head__row_packet_logs .btn,
.catalog__head__row_reports .catalog__input,
.catalog__head__row_reports .btn,
.catalog__head__row_reports .catalog__select,
.catalog__head__row_terminals_moving .catalog__input,
.catalog__head__row_terminals_moving .btn,
.catalog__head__row_terminals_moving .catalog__select,
.catalog__head__row_terminals .catalog__input,
.catalog__head__row_terminals .btn {
    margin: 0;
    margin-left: 9px;
}
.catalog__head__row_transactions .catalog__select,
.catalog__head__row_requests .catalog__select,
.catalog__head__row_reports .catalog__select,
.catalog__head__row_terminals_moving .catalog__select {
    position: relative;
}
.catalog__head__row_transactions .catalog__label,
.catalog__head__row_reports .catalog__label {
    width: 100%;
    max-width: 110px;
    word-break: break-all;
}

.transaction_cancel__row {
    width: 100%;
    display: flex;
    padding: 4px 0;
    font-size: 16px;
    max-width: 224px;
    align-self: center;
    flex-direction: row;
    justify-content: space-between;
}
.transaction_cancel__row .value {
    font-weight: 600;
}

/*
---------------
Терминалы
---------------
*/
.edite_add_block__row_auto_return {
    margin: 6px 0;
}

.edite_add_block__row_cash {
    justify-content: space-between;
}

/*
---------------
Карта терминалов / Terminals map
---------------
*/
.terminals_map {
    width: 100%;
    height: 600px;
    max-height: 600px;
}
.terminals_map-window_indicator {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}
.terminals_map-window_title {
    display: flex;
    align-items: center;
}

/*
---------------
Настройка терминала / Terminal settings
---------------
*/
.terminal_info-list {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style-type: none;
}
.terminal_info-list li {
    display: flex;
    align-items: center;
}
.terminal_info-list label,
.terminal_info-list span {
    width: 50%;
}
.terminal_info-list__item,
.terminal_info-list__item span,
.terminal_info-list__item.catalog__label {
    display: flex;
    align-self: center;
}
.terminal_info-list__item img {
    cursor: pointer;
    margin-right: 6px;
}
.catalog__terminal_settings .edite_add_block__row.auto_return .checkbox__wrapper {
    align-self: flex-start;
    margin-top: 10px;
}
.catalog__terminal_settings .edite_add_block__row__box.bonus_checkbox__wrapper {
    max-width: 365px;
}
.catalog__terminal_settings .edite_add_block__row.toggle_with_title {
    padding-top: 30px;
    align-items: center;
}
.catalog__terminal_settings .edite_add_block__row.toggle_with_title .edite_add_block__row__box {
    margin-top: 0;
    margin-bottom: 0;
}
.catalog__terminal_settings .edite_add_block__row.toggle_with_title .toggle__wrapper {
    margin-bottom: 0;
    align-self: flex-start;
}
.catalog__terminal_settings .template_controls {
    align-items: flex-start;
}
.catalog__terminal_settings .edite_add_block__row.template_controls .btn {
    margin: 20px auto;
}

/*
---------------
Логи терминалов
---------------
*/
.catalog__head__row_packet_logs .show_books {
    display: flex;
    align-items: center;
}

/*
---------------
Пагинация
---------------
*/
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 25px auto 0;
}
.pagination:first-child {
    margin-top: 0;
}
.pagination__link {
    display: inline-block;
    margin: 5px;
    font-size: 18px;
    color: #333;
    width: 48px;
    line-height: 48px;
    border-radius: 4px;
    text-align: center;
    background-color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.pagination__link--active {
    background-color: #b5bdcc;
}
.pagination--hidden {
    display: none;
}

.caption {
    display: flex;
    color: #333;
    font-size: 18px;
    min-width: 100px;
    margin: 30px 9px;
}
.catalog__head {
    position: relative;
    margin: 10px 0 20px;
}

.catalog__head-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.catalog__head__message {
    background-color: #e8ebf2;
    padding: 20px 30px;
    margin-top: 20px;
    line-height: 2;
    font-size: 16px;
    display: flex;
}
.catalog__head__message.column {
    flex-direction: column;
}
.catalog__head__message .heading {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.5;
}
.catalog__head__message .line {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}
.catalog__head__message .list {
    margin: 0;
    padding: 0;
    padding-left: 20px;
}
.catalog__head__message .list li {
    margin-top: 25px;
}
.catalog__head__message__box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5px;
}
.catalog__head__message__box .btn {
    margin-bottom: 15px;
}
/* .catalog__head__message .btn {
    align-self: flex-end;
} */
.catalog__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    margin-top: 1rem;
}
.catalog__row *:first-child {
    margin-right: 0;
}
.catalog__row *:not(:first-child) {
    margin-left: 1rem;
}

/* .catalog__head .pseudoselect__dropdown {
    left: 119px;
    width: calc(100% - 119px);
} */
.catalog__head-chart {
    margin: 20px 9px 0;
    width: 100%;
    max-width: 460px;
}

.catalog__label {
    color: #333;
    padding: 0 6px;
    font-size: 18px;
    min-width: 100px;
    margin: 20px 9px 0;
}
.catalog__row .catalog__label {
    margin: 0;
}

.catalog__input {
    margin: 20px 9px 0;
    /* -webkit-box-flex: 1;
    -ms-flex: 1 1 auto; */
    flex: 1 1 auto;
    border-radius: 4px;
}
.catalog__input--date {
    width: auto;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.catalog__btn {
    margin: 20px 0 0;
}
.catalog__btn.blue {
    background: #008dd1;
}
.catalog__btn.blue:hover {
    background: #0171a7;
}

.catalog__select {
    /* width: 368px; */
    margin: 20px 9px 0;
    position: relative;
    flex: 1 1 auto;
}
.catalog__option {
    min-width: 67px;
    margin: 20px 15px 0;
}

.catalog__table {
    text-align: center;
    table-layout: fixed;
    /*для тултипов */
    margin-bottom: 25px;
}

.catalog__table tbody {
    line-height: 1.7142857143;
}

.catalog__table tbody small {
    line-height: 2;
    display: block;
    margin: 0 0 0.35em;
}

.catalog__table tbody small:last-child {
    margin-bottom: 0;
}

.catalog__table tbody img + small {
    line-height: normal;
}

.catalog__table tfoot td:first-child,
.catalog__table tfoot th:first-child {
    text-align: right;
}

.catalog__table_td {
    line-height: 1.4;
    padding: 8px 2px;
    word-break: break-word;
}
.catalog__table_td .actions__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.td-font_size--13 {
    font-size: 13px;
}
.catalog__table .checkbox {
    margin: 0;
}
.table__edit_btn {
    padding: 0 2px;
    cursor: pointer;
}

.catalog__icon {
    display: flex;
    position: relative;
    font-size: 25px;
    color: #76839d;
    margin: 5px auto;
    justify-content: space-between;
    text-align: center;
    max-width: 60px;
    width: max-content;
}

.catalog__icon img {
    vertical-align: top;
    margin: 0 4px;
}

.catalog__pagination {
    margin-top: 5px;
}

.chart__body {
    background-color: #fff;
    height: 684px;
    padding: 15px 15px 5px;
}

.chart__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    height: 100%;
}

.chart__item {
    min-width: 82px;
    padding: 15px 7px 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #1abc9c;
    color: #fff;
    border-bottom: 4px solid #fff;
    margin: 0 15px 0 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 0;
}

.chart__item:nth-child(2n) {
    background-color: #529f90;
}

.chart__value {
    font-size: 18px;
    text-align: center;
}

.chart__date {
    font-size: 12px;
}

.chart__week-day {
    font-size: 18px;
}

.chart__legend {
    background-color: #555;
    color: #fff;
    padding: 15px;
}

.chart__legend small {
    font-size: 0.8571428571em;
    line-height: 2;
}

.auth-page {
    padding: 50px 0 80px;
}

.auth-page__wrapper {
    height: 100%;
}

.auth-page__form {
    height: 100%;
    background-color: #fff;
    padding: 40px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.auth-page__inner {
    width: 555px;
    max-width: 100%;
    position: relative;
    min-height: 424px;
    padding: 100px 100px 30px;
    background-color: #f2f4f8;
    border-radius: 5px;
    text-align: center;
    margin-top: 80px;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.auth-page__icon {
    width: 166px;
    height: 166px;
    border-radius: 50%;
    border: 20px solid #f2f4f8;
    background-color: #fff;
    text-align: center;
    line-height: 115px;
    position: absolute;
    top: -78px;
    left: calc(50% - 83px);
}

.auth-page__icon img {
    display: inline-block;
    max-height: 50%;
    max-width: 50%;
    vertical-align: middle;
}

.auth-page__title {
    font-size: 24px;
    margin: 0 0 2.5em;
}

.auth-page__input {
    display: block;
    width: 100%;
    margin: 10px 0 45px;
    background: none;
    border: none;
    border-bottom: 2px solid #cdd3e4;
    text-align: center;
    font-size: 24px;
    padding: 4.5px 0;
}

.auth-page__input::-webkit-input-placeholder {
    color: #76839d;
}

.auth-page__input::-moz-placeholder {
    color: #76839d;
}

.auth-page__input:-ms-input-placeholder {
    color: #76839d;
}

.auth-page__input:last-child {
    margin-bottom: 0;
}

.auth-page__note {
    font-size: 24px;
    margin: 0 0 15px;
}

.auth-page__note:last-child {
    margin-bottom: 0;
}

.auth-page__btn {
    width: 360px;
    margin-top: 40px;
}
.auth-page__form-menu {
    display: flex;
    flex-direction: column;
}
.auth-page__form-menu .or {
    padding: 15px 0;
}
.auth-page__form-menu .link {
    font-size: 18px;
}

.show-password__label {
    display: flex;
    margin: 0 auto;
    padding: 4px 0;
    font-weight: 600;
    margin-top: 10px;
    width: max-content;
    align-items: center;
    flex-direction: row;
}
.show-password__label .password-checkbox {
    margin: 0;
    margin-right: 9px;
}

.hint {
    background: #fff;
    padding: 1.5rem 1rem;
}

/*
---------------
Автонастройка терминалов / Setup terminal
---------------
*/
.setup {
    padding-top: 40px;
}
.setup__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.setup__title {
    text-align: center;
    margin-bottom: 36px;
}
.setup__form {
    margin: auto;
    width: 100%;
    padding: 0 10px;
    max-width: 555px;
    border-radius: 5px;
    background-color: #f2f4f8;
}
.setup__form-bd {
    padding: 0;
    padding-top: 85px;
    width: 100%;
    height: 650px;
    max-width: 360px;
    display: flex;
    text-align: center;
    align-content: center;
    flex-direction: column;
}
.setup__form-menu__btn {
    margin-top: 60px;
}
.setup__form-menu__btn,
.setup__form-menu__link {
    text-transform: uppercase;
}
.setup__form-menu .or {
    padding: 20px 0;
}

/*
---------------
Вложение / Attachment
---------------
*/
.attachments__wrapper {
    display: flex;
    min-width: 290px;
    flex-direction: column;
    padding: 0;
}
.attachment {
    width: 100%;
    max-width: 290px;
    max-height: 80px;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f5f7fc;
    padding: 10px;
    align-self: flex-start;
    margin-bottom: 10px;
    justify-content: space-between;
}
.attachment .image-preview {
    margin: 0;
    max-width: 60px;
    max-height: 60px;
    border-radius: 4px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f7fc;
}
.attachment .image-preview__bcg {
    background-size: 28px;
}
.attachment__img {
    max-width: 60px;
    max-height: 60px;
}
.attachment__img.icon {
    max-width: 24px;
}
.attachment__info {
    flex-grow: 1;
    margin-left: 10px;
}
.attachment__title {
    font-size: 16px;
    line-height: 1;
    word-break: break-all;
}
.attachment__action {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 25px;
    margin-left: 10px;
    align-items: center;
}
.attachment__action .delete_item {
    height: 25px;
    cursor: pointer;
}
.attachments__wrapper .file-upload__btn {
    align-self: flex-end;
}

/*ПОДВАЛ */
.footer {
    background-color: #000;
    color: #777;
    font-size: 12px;
    padding: 28px 0;
}

.footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__text {
    margin: 0 15px 0 0;
}

.footer__text:last-child {
    margin: 0 0 0 15px;
    text-align: right;
}

.footer__contact {
    display: inline-block;
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}

.footer__contact-icon {
    font-size: 2em;
    line-height: 1;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    margin-right: 0.25em;
}

.footer__contact-text {
    display: inline-block;
    vertical-align: middle;
}

#filterr_delete {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.del_formm {
    position: fixed;
    width: 316px;
    left: calc(50% - 158px);
    z-index: 99;
    text-align: center;
    top: 30%;
    padding-top: 40px;
    background: #fff;
    box-shadow: 2px -2px 15px rgba(0, 0, 0, 0.5);
    display: none;
}

.confirm_form {
    position: fixed;
    width: 450px;
    left: calc(50% - 225px);
    z-index: 99;
    text-align: center;
    top: 30%;
    padding-top: 40px;
    background: #fff;
    box-shadow: 2px -2px 15px rgba(0, 0, 0, 0.5);
    display: none;
}

.content_index {
    width: 100%;
}

.agreement {
    position: absolute;
    width: 90%;
    z-index: 1;
    text-align: justify;
    top: 55%;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 2px -2px 15px rgba(0, 0, 0, 0.5);
    display: none;
}

.display--none {
    display: none;
}
.text-align--left {
    text-align: left;
}

/*
---------------
Адаптив
---------------
*/
@media (min-width: 992px) {
    .btn {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    /* .btn:hover {
        background-color: #529f90;
    } */

    .tooltip {
        display: inline-block;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    *:hover > .tooltip {
        opacity: 1;
        pointer-events: auto;
        top: calc(100% + 7px);
    }

    .pseudoselect__list > li:hover {
        color: #1abc9c;
    }

    .bcg-red {
        background-color: #ff0000;
    }
    .bcg-red:hover {
        background-color: #e90000;
    }
    .bcg-gray {
        background: #b5bdcc;
    }
    .bcg-gray:hover {
        background: #9298a5;
    }
    .bcg-blue {
        background: #008dd1;
    }
    .bcg-blue:hover {
        background: #0171a7;
    }
}

@media (max-width: 1169px) {
    .wrapper {
        max-width: 962px;
    }

    .menu-btn {
        display: inline-block;
    }

    .header,
    .header.header__subscription--hidden {
        padding: 10px 0;
    }

    .header__subscription {
        margin: 4px 0;
        text-align: right;
    }

    .sidebar-page__content {
        padding: 0 15px 40px;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* .sidebar {
        max-width: 100%;
    } */

    .sidebar--open .sidebar {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-box-shadow: 3px 0 6px rgba(0, 0, 0, 0.2);
        box-shadow: 3px 0 6px rgba(0, 0, 0, 0.2);
    }

    .sidebar__menu {
        position: static;
    }

    /* .sidebar__menu > li > a {
        padding: 20px 30px 20px calc(100% - 305px);
    } */

    .auth-page__btn {
        margin: 40px auto 0;
    }

    .footer {
        padding: 10px 0;
    }
}

@media (max-width: 991px) {
    .pseudoselect__dropdown,
    .edite_add_block__row_command .command .pseudoselect__dropdown {
        position: fixed;
        top: 15px;
        left: 15px;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
        max-height: calc(100% - 30px);
        z-index: 5;
    }

    .header__logo {
        margin-right: auto;
    }

    .header__breadcrumbs {
        display: none;
    }

    /* .sidebar {
        width: 320px;
    } */

    /* .sidebar__menu > li > a {
        padding: 20px 30px 20px 15px;
    } */

    /* .sidebar__menu > li.classifier_down > a {
        padding: 20px 30px 20px 100px;
    } */

    .catalog__head .pseudoselect__dropdown {
        left: 15px;
        width: calc(100% - 30px);
    }

    .edite_add_block__row_command .command .pseudoselect__dropdown {
        left: 5px;
        right: 5px;
        width: auto;
    }

    .catalog__table {
        margin-bottom: 7px;
    }
    .catalog__table_td {
        padding: 4px 2px;
    }
    .catalog__table_td,
    .td-font_size--13 {
        font-size: 12px;
    }
    .catalog__table_td .checkbox {
        width: 20px;
        height: 20px;
    }

    .classic-label__text img {
        height: 18px;
    }

    .catalog__pagination {
        margin-top: 20px;
    }

    .auth-page {
        background-color: #fff;
    }

    .auth-page__form {
        background: none;
        padding: 0;
    }

    .tabsingle {
        padding: 0 5px;
    }
}

@media (max-width: 767px) {
    .catalog__btn.blue {
        max-width: 400px;
        margin: 20px auto 0;
    }

    .pseudoselect__list > li {
        font-size: 14px;
    }

    .btn,
    .catalog__btn {
        padding: 0 20px;
        align-self: flex-end;
    }

    .menu-btn {
        margin-right: 20px;
    }

    .header__tool-text {
        display: none;
    }
    .header__subscription {
        font-size: 12px;
    }
    .catalog__head__row .catalog__label,
    .catalog__head__row .catalog__input,
    .catalog__head__row .catalog__select {
        margin: 20px 0 0;
    }

    .caption {
        font-size: 16px;
        margin: 20px 9px;
    }

    .toggle {
        height: 34px;
    }
    .toggle .toggle-switch {
        height: 34px;
    }
    .toggle .toggle-switch:before {
        line-height: 30px;
    }
    .toggle .toggle-switch:after {
        line-height: 28px;
    }

    .sidebar__submenu a {
        padding: 30px 30px 30px calc(100% - 260px);
    }
    .sidebar__submenu.subsubmenu a {
        padding: 30px 30px 30px calc(100% - 230px);
    }

    thead th {
        overflow: hidden;
        word-break: normal;
        text-overflow: ellipsis;
        padding: 10px 2px;
    }

    .catalog__head__message {
        padding: 10px;
        flex-direction: column;
        font-size: 14px;
    }
    .catalog__head__message .list li {
        margin-top: 15px;
    }
    .catalog__head__message__box .btn {
        margin-bottom: 0;
        margin-top: 15px;
        align-self: flex-end;
    }

    /* .catalog__label {
        min-width: 0;
        width: calc(100% - 18px);
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    } */

    .catalog__select {
        width: auto;
    }

    .catalog__input {
        /* -webkit-box-flex: 1;
        -ms-flex: 1 1 auto; */
        flex: 1 1 auto;
        min-width: 290px;
        /* margin-left: 0; */
    }

    .catalog__btn_blue {
        margin: 20px 9px 0;
    }

    .catalog__head-chart {
        flex: 1 1 auto;
        max-width: none;
        margin: 20px auto 9px;
    }

    .chart__body {
        height: 400px;
    }

    .sort::after {
        width: 8px;
        height: 12px;
    }

    .auth-page__btn {
        width: auto;
        margin: 40px auto 0;
    }

    .auth-page__inner {
        padding: 100px 50px 40px;
        width: 440px;
        min-height: 0;
    }

    .tabsingle {
        padding: 8px 0;
        overflow: hidden;
        height: 85px;
    }
    .tabsingle__txt {
        font-size: 12px;
    }
    .tabsingle i.checked {
        margin-left: 30px;
    }

    .head__row__box {
        margin: 5px 0;
    }

    .edite_add_block__row_activity_type,
    .edite_add_block__row_passport,
    .edite_add_block__row_rent,
    .edite_add_block__row_bid,
    .catalog__head__row_transactions,
    .catalog__head__row_reports,
    .catalog__head__row_packet_logs,
    .catalog__head__row_reports,
    .catalog__head__row_terminals_moving,
    .catalog__head__row_terminals,
    .edite_add_block__row_card_info,
    .catalog__head__row_requests,
    .catalog__request .edite_add_block__row.terminal,
    .edite_add_block__row_agreement,
    .edite_add_block__row_offer,
    .catalog_subscriptions .edite_add_block__row.owners,
    .catalog__head__row_page_settings,
    .head__row--multiple {
        flex-direction: column;
    }
    .edite_add_block__row_passport .passport_data__wrapper,
    .edite_add_block__row_rent .rent_data__wrapper,
    .edite_add_block__row_bid .bid__wrapper,
    .product_matrix .add_item {
        width: auto;
    }
    .edite_add_block__row_bid {
        align-items: center;
    }

    .edite_add_block .btn.catalog__btn {
        margin: 20px 8px;
    }
    .edite_add_block .btn.catalog__btn.file-upload__btn {
        margin: 0;
    }

    .edite_add_block__row__box.subsection_title {
        font-size: 16px;
    }

    .image__wrapper {
        width: auto;
        margin: 20px 0;
    }
    .image__menu-1 {
        flex-direction: row;
        justify-content: center;
    }

    .edite_add_block__row_bid .image__wrapper,
    .edite_add_block__row_login .login {
        width: 100%;
    }

    .catalog__head__row_transactions .catalog__label,
    .catalog__head__row_requests .catalog__label,
    .catalog__head__row_packet_logs .catalog__label,
    .catalog__head__row_reports .catalog__label,
    .catalog__head__row_terminals_moving .catalog__label,
    .catalog__head__row_terminals .catalog__label {
        margin: 0;
        width: 100%;
    }
    .catalog__head__row .select,
    .catalog__head__row_transactions .catalog__input,
    .catalog__head__row_transactions .btn,
    .catalog__head__row_transactions .catalog__select,
    .catalog__head__row_requests .catalog__input,
    .catalog__head__row_requests .btn,
    .catalog__head__row_requests .catalog__select,
    .catalog__head__row_packet_logs .catalog__input,
    .catalog__head__row_packet_logs .btn,
    .catalog__head__row_reports .catalog__input,
    .catalog__head__row_reports .btn,
    .catalog__head__row_reports .catalog__select,
    .catalog__head__row_terminals_moving .catalog__input,
    .catalog__head__row_terminals_moving .btn,
    .catalog__head__row_terminals_moving .catalog__select,
    .catalog__head__row_terminals .catalog__input {
        width: 100%;
        margin: 10px 0;
    }
    .catalog__head__row_transactions .btn,
    .catalog__head__row_packet_logs .btn,
    .catalog__head__row_requests .btn,
    .catalog__head__row_reports .btn,
    .catalog__head__row_terminals_moving .btn,
    .catalog__head__row_terminals .btn {
        width: auto;
        align-self: flex-end;
    }

    .catalog__head__row_packet_logs .show_books {
        align-self: flex-start;
    }
    .catalog__head__row_packet_logs .show_books .catalog__label {
        margin-right: 9px;
    }

    .catalog__head__row_requests .catalog__input {
        max-width: none;
    }

    .catalog__head__row_requests .btn.btn_add {
        margin: 0 0 20px 0;
    }

    .catalog__request .edite_add_block__row.terminal .pseudoselect,
    .catalog__request .edite_add_block__row.terminal .edite_add_block__row__box {
        width: auto;
    }

    .catalog__head__row_transactions .catalog__label,
    .catalog__head__row_reports .catalog__label {
        max-width: none;
    }

    .catalog_subscriptions .edite_add_block__row__box.date,
    .catalog_subscriptions .edite_add_block__row__box.catalog__select {
        margin: 0;
        max-width: none;
        padding: 10px 10px 0;
    }

    .edite_add_block__row_agreement .agreement_data__wrapper,
    .edite_add_block__row_offer .offer_data__wrapper {
        padding: 0px 9px 0px 30px;
    }
    .agreement_data__wrapper .list li,
    .offer_data__wrapper .list li {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .agreement_data__wrapper .list .btn,
    .offer_data__wrapper .list .btn {
        margin: 0;
        width: auto;
        margin-top: 10px;
    }

    .payment-details .wrapper .item {
        flex-direction: column;
    }
    .payment-details .wrapper .qr-img {
        width: 200px;
        height: 200px;
        min-width: 200px;
        min-height: 200px;
        margin: auto;
        margin-bottom: 20px;
    }

    .catalog__head__row_page_settings {
        align-items: flex-end;
    }
    .catalog__head__row_page_settings .catalog__label {
        padding: 0 0 20px 0;
        width: 100%;
    }

    .catalog__head__row_double {
        align-items: stretch;
        flex-direction: column;
    }

    .product_matrix .table__row td {
        padding: 10px 5px;
    }

    .param-inp,
    .param-select {
        padding: 6px 3px;
    }
    .param-inp__param {
        padding: 3px;
        min-width: 24px;
    }

    .footer {
        text-align: center;
        font-size: inherit;
        padding: 30px 0;
    }

    .footer__wrapper {
        display: block;
    }

    .footer__text {
        margin: 0 0 1em;
    }

    .footer__text:last-child {
        margin: 0;
        text-align: inherit;
    }

    .footer__contact {
        margin: 0 1em 1em;
    }
}

@media (max-width: 641px) {
    .btn_add {
        width: 100%;
    }
    .catalog__head__row__box .btn_add {
        width: auto;
    }
    .subscriptions__result .btn_add {
        width: auto;
        align-self: flex-end;
    }

    .catalog__input {
        margin-left: 0;
    }

    .catalog__table_td {
        padding: 2px;
    }
    .catalog__table_td .actions__wrapper {
        flex-direction: column;
    }
    .catalog__table_td .actions__wrapper .classic-label__text {
        padding: 4px 0;
    }
    .classic-label__text img {
        width: 20px;
        height: 20px;
        margin: 0;
    }
    .table__edit_btn {
        margin: 4px 0;
    }

    .catalog__head__row_wide,
    .catalog__head__row_some {
        align-items: stretch;
        flex-direction: column;
    }
    .catalog__head__row_some .catalog__head__row__box {
        margin: 9px 0;
    }
    .catalog__head__row_some .catalog__head__row__box.first,
    .catalog__head__row_some .catalog__head__row__box.last {
        margin: 0;
    }

    .edite_add_block__row_navigate {
        flex-direction: column;
    }
    .edite_add_block__row_navigate .btn,
    .edite_add_block__row_navigate .btn.catalog__btn {
        min-width: 135px;
        align-self: center;
    }
    .edite_add_block__row_navigate--row {
        flex-direction: row;
    }

    .edite_add_block__row__box.select .select__dropdown {
        left: 5px;
        right: 5px;
    }
    .edite_add_block__row__box {
        margin: 0;
        padding: 10px 5px 0;
    }

    .edite_add_block__row--double,
    .edite_add_block__row--triple,
    .catalog__owner .edite_add_block__row_fullname,
    .catalog__owner .edite_add_block__row_contacts,
    .catalog__owner .edite_add_block__row_inn,
    .catalog__request .edite_add_block__row_fullname,
    .catalog__request .edite_add_block__row_contacts,
    .catalog__request .edite_add_block__row_inn,
    .catalog__request .edite_add_block__row_passport1,
    .catalog_subscriptions .edite_add_block__row.pays {
        flex-direction: column;
    }
    .edite_add_block__row__box.catalog__select,
    .edite_add_block__row--double .edite_add_block__row__box,
    .edite_add_block__row--triple .edite_add_block__row__box,
    .catalog__owner .edite_add_block__row_inn .edite_add_block__row__box,
    .catalog__owner .edite_add_block__row_fullname .edite_add_block__row__box,
    .catalog__owner .edite_add_block__row_contacts .edite_add_block__row__box,
    .catalog__request .edite_add_block__row_inn .edite_add_block__row__box,
    .catalog__request .edite_add_block__row_fullname .edite_add_block__row__box,
    .catalog__request .edite_add_block__row_contacts .edite_add_block__row__box,
    .catalog__request .edite_add_block__row_passport1 .edite_add_block__row__box,
    .catalog_subscriptions .edite_add_block__row.pays .edite_add_block__row__box,
    .catalog__request .edite_add_block__row--double .edite_add_block__row__box,
    .catalog__request .edite_add_block__row--triple .edite_add_block__row__box {
        margin: 0;
        max-width: none;
        padding: 10px 5px 0;
    }

    .head__row__box {
        flex-direction: column;
        margin: 0;
    }
    .head__row__box__text {
        width: 100%;
        padding: 0 6px;
        margin: 10px 0;
    }
    .head__row__box .select,
    .head__row__box .catalog__input,
    .head__row__box .catalog__input--date.last {
        width: 100%;
        margin: 5px 0;
    }
}

@media (max-width: 479px) {
    [type="text"],
    [type="email"],
    [type="tel"],
    [type="password"],
    [type="url"],
    [type="date"],
    [type="search"],
    [type="number"],
    textarea {
        font-size: 14px;
    }

    body.sidebar--open {
        overflow: hidden;
    }

    #filterr_delete .catalog__btn {
        margin: 10px 2px 15px;
    }

    h1,
    h2 {
        font-size: 16px;
    }

    .btn {
        padding: 0 15px;
        font-size: 14px;
        max-height: 42px;
    }

    .image__menu .btn,
    .image__menu-1 .btn {
        min-width: 110px;
    }

    .param-inp__wrapper {
        flex-direction: column;
        max-height: none;
    }
    .param-inp {
        font-size: 12px;
        border-radius: 2px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: 0;
    }
    .param-inp__param {
        border-radius: 2px;
        border: 1px solid #ced4da;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .sidebar__submenu a {
        padding: 20px 30px 20px calc(100% - 360px);
    }
    .sidebar__submenu.subsubmenu a {
        padding: 20px 30px 20px calc(100% - 330px);
    }

    .menu-btn {
        z-index: 5;
    }
    .menu-btn--active {
        color: #333;
        position: fixed;
    }

    .catalog__btn.blue {
        width: 100%;
    }
    .catalog__input {
        min-width: auto;
    }
    .catalog__head__row_requests .blue {
        width: auto;
    }

    .catalog__label,
    .commission_txt,
    .head__row__box__text,
    .edite_add_block__row .commission_txt,
    .agreement_data__wrapper .list,
    .offer_data__wrapper .list {
        font-size: 14px;
    }
    .catalog__label,
    .head__row__box__text {
        margin: 5px 0;
    }

    .popup_window__header,
    .popup_window__footer {
        padding: 10px;
    }
    .popup_window__body {
        padding: 10px;
    }

    /* .sidebar {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 60px 0;
        padding-bottom: 10px;
    } */
    .sidebar--open .sidebar {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .sidebar__menu {
        overflow: auto;
    }

    .sidebar-page__content {
        margin-left: 0;
        padding: 0 8px 40px;
    }

    .auth-page__form {
        display: block;
        text-align: center;
    }
    .auth-page__icon {
        width: 120px;
        height: 120px;
        border-width: 12px;
        line-height: 92px;
        top: -60px;
        left: calc(50% - 60px);
    }
    .auth-page__inner {
        width: auto;
        margin-top: 60px;
        padding: 80px 20px 40px;
    }
    .auth-page__title {
        margin: 0 0 1em;
        font-size: 20px;
    }
    .auth-page__input {
        font-size: 22px;
        padding: 10px 0;
    }
    .auth-page__note {
        font-size: 18px;
    }
    .auth-page__btn {
        width: 100%;
        padding: 0 10px;
    }

    .tabsingle__txt {
        word-break: normal;
        transform: rotate(270deg);
    }
    .tabsingle__txt--one {
        transform: none;
    }
    .tabsingle i.checked {
        margin-left: 0;
    }
    .tabsingles-is-hide .tabsingle__txt {
        transform: none;
    }

    .edite_add_block__row_passport1,
    .edite_add_block__row_passport .address,
    .edite_add_block__row_org_ogrn,
    .edite_add_block__row_login,
    .edite_add_block__row_command,
    .edite_add_block__row_bonuses,
    .catalog__head__row_terminals,
    .catalog__table .subscriptions__result {
        flex-direction: column;
    }

    .edite_add_block__row_login {
        align-items: stretch;
    }
    .edite_add_block__row_login .change_password__btn {
        width: auto;
        align-self: flex-end;
    }

    .edite_add_block .btn.catalog__btn {
        margin: 15px 8px;
        max-width: none;
    }

    .image-upload__btn,
    .edite_add_block .catalog__btn.image-upload__btn {
        margin: 10px 0;
    }

    .edite_add_block__row_passport1 .issued,
    /* .edite_add_block__row_passport .address .address_type__select, */
    .edite_add_block__row_login .login,
    .product_matrix .add_item {
        width: auto;
    }

    .edite_add_block__row_command .terminal,
    .edite_add_block__row_command .command {
        width: auto;
        align-self: auto;
    }

    .edite_add_block__row .checkbox__wrapper {
        align-self: stretch;
        align-items: center;
    }

    .image-upload {
        padding: 10px 5px;
    }

    .agreement_data__wrapper .list .btn,
    .offer_data__wrapper .list .btn {
        margin: 0;
        width: auto;
        margin-top: 10px;
    }

    .setup__form-bd {
        height: 520px;
        padding-top: 25px;
    }

    .edite_add_block__row_passport1,
    .edite_add_block__row_org_name {
        align-items: stretch;
    }

    .catalog__table .subscriptions__result {
        align-items: flex-start;
    }
    .subscriptions__result ul > li {
        margin: 6px 0;
        font-size: 14px;
    }
    .subscriptions__result ul > li .value {
        font-size: 16px;
    }
    .product_matrix .inp-number {
        min-width: 45px;
        max-width: 45px;
    }

    /* .edite_add_block__row__box {
        margin: 10px 5px 0;
    } */

    .catalog_subscriptions .edite_add_block__row__box,
    .catalog_subscriptions .edite_add_block__row__box.date,
    .catalog_subscriptions .edite_add_block__row__box.catalog__select,
    .catalog_subscriptions .edite_add_block__row.pays .edite_add_block__row__box {
        margin: 0;
        padding: 10px 0 0;
    }
}

@media (max-width: 374px) {
    .catalog__input {
        margin-right: 0;
    }

    .edite_add_block__row_org_type,
    .edite_add_block__row_org_site,
    .edite_add_block__row_org_address,
    .edite_add_block__row_org_name,
    .edite_add_block__row_user_role,
    .edite_add_block__row_user_accesses {
        flex-direction: column;
    }

    .edite_add_block__row_org_address .address {
        width: auto;
    }

    .catalog__head__row_transactions .btn,
    .catalog__head__row_packet_logs .btn,
    .catalog__head__row_requests .btn,
    .catalog__head__row_reports .btn,
    .catalog__head__row_terminals_moving .btn,
    .catalog__head__row_terminals .btn {
        width: 100%;
    }

    .edite_add_block__row_navigate {
        align-items: stretch;
    }
}
