@charset "UTF-8";

/* Обнуляющие теги. Нужны для чтобы убрать ненужные штуки от браузеров */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

*,
*::before,
*::after {
  /* Меняет подсчет ширины блока для удобной верстки. При этом в расчет ширины и высоты блоков не будут включаться значения margin */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Убирает линии обводки в некоторых браузерах: */
:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

/* делает блоки блочными */
html,
body {
  /* уравнивает поведение шрифтов и элементов для разных браузеров */
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 18px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

/* Наследование шрифтов в элементах формы */
/* Убирают особенности в некоторых браузерах */
input::-ms-clear {
  display: none;
}

/* Убирает крестик в "input" */
button {
  background-color: rgba(0, 0, 0, 0);
  cursor: poLato;
}

/* Изменение курсора */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Убирает отступы в кнопках */
a,
a:visited {
  text-decoration: none;
}

/* Убирает декорации при посещении ссылки */
a:hover {
  text-decoration: none;
}

/* Убирает декорации при наведении */
/* Убирает стили в списках */
img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* делает заголовки такими же как и остальной текст */
  font-size: inherit;
  font-weight: 400;
}

/* /////////////////// Обнуляющие теги \\\\\\\\\\\\\\\\\\\\*/
/* /////////////////// Подключение шрифтов \\\\\\\\\\\\\\\\\\\\*/
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Lato-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Lato-Bold.ttf");
  font-display: swap;
}


/* /////////////////// Подключение шрифтов \\\\\\\\\\\\\\\\\\\\*/



/* /////////////////// Основные стили \\\\\\\\\\\\\\\\\\\\*/
body {
  font-family: "Lato", sans-serif;
  background: linear-gradient(109.26deg, #F5F8FA 25.14%, #FFFFFF 100%);
  color: #222222;
  height: 100%;
}

h1 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

h2 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  line-height: 100%;
  font-weight: 500;
}

h3 {
  font-family: "Lato", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 100%;
}

h4 {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
}

h5 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 38.25px;
}


a {
  font-family: "Lato", sans-serif;
  color: #222222;
  transition: 0.3s;
  line-height: 120%;
}

.hover_line:hover {
  text-decoration: underline;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.header {
  font-family: "Lato", sans-serif;
  width: 100%;
}

.content-wrapper {
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0 20px;
  width: 100%;
}

.footer {
  width: 100%;
  background: #0b1f33;
}

.footer a {
  color: #fff;
}

body::-webkit-scrollbar {
  width: 4px;
  background-color: #f1f9ff;
}

body::-webkit-scrollbar-thumb {
  background: #BFBFBF;
}

.scroll_block {
  overflow-y: scroll;
}

.scroll_block::-webkit-scrollbar {
  width: 4px;
  background-color: #fff;
}

.scroll_block::-webkit-scrollbar-thumb {
  background: #BFBFBF;
  border-radius: 10px;
}

@-moz-document url-prefix() {
  .scroll_block {
    overflow-y: scroll;
    scrollbar-color: #BFBFBF #fff;
    scrollbar-width: thin;
  }
}

/* /////////////////// хедер и меню \\\\\\\\\\\\\\\\\\\\*/
.header {
  position: relative;
  z-index: 1;
  background: #ffffff;
  box-shadow: 4px 0px 18px 0px #4163771A;
  padding: 10px 0px;

}

.header__contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 140px;
}

.header__left {
  display: flex;
  gap: 30px;
  align-items: center;
  height: 80px
}

.logo__icon {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 42px;
}

.header__right {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 60px
}

.header__item {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__right .header__item:last-child {
  padding-right: 0px;
  border-right: none;
}

.header__item a {
  color: var(--text-color);
}


.header__notice {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.header__notice_icon {}

.header__exit {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

.header__exit_icon {}

.header__acc {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__acc_info p {
  color: #222222;
  font-size: 14px;
}

.header__acc_info .bottom_text {
  color: #34343480;
  font-size: 12px;
}

.header__acc_image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.header__acc_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__acc_image_none {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #AAC7D7;
  font-size: 22.5px;
  line-height: 130%;
  color: #F2F2F2;
}


/* /////////////////// Общие элементы \\\\\\\\\\\\\\\\\\\\*/
.flex10 {
  display: flex;
  gap: 10px;
}

.flex5 {
  display: flex;
  gap: 5px;
}

.flex20 {
  display: flex;
  gap: 20px;
}

.flex40 {
  display: flex;
  gap: 40px;
}

.flex_column {
  display: flex;
  flex-direction: column;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_end {
  display: flex;
  justify-content: end;
}

.flex_space {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.gray_text {
  color: #47474780;
}

.column_text14 {
  font-size: 14px;
}

.column_text_dark14 {
  font-size: 14px;
  color: #252733;
}

.column_text_gray14 {
  font-size: 14px;
  color: #B6B6B6;
}

.edit_button {
  cursor: pointer;
}

.text_hidden {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.text_green {
  color: var(--agree) !important;
}

.text_red {
  color: var(--notacsess) !important;
}

.text_blue {
  color: var(--wait) !important;
}

.text_yellow {
  color: var(--warning) !important;
}



.title20sb {
  font-size: 20px;
  font-weight: 600;
}

.title20m {
  font-size: 20px;
  font-weight: 500;
}

.title22r {
  font-size: 22px;
  font-weight: 400;
}

.title18m {
  font-size: 18px;
  font-weight: 500;
}

.input-field {
  width: 100%;
  font-weight: 400;
  color: #222222;
  font-size: 16px;
  overflow: hidden;
  background: #F2F2F2;
  border-radius: 5px;
  padding: 10.5px 10px;
}

.input-box-img-left {
  position: relative;
}

.input-box-img-left .input-field {
  padding-left: 44px;
}

.icon_field {
  position: absolute;
  top: 8px;
  left: 10px;
}

.input-field::placeholder {
  color: #22222280;
  font-size: 16px;
}

.title-field {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
}

.input-box_line {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-box_line .title-field {
  font-size: 13px;
  color: var(--blue);
}

.input-field_line {
  width: 100%;
  font-weight: 400;
  color: var(--black);
  overflow: hidden;
  border-bottom: 1px solid #D8D8D8;
  font-size: 16px;
  line-height: 130%;
  padding-bottom: 3px;
}

.input-field_line:focus {
  border-bottom: 1px solid #999999;
  color: #282828;
}

.button_yellow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 30px;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  line-height: 120%;
  border-radius: 16px;
  background: #FFECAF;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button_green {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 30px;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  line-height: 120%;
  border-radius: 16px;
  background: #B3FFAF;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button_red {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 30px;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 120%;
  border-radius: 16px;
  background: #F39693;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button_blue {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 30px;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  color: #222222;
  line-height: 120%;
  border-radius: 5px;
  background: #C8E5F5;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button_opacity_blue {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  line-height: 120%;
  border-radius: 5px;
  border: 1px solid #C8E5F5;
  width: max-content;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button_disabled {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 130%;
  border-radius: 5px;
  background: #E5E5E5;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button_opacity_gray {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #BABABA;
  line-height: 130%;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid #BABABA;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.modal .button_opacity_gray,
.modal .button_disabled {
  padding: 10px 30px;
  max-width: 126px;
}


.button_image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* чекбокс */
.checkbox-container {
  cursor: pointer;
}

.checkbox_hidden {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkmark_style {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 20px;
  flex: 0 0 20px;
  background-color: transparent;
  border: 1px solid #B6B6B6;
  background: white;
  border-radius: 2px;
}

.radio_style {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 20px;
  flex: 0 0 20px;
  background-color: transparent;
  border: 2px solid #B8C1CC;
  border-radius: 10px;
  opacity: 70%;
  margin: 6px;
}

.check {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.checkbox_input_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.checkbox_input_text a:hover {
  text-decoration: underline;
}

.checkbox_hidden:checked+.checkbox_item .checkmark_style {
  background-color: #C8E5F5;
  border: none;
  opacity: 100%;
}

.checkbox_hidden:checked+.checkbox_item .checkmark_style .check {
  display: block;
}

.checkbox_hidden:checked+.checkbox_item .radio_style .check {
  display: block;
  background-color: #C8E5F5;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  margin-top: 2px;
}

.checkbox_hidden:checked+.checkbox_item .checkbox_input_text {
  opacity: 100%;
}

.checkbox_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tabs {
  display: flex;
  gap: 10px;
}

.tabs__item {
  cursor: pointer;
}

.tab_content {
  display: none;
}

.content-page {
  border-radius: 10px;
  background: #ffffff;
  width: 100%;
  height: 75vh;
  overflow: auto;
}

.header-page {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  margin-bottom: 15px;
}

.content-page__head {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.filter-wrapper {
  display: flex;
  gap: 20px;
}

.link {
  color: var(--blue);
  cursor: pointer;
}

.link:hover {
  text-decoration: underline;
}

.blur_text {
  filter: blur(0.2rem);
}


.dropdown {
  position: relative;
}

.dropdown_icon {
  max-width: 87px;
}

.dropdown__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.dropdown__value {
  cursor: pointer;
}

.dropdown__value_img {
  width: 30px;
  height: 30px;
}

.dropdown__arrow {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: 0.3s;
}

.dropdown__arrow.active {
  transform: rotate(180deg);
}

.dropdown__arrow.active svg path {
  fill: var(--blue);
}

.search {
  position: relative;
}

.search__contain,
.dropdown__contain {
  position: absolute;
  top: 91%;
  left: 0;
  overflow: hidden;
  display: none;
  width: 100%;
  z-index: 9;
  border-radius: 0px 0px 4px 4px;
  box-shadow: 0px 4px 6px 0px #0000001F;
}

.search__section,
.dropdown__section {
  background: #ffffff;
  max-height: 300px;
  overflow: auto;
}

.input-box_line .dropdown__section {
  border-radius: 0px 0px 4px 4px;
}

.input-box_line .dropdown__arrow {
  position: absolute;
  top: 0px;
  right: 20px;
}

.dropdown_checkbox {
  padding: 10px;
}

.search__contain_item,
.dropdown__contain_item_checkbox,
.dropdown__contain .dropdown__contain_item {
  padding: 10px 20px;
  cursor: pointer;
  line-height: 135%;
  font-size: 16px;
}

.search__contain_item:hover,
.dropdown__contain_item:hover {
  background: #DFEBF7;
}

.dropdown__contain_item.active {}

.search__contain.open,
.dropdown__contain.open {
  display: block;
}

.report-dropdown .dropdown__item {
  width: max-content;
  display: flex;
  gap: 10px;
}

.report-dropdown .dropdown__arrow {
  position: relative;
  height: max-content;
}

.report-dropdown .input-dropdown {
  border: none;
  font-size: 20px;
  font-weight: 500;
}

.report-dropdown .dropdown__contain {
  max-width: 249px;
  padding: 10px;
}

.hover_el {
  width: 100%;
  position: relative;
}

.hover_el:hover .hover_contain {
  display: block;
}

.hover_contain {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hover_contain svg {
  position: relative;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hover_body {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 10px;
  background: var(--inputbg);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

/* /////////////////// Общие элементы END \\\\\\\\\\\\\\\\\\\\*/


/* /////////////////// Логин \\\\\\\\\\\\\\\\\\\\*/
.login-content {
  font-family: 'Lato';
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  width: 100%;
  max-width: 555px;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  font-family: "Lato";
  box-shadow: 0px 2px 10px 0px #00000026;
}

.login__head {
  width: max-content;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.login__form {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin-bottom: 60px;
}

.login__form_bottom {
  display: flex;
  justify-content: space-between;
}

.show_pass {
  font-size: 16px;
  line-height: 150%;
  color: #474747;
}

/* /////////////////// Логин END \\\\\\\\\\\\\\\\\\\\*/


/* /////////////////// дашборд  \\\\\\\\\\\\\\\\\\\\*/
.dashbord__head {
  width: 100%;
  height: 54px;
  background: var(--white);
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 7px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.dashbord__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.dashbord__content_row {
  display: flex;
  gap: 20px;
}

.dashbord__item {
  flex: 0 0 calc(25% - 15px);
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.schedule_bar {
  flex: 0 1 100%;
}

.dashbord__info_num {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashbord__icon {
  width: 35px;
  height: 35px;
}

.dashbord__info_num_bottom {
  display: flex;
  justify-content: space-between;
}

.dashbord__info_num p {
  font-size: 18px;
  color: var(--gray);
}

.dashbord__num {
  font-size: 26px;
  font-weight: 700;
}

.dashbord_percent {
  font-size: 14px;
}

.dashbord_percent.green {
  color: var(--agree);
}

.dashbord_percent.red {
  color: var(--danger);
}

.dashbord_percent.yellow {
  color: var(--warning);
}

.dashbord__last_order {
  flex: 0 0 calc(25% - 15px);
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
}

.dashbord__last_order .title20sb {
  margin-bottom: 20px;
}

/* /////////////////// дашборд END  \\\\\\\\\\\\\\\\\\\\*/

/* /////////////////// Таблицы  \\\\\\\\\\\\\\\\\\\\*/
.center {
  justify-content: center !important;
}

.table-head__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #222222;
  font-weight: 700;
  padding: 18px 10px;
  box-shadow: 0px -2px 0px 0px #AFBFC8 inset;
  background-color: #fff;
}

.table-content__item {
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 14px;
  color: #222222;
  padding: 4px 10px;
  box-shadow: 0px -2px 0px 0px #B9C9D2 inset;
}

.table-main_admin .table-head {
  position: sticky;
  top: 0px;
  z-index: 1;
  background: #fff;
  display: grid;
  grid-template-columns: 62px 195px 122px 104px 131px 88px 179px 181px 148px 99px 148px 247px 67px;
  justify-content: space-between;
  box-shadow: 0px -2px 0px 0px #AFBFC8 inset;
}

.table-main_admin .table-content .table-content__row {
  position: relative;
  display: grid;
  grid-template-columns: 62px 195px 122px 104px 131px 88px 179px 181px 148px 99px 148px 247px 67px;
  justify-content: space-between;
  font-size: 16px;
  line-height: 130%;
  box-shadow: 0px -2px 0px 0px #B9C9D2 inset;
}

.table-main .table-head {
  position: sticky;
  top: 0px;
  z-index: 1;
  background: #fff;
  display: grid;
  grid-template-columns: 62px 195px 122px 104px 88px 179px 181px 148px 99px 148px 247px 67px;
  justify-content: space-between;
  box-shadow: 0px -2px 0px 0px #AFBFC8 inset;
}

.table-main .table-content .table-content__row {
  position: relative;
  display: grid;
  grid-template-columns: 62px 195px 122px 104px 88px 179px 181px 148px 99px 148px 247px 67px;
  justify-content: space-between;
  font-size: 16px;
  line-height: 130%;
  box-shadow: 0px -2px 0px 0px #B9C9D2 inset;
}

.table-dictionary .table-head .table-head__item {
  justify-content: start;
}

.table-dictionary .table-head {
  position: sticky;
  top: 0px;
  z-index: 1;
  background: #fff;
  display: grid;
  grid-template-columns: 62px 40% 40% 67px 67px;
  justify-content: space-between;
  box-shadow: 0px -2px 0px 0px #AFBFC8 inset;
}

.table-dictionary .table-content .table-content__row {
  position: relative;
  display: grid;
  grid-template-columns: 62px 40% 40% 67px 67px;
  justify-content: space-between;
  font-size: 16px;
  line-height: 130%;
  box-shadow: 0px -2px 0px 0px #B9C9D2 inset;
}

.table-tar .table-head {
  display: grid;
  grid-template-columns: 20% 36% 36% 8%;
  justify-content: space-between;
  box-shadow: 0px -2px 0px 0px #D7E7F0 inset;
}

.table-tar .table-content .table-content__row {
  position: relative;
  display: grid;
  grid-template-columns: 20% 36% 36% 8%;
  justify-content: space-between;
  font-size: 16px;
  line-height: 130%;
  box-shadow: 0px -2px 0px 0px #D7E7F0 inset;
}

.table-tar .table-head .table-head__item {
  font-size: 16px;
  padding: 15.5px 10px;
  box-shadow: none;
}

.table-tar .table-content .table-content__row .table-content__item {
  padding: 16.5px 10px;
  box-shadow: none;
}

.table-tar .table-content .table-content__row .table-content__item input {
  width: 100%;
  text-align: center;
}

.table-main .table-content .table-content__row:hover {
  background: #F4FAFF;
}

.manage-cell {
  position: sticky;
  flex-direction: column;
  gap: 10px;
  right: 0;
  padding: 13px 10px;
  background: #ffffff;
  box-shadow: 0px -2px 0px 0px #B9C9D2 inset;
}

.manage_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  flex: 0 1 100%;
  min-height: 24px;
  cursor: pointer;
}

.inner-cell {
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 14px;
  color: #222222;
  box-shadow: 0px -2px 0px 0px #D7E7F0 inset;
  flex: 0 0 42px;
  line-height: 100%;
  padding: 0 10px;
}

.flex_column .inner-cell:last-child {
  box-shadow: none;
}

.manage_button_edit {
  background: url(/assets/img/edit.svg) center / 24px 24px no-repeat;
}

.manage_button_delete {
  background: url(/assets/img/delete.svg) center / 24px 24px no-repeat;
}

.manage_button_edit.disabled {
  background: url(/assets/img/edit_disabled.svg) center / 24px 24px no-repeat;
  opacity: 10%;
  cursor: auto;
}

.manage_button_delete.disabled {
  background: url(/assets/img/delete__disabled.svg) center / 24px 24px no-repeat;
  opacity: 10%;
  cursor: auto;
}

/* /////////////////// Таблицы END \\\\\\\\\\\\\\\\\\\\*/

/* /////////////////// Модалки  \\\\\\\\\\\\\\\\\\\\*/

.modal {
  content: '';
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #22222280;
  z-index: 999;

}



.modal__contain {
  width: 50%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 40px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  z-index: 9999;
  overflow: auto;
  border-radius: 10px 0px 0px 10px;
}

.modal_down .modal__contain {
  width: 100%;
  height: max-content;
  max-height: 600px;
  padding: 26px 16px;
  top: auto;
  bottom: 0;
  left: 0;
  border-radius: 10px 10px 0px 0px;
}

.home-indicator {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  width: 50px;
  height: 2px;
  background: #7E848B;
}


.modal_center .modal__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 588px;
  height: max-content;
  background: #ffffff;
  box-shadow: 0px 1px 4px -3px #00000026;
  padding: 24px;
}

.modal_center .modal_act {
  width: 100%;
  max-width: 1200px;
  max-height: 850px;
  overflow: hidden;
}

.modal__head {
  background: #ffffff;
  margin-top: -24px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: -24px;
  z-index: 1;
}

.modal__title {
  font-size: 32px;
  font-weight: 500;
}

.modal__close {
  cursor: pointer;
}

.small-modal .modal__close {
  position: absolute;
  top: 31px;
  right: 32px;
}

.small-modal .modal__title {
  margin-bottom: 32px;
}

.modal__text {
  font-size: 18px;
  color: #1A2328;
}

.small-modal .modal__text {
  margin-bottom: 48px;
}

.small-modal .button_opacity_blue,
.small-modal .button_blue {
  padding: 16px 30px;
}

.modal_form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 30px;
  max-height: 800px;
  overflow: auto;
}

.modal_form_book {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.modal_form::-webkit-scrollbar {
  display: none;
}

.modal_executor .modal__contain {
  width: 65%;
}

.modal_executor .modal__close {
  left: 35%;
}


/* /////////////////// Модалки END \\\\\\\\\\\\\\\\\\\\*/
.status {
  font-size: 14px;
  padding: 3px 14px;
  border-radius: 5px;
  width: 100%;
  width: max-content;
}

.status.yellow {
  background: #FFECAF;
}

.status.green {
  background: #B3FFAF;
}

.filter {
  position: relative;
}

.filter-button {
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
  cursor: pointer;
  background: url(/assets/img/filter.svg) center / contain no-repeat;
}

.filter-button.active {
  background: url(/assets/img/filter_active.svg) center / contain no-repeat;
}

.filter-icon {
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
  cursor: pointer;
  background: url(/assets/img/filter.svg) center / contain no-repeat;
}

.active .filter-icon {
  background: url(/assets/img/filter_active.svg) center / contain no-repeat;
}

.filter_contain {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 9;
  background: #ffffff;
  padding: 15px;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0px 8px 16px 0px #5B5B5B1F;
  box-shadow: 0px 4px 6px 0px #0000001F;
  border-radius: 4px;
}

.filter_contain.open {
  display: flex;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-all {
  padding-left: 10px;
}

.filter-options {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #F2F2F280;
  max-height: 145px;
  overflow: auto;
}

.step .flex_column {
  flex: 0 1 100%;
}

.step__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.step__input_column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step__input_row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.step__input_row .flex20 .form-input-box,
.step__input_row .form-input-box {
  flex: 0 1 100%;
}

.step__input_row .flex20 {
  width: 100%;
}

.form-input-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #E1E1E1;
  padding: 8.5px 10px;
  border-radius: 4px;
}

.input-label {
  font-size: 12px;
  color: #22222280;
}

.input-form {
  font-size: 16px;
}

.input-form::placeholder {
  font-size: 16px;
  color: #22222280;
}

.form-input-box.disabled {
  opacity: 30%;
}

.count-el {
  display: flex;
  gap: 10px;
  padding: 5px;
  border-radius: 4px;
  background: #D7E7F0;
  width: max-content;
}

.count-el-quantity {
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  line-height: 130%;
  background: none;
}

.count-el-plus,
.count-el-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.count-el-minus {
  background: #FFFFFF url(/assets/img/minus.svg) center / 20px 20px no-repeat;
}

.count-el-plus {
  background: #FFFFFF url(/assets/img/plus.svg) center / 20px 20px no-repeat;
}

.form-delete-button {
  flex: 0 0 24px;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-delete-button.active {
  cursor: pointer;
}

.form-delete-button.active svg path {
  stroke: #DA5955;
}

.form-delete-button.disabled {
  opacity: 10%;
}

.form-add-button {
  display: flex;
  gap: 10px;
  width: max-content;
  margin: auto;
  color: #45576D;
  font-size: 16px;
  cursor: pointer;
}


.input_photo_none {
  display: none;
}

.input_photo {
  width: 100%;
  height: 210px;
  background-color: #F5F5F5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  border-radius: 10px;
}

.image_load_icon {
  position: absolute;
  top: 15px;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0px 14px;
  width: 100%;
}

.hide {
  display: none;
}

.image_contain {
  position: relative;
  width: 100%;
  max-width: 275px;
  border-radius: 5px;
}

.form-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-table__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.form-table__tab {
  display: flex;
  gap: 16px;
  flex: 0 1 80%;
  overflow: auto;
}

.form-table__tab_item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #F4F4F4;
  border-radius: 8px;
  font-size: 14px;
  align-items: center;
  opacity: 50%;
  white-space: nowrap;
}

.form-table__tab_item.active {
  background: #C8E5F5;
  opacity: 100%;
}

.acts-list {
  display: none;
}

.down-menu {
  display: none;
}

/* breakpoints: можешь подвинуть на 992/768 по проекту */
@media (max-width: 992px) {

  /* прячем исходную таблицу */
  .content-page {
    display: none;
  }

  .menu-admin {
    display: none !important;
  }

  .modal_center .modal__content {
    max-width: 416px;
  }

  .down-menu {
    display: flex;
    gap: 18px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    box-shadow: 0px -2px 30px 0px #00000014;
    background: #ffffff;
  }

  .button_contain {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 16px;

    background: #ffffff;
  }

  /* показываем список-карточки */
  .acts-list {
    display: grid;
    gap: 12px;
    padding-bottom: 80px;
  }

  .act-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px;
     width:100%; 
     max-width:100%; 
     box-sizing: border-box;
  }

  /* header карточки */
  .act-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }

  .act-card__id {
    font-weight: 700;
    color: #222222;
    font-size: 14px;
    line-height: 130%;
  }

  .act-card__status .status {
    /* твои готовые бейджи статуса уже стилизованы, просто контейнер */
    white-space: nowrap;
  }

  /* мета-данные шапки */
  .act-card__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
  }

  .meta-row {
    display: flex;
    align-items: end;
    gap: 12px;
    font-size: 14px;
    color: #222222;
    line-height: 130%;
  }

  .meta-name {
    color: #222222;
    font-weight: 700;
  }

  /* мягкий вторичный */
  .meta-value {
    color: #222222;
    white-space: nowrap;
  }

  .midle_line {
    flex: 0 1 100%;
    border-bottom: 0.5px solid #B9C9D2;
  }

  /* секции внутри карточки */
  .act-section {
    margin-top: 12px;
  }

  .act-section__title {
    font-weight: 700;
    color: #222222;
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* список с тонкими разделителями в твоем стиле */
  .act-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* пара "наименование — значение" в одну строку, с переносами */
  .pair-row {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #222222;
    line-height: 130%;
    align-items: end;
  }

  .pair-row:last-child {
    box-shadow: none;
  }

  .pair-name {
    color: #222222;
    font-size: 12px;

  }

  .pair-count {
    font-weight: 700;
  }

  .pair-value {
    white-space: nowrap;
  }

  .pair-value span {
    font-weight: 700;
  }

  /* переиспользуем твою визуалку из .inner-cell для единообразия */
  .act-list .inner-cell {
    height: auto;
    padding: 10px;
    line-height: 130%;
    box-shadow: 0px -2px 0px 0px #D7E7F0 inset;
  }

  .act-list .inner-cell:last-child {
    box-shadow: none;
  }

  /* футер с управлением */
  .act-card__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
  }

  .act-card__footer .manage_button {
    width: 40px;
    /* чуть компактнее на мобиле */
    min-height: 24px;
  }

  .down-menu .flex20 {
    width: 100%;
  }

  .step .flex20 {
    flex-direction: column;
  }

  .input_photo {
    height: 120px;
  }

  .form-table__top .button_blue {
    display: none;
  }

  .form-table__tab {
    flex-direction: column;
  }

  .image_contain {
    width: 140px;
  }

  .button_red {
    padding: 13px 0px;
  }

  .button_green {
    padding: 13px 0px;
  }

  .form-table__tab {
    width: 100%;
  }

  .modal_form .step:last-child {
    padding-bottom: 40px;
  }

  .form-table__tab_item {
    justify-content: center;
  }
}

.menu-admin {
  display: flex;
  gap: 40px;
  margin-right: 40px;
}

.menu-admin__item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.menu-admin__item.active {
  color: #008ED5;
}

.filter_modal .modal__contain {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 444px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.filter-list__item {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 5px;
  border: 2px solid #F2F2F2;
}

.filter_one_modal .filter_contain {
  position: relative;
  padding: 0;
  box-shadow: none;
  top: auto;
  left: auto;
}

.popup {
  position: relative;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  border-radius: 20px;
  max-width: 950px;
  overflow: hidden;
  display: none;
}

.popup .modal__content {
  position: fixed;
  width: 100%;
  height: max-content;
  background: #ffffff;
  border-radius: 10px;
  z-index: 999;
  display: none;
  flex-direction: column;
  max-height: 722px;
  overflow: auto;
  border: 1px solid #ffffff;
  backdrop-filter: blur(7px);
  max-width: 620px;
  padding: 40px;
}

.admin_modal_content {
  box-shadow: 0px 3px 18px 0px #41637726;
  max-width: 620px !important;
  background: #ffffff;
  padding: 60px;
}

.password-contain {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.password-contain__bottom {
  display: flex;
  justify-content: space-between;
}

.forgot_pass {
  color: #45576D;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.password_input {
  display: flex;
  width: 100%;

}

.password_input input {
  flex: 0 1 100%;
}

.view_pass {
  width: 29px;
  height: 29px;
  background: url(/img/mdi_eye.svg) center / contain no-repeat;
}

.view_pass.active {
  background: url(/img/mdi_eye_active.svg) center / contain no-repeat;
}

.modal_login_title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.form-input-box .flex_column {
  width: 100%;
}

.modal__content .logo__icon {
  margin: 0px auto 20px;
  width: max-content;
  padding: 0;
}


.pickmeup {
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 10px;
  z-index: 9999;
}

.pickmeup .pmu-instance {
  position: relative;
  font-family: "Roboto";
  height: max-content !important;
  width: 320px !important;
}

.pmu-month,
.calendar-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.12px;
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary) !important;
}

.calendar-btn-prev,
.calendar-btn-next {
  cursor: pointer;
}

.calendar-conteiner {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.calendar-item {
  font-family: "Manrope-semibold";
  font-size: 13px;
  line-height: 17.88px;
  color: #131516 !important;
}

.calendar-head {
  padding: 10px !important;
  font-family: "Manrope-semibold";
  font-size: 12px !important;
  line-height: 16.39px !important;
  color: rgba(19, 21, 22, 0.6) !important;
}

.calendar-item table {
  border-collapse: collapse;
  width: 100%;
}

.pmu-months div,
.pmu-day-of-week div,
.calendar-item th {
  font-family: "Manrope-bold";
  font-size: 14px !important;
  line-height: 19.12px !important;
  padding: 10px !important;
  text-align: center;
  color: #131516 !important;
  opacity: 70%;
  width: 43px !important;
}

.event_calendar .pmu-instance:nth-child(2) nav {
  justify-content: end;
}



.pmu-days .pmu-button,
.calendar-item td {
  color: #131516 !important;
  padding: 8px 10px;
  text-align: center;
  border-radius: 10px;
  width: 43px !important;
  line-height: 17.88px !important;
  cursor: pointer;
}

.pmu-days .pmu-button:hover,
.calendar-item td:hover {
  background-color: var(--bg-secondary-button) !important;
}

.pmu-today,
.calendar-day.today {
  border-radius: 10px;
  position: relative;
  background-color: #fff !important;
}

.pmu-today::before,
.calendar-day.today::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--bg-secondary-button);
  border-radius: 10px;
}

.pmu-days .pmu-not-in-month,
.calendar-day.prev-month,
.calendar-day.next-month {
  font-family: "Manrope-semibold";
  color: #b1b1b1 !important;
}

.pmu-days .pmu-selected {
  background-color: #2222220D !important;
  border-radius: 0%;
}

.calendar-day.event {
  background: #ffe2ad;
  position: relative;
  cursor: pointer;
}

.calendar-day.event:hover .calendar-popup {
  display: block;
}

.calendar-popup {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 200px;
  padding: 15px;
  background: #fff;
  text-align: left;
  font-size: 13px;
  z-index: 100;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #000;
}

.calendar-popup:before {
  content: "";
  border: solid transparent;
  position: absolute;
  left: 8px;
  bottom: 100%;
  border-bottom-color: #fff;
  border-width: 9px;
  margin-left: 0;
}

.event_calendar.pmu-hidden {
  display: none !important;
  top: -1000.5px;
}

.marginCalendar {
  margin-left: 188px;
}

.pickmeup .pmu-instance:first-child .pmu-prev {
  width: 32px !important;
  height: 32px;
  background: url(/assets/img/arrow_left.svg) 0 0 / contain no-repeat !important;
}

.pickmeup .pmu-instance .pmu-next {
  width: 32px !important;
  height: 32px;
  background: url(/assets/img/arrow_right.svg) 0 0 / contain no-repeat !important;
}


.calendar__bottom {
  border-top: 1px solid rgba(126, 132, 139, 0.5);
  max-width: 640px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 188px;
}

.calendar__bottom input {
  max-width: 168px;
}

.calendar__menu {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 178px;
}

.calendar__menu_item {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

.calendar__menu_item:hover {
  color: var(--primary);
}

.button-flex {
  display: flex;
  gap: 20px;
}

.back_login_button {
  display: flex;
  gap: 8px;
  justify-content: center;
  color: #45576D;
}

.linkWW {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  opacity: 70%;
  white-space: nowrap;

}

.linkWW a {
  color: #222222;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.linkWW:hover {
  opacity: 90%;
}

.modal_notification {
  position: fixed;
  bottom: 25px;
  right: 23px;
  z-index: 999;
  display: none;
  width: 100%;
  max-width: max-content;
  box-shadow: 0px 1px 4px -3px #284D4359;
  border-radius: 10px;
  padding: 14.5px 20px;
}

.modal_notification.success {
  background: #B4F09F;
}

.modal_notification.error {
  background: #FFD6D5;
}

.modal_notification_contain {
  display: flex;
  gap: 10px;
  align-items: center;
}

.modal_notification .notification_top {
  opacity: 50%;
  font-size: 13px;
  line-height: 130%;
}

.notification_text {
  font-size: 16px;
  color: #222222;
}

.image_eyes {
  position: absolute;
  top: 12px;
  right: 20px;
  width: 26px;
  height: 21px;
  background-image: url(/assets/img/hide_pass.svg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.image_eyes_open {
  background-image: url(/assets/img/open_pass.svg);
}

.filter-hl {
  background: none;
  font-weight: 700;
}

.image_list {
  flex-wrap: wrap;
}

.date .pickmeup {
  box-shadow: none;
}

.date {
  margin-bottom: 59px;
}


.event_calendar .pmu-instance:first-child {
  margin-left: 188px;
}

.filter_date_modal .pmu-instance.marginCalendar {
  margin: 0;
}



.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;              /* светлая граница */
  border-top: 4px solid #333;          /* тёмная часть, создающая эффект вращения */
  border-radius: 50%;
  animation: css-animation-spin 1s linear infinite;  /* бесконечное вращение */
  margin: 20px auto;                   /* выравнивание по центру */
}

@keyframes css-animation-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;              /* светлая граница */
  border-top: 4px solid #333;          /* тёмная часть, создающая эффект вращения */
  border-radius: 50%;
  animation: css-animation-spin 1s linear infinite;  /* бесконечное вращение */
  margin: 20px auto;                   /* выравнивание по центру */
}
 
@keyframes css-animation-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}