/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  min-height: 100vh;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  font-family: "Inter";
  font-size: 14px;
  line-height: 20px;
}
/* Стилизация вертикального скроллбара */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  /* Добавляем высоту для горизонтального скроллбара */
  padding-right: 10px;
}
/* Стилизация бегунка вертикального скроллбара */
::-webkit-scrollbar-thumb {
  background-color: #9498b3;
  width: 4px;
  border-radius: 4px;
}
/* Стилизация фона вертикального скроллбара */
::-webkit-scrollbar-track {
  background: none;
  border-radius: 10px;
}
/* Стилизация бегунка вертикального скроллбара при наведении */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* Стилизация горизонтального скроллбара */
::-webkit-scrollbar-horizontal {
  height: 4px;
}
/* Стилизация бегунка горизонтального скроллбара */
::-webkit-scrollbar-thumb:horizontal {
  background-color: #9498b3;
  height: 4px;
  border-radius: 4px;
}
/* Стилизация фона горизонтального скроллбара */
::-webkit-scrollbar-track:horizontal {
  background: none;
  border-radius: 10px;
}
/* Стилизация бегунка горизонтального скроллбара при наведении */
::-webkit-scrollbar-thumb:horizontal:hover {
  background: #555;
}
@font-face {
  font-family: "Inter";
  src:
    url("../fonts/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  outline: none !important;
}
body * {
  font-family: "Inter";
}
.no-scroll {
  overflow: hidden;
}
a,
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.no-scroll,
.no-scroll body {
  /*overflow: visible !important;
     */
}
.auth-page {
  background-image: url("../img/auth-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.auth-container {
  max-width: 1300px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
}
.auth-form {
  padding: 40px 32px;
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  background: #fff;
}
.auth-form__title {
  font-size: 32px;
  line-height: 40px;
  color: #131523;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.auth-form__title small {
  font-size: 20px;
  line-height: 28px;
  color: #6a748f;
}
.auth-form__descr {
  font-size: 16px;
  line-height: 20px;
  color: #707699;
}
.auth-form__descr a {
  font-weight: 400;
  color: #08090c;
  text-decoration: none;
}
.auth-form__descr a:hover {
  text-decoration: underline;
}
.auth-form__head {
  margin-bottom: 24px;
}
.auth-form__body {
  padding-top: 8px;
}
.auth-form__footer {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.btn-prime {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 24px;
  border: 1px solid #08090c;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background: #08090c;
  height: 40px;
  text-decoration: none;
}
.btn-prime span:not(.f-tip__content),
.btn-second span:not(.f-tip__content) {
  display: block;
  width: calc(100% - 24px);
  /*white-space: nowrap;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
}
.btn-prime.red {
  background: #e25328;
  border-color: #e25328;
}
.btn-prime.red:hover,
.btn-prime.red:focus {
  background: #a23716;
  border-color: #a23716;
}
.btn-prime.red:active {
  background: #5a1e0c;
  border-color: #5a1e0c;
}

.btn-prime.gray {
  background: #f3f4f7;
  border-color: #f3f4f7;
  color: #08090c;
}
.btn-prime.gray:hover,
.btn-prime.gray:focus {
  background: #f3f4f7;
  border-color: #f3f4f7;
}
.btn-prime.gray:active {
  background: #f3f4f7;
  border-color: #f3f4f7;
}

.btn-prime:hover {
  background-color: #222430;
  border-color: #222430;
}
.btn-prime:active {
  background-color: #3b3f54;
  border-color: #3b3f54;
}
.btn-prime:focus {
  background-color: #222430;
  border-color: #222430;
}
.btn-prime:disabled {
  background-color: #f3f4f7;
  border-color: #f3f4f7;
  color: #9498b3;
  pointer-events: none;
}
.btn-second {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 24px;
  border: 1px solid #dbdde6;
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #08090c;
  background: none;
  text-decoration: none;
}
.btn-second:hover {
  background-color: #f3f4f7;
  border-color: #f3f4f7;
}
.btn-second:active {
  background-color: #dbdde6;
  border-color: #dbdde6;
}
.btn-second--full {
  width: 100%;
}

.btn-second.red {
  border-color: #e25328;
  color: #e25328;
}
.btn-second.red:hover {
  background: #fae2db;
  border-color: #e25328;
}
.btn-second.red:active {
  background: #fae2db;
  border-color: #e25328;
}

/*.btn-second:focus {*/
/*  background-color: #f3f4f7;*/
/*  border-color: #f3f4f7;*/
/*}*/
.btn-second:disabled {
  border-color: #e7e8ee;
  color: #b7bacc;
  pointer-events: none;
}
.btn-second:disabled img {
  opacity: 0.4;
}
.input-field label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 20px;
  color: #707699;
  margin-bottom: 8px;
  width: fit-content;
  transform: translate(0, 0);
  z-index: 1;
  position: relative;
}
.input-field input {
  display: block;
  width: 100%;
  height: 40px;
  background: none;
  font-size: 16px;
  line-height: 20px;
  padding: 0 16px;
  color: #08090c;
  outline: none;
  border: none;
  transition: background-color 999999999s ease;
}
.field-wrap {
  border: 1px solid #dbdde6;
  border-radius: 12px;
}
.field-wrap:hover {
  border-color: #707699;
}
.field-wrap:focus-within {
  border-color: #08090c;
}
.input-field.disabled input {
  border-color: #dbdde6 !important;
  color: #b7bacc !important;
  pointer-events: none;
}
.input-field.disabled label {
  color: #b7bacc;
}
.input-field.disabled .field-wrap {
  pointer-events: none;
}
.input-field + .input-field,
.input-field + .inputs-row,
.inputs-row + .inputs-row,
.inputs-row + .input-field {
  margin-top: 16px;
}
.input-field-additional {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}
.input-field-additional a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #08090c;
  text-decoration: none;
}
.input-field-additional a:hover {
  text-decoration: underline;
}
.error-text,
.error-reason {
  color: #e25328;
  display: block;
}
.error-text {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}
.error-reason {
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
}
.input-field:not(.error) .error-reason {
  display: none;
}
.input-field.error label:not(.checkbox-container label) {
  color: #e25328;
}
.input-field.error .field-wrap input {
  border-color: #e25328;
}
.field-wrap {
  position: relative;
}

.field-wrap:not(.multiple-select-field) {
  overflow: hidden;
}

.password-visibility-hadnler,
.clear-password {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  height: 24px;
  width: 24px;
}
.password-field-actions {
  /* position: absolute;
     top: 50%;
     transform: translateY(-50%);
     right: 16px;
     */
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 16px;
}
.field-wrap {
  display: flex;
  gap: 4px;
}
.clear-password:not(.active) {
  display: none;
}
.form-message:not(.active) {
  display: none;
}
.form-message {
  padding-bottom: 16px;
}
.error-message {
  padding: 12px 20px;
  border-radius: 16px;
  background: #fdf1ed;
  display: flex;
  align-items: center;
  gap: 8px;
}
.error-message .ic {
  min-width: 24px;
}
.error-message p {
  color: #e25328;
}
.spin {
  animation: spin 2s linear infinite;
}

body .select2-container .select2-selection--single {
  height: 40px;
  border-radius: 12px;
  /* border: 1px solid #DBDDE6;
     */
  border: none;
  display: flex;
  align-items: center;
}
body .select2-container {
  width: 100% !important;
}
body
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
  padding-left: 16px;
  padding-right: 48px;
}
body
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  right: 16px;
  background-image: url(../img/Caret_Down_MD.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
body
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}
body .select2-dropdown {
  border: none;
  box-shadow: 0px 0px 12px 2px #00000014;
  border-radius: 16px !important;
  padding: 8px;
  margin-top: 8px;
}

body .select2-container--default .select2-results > .select2-results__options {
  max-height: 240px !important;
}

.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.select2-dropdown.select2-dropdown--above {
  margin-top: -8px;
}
body .select2-search--dropdown {
  padding: 12px 8px;
}
body
  .select2-container--default
  .select2-search--dropdown
  .select2-search__field {
  height: 40px;
  border-radius: 12px;
  border: 1px solid #dbdde6;
  padding-left: 48px;
  padding-right: 16px;
  outline: none;
}
body
  .select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable,
.select2-results__option {
  padding: 8px 16px;
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
  background: none !important;
}
body .select2-container--default .select2-results > .select2-results__options {
  max-height: 356px;
  overflow-y: auto;
}
/* Стилизация всей области скроллбара */
body
  .select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 4px;
  /* Ширина скроллбара */
}
/* Стилизация бегунка скроллбара */
body
  .select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #9498b3;
  /* Цвет бегунка */
  width: 4px;
  /* Ширина бегунка */
  border-radius: 4px;
  /* Радиус закругления */
}
/* Стилизация фона скроллбара */
body
  .select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  background: none;
  /* Цвет фона */
  border-radius: 10px;
  /* Радиус закругления */
}
/* Стилизация бегунка при наведении */
body
  .select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Цвет бегунка при наведении */
}
body .select2-search--dropdown {
  position: relative;
}
body .select2-search--dropdown::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/Search.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-color: #08090c !important;
}
.select2-results__option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .select2-container .select2-selection--single:hover {
  border-color: #707699;
}
.auth-form {
  position: relative;
}
@media (max-width: 980px) {
  .auth-container {
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
  }
}
@media (max-width: 768px) {
  .logo-black {
    max-width: 200px;
  }
  .auth-form {
    padding: 30px 20px;
  }
  .auth-form__title small {
    font-size: 14px;
    position: absolute;
    top: 10px;
  }
}
body
  .select2-container--default
  .select2-search--dropdown
  .select2-search__field {
  font-size: 16px;
}
body .select2-container--open .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg) !important;
}
.inputs-row .input-field {
  margin-top: 0 !important;
}
.inputs-row {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 8px));
  gap: 16px;
}
.datapicker-handler {
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  position: absolute;
  right: 0;
}
.checkbox-slider {
  width: 56px;
  height: 28px;
  position: relative;
}
.checkbox-slider input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}
.checkbox-slider input:disabled {
  pointer-events: none;
}
.check-row.disabled label {
  color: #9498b3 !important;
  /*pointer-events: none !important;*/
}
.checkbox-slider input:disabled ~ .checkbox-slider__inner {
  background: #9498b3 !important;
}
.checkbox-slider
  input:disabled
  ~ .checkbox-slider__inner
  .checkbox-slider__dot {
  background: #dbdde6;
}
.checkbox-slider__inner {
  width: 100%;
  height: 100%;
  padding: 4px;
  border-radius: 100px;
  background: #dbdde6;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.checkbox-slider__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s ease-in-out;
}
.checkbox-slider input:checked + .checkbox-slider__inner {
  background: #08090c;
}
.checkbox-slider input:checked + .checkbox-slider__inner .checkbox-slider__dot {
  transform: translateX(calc(56px - 8px - 20px));
  background: #fff;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  height: fit-content;
}
.check-row label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #131523;
  cursor: pointer;
}
.check-row__text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tip {
  position: relative;
}
.tip-ic {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tip-ic svg {
  width: 15px;
  height: 15px;
}
.tip-ic svg path {
  stroke-width: 1.2;
}
.check-row__text .tip-ic {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.check-row__text .tip-ic svg path {
  stroke-width: 1.6;
}
.check-row__text .tip-ic svg {
  width: 18px;
  height: 18px;
}
.tip-content {
  position: absolute;
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
  /*left: calc(100% + 15px);*/
  padding: 16px;
  border-radius: 16px;
  background: #08090c;
  min-width: 268px;
  display: none;
}
.tip-content p {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}
.tip-content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -19px;
  width: 19px;
  height: 14px;
  background-image: url(../img/Triangle.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
}
.tip-content.active {
  display: block;
  z-index: 999;
  max-width: 268px;
}
.tip.left .tip-content {
  left: auto;
  right: calc(100% + 15px);
}
.tip.left .tip-content::before {
  left: auto;
  right: -19px;
  transform: translateY(-50%) rotate(180deg);
}
.tip-content.left::before {
  left: auto;
  right: -19px;
  transform: translateY(-50%) rotate(180deg);
}
/*.tip:hover .tip-content {*/
/*  display: block;*/
/*}*/
.modal {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 6;
}
.modal__overlay {
  background: #13152333;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.modal__content {
  position: absolute;
  width: 33.33%;
  /*width: 720px;*/
  margin-left: auto;
  height: 100%;
  background: #fff;
  z-index: 2;
  top: 0;
  right: 0;
  min-width: 600px;
}
.modal {
  --modalHeaderHeight: 88px;
  --modalFooterHeight: 104px;
}
.modal__header {
  height: var(--modalHeaderHeight);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.modal__header h3 {
  font-size: 24px;
  line-height: 32px;
  color: #08090c;
}
.modal__close {
  width: 40px;
  min-width: 40px;
  padding: 0;
  height: 40px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover svg path {
  stroke: #3b3f54;
}
.modal__footer {
  height: var(--modalFooterHeight);
  padding: 10px 32px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal__content {
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  /*overflow-y: auto;*/
  overflow: hidden;
}
.modal__body {
  flex: 1;
  padding: 0 24px 0 32px;
  height: calc(100vh - 88px - 104px);
  border-right: 8px solid transparent;
  overflow-y: auto;
  padding-bottom: 32px;
}

.modal__body p + .input-field {
  margin-top: 16px;
}

.modal.active {
  display: flex;
}
.modal.slide-in .modal__content {
  transform: translateX(0);
  transition: transform 0.3s ease-in-out;
}
.btn-add {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: none;
  border: 1px solid #dbdde6;
  cursor: pointer;
}
.btn-add:hover {
  background-color: #e7e8ee;
  border-color: #e7e8ee;
}
.checkbox-rect {
  width: 16px;
  height: 16px;
  min-width: 16px;
  position: relative;
}
.checkbox-rect input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.checkbox-rect .checkbox-mask {
  width: 100%;
  height: 100%;
  border: 2px solid #707699;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-rect .checkbox-mask img {
  opacity: 0;
}

.checkbox-rect .checkbox-mask svg {
  opacity: 0;
}
.checkbox-rect input:checked + .checkbox-mask {
  border-color: #08090c;
  background: #08090c;
}
.checkbox-rect input:checked + .checkbox-mask svg,
.checkbox-rect input:checked + .checkbox-mask img {
  opacity: 1;
}
.checkbox-rect input:disabled {
  pointer-events: none;
}
.checkbox-rect input:disabled + .checkbox-mask {
  border-color: #9498b3;
  background: #9498b3;
}
.checkbox-rect input:disabled + .checkbox-mask svg {
  opacity: 1;
}
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkbox-container label {
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
  margin: 0;
}
.tdrive-table {
  width: 100%;
  min-height: 100%;
}
.tdrive-table__head {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}
.tdrive-table__head .tr .td {
  border-bottom: 1px solid #e7e8ee;
}
.tdrive-table__head .td > span {
  display: flex;
  gap: 4px;
  align-items: center;
}
.tdrive-table .tr {
  display: grid;
  grid-template-columns:
    32px minmax(240px, 1fr) minmax(240px, 19.93%) minmax(240px, 15.12%)
    minmax(240px, 15.12%) 80px 80px;
}
.tdrive-table .tr .td {
  padding: 12px;
  height: 84px;
  display: flex;
  align-items: center;
}
.tdrive-table .tr .td:first-child {
  padding: 0;
}
.tdrive-table__head .tr .td {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #707699;
}
.tdrive-table__body {
  padding-left: 4px;
  padding-right: 24px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  overflow-y: auto;
}

.tdrive-table__body .tr {
  min-height: 92px;
  border-radius: 16px;
  grid-template-columns:
    53px minmax(240px, 1fr) minmax(240px, 19.93%) minmax(240px, 15.12%)
    minmax(240px, 15.12%) 80px 80px;
}

.tdrive-table__body .tr .td:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.tdrive-table__body .tr .td:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-left: 20px;
}

.tdrive-table__body .tr:hover .td {
  background: #f3f4f7;
}

.tdrive-table__body .tr .td:nth-last-child(-n + 2) {
  display: flex;
  justify-content: center;
}

.group-information-box__body {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.td-person > div {
  width: 100%;
}
.person-name {
  /*display: inline-block;*/
  /*width: 100%;*/
  display: flex;
  width: fit-content;
  align-items: center;
  max-width: 100%;
  /*gap: 4px;*/
}
.person-name > a {
  /*display: flex;*/
  /*align-items: center;*/
  /*gap: 4px;*/
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.person-name > a img {
  transform: translateY(5px);
  display: inline-block;
}
.person-name > a.warn {
  color: #e25328;
}
.person-name .copy-btn {
  margin-left: 8px;
  /*transform: translateY(5px);*/
}
.person-name a {
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
  text-decoration: none;
}
.copy-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.person-tel {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #707699;
  text-decoration: none;
  margin-top: 8px;
}

.group-information-box__footer {
  padding: 32px;
  display: flex;
  gap: 16px;
  border-top: 1px solid #e7e8ee;
}

.group-information-box__footer:not(.active) {
  display: none;
}

.group-information-box__body {
  height: calc(
    var(--vh, 1vh) * 100 - var(--header-height) - var(--padding) * 2 -
      var(--content-header-height) - var(--content-header-footer)
  );
}
.tdrive-table__body {
  height: calc(
    var(--vh, 1vh) * 100 - var(--header-height) - var(--padding) * 2 -
      var(--content-header-height) - 84px - var(--content-header-footer)
  );
}
.tdrive-table__body .tr .td {
  min-height: 92px;
}
.status-label {
  font-size: 14px;
  line-height: 16px;
  padding: 4px 12px;
  border-radius: 20px;
}
.status-label--yellow {
  background: #fff7eb;
  color: #f99600;
}
.status-label--gray {
  background: #f3f4f7;
  color: #3b3f54;
}
.status-label--green {
  background: #f0faf7;
  color: #2c8c6a;
}
.status-label--red {
  background: #fdf1ed;
  color: #e25328;
}
.notifications-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  border-radius: 12px;
  position: relative;
}

.notifications-btn:hover {
  background: #e7e8ee;
}

.notifications-btn:active {
  background: #dbdde6;
}

.notifications-btn.active {
  background: #dbdde6;
}

.notifications-btn .circle {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c8c6a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
}
.actions-box {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
}
.actions-box img {
  height: 14px;
}
.actions-box:hover,
.actions-box:focus {
  background: #e7e8ee;
}
.actions-box:active {
  background: #dbdde6;
}
.actions-box:disabled {
  border-color: #e7e8ee;
  pointer-events: none;
}
.nothing {
  padding: 4px 12px;
  color: 12px;
  line-height: 16px;
  color: #3b3f54;
}
.installment {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}
.installment .check-row {
  margin-top: 0;
}
.installment__totals {
  text-align: right;
}
.installment__totals span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 24px;
  font-size: 18px;
  color: #08090c;
  font-weight: 500;
}
.installment__totals span strong {
  font-size: 24px;
  line-height: 32px;
}
.installment__totals p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #707699;
}
.payment-row {
  padding: 12px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.payment-row:hover {
  border-radius: 16px;
  background: #f3f4f7;
}
.payment-row label {
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
  font-weight: 500;
  margin-right: 14px;
}
.payment-row .input-field + .input-field {
  margin-top: 0;
}
.payment-row .input-field {
  flex: 1;
}
.remove-payment-row {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  border-radius: 12px;
  justify-content: center;
}
.remove-payment-row img {
  max-width: 24px;
}
.remove-payment-row:hover {
  background: #e7e8ee;
}
.message-box {
  position: absolute;
  bottom: 32px;
  right: 32px;
  padding: 14px 16px 14px 12px;
  border-radius: 20px;
  background: #08090c;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  transform: translateY(32px);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.3s ease;
}
.message-box .close-mess {
  margin-left: 2px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-box.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(32px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.error .field-wrap {
  border-color: #e25328;
}
.error .tip svg path {
  stroke: #e25328;
}
.error .select2-selection--single .select2-selection__rendered {
  color: #e25328 !important;
}
.select2-selection__rendered[title="Выберите"] {
  color: #707699 !important;
}
.air-datepicker {
  box-shadow: 0px 0px 12px 2px #00000014;
  width: 284px !important;
  background: #fff !important;
  border: none !important;
  padding: 0 !important;
}
.air-datepicker-nav--title,
.air-datepicker-nav--title i {
  font-size: 16px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  color: #08090c !important;
}
.air-datepicker-nav--action path {
  stroke: #707699 !important;
}
.air-datepicker-nav {
  border: none !important;
}
.air-datepicker-body--day-name {
  font-size: 12px !important;
  line-height: 16px !important;
  color: #707699 !important;
}
.air-datepicker-cell {
  font-size: 16px !important;
  line-height: 20px !important;
  color: #08090c !important;
}
.air-datepicker-cell.-current- {
  font-weight: 700 !important;
}
.air-datepicker--pointer {
  display: none !important;
}
.sidelogo .logo-short {
  display: none;
}
.group-information-box__body {
  width: calc(100vw - 320px - var(--sidebar-width) - 32px);
}
.tdrive-table__body {
  overflow: auto;
  border-bottom: 8px solid transparent;
}
.tdrive-table__head {
  overflow-x: auto;
}
.tdrive-table__head ::-webkit-scrollbar {
  display: none !important;
  /* Safari and Chrome */
}
.tdrive-table__head {
  -ms-overflow-style: none !important;
  /* Internet Explorer 10+ */
  scrollbar-width: none !important;
  /* Firefox */
}
/* хром, сафари */
.tdrive-table__head::-webkit-scrollbar {
  width: 0;
  height: 0 !important;
}
/* ie 10+ */
.table-header {
  -ms-overflow-style: none;
}
/* фф (свойство больше не работает, других способов тоже нет)*/
.table-header {
  overflow: -moz-scrollbars-none;
}
.elem {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.elem::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.form-block {
  /*border-top: 1px solid #e7e8ee;*/
  /*border-bottom: 1px solid #e7e8ee;*/
}
.form-block + .form-block {
  border-top: none;
  margin-top: 12px;
}
.payment-row + .form-block {
  margin-top: 40px;
}
.form-block__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #08090c;
  padding: 16px 12px;
  cursor: pointer;
  border-radius: 16px;
  background: #f3f4f7;
}
.form-block__head .tip-ic {
  width: 24px;
  height: 24px;
}
.form-block__head .tip-ic svg {
  width: 18px;
  height: 18px;
}
.form-block__head .tip-ic svg path {
  stroke-width: 1.6;
}
.form-block__arrow {
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-block__body {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 24px;
}
.form-block:not(.active) .form-block__body {
  display: none;
}
/*.form-block.active .form-block__arrow {*/
/*  transform: rotate(180deg);*/
/*}*/
.form-block.active .form-block__head {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-block.active .form-block__body {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.document-list {
  /*margin-bottom: 20px;*/
}
.document-item img {
  max-width: 50px;
  margin-right: 10px;
}
.upload-btn {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
}
.upload-btn:hover {
  background-color: #0056b3;
}
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 300px;
  text-align: center;
}
.modal-content input[type="file"] {
  margin-bottom: 20px;
}
.file-modal {
  background: #13152333;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-modal-content {
  width: 392px;
  padding: 16px 24px 20px 24px;
  background-color: #fff;
  border-radius: 16px;
}
.file-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.file-modal__head .modal__close {
  width: 32px;
  height: 32px;
  min-width: 32px;
  transform: translateX(8px);
}
.drop-zone {
  margin: 16px 0;
  border: 1px dashed #707699;
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.drop-zone .start {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.drop-zone img {
  margin-bottom: 8px;
}
.drop-zone strong {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #08090c;
  margin-bottom: 8px;
}
.drop-zone span {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #707699;
}
.file-modal__footer {
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.drop-zone.dragover {
  background: #f3f4f7;
}
.file-info {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}
.file-info__text {
  display: flex;
  align-items: center;
  gap: 16px;
}
.file-name {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #707699;
  text-align: left;
}
.file-size {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #b7bacc;
  text-align: left;
}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-zone:not(.active) .file-info {
  display: none;
}
.drop-zone.active .file-info {
  display: block;
}
.drop-zone.active .start {
  display: none;
}
.drop-zone.loaded .loader {
  display: none;
}
.drop-zone.loaded .file-name {
  color: #08090c;
}
.drop-zone.loaded .file-size {
  color: #707699;
}
.drop-zone.loaded .btn-add {
  background: #e7e8ee;
}
.drop-zone.loaded .btn-add svg path {
  stroke: #707699;
}
.ic-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.file-info__actions {
  display: flex;
  align-items: center;
}
.drop-zone.active {
  padding: 0;
  border: none;
}
.drop-zone:not(.loaded) .f-action {
  display: none;
}
.file-modal:not(.active) {
  display: none;
}
.loader {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.document-item__actions {
  display: flex;
  align-items: center;
}
.document-item:not(.loaded) .js-remove-doc,
.document-item:not(.loaded) .js-dwnld-doc {
  display: none;
}
.document-item:is(.loaded) .js-add-doc {
  display: none;
}
.document-item:not(.loaded) .document-item__preview .real {
  display: none;
}
.document-item:is(.loaded) .document-item__preview .real {
  display: flex;
}
.document-item:not(.loaded) .document-item__preview .fake {
  display: flex;
}
.document-item:is(.loaded) .document-item__preview .fake {
  display: none;
}
.document-item {
  padding: 12px;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.document-item:hover {
  background: #e7e8ee !important;
}
.document-item span {
  flex: 1;
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
}
.document-item__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #f3f4f7;
  background: #fff;
}
.document-item__preview img {
  margin: 0;
}
.document-item__preview .real,
.document-item__preview .fake {
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-mess {
  padding: 0;
}
.input-field input:disabled {
  pointer-events: none;
}
.input-field input:disabled::placeholder {
  color: #7b8194;
}
.input-field input::placeholder {
  color: #707699 !important;
}
.document-item {
  border-radius: 16px;
}
.document-item:hover {
  background: #f3f4f7;
}
.full .toggle-menu {
  display: none;
}
body .select2-search--dropdown {
  position: relative;
  /*display: none;*/
}
.select2-container--open .select2-selection__rendered {
  opacity: 0;
}
.select2-container--open .select2-selection__arrow {
  background-image: url(../img/Caret_Down_MD_black.svg) !important;
}
.datapicker input:focus ~ .datapicker-handler svg path {
  stroke: #08090c;
}
body
  .select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable,
.select2-results__option {
  border-radius: 8px;
  padding: 8px;
}
body
  .select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable,
.select2-results__option:hover {
  background: #f3f4f7 !important;
}
/*.admin-area__sidebar {*/
/*  overflow-x: auto;*/
/*}*/
@media (min-width: 1700px) {
  .toggle-menu {
    display: none;
  }
}
.admin-area:not(.full) {
  grid-template-columns: 120px calc(100% - 120px);
}
.toggle-menu {
  display: flex;
}
.admin-area:not(.full) .toggle-menu-2 {
  display: none;
}

@media (max-width: 1700px) {
  .admin-area .gh-actions .btn-add {
    display: flex;
  }
}

.admin-area:not(.full) .sidelogo .logo-short {
  display: block;
}
.admin-area:not(.full) .sidelogo img:not(.logo-short) {
  display: none;
  /*.admin-area__sidebar .input-field {*/
  /*  display: none;*/
  /*}*/
}
.admin-area:not(.full) .admin-area__sidebar .user-box__info {
  display: none;
}
.admin-area:not(.full) .admin-area__sidebar .user-box {
  justify-content: center;
  grid-template-columns: 100%;
}
.admin-area:not(.full) .admin-area__sidebar .user-box__avatar {
  width: 44px;
  margin: 0 auto;
}
.admin-area:not(.full) .admin-area__sidebar-menu ul li a {
  font-size: 0;
  line-height: 0;
}
.admin-area__body--trs {
  background: none;
}
@media (max-width: 1700px) {
  .gh-actions button:not(.btn-add) {
    /*display: none;*/
  }

  .admin-area .gh-actions .btn-add {
    display: none !important;
  }
}
/*@media (max-width: 1700px) {*/
/*  .admin-area:not(.full) {*/
/*    grid-template-columns: 20vw 1fr;*/
/*  }*/
/*  .admin-area__sidebar {*/
/*    border-bottom: 8px solid transparent;*/
/*  }*/
/*  .admin-area__sidebar-inner {*/
/*    min-width: 320px;*/
/*  }*/
/*}*/
.actions_btn {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  cursor: pointer;
  z-index: 4;
}
.actions_btn.active {
  z-index: 6;
}
.actions_btn:hover,
.actions_btn:focus {
  background: #e7e8ee;
}
.actions_btn:active {
  background: #dbdde6;
}
.actions_btn:hover .actions_btn__content,
.actions_btn:focus .actions_btn__content {
  /*display: block;*/
}
.actions_btn__content {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 137px;
  width: fit-content;
  height: 88px;
  padding-top: 8px;
  display: none;
}

.actions_btn__content.top {
  top: auto;
  bottom: calc(100% + 12px);
  height: auto;
}

/*.actions_btn__content.top .actions_btn__content-inner {*/
/*  padding-bottom: 42px;*/
/*}*/

.actions_btn__content.active {
  display: block;
}
.actions_btn__content-inner {
  width: 100%;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 12px 2px #00000014;
}
.td-action-btn {
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #131523;
  border-radius: 8px;
  width: 100%;
  display: block;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
}
.td-action-btn:hover {
  background: #f3f4f7;
}
.td-action-btn.red {
  color: #e25328;
}
.input-field + .inputs-group {
  margin-top: 32px;
}
.inputs-group + .input-field {
  margin-top: 32px;
}
.inputs-group + .inputs-group {
  margin-top: 32px;
}
.input-group__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #131523;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}
.inputs-group .input-group__title + .tarifs-list {
  margin-top: 20px;
}
.input-group__title .tip-ic {
  width: 24px;
  height: 24px;
}
.input-group__title .tip-ic svg {
  width: 18px;
  height: 18px;
}
.input-group__title + .not-filled-box {
  margin-top: 20px;
}
.not-filled-box + .btn-second {
  margin-top: 20px;
}
.avatar-preview:not([src]) {
  display: none;
}
.input-group__note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.input-group__note .ic {
  height: 40px;
  width: 40px;
  max-width: 40px;
  border-radius: 50%;
  background: #f3f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group__note .ic img {
  width: 24px;
  height: 24px;
}
.input-group__note p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #08090c;
}
.modal.skin--center {
  /*display: flex;*/
  align-items: center;
  justify-content: center;
}
.modal.skin--center .modal__content {
  height: auto;
  position: static;
  margin: 0;
  border-radius: 16px;
  max-width: 392px;
  min-width: 392px;
  transform: none;
}
.modal.skin--center.skin-xl .modal__content {
  max-width: 480px;
  min-width: 480px;
}
.modal.skin--center .modal__content .modal__header {
  padding: 18px 18px 2px 24px;
  height: auto;
}
.modal.skin--center .modal__content .modal__header h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}
.modal.skin--center .modal__content .modal__body {
  padding: 16px 24px;
}
.modal.skin--center .modal__content .modal__footer {
  height: 72px;
  padding: 12px 24px 20px;
}
.ds-content__body--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-empty--fw {
  max-width: 100% !important;
}

.modal.skin-lg .modal__content {
  max-width: 632px;
  width: 100%;
}

.is-warning {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
}
.is-warning p {
  font-size: 16px;
  line-height: 20px;
  color: #08090c;
}
.check-row__text label.tip-ic {
  width: auto;
  height: auto;
}
.datapicker input:focus::placeholder {
  opacity: 0 !important;
}
.select2-results__option[id*="not-chosen"] {
  display: none !important;
}
.multiple-select-field {
  position: relative;
  cursor: pointer;
}
.multiple-select-field--xl .multiple-select-field input {
  cursor: pointer;
}
.multiple-select-field--xl .multiple-select-field__list {
  min-width: 380px;
}
.multiple-select-field .caret-down {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  right: 16px;
  pointer-events: none;
}
.multiple-select-field.active .caret-down {
  transform: translateY(-50%) rotate(180deg);
}
.multiple-select-field.active .caret-down svg path {
  stroke: #08090c;
}
.multiple-select-field__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: none;
  z-index: 2;
  padding-right: 0;
  border-right: 8px solid transparent;
  max-height: 256px;
  overflow-y: auto;
}
.multiple-select-field.active .multiple-select-field__list {
  display: block;
}
.multiple-select-field__list .checkbox-container {
  padding: 8px 12px;
}
[data-prefix] input {
  padding-right: 2px;
  font-size: 16px;
}
[data-prefix] {
  min-width: 184px;
}
.ed-copy-btn:hover svg path {
  stroke: #3b3f54;
}
.password-visibility-hadnler:hover svg path,
.password-visibility-hadnler.active svg path {
  stroke: #3b3f54;
}
.field-wrap
  input:focus
  ~ .password-field-actions
  .password-visibility-hadnler
  svg
  path {
  stroke: #08090c;
}
.tip:hover .tip-ic svg path {
  stroke: #3b3f54;
}
.input-field .check-row {
  margin-top: 20px;
}
@media (max-width: 1224px) {
  .ds-content__head .btn-prime span,
  .ds-content__head .btn-second span {
    display: none;
  }
  .ds-content__head .btn-prime,
  .ds-content__head .btn-second {
    padding: 0;
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
  }
}
.multiple-select-field__list .checkbox-container,
.multiple-select-field__list .checkbox-container label {
  cursor: pointer;
}
.multiple-select-field__list .checkbox-container:hover {
  background: #f3f4f7;
  border-radius: 12px;
}
.multiple-select-field input {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  padding-right: 40px;
  cursor: pointer;
}
.input-field input {
  overflow: hidden;
  border-radius: 10px;
}
.input-field.error .datapicker input::placeholder {
  display: none !important;
  opacity: 0 !important;
}
.group_item-actions img {
  height: 18px;
}
.admin-area:not(.full) .admin-area__sidebar .multiple-select-field input {
  padding: 0 10px;
  padding-right: 20px;
}
.admin-area:not(.full) .admin-area__sidebar .multiple-select-field .caret-down {
  right: 0;
}
.btn-bottom {
  margin-top: 40px;
}
body
  .select2-container--default
  .select2-search--dropdown
  .select2-search__field::placeholder {
  color: #707699 !important;
}
.error-reason.visible {
  display: block !important;
}
.input-field:not(.error) .error-reason.visible {
  color: #707699;
}
@media (max-width: 1200px) {
  .auth-container {
    padding-right: 100px;
    padding-left: 100px;
  }
}
.select2-results__message {
  color: #707699;
}
.admin-area:not(.full) .admin-area__sidebar .warning-icon {
  display: none;
}
.tarifs-list + .btn-second {
  margin-top: 20px;
}
.gap-8 {
  gap: 8px;
}
.gap-8 .btn-second {
  padding-left: 22px;
  padding-right: 22px;
}
.message-box.has-link .close-mess {
  display: none;
}
.message-link {
  height: 28px;
  border-left: 1px solid #fff;
  font-size: 14px;
  line-height: 20px;
  color: white;
  font-weight: 500;
  padding-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.input-field.readonly .field-wrap {
  pointer-events: none !important;
}
.input-field.readonly .field-wrap {
  border: none !important;
  margin-top: -8px;
}
.input-field.readonly .select2-selection__arrow {
  display: none;
}
.input-field.readonly .select2-selection__rendered {
  padding: 0 !important;
}
.field-wrap.datapicker input.hover-placeholder {
  color: transparent;
}
.field-wrap.datapicker input.hover-placeholder::placeholder {
  color: #000;
}
.field-wrap.datapicker input {
  cursor: pointer;
}
.field-wrap input[readonly]:not(:placeholder-shown):hover {
  color: #7b8194;
}
.air-datepicker-cell.-current- {
  background: #08090c;
  color: #fff !important;
  border-radius: 8px !important;
}
.txt-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #08090c;
  padding: 0;
  background: none;
  border: none;
  text-align: center;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.txt-btn:hover {
  text-decoration: underline;
}
.load-more-btn {
  margin-top: 26px;
}
.air-datepicker-cell.-other-month- {
  color: gray;
}
.air-datepicker-cell.-other-month- {
  color: rgba(112, 118, 153, 0.5) !important;
}
[data-payment-row]:not(.active) .remove-payment-row {
  opacity: 0;
  visibility: hidden;
}
[data-select2-id*="add-new-tariff"] {
  display: flex;
  align-items: center;
}
.select2-results__option {
  min-height: 40px;
  display: flex;
  align-items: center;
}
[data-select2-id*="add-new-tariff"]:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../img/pls.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px;
  margin-right: 8px;
  display: block;
  transform: translateY(0);
}
.admin-area__header .search-form,
.admin-area__header .search-form + .btn-second {
  /*display: none;*/
}
.admin-area:not(.full)
  .admin-area__sidebar
  .multiple-select-field
  input[readonly] {
  text-align: center;
}
.modal__body .gh-row-details {
  display: flex;
  gap: 40px;
  margin-bottom: 16px;
}
.modal__body .gh-row-details .gh-row-col span {
  margin-bottom: 8px;
  display: block;
}
.form-block__body {
  background: #f3f4f7;
}
.form-block__body .input-field input {
  background: #fff;
}

.logo.sidelogo {
  height: 48px;
  display: flex;
  align-items: center;
}

.multiple-select-field--xl.active input:not(.selected) {
  color: transparent !important;
}

.error .tip:hover svg path {
  stroke: #e25328;
}

.modal__body p {
  font-size: 16px;
}

.document-item .ic-btn {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-item .ic-btn img {
  margin: 0;
}

.document-item .ic-btn:hover {
  background: rgba(219, 221, 230, 1);
}

.notifications-btn {
  cursor: pointer;
}

.notifications-area {
  position: absolute;
  top: 17px;
  right: calc(100% - 4px);
  box-shadow: 0px 0px 15px 6px #0000001a;
  width: 489px;
  border-radius: 16px;
  background: #fff;
}

.notifications-btn:not(.active) .notifications-area {
  display: none;
}

.notifications-area__head {
  padding: 24px 24px 8px;
}

.notifications-area__head strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #08090c;
}

.notifications-area__body {
  padding: 8px 4px 0 16px;
  border-bottom: 16px solid transparent;
  border-right: 24px solid transparent;
  max-height: 240px;
  overflow-y: auto;
}

.notification-item {
  padding: 8px 16px 8px 12px;

  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  cursor: pointer;
}

.notification-item .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.notification-item .status-dot.green {
  background: #2c8c6a;
}

.notification-item-content span {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-bottom: 4px;
  display: block;
}

.notification-item-content small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}

.notification-item a {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  display: block;
  color: #08090c;
  text-decoration: none;
  margin-left: auto;
}

.notification-item:hover {
  background: #f3f4f7;
  border-radius: 16px;
  border-color: transparent !important;
}

.notification-item:hover + .notification-item {
  border-color: transparent !important;
}

.notification-item a:hover {
  color: #5a607f;
}

.notification-item:not(:first-child) {
  border-top: 1px solid #e7e8ee;
}

.all-documents__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  max-height: 60px;
}

.all-documents__item .ic {
  width: 40px;
  max-width: 40px;
}

.all-documents__item a {
  padding-left: 10px;
  padding-right: 10px;
  width: 132px;
  max-width: 132px;
}

.all-documents__item-body {
  flex: 1;
}

.all-documents__item-body span {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #08090c;
}

.modal.skin-lg .modal__content .modal__body {
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 22px;
}

.all-documents-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.all-documents__item-body .warn {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #e25328;
  margin-top: 4px;
}

.all-documents__item-body .warn img {
  min-width: 20px;
}

.td-action-btn:disabled {
  opacity: 0.2;
  pointer-events: none;
}

.title-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-area__body--scroll {
  overflow-y: auto;
}

.admin-area__content--100vh {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.datapicker.readonly {
  border: none;
  pointer-events: none;
}

.datapicker.readonly input {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #08090c;
  border: none;
  height: 20px;
}

.datapicker.readonly button {
  display: none;
}

.c-payment-block .td-action-btn:first-child {
  margin-bottom: 9px;
  position: relative;

  &:after {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    height: 1px;
    background: #e7e8ee;
  }
}

.file-modal span:not(.df) {
  display: none;
}

.file-modal-invoice span.df {
  display: none;
}

.file-modal-invoice span:not(.df) {
  display: block;
}

.course-block__head:not(.hidden) .cb-hd-area {
  display: none;
}

.cb-hd-area.full {
  width: 100%;
}

.cb-hd-area span {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #707699;
}

.cb-hd-area span strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #131523;
}

.input-field.disabled input::placeholder {
  color: #b7bacc !important;
}

.payment-row .input-field.disabled .datapicker-handler {
  opacity: 0;
  visibility: hidden;
}

.ic-big {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.installment .check-row {
  flex-wrap: wrap;
}

.installment .check-row .full {
  width: 100%;
}

.installment .check-row .installment__totals {
  margin-left: auto;
}

.s-error {
  padding: 12px 20px;
  background: #fdf1ed;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #e25328;
}

.modal.no-overflow .modal__content,
.modal.no-overflow .modal__body {
  overflow: visible;
}

.modal.no-overflow .modal__header {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.modal.no-overflow .modal__footer {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

#add-student .modal__footer {
  border-top: 1px solid #e7e8ee;
}

.input-field.disabled .datapicker-handler svg path {
  stroke: #b7bacc;
}

.auth-page {
  overflow-x: hidden;
}

.password-visibility-hadnler svg path,
.clear-password svg path {
  stroke: rgb(112, 118, 153) !important;
}

.password-visibility-hadnler:hover svg path,
.clear-password:hover svg path {
  stroke: #3b3f54 !important;
}

.password-visibility-hadnler.active svg path {
  stroke: #3b3f54 !important;
}

.password-visibility-hadnler .opened {
  display: none;
}

.password-visibility-hadnler.active .closed {
  display: none;
}

.password-visibility-hadnler.active .opened {
  display: block;
}


.checkbox-slider input:disabled ~ .checkbox-slider__inner {
  background: #DBDDE6 !important;
}

.checkbox-slider input:disabled ~ .checkbox-slider__inner .checkbox-slider__dot {
  background: #9498B3 !important;
}

.check-row.disabled  .check-row__text label {
  color: #9498B3;
}

.is-warning {
  font-size: 13px;
}

.installment__totals p {
  font-size: 17px;
}

.form-block.active .form-block__arrow img {
  transform: rotate(-180deg);
}


.input-field + .checkbox-container {
  margin-top: 16px;
}


@media (max-width: 1200px) {
  .auth-container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .auth-form__title {
    font-size: 24px;
    line-height: 38px;
  }
}

@media (max-width: 577px) {
  .modal.skin--center .modal__content {
    max-width: 100%;
    min-width: 100%;
  }

  .modal.skin--center {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.auth-page {
  padding-top: 15px;
  padding-bottom: 15px;
  height: 100vh;
  overflow: hidden;
}

.auth-container {
  height: calc(100vh - 30px);
}
.auth-form {
  max-height: calc(100vh - 30px);
  overflow-y: auto  ;
  padding-right: 24px;
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (max-width: 768px) {
  .auth-form {
    padding: 22px 12px 22px 20px;
  }
}



.note { 
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  margin-top: 24px;
  color: #707699;
}
.note a {
  color: #707699; 
  /*text-decoration: none;*/
}
.note a:hover {
  text-decoration: underline;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}