@charset "UTF-8";

/* Base */

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  max-height: 100%;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/*!
 * 
 * ../css/litepicker.css
 * Litepicker v2.0.12 (https://github.com/wakirin/Litepicker)
 * Package: litepicker (https://www.npmjs.com/package/litepicker)
 * License: MIT (https://github.com/wakirin/Litepicker/blob/master/LICENCE.md)
 * Copyright 2019-2021 Rinat G.
 *     
 * Hash: 2f11f1f0300ea13b17b5
 * 
 */

:root {
  --litepicker-container-months-color-bg: #fff;
  --litepicker-container-months-box-shadow-color: #ddd;
  --litepicker-footer-color-bg: #fafafa;
  --litepicker-footer-box-shadow-color: #ddd;
  --litepicker-tooltip-color-bg: #fff;
  --litepicker-month-header-color: #333;
  --litepicker-button-prev-month-color: #9e9e9e;
  --litepicker-button-next-month-color: #9e9e9e;
  --litepicker-button-prev-month-color-hover: #2196f3;
  --litepicker-button-next-month-color-hover: #2196f3;
  --litepicker-month-width: calc(var(--litepicker-day-width) * 7);
  --litepicker-month-weekday-color: #9e9e9e;
  --litepicker-month-week-number-color: #9e9e9e;
  --litepicker-day-width: 38px;
  --litepicker-day-color: #333;
  --litepicker-day-color-hover: #2196f3;
  --litepicker-is-today-color: #f44336;
  --litepicker-is-in-range-color: #bbdefb;
  --litepicker-is-locked-color: #9e9e9e;
  --litepicker-is-start-color: #fff;
  --litepicker-is-start-color-bg: #2196f3;
  --litepicker-is-end-color: #fff;
  --litepicker-is-end-color-bg: #2196f3;
  --litepicker-button-cancel-color: #fff;
  --litepicker-button-cancel-color-bg: #9e9e9e;
  --litepicker-button-apply-color: #fff;
  --litepicker-button-apply-color-bg: #2196f3;
  --litepicker-button-reset-color: #909090;
  --litepicker-button-reset-color-hover: #2196f3;
  --litepicker-highlighted-day-color: #333;
  --litepicker-highlighted-day-color-bg: #ffeb3b;
}

.show-week-numbers {
  --litepicker-month-width: calc(var(--litepicker-day-width) * 8);
}

.litepicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8em;
  display: none;
}

.litepicker button {
  border: none;
  background: none;
}

.litepicker .container__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.litepicker .container__months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--litepicker-container-months-color-bg);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px var(--litepicker-container-months-box-shadow-color);
  box-shadow: 0 0 5px var(--litepicker-container-months-box-shadow-color);
  width: calc(var(--litepicker-month-width) + 10px);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__months.columns-2 {
  width: calc(var(--litepicker-month-width) * 2 + 20px);
}

.litepicker .container__months.columns-3 {
  width: calc(var(--litepicker-month-width) * 3 + 30px);
}

.litepicker .container__months.columns-4 {
  width: calc(var(--litepicker-month-width) * 4 + 40px);
}

.litepicker .container__months.split-view .month-item-header .button-previous-month,
.litepicker .container__months.split-view .month-item-header .button-next-month {
  visibility: visible;
}

.litepicker .container__months .month-item {
  padding: 5px;
  width: var(--litepicker-month-width);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__months .month-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 500;
  padding: 10px 5px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--litepicker-month-header-color);
}

.litepicker .container__months .month-item-header div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.litepicker .container__months .month-item-header div > .month-item-name {
  margin-right: 5px;
}

.litepicker .container__months .month-item-header div > .month-item-year {
  padding: 0;
}

.litepicker .container__months .month-item-header .reset-button {
  color: var(--litepicker-button-reset-color);
}

.litepicker .container__months .month-item-header .reset-button > svg {
  fill: var(--litepicker-button-reset-color);
}

.litepicker .container__months .month-item-header .reset-button * {
  pointer-events: none;
}

.litepicker .container__months .month-item-header .reset-button:hover {
  color: var(--litepicker-button-reset-color-hover);
}

.litepicker .container__months .month-item-header .reset-button:hover > svg {
  fill: var(--litepicker-button-reset-color-hover);
}

.litepicker .container__months .month-item-header .button-previous-month,
.litepicker .container__months .month-item-header .button-next-month {
  visibility: hidden;
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 3px;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}

.litepicker .container__months .month-item-header .button-previous-month *,
.litepicker .container__months .month-item-header .button-next-month * {
  pointer-events: none;
}

.litepicker .container__months .month-item-header .button-previous-month {
  color: var(--litepicker-button-prev-month-color);
}

.litepicker .container__months .month-item-header .button-previous-month > svg,
.litepicker .container__months .month-item-header .button-previous-month > img {
  fill: var(--litepicker-button-prev-month-color);
}

.litepicker .container__months .month-item-header .button-previous-month:hover {
  color: var(--litepicker-button-prev-month-color-hover);
}

.litepicker .container__months .month-item-header .button-previous-month:hover > svg {
  fill: var(--litepicker-button-prev-month-color-hover);
}

.litepicker .container__months .month-item-header .button-next-month {
  color: var(--litepicker-button-next-month-color);
}

.litepicker .container__months .month-item-header .button-next-month > svg,
.litepicker .container__months .month-item-header .button-next-month > img {
  fill: var(--litepicker-button-next-month-color);
}

.litepicker .container__months .month-item-header .button-next-month:hover {
  color: var(--litepicker-button-next-month-color-hover);
}

.litepicker .container__months .month-item-header .button-next-month:hover > svg {
  fill: var(--litepicker-button-next-month-color-hover);
}

.litepicker .container__months .month-item-weekdays-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--litepicker-month-weekday-color);
}

.litepicker .container__months .month-item-weekdays-row > div {
  padding: 5px 0;
  font-size: 85%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: var(--litepicker-day-width);
  text-align: center;
}

.litepicker .container__months .month-item:first-child .button-previous-month {
  visibility: visible;
}

.litepicker .container__months .month-item:last-child .button-next-month {
  visibility: visible;
}

.litepicker .container__months .month-item.no-previous-month .button-previous-month {
  visibility: hidden;
}

.litepicker .container__months .month-item.no-next-month .button-next-month {
  visibility: hidden;
}

.litepicker .container__days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-self: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__days > div,
.litepicker .container__days > a {
  padding: 5px 0;
  width: var(--litepicker-day-width);
}

.litepicker .container__days .day-item {
  color: var(--litepicker-day-color);
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}

.litepicker .container__days .day-item:hover {
  color: var(--litepicker-day-color-hover);
  -webkit-box-shadow: inset 0 0 0 1px var(--litepicker-day-color-hover);
  box-shadow: inset 0 0 0 1px var(--litepicker-day-color-hover);
}

.litepicker .container__days .day-item.is-today {
  color: var(--litepicker-is-today-color);
}

.litepicker .container__days .day-item.is-locked {
  color: var(--litepicker-is-locked-color);
}

.litepicker .container__days .day-item.is-locked:hover {
  color: var(--litepicker-is-locked-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

.litepicker .container__days .day-item.is-in-range {
  background-color: var(--litepicker-is-in-range-color);
  border-radius: 0;
}

.litepicker .container__days .day-item.is-start-date {
  color: var(--litepicker-is-start-color);
  background-color: var(--litepicker-is-start-color-bg);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.litepicker .container__days .day-item.is-start-date.is-flipped {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-end-date {
  color: var(--litepicker-is-end-color);
  background-color: var(--litepicker-is-end-color-bg);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-end-date.is-flipped {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.litepicker .container__days .day-item.is-start-date.is-end-date {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-highlighted {
  color: var(--litepicker-highlighted-day-color);
  background-color: var(--litepicker-highlighted-day-color-bg);
}

.litepicker .container__days .week-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--litepicker-month-week-number-color);
  font-size: 85%;
}

.litepicker .container__footer {
  text-align: right;
  padding: 10px 5px;
  margin: 0 5px;
  background-color: var(--litepicker-footer-color-bg);
  -webkit-box-shadow: inset 0px 3px 3px 0px var(--litepicker-footer-box-shadow-color);
  box-shadow: inset 0px 3px 3px 0px var(--litepicker-footer-box-shadow-color);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__footer .preview-date-range {
  margin-right: 10px;
  font-size: 90%;
}

.litepicker .container__footer .button-cancel {
  background-color: var(--litepicker-button-cancel-color-bg);
  color: var(--litepicker-button-cancel-color);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
}

.litepicker .container__footer .button-cancel * {
  pointer-events: none;
}

.litepicker .container__footer .button-apply {
  background-color: var(--litepicker-button-apply-color-bg);
  color: var(--litepicker-button-apply-color);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
}

.litepicker .container__footer .button-apply:disabled {
  opacity: 0.7;
}

.litepicker .container__footer .button-apply * {
  pointer-events: none;
}

.litepicker .container__tooltip {
  position: absolute;
  margin-top: -4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--litepicker-tooltip-color-bg);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-size: 11px;
  pointer-events: none;
  visibility: hidden;
}

.litepicker .container__tooltip:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  border-top: 5px solid rgba(0, 0, 0, 0.12);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}

.litepicker .container__tooltip:after {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  border-top: 4px solid var(--litepicker-tooltip-color-bg);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

:root {
  --container-width: 1366px;
  --container-padding: 30px;
  --container-padding-tablet: 20px;
  --container-padding-mobile: 20px;
  --header-padding: 350px;
  --font-main: sans-serif;
  --primary-light: rgb(255, 241, 215);
  --primary: rgb(255, 211, 126);
  --primary-dark: rgb(215, 166, 88);
  --primary-new: rgb(255, 246, 229);
  --secondary-light: rgb(215, 235, 255);
  --basic-black: rgb(29, 29, 29);
  --color-stripe: rgb(43, 43, 43);
  --color-placeholder: rgb(34, 34, 34);
  --secondary: rgb(29, 31, 118);
  --basic-radius: 123px;
  --basic-gray: rgb(229, 229, 229);
  --extra-grey: rgb(215, 215, 231);
  --gray-border: rgb(227, 227, 237);
  --basic-red: rgb(246, 34, 34);
  --basic-red-light: rgba(255, 211, 215, 1);
  --text-notification: rgb(27, 27, 27);
  --extra-svg: rgb(45, 45, 45);
  --aside-color: rgb(78, 94, 107);
  --radius: 16px;
  --bg: rgb(248, 248, 248);
  --border: rgb(229, 229, 229);
  --text: rgb(45, 45, 45);
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --success: rgba(88, 161, 116, 1);
  --font-primary: "Lato", sans-serif;
  --font-secondary: "AAStetica", sans-serif;
  --font-third: "Roboto", sans-serif;
}

@font-face {
  font-family: "AAStetica";
  font-display: swap;
  src: url("../fonts/AAStetica-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "AAStetica";
  font-display: swap;
  src: url("../fonts/AAStetica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

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

@font-face {
  font-family: "Lato";
  font-display: swap;
  src: url("../fonts/Lato-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  font-display: swap;
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  font-display: swap;
  src: url("../fonts/Lato-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

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

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  font-display: swap;
  src: url("../fonts/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@-webkit-keyframes push {
  0% {
    width: 14px;
    height: 14px;
  }

  100% {
    width: 84px;
    height: 84px;
  }
}

@keyframes push {
  0% {
    width: 14px;
    height: 14px;
  }

  100% {
    width: 84px;
    height: 84px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
}

@-webkit-keyframes slideInFromBottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideOutToTop {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes slideOutToTop {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}

html {
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 320px) / (1440 - 320), 20px);
}

html,
body {
  height: 100% !important;
}

html {
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--font-primary);
  text-wrap: balance;
  background-color: var(--primary-light);
  font-size: 16px;
  min-height: 100vh;
}

body::-webkit-scrollbar {
  width: 8px;
  background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 2px;
  height: 150px;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  margin-bottom: 90px;
}

.section-140 {
  margin-bottom: 140px;
}

picture {
  display: block;
}

[class*=__wrapper] {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.page-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.page-layout header {
  display: none;
}

.page-layout main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

svg {
  width: 16px;
  height: 16px;
}

.bg-dark {
  background-color: var(--secondary);
}

.bg-light {
  background-color: var(--secondary-light);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.error-block .error-block--hide {
  display: none;
}

.error-block .error-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.error-block__item {
  padding: 10vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none;
}

.error-block__ico {
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  margin-bottom: 30px;
}

.error-block__ico svg {
  width: 100%;
  height: 100%;
}

.error-block__title {
  font-size: 26px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 20px;
}

.error-block__text {
  max-width: 50%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
}

.content-info h3 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 30px;
}

.content-info p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 14px;
}

.content-info img {
  display: block;
  margin-bottom: 20px;
}

.content-info picture {
  display: block;
  margin-bottom: 20px;
}

.page-partner .header {
  display: block;
  margin-bottom: 30px;
}

.page-partner .header__inner {
  padding: 30px;
}

.page-partner .header__exit .left-aside__exit {
  padding: 0;
}

.simplebar-content {
  counter-reset: num-counter;
}

.custom-scrollbar .simplebar-scrollbar::before {
  background-color: transparent !important;
  opacity: 0 !important;
  -webkit-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
}

.custom-scrollbar:hover .simplebar-scrollbar::before,
.custom-scrollbar .simplebar-scrollbar.simplebar-visible::before,
.custom-scrollbar .simplebar-scrollbar:hover::before {
  background-color: var(--border, #f00) !important;
  opacity: 1 !important;
  border-radius: 8px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
}

.ts-control input {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  font-family: var(--font-primary);
}

.ts-control input::-webkit-input-placeholder {
  color: var(--text);
  font-family: var(--font-primary);
}

.ts-control input::-moz-placeholder {
  color: var(--text);
  font-family: var(--font-primary);
}

.ts-control input:-ms-input-placeholder {
  color: var(--text);
  font-family: var(--font-primary);
}

.ts-control input::-ms-input-placeholder {
  color: var(--text);
  font-family: var(--font-primary);
}

.ts-control input::placeholder {
  color: var(--text);
  font-family: var(--font-primary);
}

.nav-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  min-width: 0;
  position: relative;
}

.nav-company__logo {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  cursor: pointer;
  color: var(--text);
}

.nav-company__name {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.nav-company__name p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  display: block;
}

.nav-company__name p:first-child {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.nav-company__name p:last-child {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.block {
  margin-bottom: 100px;
}

.block .reception-field {
  height: auto;
}

.block__wrapper {
  max-width: 900px;
}

.block__wrapper .scanner-user-form {
  margin-bottom: 50px;
}

.icon {
  width: 24px;
  height: 24px;
}

.icon > use {
  fill: var(--white);
  stroke: var(--extra-svg);
}

.data-picker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.data-picker input#litepicker {
  cursor: pointer;
  display: inline-block;
  max-width: 150px;
}

.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-icon span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--secondary);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  padding: 16.5px 24px 16.5px 24px;
  border: 1px solid transparent;
}

.btn-icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-left: -15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-icon i svg {
  width: 10px;
  height: 10px;
}

.btn-icon:disabled {
  cursor: not-allowed;
}

.btn-icon:disabled span {
  background-color: var(--basic-gray);
}

.btn-icon:hover i {
  background-color: var(--secondary-light);
}

.none {
  display: none !important;
}

.scroll-lock-ios {
  position: fixed;
  overflow: hidden;
}

.scroll-lock {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@-moz-document url-prefix()  {
  .body,
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--white);
  }
}

/* Контейнеры */

.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

.container-full {
  padding: 0 var(--container-padding);
  max-width: 100%;
}

.container-left-50 {
  padding: 0 var(--container-padding);
  max-width: 50%;
}

.container-right-50 {
  padding: 0 var(--container-padding);
  max-width: 50%;
  margin-left: auto;
}

.container-right {
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-left {
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-half-left {
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-width) / 2);
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

.container-half-right {
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-width) / 2);
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}

/* components */

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
  background-color: var(--secondary);
  padding: 11px 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: solid 1px transparent;
  pointer-events: all;
}

.btn:disabled {
  cursor: default !important;
  pointer-events: none !important;
}

.btn.btn-primary {
  color: var(--white);
  background-color: var(--secondary);
}

.btn.btn-primary svg {
  fill: var(--white);
  stroke: var(--white);
}

.btn.btn-primary:disabled {
  background-color: var(--basic-gray);
  color: var(--aside-color);
}

.btn.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 1px var(--white);
  box-shadow: 0 0 0 1px var(--white);
}

.btn.btn-light {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--border);
}

.btn.btn-light svg {
  stroke: var(--secondary);
}

.btn.btn-light:active {
  background-color: var(--secondary);
  color: var(--white);
}

.btn.btn-light:active svg {
  stroke: var(--white);
}

.btn.btn-light:disabled {
  color: var(--aside-color);
}

.btn.btn-light:focus {
  -webkit-box-shadow: 0 0 0 1px var(--secondary);
  box-shadow: 0 0 0 1px var(--secondary);
}

.btn.btn-transparent {
  background-color: transparent;
  color: var(--secondary);
}

.btn.btn-transparent svg {
  stroke: var(--secondary);
}

.btn.btn-transparent:active {
  background-color: var(--secondary);
  color: var(--white);
}

.btn.btn-transparent:active svg {
  stroke: var(--white);
}

.btn.btn-transparent:focus {
  -webkit-box-shadow: 0 0 0 1px var(--secondary);
  box-shadow: 0 0 0 1px var(--secondary);
}

.input-field__placeholder {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 16px;
  color: var(--text);
  font-family: var(--font-primary);
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.input-field.input-field--error input {
  border-color: red;
}

.input-field--white input {
  background-color: var(--white);
}

.input-field--blue input {
  background-color: var(--secondary-light);
}

.input-field label {
  position: relative;
}

.input-field label:has(.input-field__input.border) .input-field__searche svg {
  stroke: var(--secondary);
  fill: var(--white);
}

.input-field input {
  border-radius: 50px;
  height: 50px;
  line-height: 100%;
  padding: 0 20px;
  text-overflow: ellipsis;
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  font-family: var(--font-primary);
  width: 100%;
  border: solid 1px transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.input-field input:focus {
  background-color: var(--white);
  border-color: var(--secondary);
}

.input-field input::-webkit-input-placeholder {
  color: transparent;
}

.input-field input::-moz-placeholder {
  color: transparent;
}

.input-field input:-ms-input-placeholder {
  color: transparent;
}

.input-field input::-ms-input-placeholder {
  color: transparent;
}

.input-field input::placeholder {
  color: transparent;
}

.input-field__input.primary {
  background-color: var(--secondary-light);
}

.input-field__input.border {
  border-color: var(--border);
}

.input-field__input.border:focus {
  border-color: var(--secondary);
}

.input-field__searche {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  font-size: 0.5em;
  padding: 0;
}

.input-field:has(.input-field__searche) .input-field input {
  padding-right: 40px;
}

.input-field--filled input {
  background-color: var(--white);
  border-color: var(--secondary);
  line-height: 80%;
  padding: 15px 20px 1px 20px;
}

.input-field--filled .input-field__placeholder {
  font-size: 12px;
  color: var(--aside-color);
  top: 10px;
}

.input-checkbox__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.input-checkbox__input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.input-checkbox__checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  border: solid 1px var(--border);
  border-radius: 4px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.input-checkbox__checked:after {
  content: "";
  display: block;
  background-image: url("../img/icon/checked.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10px;
  height: 7px;
  opacity: 0;
}

.input-checkbox__input:checked + .input-checkbox__checked {
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.input-checkbox__input:checked + .input-checkbox__checked:after {
  opacity: 1;
}

.input-radio__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.input-radio__label:last-child {
  margin-bottom: 0;
}

.input-radio__input {
  opacity: 0;
  width: 0;
  position: absolute;
}

.input-radio__checked {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input-radio__checked::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.input-radio__name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.input-radio__input:checked + .input-radio__checked::after {
  opacity: 1;
}

textarea {
  outline: none;
}

.page-body .litepicker {
  font-family: var(--font-primary);
  border: solid 1px var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-body .litepicker .container__days {
  display: grid;
  grid-template-columns: repeat(7, 40px);
}

.page-body .litepicker .container__days div {
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
  position: relative;
  background: transparent;
  z-index: 1;
}

.page-body .litepicker .container__days div.is-today {
  color: var(--text);
  border-radius: 50%;
  border: solid 1px var(--secondary);
}

.page-body .litepicker .container__days div.is-today.is-in-range {
  border-radius: 0;
  border-color: transparent;
  color: red;
}

.page-body .litepicker .container__days div.is-in-range {
  background-color: var(--secondary-light);
  position: relative;
}

.page-body .litepicker .container__days div.is-in-range::after {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--secondary-light);
}

.page-body .litepicker .container__days div.is-in-range:before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--secondary-light);
}

.page-body .litepicker .container__days div.is-start-date {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.page-body .litepicker .container__days div.is-start-date::before {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  background-color: var(--secondary-light);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.page-body .litepicker .container__days div.is-start-date:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: var(--secondary);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
}

.page-body .litepicker .container__days div.is-end-date {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
}

.page-body .litepicker .container__days div.is-end-date::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: var(--secondary);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
}

.page-body .litepicker .container__days div.is-end-date:after {
  content: "";
  display: block;
  width: 20px;
  height: 100%;
  background-color: var(--secondary-light);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}

.page-body .litepicker .month-item-weekdays-row div {
  width: 40px;
  height: 40px;
}

.page-body .litepicker .container__months.columns-2 {
  width: calc(var(--litepicker-month-width) * 2 + 60px);
}

.page-body .litepicker .month-item {
  padding: 15px;
}

.select-custom__span:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 100px;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 4px;
}

.select-custom:focus .ts-control {
  background-color: red;
}

.select-custom .ts-control {
  background-color: var(--white);
  border: solid 1px var(--border);
  border-radius: 50px;
  font-size: 16px;
  padding: 14px 20px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-custom .ts-control input {
  pointer-events: none !important;
  pointer-events: none;
  position: absolute;
  caret-color: transparent;
  width: 0;
}

.select-custom .ts-control input:focus {
  pointer-events: none !important;
}

.select-custom .ts-control::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("../img/icon/arrow-p.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.select-custom .ts-control .ts-item-custom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding-right: 50px;
}

.select-custom.ts-wrapper.input-active.dropdown-active .ts-control {
  background-color: var(--secondary-light);
}

.select-custom.ts-wrapper.input-active.dropdown-active .ts-control::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-custom.ts-wrapper:focus .ts-control {
  background-color: var(--secondary-light);
}

.select-custom.ts-wrapper.single.input-active .ts-control {
  background-color: var(--white);
}

.modal .select-custom .ts-control {
  background-color: var(--secondary-light);
  border: solid 1px transparent;
}

.modal .select-custom.ts-wrapper.single.input-active .ts-control {
  background-color: var(--secondary-light);
}

.input-field-password-wrap label {
  position: relative;
}

.input-field-password-wrap label span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-field-password-wrap .js-password-toggle {
  display: none;
}

.input-field-password-wrap .js-password-toggle.active {
  display: block;
}

.pagination {
  padding: 20px;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1px;
}

.pagination__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  border: solid 1px transparent;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.pagination__num.active {
  background-color: var(--secondary);
  color: var(--white);
}

.pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
}

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

table.table thead {
  background-color: var(--secondary-light);
}

table.table thead tr th {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--aside-color);
  text-align: left;
}

table.table tbody {
  background-color: var(--white);
}

table.table tbody tr:nth-child(even) {
  background-color: var(--bg);
}

table.table tbody tr td {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.drop-block {
  position: relative;
  border: solid 1px var(--border);
  border-radius: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 150px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.drop-block .input-checkbox__checked {
  background-color: var(--secondary-light);
  border-color: transparent;
}

.drop-block .input-checkbox__name {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--text);
}

.drop-block__name {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fonts-primary);
}

.drop-block__name svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drop-block__name p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.drop-block__content {
  padding: 24px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10;
  width: 100%;
  min-width: 370px;
  border-radius: var(--radius);
  -webkit-box-shadow: 0px 11px 27px rgba(77, 77, 77, 0.12);
  box-shadow: 0px 11px 27px rgba(77, 77, 77, 0.12);
  background-color: var(--white);
  border: 1px solid var(--border);
  height: 555px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drop-block.active .drop-block__content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  z-index: 9999;
}

.drop-block__header {
  border-bottom: solid 1px var(--border);
  padding-bottom: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.drop-block__header-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 26px;
  display: none;
  font-family: var(--font-third);
}

.drop-block__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-height: 0;
  margin: 20px 0;
}

.drop-block__body::-webkit-scrollbar {
  display: none;
}

.drop-block__body .simplebar-track.simplebar-vertical {
  max-width: 4px;
}

.drop-block__body .simplebar-track.simplebar-vertical.track--scrollbar {
  background-color: var(--secondary-light) !important;
  z-index: 0;
}

.drop-block__body .simplebar-track.simplebar-vertical.track--container .simplebar-scrollbar {
  background-color: var(--secondary);
  border-radius: 50px;
}

.drop-block__body .simplebar-track.simplebar-vertical.track--container .simplebar-scrollbar:before {
  right: 0;
  content: "";
  opacity: 1 !important;
}

.drop-block__count {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}

.drop-block__body-inner {
  padding-right: 20px;
}

.drop-block__body-inner .input-checkbox {
  margin-bottom: 20px;
}

.drop-block__body-inner .input-checkbox__name {
  font-size: 14px;
  font-weight: 500;
}

.drop-block__footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
}

.drop-block__footer a,
.drop-block__footer button,
.drop-block__footer input {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}

.drop-block__close {
  display: inline-block;
  border: solid 1px var(--border);
  border-radius: 50%;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
  display: none;
}

.drop-block__close::after,
.drop-block__close::before {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.drop-block__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.drop-block__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drop-block.active .drop-block__name svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select-custom:hover .ts-control {
  border: solid 1px var(--secondary);
}

.select-custom .ts-control {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.select-custom.ts-wrapper.full .ts-control {
  background-color: var(--white) !important;
  border: solid 1px var(--secondary);
}

.select-custom.ts-wrapper.single.input-active .ts-control {
  background-color: var(--white) !important;
  border: solid 1px var(--secondary);
}

.select-custom.focus.input-active .ts-control {
  border: solid 1px red;
}

.select-custom .ts-dropdown {
  border: solid 1px;
  border-radius: var(--radius);
  padding: 10px;
}

.select-custom .option {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4px;
}

.select-custom .option:last-child {
  margin-bottom: 0;
}

/* modal */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px 0;
  /* Dropzone */
}

.modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal .input-field {
  margin-bottom: 10px;
}

.modal .input-field input {
  height: 50px;
}

.modal__wrapper {
  width: 100%;
  max-width: 460px;
  padding: 0;
}

.modal__overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal__content {
  background-color: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 460px;
  z-index: 8000;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 20px;
}

.modal__select {
  margin-bottom: 30px;
}

.modal__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.modal__footer {
  margin-top: auto;
}

.modal__btns {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.modal .btn {
  height: 50px;
  min-width: 160px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal .input-radio {
  margin-bottom: 20px;
}

.modal .input-radio__title {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 10px;
}

.modal .js-dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0 30px;
  background-color: var(--bg);
}

.modal .js-dropzone .dz-message {
  display: none !important;
}

.modal .js-dropzone .custom-dz-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

.modal .js-dropzone .custom-dz-message svg {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.modal .js-dropzone .custom-dz-message p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal .js-dropzone .custom-dz-message small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--aside-color);
}

.modal .js-dropzone .dz-default.dz-message {
  display: none !important;
}

.modal .js-dropzone .dz-preview {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 10px 0;
  padding: 10px;
  background: white;
  border-radius: var(--radius);
}

.modal .js-dropzone .dz-preview .dz-filename {
  font-size: 14px;
  margin: 0;
}

.modal .js-dropzone .dz-progress {
  display: none;
  /*Нет ддизайна, пока что display: none;*/
}

.modal .js-dropzone:hover,
.modal .js-dropzone.dropzone-active {
  background-color: #e9f2f9;
  border-color: var(--secondary-light);
  border-color: var(--aside-color);
}

.modal-info {
  border-radius: var(--radius);
  padding: 16px;
  background-color: var(--primary-light);
  margin-bottom: 14px;
}

.modal-info__title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}

.modal-info__text {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.modal-info-parent {
  background-color: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 14px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.modal-info-parent__photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  height: 36px;
  width: 36px;
  border: solid 2px var(--white);
  border-radius: 50%;
}

.modal-info-parent__photo picture {
  width: 100%;
  height: 100%;
}

.modal-info-parent__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-info-parent__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

.modal-info-parent__email {
  font-size: 12px;
  font-weight: 400;
  color: var(--aside-color);
}

.modal-address__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.modal-address-item {
  background-color: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
}

.modal-address-item__city {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
  margin-bottom: 14px;
}

.modal-address-item__loc {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
}

.modal-inputs {
  margin-bottom: 30px;
  margin-top: 30px;
}

.modal-inputs__title {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 15px;
}

.modals-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.modals-example__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.modal-np .modal__body {
  margin-bottom: 30px;
}

.modal-np .modal__text {
  color: var(--aside-color);
  font-size: 16px;
  font-weight: 400;
}

.modal-np .modal__footer button,
.modal-np .modal__footer a {
  height: 35px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
}

.modal-np__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-light);
  border-radius: 50%;
  margin-bottom: 30px;
}

.modal-reference .modal__title {
  margin-bottom: 30px;
}

.modal-reference__item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-reference__item-name {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
  margin-bottom: 14px;
}

.modal-reference__item-phone {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
  margin-bottom: 10px;
  display: inline-block;
}

.modal-reference__item-phone:last-child {
  margin-bottom: 0;
}

.modal-reference__item-email {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--secondary);
}

.modal-reference .btn {
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}

.modal-family .input-radio__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.modal-family .input-radio__label {
  margin-bottom: 0;
}

/* Blocks */

.login {
  background-image: url("../img/bg-start.png");
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 100vw;
  height: 100%;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

.login:after {
  content: "";
  display: block;
  background-image: url("../img/people.webp");
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-attachment: fixed;
}

.login:before {
  content: "";
  background-attachment: fixed;
}

.login__inner {
  height: 100%;
}

.login__inner form {
  display: block;
  padding-bottom: 1px;
  padding-top: 1px;
}

.login-form {
  background-color: var(--white);
  border-radius: var(--radius);
  max-width: 755px;
  width: 100%;
  padding: 105px 75px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: calc(100vh - 98px);
  z-index: 50;
  margin: 50px;
  position: relative;
  top: 0;
  bottom: 0;
}

.login-form__inner {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.login-form .form-error {
  color: var(--basic-red);
  font-size: 16px;
  font-weight: 400;
  display: inline-grid;
  grid-template-columns: 30px auto;
  gap: 13px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 10px;
  text-align: left;
}

.login-form .form-error svg {
  width: 100%;
}

.login-form .js-password-toggle {
  display: none;
  position: absolute;
  top: 55%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.login-form .js-password-toggle.active {
  display: block;
}

.login-form .input-checkbox__checked {
  background-color: var(--secondary-light);
}

.login-form .btn {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-form .input-field {
  margin-bottom: 15px;
}

.login-form .input-checkbox {
  margin-bottom: 40px;
}

.login-form__head {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 90px;
}

.login-form__head:has(.login-form__logo) {
  margin-top: 0px;
}

.login-form__title {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--font-secondary);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.login-form__subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.login-form__logo {
  background-color: var(--primary-light);
  border-radius: 50px;
  padding: 10px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 90px;
}

.login-form__restore {
  margin-top: 10px;
}

.login-form__restore button {
  height: 50px;
}

.login-form__send input {
  height: 50px;
}

.login-form__restore input {
  height: 50px;
}

.login-form__back {
  position: absolute;
  top: 24px;
  left: 24px;
}

.login-form__back svg {
  width: 24px;
  height: 24px;
}

.login-form-info {
  position: absolute;
  bottom: 24px;
  right: 24px;
}

.login-form-info a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: block;
}

.login-form-info svg {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.login-form-password .login-form__hints {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.login-form-password .input-field.block .js-password-toggle {
  display: none;
  color: var(--aside-color);
}

.login-form-password .input-field.block .input-field__placeholder {
  color: var(--aside-color);
}

.login-form-password .input-field__input.error {
  border-color: var(--basic-red);
}

.login-form-password .input-field__input:disabled {
  background-color: var(--basic-gray);
}

.login-form-password .input-field__input:disabled:hover {
  border-color: transparent;
}

.login-form-password .input-field__input:disabled::plaseholder {
  color: var(--basic-gray);
}

.login-form-password__hint {
  display: none;
  font-size: 12px;
}

.login-form-password__list ul {
  display: inline-block;
}

.login-form-password__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.login-form-password__item:last-child {
  margin-bottom: 0;
}

.login-form-password__icon--open {
  display: none;
}

.login-form-password__hint {
  color: var(--secondary);
}

.header {
  border-radius: 0 0 16px 16px;
  background-color: var(--white);
}

.header__icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 4px;
  position: inherit;
}

.header__icon--scan {
  display: block;
  background-image: url("../img/reception/icon-scan-light.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header__icon--history {
  display: block;
  background-image: url("../img/reception/icon-history-light.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 30px;
  gap: 40px;
}

.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.header__item:last-child {
  margin-left: auto;
}

.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  min-width: 0;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 195px;
  flex: 0 0 195px;
}

.header__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  min-width: 0;
  position: relative;
}

.header__nav {
  margin-left: auto;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.header__nav li a {
  color: var(--aside-color);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.header__nav li svg {
  width: 24px;
  height: 24px;
}

.header__nav li.active .header__icon--scan {
  background-image: url("../img/reception/icon-scan-dark.svg");
}

.header__nav li.active .header__icon--history {
  background-image: url("../img/reception/icon-history-dark.svg");
}

.header__exit {
  margin-left: 60px;
  border-left: solid 1px var(--border);
  padding-left: 16px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__exit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.header__exit svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.left-aside__icon {
  width: 24px;
  height: 24px;
  stroke: var(--extra-svg);
  fill: transparent;
}

.left-aside {
  background-color: var(--white);
  border-radius: 0 16px 16px 0;
  padding: 0 20px 0 20px;
  position: fixed;
  width: 245px;
  height: 100vh;
  overflow: hidden;
}

.left-aside__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

.left-aside__top {
  margin-top: 40px;
  min-height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.left-aside__logo {
  display: block;
}

.left-aside__middle {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--basic-gray) transparent;
}

.left-aside__middle::-webkit-scrollbar {
  width: 6px;
}

.left-aside__middle::-webkit-scrollbar-track {
  background: transparent;
}

.left-aside__middle::-webkit-scrollbar-thumb {
  background-color: var(--basic-gray);
  border-radius: 6px;
}

.left-aside__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.left-aside__bottom {
  margin-top: auto;
  background-color: var(--white);
}

.left-aside__company {
  border-top: 1px solid var(--basic-gray);
  border-bottom: 1px solid var(--basic-gray);
  margin: 50px 0 0;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.left-aside__company svg {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
}

.left-aside__company svg use {
  stroke: var(--aside-color);
}

.left-aside__company span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--aside-color);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.left-aside__icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.left-aside__icon use {
  stroke: var(--extra-svg);
}

.left-aside__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.left-aside__link span {
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  color: var(--aside-color);
  text-align: center;
}

.left-aside__link:active,
.left-aside__link:focus {
  background-color: var(--primary-light);
}

.left-aside__link:active .left-aside__icon use,
.left-aside__link:focus .left-aside__icon use {
  fill: var(--extra-svg);
  stroke: var(--primary);
}

.left-aside__link:active span,
.left-aside__link:focus span {
  color: var(--extra-svg);
}

.left-aside__link.active {
  background-color: var(--primary);
}

.left-aside__link.active .left-aside__icon use {
  fill: var(--extra-svg);
  stroke: var(--primary);
}

.left-aside__link.active span {
  color: var(--extra-svg);
}

.left-aside__exit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 25px 20px;
  border-top: 1px solid var(--basic-gray);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.left-aside__exit span {
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  color: var(--aside-color);
}

.left-aside__exit:hover span {
  color: var(--secondary);
}

.left-aside__exit:hover .icon-exit {
  stroke: var(--secondary);
}

.general-content {
  padding: 30px 30px 30px 30px;
  width: 100%;
  height: 100%;
  margin-left: auto;
  width: calc(100% - 245px);
}

.general-content__container {
  height: 100%;
}

.h1 {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 700;
}

.h2 {
  margin: 0 0 30px;
  font-size: 1.82rem;
  font-weight: 500;
  font-family: var(--font-secondary);
}

.h3 {
  margin: 0 0 0 0;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--font-secondary);
}

.h4 {
  margin: 0 0 0 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-secondary);
}

.tap-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.progress-circle {
  position: relative;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}

.progress-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.progress-circle .progress-background {
  fill: none;
  stroke: var(--bg);
  stroke-width: 10;
}

.progress-circle .progress-bar {
  fill: none;
  stroke: var(--primary);
  stroke-width: 10;
  stroke-linecap: round;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.progress-circle .progress-value {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
  display: block;
}

.progress-circle .progress-label {
  font-size: 14px;
  color: var(--text);
  margin-top: 5px;
}

.card {
  margin-bottom: 30px;
}

.card__list {
  display: grid;
  grid-template-columns: 245px auto;
  gap: 30px;
}

.card-name {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.card-name span {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-top: 5px;
}

.card-graph {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-areas: "a" "b" "c";
}

.card-graph__head {
  padding: 24px 24px 0;
  grid-area: a;
}

.card-graph__body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-area: b;
}

.card-graph__footer {
  grid-area: c;
  margin-top: auto;
}

.card-graph__footer-inner {
  background-color: var(--bg);
  padding: 10px 17px;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.card-blocks {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-block {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.card-block:first-child {
  background-color: var(--white);
  border-radius: var(--radius);
}

.card-block:last-child {
  background-color: var(--white);
  border-radius: var(--radius);
}

.card-block__head {
  margin-bottom: 35px;
}

.card-block__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-block__footer {
  margin-top: auto;
}

.card-line__numb {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}

.card-line__string {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5px;
  gap: 5px;
}

.card-line__string span {
  height: 100%;
  border-radius: 50px;
  display: block;
}

.card-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
}

.card-info__row:nth-child(1) .card-info__name span {
  background-color: var(--secondary);
}

.card-info__row:nth-child(2) .card-info__name span {
  background-color: var(--secondary-light);
}

.card-info__row:nth-child(3) {
  margin-bottom: 0;
}

.card-info__row:nth-child(3) .card-info__name span {
  background-color: var(--primary);
}

.card-info__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: var(--aside-color);
  font-size: 14px;
}

.card-info__name span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.card-info__num {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.card-dowmload a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  padding: 8px;
  border-radius: var(--radius);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.card-dowmload__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  background-color: var(--secondary-light);
}

.card-dowmload__ico .icon-document {
  max-width: 16px;
  fill: var(--secondary);
}

.card-choice__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 5px;
}

.card-choice__row:last-child {
  margin-bottom: 0;
}

.table-size {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 18px 40px 0.8fr 0.8fr 0.5fr 0.5fr 0.8fr 140px 190px;
  grid-template-areas: "a b c d e f g h i";
  gap: 20px;
  padding: 20px 16px;
  border-top: solid 1px var(--border);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.table-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.table-block--with-counter {
  margin-bottom: 80px;
}

.table-block .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-end;
  margin-right: 20px;
}

.table-block__inner {
  background-color: var(--white);
  border-radius: var(--radius);
  position: relative;
}

.table-block__head {
  padding: 25px 0;
}

.table-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: solid 1px var(--border);
  margin-bottom: 20px;
  position: relative;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.table-links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  height: auto;
  padding-bottom: 16px;
}

.table-links__item:first-child {
  gap: 0;
}

.table-links__item-btns {
  padding-right: 24px;
}

.table-links__searche {
  border-bottom: solid 2px transparent;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 24px;
  position: relative;
}

.table-links__searche p {
  color: var(--text);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.table-links__searche.active:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--secondary);
  position: absolute;
  left: 0;
  bottom: -18px;
}

.table-links__searche span {
  background-color: var(--secondary-light);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
  border-radius: 50px;
  padding: 2px 6px;
  display: inline-block;
}

.table-links__item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.table-links__item-btn svg {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
}

.table-searche {
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.table-searche__item .input-field .input-field__label {
  display: block;
}

.table-searche__item input::-webkit-input-placeholder {
  color: var(--text);
}

.table-searche__item input::-moz-placeholder {
  color: var(--text);
}

.table-searche__item input:-ms-input-placeholder {
  color: var(--text);
}

.table-searche__item input::-ms-input-placeholder {
  color: var(--text);
}

.table-searche__item input::placeholder {
  color: var(--text);
}

.table-searche__item:last-child {
  margin-left: auto;
}

.table-searche__item:last-child button,
.table-searche__item:last-child a {
  border-bottom: solid 1px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.table-head {
  background-color: var(--bg);
  padding-top: 16px;
  padding-bottom: 16px;
}

.table-head__item {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.table-body {
  position: relative;
}

.table-body__item-disabled-text {
  display: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.table-body__famaly .table-body__row {
  position: relative;
  background-color: var(--bg);
}

.table-body__famaly .table-body__row::after {
  content: "";
  display: block;
  width: 1px;
  background-color: var(--border);
  position: absolute;
  left: 73px;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.table-body__famaly .table-body__row:first-child {
  background-color: unset;
}

.table-body__famaly .table-body__row:first-child::after {
  top: 30px;
}

.table-body__famaly .table-body__row:nth-child(2) {
  /*background-color: var(--bg);*/
}

.table-body__famaly .table-body__row:nth-child(3) {
  /*background-color: var(--bg);*/
}

.table-body__famaly .table-body__row:last-child {
  /*background-color: var(--bg);*/
}

.table-body__famaly .table-body__row:last-child:after {
  bottom: auto;
  top: 0;
  height: 50px;
}

.table-body__famaly .passive {
  background-color: red;
}

.table-body__famaly .passive .table-body__item-buy {
  display: none;
}

.table-body__famaly .passive .table-body__item-card {
  display: none;
}

.table-body__famaly .passive .table-body__item-dealings-fix {
  display: none;
}

.table-body__item {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.table-body__item:first-child {
  grid-area: a;
}

.table-body__item:last-child {
  margin-left: auto;
}

.table-body__item-dealings {
  margin-left: auto;
}

.table-body__item-dealings p {
  color: var(--aside-color);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.table-body__item-photo {
  border: solid 2px var(--white);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.table-body__item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.table-body__item-name {
  text-overflow: ellipsis;
  overflow: hidden;
}

.table-body__item-firstname {
  text-overflow: ellipsis;
  overflow: hidden;
}

.table-body__item-date {
  white-space: nowrap;
}

.table-mobile {
  display: none;
}

.table-mobile__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--bg);
  padding: 15px 15px;
  border-bottom: solid 1px var(--border);
  border-top: solid 1px var(--border);
}

.table-mobile-card__disabled-text {
  display: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
  width: 100%;
}

.table-mobile-card--family {
  background-color: var(--bg);
  padding-bottom: 20px;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent {
  opacity: 0.5;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card-checkbox {
  display: none;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__disabled-text {
  display: block;
  margin-left: auto;
  text-align: right;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__head {
  border-bottom: none;
  display: grid;
  grid-template-areas: "a b c";
  grid-template-columns: 36px auto 1fr;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__photo {
  grid-area: a;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__body {
  display: none;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__footer {
  display: none;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__checkbox input {
  display: none;
}

.table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__dealings {
  display: none;
}

.table-mobile-card__item {
  background-color: #fff;
}

.table-mobile-card__item--children {
  margin: 20px 13px;
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.table-mobile-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  gap: 10px;
  border-bottom: solid 1px var(--border);
}

.table-mobile-card__checkbox {
  margin-left: auto;
}

.table-mobile-card__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.table-mobile-card__name p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--text);
}

.table-mobile-card__photo img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  border: solid 2px #fff;
  border-radius: 50%;
  overflow: hidden;
}

.table-mobile-card__body {
  padding: 15px 15px 0;
}

.table-mobile-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.table-mobile-card__row p {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.table-mobile-card__row p:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.table-mobile-card__row:last-child {
  margin-bottom: 20px;
}

.table-mobile-card__footer {
  padding: 0 15px 15px;
}

.table-mobile-card__footer .table-dealings button:first-child {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.table-family,
.table-children {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
  font-weight: 400;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
}

.table-family {
  background-color: var(--secondary-light);
}

.table-children {
  background-color: var(--primary-light);
}

.table-add-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.table-add-card__parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 5px;
}

.table-add-card__children {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.table-add-card__more {
  stroke: var(--border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  border: solid 1px var(--border);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.table-add-card__more svg {
  max-width: 16px;
  stroke: var(--secondary);
}

.table-add-card__more:disabled {
  cursor: default;
  pointer-events: none;
}

.table-add-card__more:disabled svg {
  stroke: var(--border);
}

.table-dealings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.table-dealings .icon-pencil {
  width: 16px;
  height: 16px;
}

.table-dealings__fix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  border: solid 1px var(--border);
}

.table-mobile-b {
  display: none;
}

.table-mobile-b--left {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.table-mobile-b--right {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.table-mobile-b__head .table-mobile-b__row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 10px;
  padding: 15px 15px;
  background-color: var(--secondary-light);
}

.table-mobile-b__body .table-mobile-b__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 15px 15px;
  gap: 10px;
}

.table-mobile-b__body .table-mobile-b__item-price {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: var(--secondary-light);
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
  padding: 3px 10px;
  border-radius: 4px;
}

.table-mobile-b__body-item {
  background-color: var(--white);
}

.table-mobile-b__body-item:nth-child(even) {
  background-color: var(--bg);
}

.table-mobile-b__row {
  position: relative;
}

.table-desktop-b table tbody tr:nth-child(even) {
  background-color: var(--bg);
}

.table__price {
  white-space: nowrap;
}

.table__sum-user {
  white-space: nowrap;
}

.table__sum-company {
  white-space: nowrap;
}

.report-table__inner {
  display: block;
  min-width: 1000px;
}

.report-table__body tr:last-child {
  border-bottom: solid 1px var(--border);
}

.report-table__body td div {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.table-body-item.deactivated .table-body__row--parent {
  opacity: 0.5;
}

.table-body-item.deactivated .table-body__row--parent .input-checkbox,
.table-body-item.deactivated .table-body__row--parent input {
  display: none;
}

.table-body-item.deactivated .table-body__row--parent .table-body__item-buy {
  display: none;
}

.table-body-item.deactivated .table-body__row--parent .table-body__item-card {
  display: none;
}

.table-body-item.deactivated .table-body__row--parent .table-body__item-date {
  display: none;
}

.table-body-item.deactivated .table-body__row--parent .table-body__item-famaly {
  display: none;
}

.table-body-item.deactivated .table-body__row--parent .table-body__item-dealings {
  display: none;
}

.table-body-item.deactivated .table-body__row--parent .table-body__item-disabled-text {
  display: block;
}

.table-body-item.not-active .table-body__row:not(:first-child) .input-checkbox,
.table-body-item.not-active .table-body__row:not(:first-child) input {
  display: none;
}

.table-body-item.not-active .table-body__item-buy {
  display: none;
}

.table-body-item.not-active .table-body__item-card {
  display: none;
}

.table-counter {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 13px;
}

.table-counter__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  background-color: rgb(45, 45, 45);
  border-radius: 50px;
  padding: 0 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto 0;
}

.table-counter__item {
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.table-counter__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--aside-color);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
}

.table-counter__item:last-child::after {
  display: none;
}

.table-counter__numb {
  color: var(--aside-color);
  font-size: 14px;
  font-weight: 500;
}

.table-counter__numb span {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.reception--history table tbody tr td {
  padding: 20px 24px;
}

.reception--history .table-mobile-b__row {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 13px;
}

.reception--history .table-mobile-b__row:last-child {
  margin-bottom: 0;
}

.reception--history .table-mobile-b__row:first-child .table-mobile-b--right {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.reception--history .table-mobile-b--left {
  color: var(--aside-color);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
}

.reception--history .table-mobile-b--right {
  font-size: 14px;
  font-weight: 500;
  color: var(--aside-color);
}

.reception--history .table-mobile-b__body-item {
  padding-top: 20px;
  padding-bottom: 20px;
}

.reception--history .table-mobile-b__head .table-mobile-b__row {
  padding-top: 17px;
  padding-bottom: 17px;
}

.reception--history .table-mobile-b__head .table-mobile-b__item {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.reception--history .table-mobile-b__item-price {
  top: 0;
}

.graph-block {
  background-color: var(--bg);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 265px;
}

.graph-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.graph-block__head .drop-block {
  max-width: 130px;
  min-width: 130px;
  background-color: var(--white);
}

.graph-block__head .drop-block__footer {
  position: relative;
  z-index: 1;
}

.graph-block__head .drop-block__content {
  height: 400px;
}

.graph-block__field {
  padding: 24px;
}

.graph-block__body {
  max-width: 100%;
  overflow: hidden;
}

.graph-block__info {
  background-color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
}

.graph-block__select {
  width: 100%;
  max-width: 150px;
}

.graph-block__title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
}

.graph-block .input-checkbox.empty input {
  display: none;
}

.graph-block .input-checkbox.empty .input-checkbox__label {
  cursor: default;
}

.graph-block .input-checkbox.empty .input-checkbox__checked {
  background-color: var(--border);
}

.graphics-wrap {
  margin-left: 60px;
  padding-bottom: 10px;
  max-width: 92%;
}

.graph-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  bottom: 0;
  height: 200px;
}

.graph-line__item {
  display: grid;
  grid-template-columns: 40px auto;
  gap: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.graph-line__item p {
  text-align: right;
}

.graph-line__item span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.graph {
  margin-top: 35px;
  max-width: 100%;
  overflow: hidden;
}

.graph__wrap {
  position: relative;
}

.graphics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 40px;
  margin-left: auto;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.graphics .bar {
  cursor: pointer;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.graphics .bar.active {
  fill: var(--secondary);
}

.graphics .month-label {
  font-size: 12px;
  fill: #666;
}

.graphics__item-price {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--white);
  background-color: var(--text);
  border-radius: 4px;
  padding: 8px 10px;
  position: relative;
  z-index: 3;
  white-space: nowrap;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -40px;
}

.graphics__item-price:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--text);
  position: absolute;
  left: 50%;
  bottom: -9px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.graphics__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  max-width: 80px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 0;
  cursor: pointer;
  min-width: 0;
  position: relative;
}

.graphics__item.active .graphics__item-bar-fill {
  background-color: var(--secondary);
}

.graphics__item.active .graphics__item-price {
  opacity: 1;
  visibility: visible;
}

.graphics__item-bar-container {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.graphics__item-bar-fill {
  width: 100%;
  height: calc(100% + 40px);
  background-color: var(--secondary-light);
  border-radius: var(--radius);
  -webkit-transition: background-color 0.2s ease, height 0.3s ease;
  transition: background-color 0.2s ease, height 0.3s ease;
  position: relative;
}

.graphics__item-label {
  margin: 5px 0 0 0;
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.2;
}

.graph-block-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.graph-block-info__title {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.graph-block-info__mounth {
  margin-top: 5px;
  margin-bottom: 20px;
}

.graph-block-info__mounth-name {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--text);
  margin-bottom: 10px;
}

.graph-block-info__mounth-summ {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--font-secondary);
  overflow-x: auto;
  overflow-y: hidden;
  height: 1em;
  width: 100%;
  white-space: nowrap;
}

.graph-block-info__mounth-profit {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--text);
  margin-top: 5px;
}

.graph-block-info__mounth-profit span {
  color: rgb(88, 161, 116);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
}

.graph-block-info__download {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
}

.graph-block-info__download svg {
  width: 16px;
  height: 16px;
}

.graph-block-info__row {
  margin-bottom: 15px;
}

.graph-block-info__row:last-child {
  margin-bottom: 0;
}

.graph-block-info__row-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
}

.graph-block-info__row-price div:first-child {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.graph-block-info__row-price div:last-child {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--text);
}

.graph-block-info__row-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--bg);
  overflow: hidden;
}

.graph-block-info__row-line span {
  border-radius: 50px;
}

.report {
  background-color: var(--white);
  border-radius: var(--radius);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.report__head .h2 {
  margin-bottom: 0;
}

.report__head-row {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.report__head-row:first-child {
  border-bottom: solid 1px var(--border);
}

.report__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "a b c";
}

.report__btns-item:nth-child(1) {
  grid-area: a;
}

.report__btns-item:nth-child(2) {
  grid-area: b;
}

.report__btns-item:nth-child(3) {
  grid-area: c;
}

.report__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.report__body .simplebar-track.track--container {
  background-color: var(--secondary-light) !important;
  height: 4px;
}

.report__body .simplebar-track.track--container .simplebar-scrollbar {
  background-color: var(--secondary) !important;
  border-radius: 50px;
}

.report__body .simplebar-track.track--scrollbar .simplebar-scrollbar::before {
  display: none;
}

.report__body-pagination {
  margin-left: auto;
}

.report .pagination {
  margin-left: auto;
}

.report__select {
  max-width: 100%;
  width: 220px;
}

.report-info-table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.report-info-table__position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid 1px var(--border);
  border-radius: 50px;
}

.report-info-table__position-name {
  border-right: solid 1px var(--border);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.report-info-table__position-name .mobile {
  display: none;
}

.report-info-table__position-sum {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
  white-space: nowrap;
}

.acount__body {
  background-color: var(--white);
  border-radius: var(--radius);
}

.acount__body-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-secondary);
  padding: 24px;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.acount__body-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.acount__body-table .pagination {
  margin-left: auto;
}

.acount__body-title-item:last-child {
  width: 220px;
}

.acount-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.acount-block {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  background-color: var(--bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.acount-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px;
  height: 70px;
  line-height: 70px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.acount-block__head span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  gap: 5px;
}

.acount-block__head a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 36px;
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  border: solid 1px var(--border);
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white);
}

.acount-block__body {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.acount-block__footer {
  background-color: var(--white);
  padding: 24px;
  border-top: solid 1px var(--border);
}

.acount-block__info {
  display: inline-block;
  border: solid 1px var(--border);
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.acount-block__info a {
  padding: 13px 16px;
  display: block;
}

.acount-block__info svg {
  margin-right: 10px;
}

.acount-block__info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--text);
}

.acount-block__row {
  margin-bottom: 30px;
}

.acount-block__row:last-child {
  margin-bottom: 0;
}

.acount-block__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--aside-color);
  margin-bottom: 15px;
}

.acount-block__text {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
}

.acount-table .table-mobile-b__row {
  grid-template-columns: 65px 1fr auto;
}

.acount-table .table-mobile-b__body-item .table-mobile-b__row:first-child {
  grid-template-columns: 20px 1fr auto;
}

.acount-table .table-mobile-b__body-item .table-mobile-b__row:first-child .table-mobile-b--right {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.acount-table .table-mobile-b__head .table-mobile-b__row {
  grid-template-columns: 20px 1fr auto;
}

.support__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
}

.support__info {
  max-width: 340px;
}

.support__form {
  border-radius: var(--radius);
  background-color: var(--primary);
  padding: 24px 40px;
  max-width: 700px;
  width: 100%;
}

.support-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.support-info__head {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 30px;
}

.support-info__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 40px;
}

.support-info__footer {
  margin-top: auto;
}

.support-info__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.support-info__phone a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.support-info__email a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  border-bottom: solid 1px var(--secondary);
  font-family: var(--font-secondary);
  color: var(--secondary);
}

.support-info__name {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  margin-bottom: 14px;
}

.support-info__item {
  background-color: var(--white);
  border-radius: var(--radius);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
}

.support-info__text {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--text);
}

.support-info__link a {
  height: 50px;
  line-height: 50px;
  width: 170px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.support-form__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 30px;
}

.support-form__inputs {
  display: grid;
  grid-template-areas: "a b " "c c" "d d";
  gap: 10px;
}

.support-form__inputs input {
  height: 50px;
  line-height: 50px;
}

.support-form__inputs .input-field:nth-child(1) {
  grid-area: a;
}

.support-form__inputs .input-field:nth-child(2) {
  grid-area: b;
}

.support-form__inputs .input-field:nth-child(3) {
  grid-area: c;
}

.support-form__inputs .input-field:nth-child(4) {
  grid-area: d;
}

.support-form__textarea {
  margin-bottom: 20px;
}

.support-form__textarea textarea {
  resize: none;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 10px 20px;
  width: 100%;
  min-height: 235px;
}

.support-form__send {
  margin-bottom: 10px;
}

.support-form__send input {
  height: 50px;
  width: 170px;
}

.support-form__info {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--text);
  max-width: 270px;
}

.support-form__info a {
  color: var(--secondary);
}

.faq {
  height: calc(100vh - 135px);
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--bg);
}

.faq-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.faq-tab__list {
  background-color: var(--white);
  border-radius: var(--radius);
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.faq-content {
  padding: 24px 30px;
  height: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.faq-tab-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  height: 80px;
  border-bottom: solid 1px var(--border);
  padding: 0 24px;
  cursor: pointer;
}

.faq-tab-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border: solid 1px var(--border);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-tab-item::before {
  content: attr(data-index-num);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  background-color: var(--white);
  border: solid 1px var(--border);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.faq-tab-item.active span {
  background-color: var(--secondary);
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.faq-tab-item.active span svg path {
  stroke: var(--white);
}

.faq-tab-item__name {
  padding-right: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq-tab-item__content {
  display: none;
}

.scanner {
  height: 100%;
}

.scanner-steps {
  height: 100%;
  margin-right: 30px;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.scanner-steps__list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 20px;
}

.scanner-steps__repeat {
  margin-top: auto;
  border-top: solid 1px var(--border);
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.scanner-steps__repeat button,
.scanner-steps__repeat a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.scanner-steps__repeat p {
  margin: 10px 0 0;
}

.scanner-steps__repeat span {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--text);
}

.scanner-step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

.scanner-step.active .scanner-step__icon {
  -webkit-box-shadow: 0 0 0 12px var(--secondary) inset;
  box-shadow: 0 0 0 12px var(--secondary) inset;
}

.scanner-step.active .scanner-step__info--disabled {
  display: none;
}

.scanner-step.active .scanner-step__info--active {
  display: block;
}

.scanner-step.scan-success .scanner-step__info--disabled {
  display: none;
}

.scanner-step.scan-success .scanner-step__info--active {
  display: none;
}

.scanner-step.scan-success .scanner-step__info--success {
  display: block;
}

.scanner-step.scan-success:before {
  background-color: var(--primary);
}

.scanner-step.scan-success .scanner-step__icon {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.scanner-step.scan-success .scanner-step__icon:after {
  content: "";
  background-image: url("../img/icon/check-big.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 18px;
  height: 18px;
  background-size: contain;
}

.scanner-step:last-child {
  margin-bottom: 0;
}

.scanner-step:last-child:before {
  content: "";
  display: none;
}

.scanner-step:before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 15px);
  background-color: var(--secondary);
  position: absolute;
  left: 18px;
  bottom: -30px;
}

.scanner-step__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px var(--secondary) inset;
  box-shadow: 0 0 0 2px var(--secondary) inset;
}

.scanner-step__inner {
  width: 100%;
}

.scanner-step__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  min-block-size: 10px;
}

.scanner-step__numb {
  font-size: 12px;
  font-weight: 400;
  color: var(--aside-color);
}

.scanner-step__info {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
}

.scanner-step__info span {
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.scanner-step__info--disabled {
  background-color: var(--border);
}

.scanner-step__info--active {
  background-color: var(--secondary-light);
  display: none;
}

.scanner-step__info--success {
  background-color: var(--primary-light);
  display: none;
}

.scanner-step__title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 14px;
}

.scanner-step__descr {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.scanner-content {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
  position: relative;
}

.scanner-steps__passport {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 12px;
  background-color: #f8f8f8;
  padding: 12px 16px;
  border-radius: 8px;
}

.scanner-steps__passport .input-checkbox__label {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.scanner-steps__passport .input-checkbox__checked {
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  border-radius: 4px;
  border: 0;
  background-color: #d7ebff;
}

.scanner-steps__passport .input-checkbox__checked:after {
  width: 10px;
  height: 7px;
}

.scanner-steps__passport .input-checkbox__name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #2d2d2d;
}

.scanner-qr {
  height: 80%;
  width: 80%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.scanner-qr--error {
  display: none;
}

.scanner-qr--error .scanner-qr__title {
  margin-bottom: 20px;
}

.scanner-qr--error .scanner-qr__text p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.scanner-qr--error .scanner-qr__text p:last-child {
  margin-bottom: 0;
}

.scanner-qr--error .btn {
  height: 50px;
  width: 100%;
  max-width: 150px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.scanner-qr .qr-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scanner-qr__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.scanner-qr__info .btn {
  margin: 30px auto 0;
}

.scanner-qr__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin: 0 auto;
}

.scanner-qr__descr {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.scanner-qr__ico {
  display: block;
  background-image: url("../img/border-scaner.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 110px;
  height: 110px;
  margin: 0 auto 50px;
}

.scanner-qr__ico span {
  display: none;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.scanner-qr__ico span svg {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
}

.scanner-stadministrationeps {
  border: solid 1px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: none;
}

.reception {
  display: grid;
  grid-template-columns: 415px 1fr auto;
  height: 100%;
  padding: 0 30px 22px;
}

.reception--history {
  display: block;
  height: auto;
}

.reception--history .report {
  height: auto;
  max-width: 100%;
}

.reception--history .report__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reception-field {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 30px;
  height: 100%;
}

.reception-field.reception-field-payment .reception-field--bg {
  padding: 27px;
}

.reception-field--bg {
  background-color: var(--white);
  position: relative;
  background-image: url("../img/reception/strips.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.reception-field__item {
  border-radius: var(--radius);
}

.reception-field__item:has(.reception-field__more) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.reception-field__item:first-child {
  padding: 14px;
}

.reception-field__item:last-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  height: 100%;
}

.reception-field__item:last-child:has(.reception-field__item-btn) {
  border-radius: 0;
  border: none;
}

.reception-field__item-btn {
  border-radius: var(--radius);
}

.reception-field__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.reception-field__center:has(.scanner-user--payment) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reception-field__more {
  margin-top: auto;
  background-color: var(--secondary-light);
  padding: 40px;
  border-radius: var(--radius);
}

.reception-field__more-name {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.reception-field__select {
  margin-top: 30px;
}

.reception-field .select-custom .ts-control {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.reception-field .select-custom.focus.input-active .ts-control {
  border: solid 1px;
}

.reception-field .select-custom .ts-dropdown {
  top: auto;
  bottom: calc(100% + 10px);
  border: solid 1px;
  border-radius: var(--radius);
  max-height: 270px;
  padding: 24px;
}

.reception-field .select-custom .option {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4px;
}

.reception-field .select-custom .option:last-child {
  margin-bottom: 0;
}

.reception-field .scanner-user--payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reception-field .scanner-user--payment .scanner-user__name p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-primary);
}

.reception-field .scanner-user__photo {
  width: 100%;
  height: 100%;
  max-width: 190px;
  max-height: 190px;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}

.reception-field .scanner-user__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reception-field .scanner-user__photo span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border: solid 2px var(--white);
}

.reception-field .scanner-user__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reception-field .scanner-user__name {
  text-align: center;
}

.reception-field .scanner-user__name p {
  font-size: 26px;
  font-weight: 500;
  font-family: var(--font-secondary);
  text-align: center;
  margin-bottom: 14px;
}

.reception-field .scanner-user__info {
  margin-bottom: 60px;
}

.reception-field .scanner-user__info-card {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  padding: 3px 10px;
  background-color: var(--primary);
  display: inline-block;
  border-radius: 50px;
}

.reception-btn {
  border: solid 2px var(--border);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 12px;
}

.reception-btn div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.reception-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  border: solid 1px transparent;
  border-radius: 50%;
}

.reception-btn span svg {
  stroke: var(--white);
  width: 16px;
  height: 16px;
  max-width: 16px;
}

.reception-btn span svg use {
  stroke: var(--white);
}

.reception-btn:disabled {
  cursor: default;
  border-color: var(--border) !important;
}

.reception-btn:disabled span {
  background-color: var(--border) !important;
}

.reception-btn:disabled p {
  color: var(--aside-color) !important;
}

.reception-btn:disabled svg use {
  stroke: var(--aside-color) !important;
  fill: var(--border) !important;
}

.reception-btn--cancel {
  border-color: var(--basic-red);
}

.reception-btn--cancel span {
  background-color: var(--basic-red);
}

.reception-btn--cancel svg use {
  fill: var(--basic-red);
  stroke: var(--white);
}

.reception-btn--success {
  border-color: var(--success);
}

.reception-btn--success span {
  background-color: var(--success);
}

.reception-btn--success svg use {
  fill: var(--success);
  stroke: var(--white);
}

.reception-btn--confirm {
  background-color: var(--success);
  color: var(--white);
}

.reception-btn--confirm span {
  background-color: var(--white);
}

.reception-btn--confirm span svg use {
  stroke: var(--success);
}

.reception-btn--step {
  border-color: var(--secondary);
}

.reception-btn--step span {
  background-color: var(--secondary);
}

.reception-btn--step svg use {
  fill: var(--secondary);
}

.reception-field-success .reception-field__item:last-child {
  grid-template-columns: 1fr;
}

.reception-field-success .scanner-user__photo span {
  background-color: var(--success);
}

.reception-field-success .scanner-user__photo svg use {
  fill: var(--success);
  stroke: var(--white);
}

.reception-field-error .reception-field__item:last-child {
  grid-template-columns: 1fr;
}

.reception-field-error .reception-field__more {
  background-color: var(--basic-red-light);
}

.reception-field-error .scanner-user__photo span {
  background-color: var(--basic-red);
}

.reception-field-error .scanner-user__photo svg use {
  fill: var(--basic-red);
  stroke: var(--white);
}

.company__inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 30px;
  height: 100%;
}

.company__contact {
  max-width: 700px;
}

.company__contact form {
  height: 100%;
  display: block;
}

.company-data {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.company-data__head {
  background-color: var(--border);
  padding: 25px 24px;
}

.company-data__head div {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--aside-color);
}

.company-data__body {
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.company-data__block {
  margin-bottom: 30px;
}

.company-data__block:last-child {
  margin-bottom: 0;
}

.company-data__block-name {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
  margin-bottom: 14px;
}

.company-data__block-value {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
}

.company-contact {
  border-radius: var(--radius);
  background-color: var(--primary);
  padding: 24px;
  height: 100%;
}

.company-contact__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 30px;
  color: var(--text);
}

.company-contact__info {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "a b" "c c";
  gap: 30px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 30px;
}

.company-contact__info-item {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  width: 100%;
}

.company-contact__info-item:nth-child(1) {
  grid-area: a;
}

.company-contact__info-item:nth-child(2) {
  grid-area: b;
}

.company-contact__info-item:nth-child(3) {
  grid-area: c;
  width: 100%;
}

.company-contact__info-item p:first-child {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--aside-color);
  margin-bottom: 14px;
}

.company-contact__info-item p:last-child {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
}

.company-contact__info-phone {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--text);
}

.company-contact__info-email {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--secondary);
}

.company-contact__send {
  height: 50px;
  padding-left: 21px;
  padding-right: 21px;
  margin-bottom: 10px;
}

.company-contact__policy {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: var(--text);
}

.company-contact__policy a {
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-bottom: solid 1px transparent;
}

.company-contact__message {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  padding: 20px;
  height: 200px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.company-contact__message textarea {
  width: 100%;
  height: 100px;
  border: none;
  resize: none;
}

.company-contact__message--done {
  color: var(--success);
}

.company-contact__message--error {
  color: var(--basic-red);
}

.company-contact__message-item {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  display: none;
}

.company-contact__message-item svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}

.company-contact__message-item p {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 1024px) {
  .scanner-step:has(.scanner-steps__passport) {
    display: grid;
    grid-template-columns: 40px 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .scanner-step:has(.scanner-steps__passport) .scanner-step__icon {
    grid-column: 1;
    grid-row: 1;
  }

  .scanner-step:has(.scanner-steps__passport) .scanner-step__inner {
    grid-column: 2;
    grid-row: 1;
  }

  .scanner-step:has(.scanner-steps__passport) .scanner-steps__passport {
    grid-column: 1/-1;
    width: 100%;
  }
}

@media (min-width: 1366px) {
  .tap-bar {
    display: none;
  }
}

@media (max-width: 1366px) {
  .page-layout header {
    display: block;
  }

  .page-layout main {
    margin-bottom: 100px;
  }

  .page-partner .main {
    margin-bottom: 0;
  }

  .container {
    padding: 0 var(--container-padding-mobile);
  }

  .container-right {
    padding-left: var(--container-padding-mobile);
  }

  .login-form {
    max-width: 525px;
    padding: 60px 40px;
  }

  .login-form__inner {
    max-width: 100%;
  }

  .left-aside {
    display: none;
  }

  .left-aside__content {
    min-height: unset;
  }

  .left-aside__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 0;
    padding: 20px 0 20px 0;
  }

  .left-aside__middle {
    margin-top: 0;
    margin-bottom: 0;
  }

  .left-aside__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 5px;
  }

  .left-aside__bottom {
    margin-top: unset;
  }

  .left-aside__bottom span {
    display: none;
  }

  .left-aside__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .left-aside__link.active {
    background-color: transparent;
  }

  .left-aside__link.active .left-aside__icon use {
    fill: var(--extra-svg);
    stroke: var(--white);
  }

  .left-aside__exit {
    border-top: unset;
    padding: 0 0 0 0;
  }

  .left-aside {
    max-width: 100%;
    padding: 0 15px 0 15px;
    border-radius: 0 0 16px 16px;
  }

  .general-content {
    padding: 15px;
    width: 100%;
    margin-bottom: 100px;
  }
}

@media (max-width: 1199px) {
  .page-partner .header {
    margin-bottom: 20px;
  }

  .page-partner .header__inner {
    padding: 30px 20px;
  }

  .login:after {
    background-image: url("../img/men.webp");
    background-position: 100% 100%;
    width: 50%;
    height: 100%;
    right: 0;
    top: auto;
    bottom: 0;
    z-index: 0;
  }

  .login:before {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50%;
    height: 100%;
    max-width: 100%;
    background-image: url("../img/girl.webp");
    background-position: 0% 100%;
    position: fixed;
    left: 0;
    bottom: 0;
  }

  .login-form {
    width: 700px;
    max-width: 80%;
    margin: 50px auto 50px;
  }

  .header__inner {
    gap: 40px;
  }

  .header__item:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
  }

  .header__nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 10;
    border-radius: 16px 16px 0 0;
    border-top: solid 1px var(--border);
  }

  .header__nav ul {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 23px 0;
  }

  .header__exit {
    margin-left: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    border-color: transparent;
  }

  .header__exit p {
    display: none;
  }

  .card__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-graph {
    grid-template-areas: "a b" "c b";
    grid-template-columns: 1fr 150px;
    gap: 20px;
    padding: 24px;
  }

  .card-graph__head {
    padding: 0;
  }

  .card-graph__body {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0;
  }

  .card-graph__footer-inner {
    display: inline-block;
    border-radius: var(--radius);
  }

  .card-block__body {
    margin-bottom: 20px;
  }

  .table-size {
    grid-template-columns: 18px 40px 1fr 1fr 1fr 100px 190px;
    grid-template-areas: "a b c d e f g";
  }

  .table-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .table-links__item-btns {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "a b c";
  }

  .table-links__item-btns .btn:first-child {
    grid-area: a;
  }

  .table-links__item-btns .btn:last-child {
    grid-area: c;
  }

  .table-links__searche {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .table-links__item-btn:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .table-head__item:nth-child(8) {
    display: none;
  }

  .table-head__item:nth-child(9) {
    display: none;
  }

  .table-body__row.table-size {
    grid-template-columns: 18px 40px 1fr 1fr 1fr 100px 190px;
    grid-template-areas: "a b c d e f g" "h h h i i i i";
  }

  .table-body__item:nth-child(8) {
    grid-column: 3/5;
  }

  .table-body__item:nth-child(9) {
    grid-column: 7/8;
  }

  .table-counter {
    bottom: -80px;
  }

  .graphics-wrap {
    max-width: 90%;
    margin-left: 40px;
  }

  .graphics {
    gap: 20px;
    padding-left: 20px;
  }

  .graphics__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 45px;
  }

  .report-info-table {
    grid-template-columns: 1fr;
  }

  .report-info-table__item .select {
    width: 100%;
  }

  .support__inner {
    grid-template-columns: 1fr;
  }

  .support__info {
    max-width: 100%;
  }

  .support__form {
    max-width: 100%;
    margin: 0 auto;
  }

  .support-info {
    grid-template-columns: 1fr 1fr;
  }

  .faq {
    height: calc(100vh - 203px);
  }

  .faq-tab {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .faq-tab__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }

  .faq-tab-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }

  .faq-tab-item span {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    top: auto;
    right: auto;
    position: relative;
  }

  .faq-tab-item::before {
    position: absolute;
    left: 20px;
    top: 20px;
  }

  .faq-tab-item.active {
    display: block;
    width: 100%;
  }

  .faq-tab-item.active .faq-tab-item__content {
    display: block;
  }

  .faq-tab-item.active span {
    -webkit-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }

  .faq-tab-item__name {
    padding-left: 50px;
    padding-right: 0;
  }

  .faq-tab-item__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-right: 0;
  }

  .scanner {
    min-height: 500px;
  }

  .scanner-steps {
    margin-right: 0;
  }

  .scanner-steps__list {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .scanner-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
  }

  .scanner-step:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .scanner-step.scanner-step-example {
    display: none;
  }

  .scanner-step.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .scanner-step.active.scanner-step-example {
    display: none;
  }

  .scanner-step:last-child:before {
    display: block;
  }

  .scanner-step:before {
    bottom: auto;
    top: 20px;
    left: 45px;
    width: calc(100% - 40px);
    height: 2px;
  }

  .scanner-content {
    padding: 10px;
  }

  .scanner-qr {
    width: 90%;
    height: 90%;
  }

  .reception {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
    margin-bottom: 100px;
  }

  .reception {
    padding: 0 20px 20px;
  }

  .reception--history .report__head-row {
    grid-template-columns: 1fr auto;
  }

  .reception--history .report__head-row:first-child {
    grid-template-columns: 1fr;
  }

  .reception-field {
    gap: 20px;
  }

  .reception-field__item:last-child {
    gap: 20px;
  }

  .reception-field .scanner-user__info {
    margin-top: 30px;
  }

  .company-contact__info {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "a b c";
  }
}

@media (max-width: 1023px) {
  .scanner-step.scan-success {
    display: none;
  }

  .company__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company__contact {
    max-width: 100%;
  }

  .company-data__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .graph-block__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }

  .graph-block__head .drop-block {
    width: 100%;
    max-width: 100%;
  }

  .graphics-wrap {
    max-width: 86%;
  }
}

@media (max-width: 767px) {
  .section-140 {
    margin-bottom: 100px;
  }

  .page-partner .header {
    margin-bottom: 16px;
  }

  .page-partner .header__inner {
    padding: 30px 16px;
  }

  .nav-company__logo::after {
    content: "";
    display: block;
    width: 0.3em;
    height: 0.3em;
    border-right: solid 1px;
    border-bottom: solid 1px;
    position: absolute;
    right: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .nav-company.active .nav-company__logo::after {
    -webkit-transform: translateY(-50%) rotate(225deg);
    -ms-transform: translateY(-50%) rotate(225deg);
    transform: translateY(-50%) rotate(225deg);
  }

  .nav-company__name {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    will-change: opacity, transform, visibility;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    width: 300px;
    max-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 24px;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--basic-gray);
    -webkit-box-shadow: 0px 11px 27px rgba(77, 77, 77, 0.12);
    box-shadow: 0px 11px 27px rgba(77, 77, 77, 0.12);
    border-radius: 16px;
  }

  .nav-company__name p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .nav-company__name.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
  }

  .data-picker {
    gap: 0 !important;
  }

  .container-full {
    max-width: unset;
    padding: 0 var(--container-padding-mobile);
  }

  .container-left-50 {
    max-width: 100%;
  }

  .container-right-50 {
    max-width: 100%;
  }

  .container-half-left {
    padding: 0 var(--container-padding);
  }

  .container-half-right {
    padding: 0 var(--container-padding);
  }

  .page-body .litepicker .container__months.columns-2 {
    width: calc(var(--litepicker-month-width) * 1 + 30px);
  }

  .drop-block__content {
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 90%;
    min-width: 280px;
    height: 80vh;
    padding: 20px;
  }

  .drop-block.active .drop-block__content {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .drop-block__header-name {
    display: block;
  }

  .drop-block__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .drop-block.active .drop-block__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
  }

  .header__inner {
    gap: 5px;
  }

  .header__item {
    overflow: visible;
  }

  .header__item:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .header__info {
    gap: 20px;
  }

  .header__exit {
    margin-left: 0;
  }

  .h1 {
    margin: 0 0 20px;
  }

  .h2 {
    line-height: 1.2;
    font-size: 1.4rem;
  }

  .h2 {
    margin: 0 0 20px;
  }

  .card {
    margin-bottom: 20px;
  }

  .card__list {
    gap: 10px;
  }

  .card-blocks {
    grid-template-columns: 1fr;
  }

  .table-links__item-btns {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a a b" "c c c";
  }

  .table-links__item-btns .btn {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .table-links__searche p {
    font-size: 12px;
  }

  .table-links__item-btn.btn {
    padding: 10px 10px;
  }

  .table-searche {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .table-searche__item:last-child {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
  }

  .table-desktop {
    display: none;
  }

  .table-mobile {
    display: block;
  }

  .table-mobile-b {
    display: block;
  }

  .table-desktop-b {
    display: none;
  }

  .table-counter {
    left: 0;
    right: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .graph-block {
    grid-template-columns: 1fr;
  }

  .graph-block__head .drop-block__content {
    height: 70vh;
  }

  .graph-block__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .graph-block__head .select {
    width: 100%;
    max-width: 100%;
  }

  .graph-block__field {
    overflow: hidden;
  }

  .graph-block__title {
    font-size: 16px;
  }

  .graphics-wrap {
    max-width: 100%;
  }

  .graphics__item {
    max-width: 45px;
    min-width: 25px;
  }

  .graphics__item-bar-fill {
    border-radius: 6px;
  }

  .graph-block-info__mounth {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .graph-block-info__mounth-summ {
    font-size: 26px;
  }

  .graph-block-info__download {
    margin-top: 20px;
  }

  .report__head-row {
    grid-template-columns: 1fr;
  }

  .report__btns {
    grid-template-areas: "a c" "b b";
    grid-template-columns: 1fr 1fr;
  }

  .report__btns button,
  .report__btns a {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .report__btns-item {
    padding-left: 5px;
    padding-right: 5px;
  }

  .report__btns-item:nth-child(2) input {
    width: 100%;
    text-align: center;
  }

  .report__body-pagination {
    margin: 0 auto;
  }

  .report .pagination {
    margin: 0 auto;
  }

  .report-info-table__item:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .report-info-table__item:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .report-info-table__position-name {
    font-size: 12px;
  }

  .report-info-table__position-name .desktop {
    display: none;
  }

  .report-info-table__position-name .mobile {
    display: block;
  }

  .report-info-table__position-sum {
    text-align: center;
    padding: 10px 5px;
    margin: 0 auto;
    font-size: 12px;
  }

  .acount__body-title-item:last-child {
    width: 100%;
  }

  .acount-blocks {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    gap: 10px;
  }

  .acount-block {
    margin-bottom: 0;
  }

  .acount-block__head {
    height: 55px;
    line-height: 55px;
  }

  .acount-block__name {
    margin-bottom: 5px;
  }

  .support__inner {
    gap: 20px;
  }

  .support__form {
    padding: 24px 15px;
    max-width: 100%;
  }

  .support-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-info__head {
    font-size: 18px;
    gap: 20px;
  }

  .support-form__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .support-form__inputs {
    grid-template-areas: "a" "b" "c" "d";
  }

  .scanner-qr__title {
    font-size: 24px;
  }

  .reception {
    padding: 0 16px 16px;
  }

  .reception--history .report__btns {
    display: grid;
  }

  .reception--history .report__head-row:last-child {
    grid-template-columns: 1fr;
  }

  .reception-field {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reception-field__item:last-child {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .reception-field__more {
    padding: 14px;
  }

  .reception-field__more-name {
    font-size: 16px;
    font-weight: 400;
  }

  .reception-field__select {
    margin-top: 14px;
  }

  .reception-field .scanner-user__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .reception-btn {
    min-height: 90px;
  }

  .reception-btn div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .company-data__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
  }

  .company-data__block {
    margin-bottom: 20px;
  }

  .company-contact__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .company-contact__info {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c";
    gap: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .nav-company__name {
    left: 30px;
    right: 0;
    width: 100%;
    max-width: calc(100% - 60px);
    position: fixed;
    top: 60px;
  }
}

@media (max-width: 575px) {
  [class*=__wrapper] {
    padding: 0 15px;
  }

  .login:after {
    display: none;
  }

  .login:before {
    display: none;
  }

  .login-form {
    max-width: 90%;
    padding: 24px;
  }

  .login-form__head {
    margin-bottom: 30px;
    margin-top: 60px;
  }

  .login-form__title {
    font-size: 26px;
  }

  .login-form__subtitle {
    text-align: left;
  }

  .login-form__logo {
    margin-bottom: 60px;
  }

  .login-form-password.login-form {
    background: transparent;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .login-form-password .form-error {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin: 10px 0;
  }

  .login-form-password .login-form__head {
    padding: 0 15px;
  }

  .login-form-password .login-form__title {
    text-align: left;
  }

  .login-form-password .login-form__logo {
    display: none;
  }

  .login-form-password .login-form__body {
    background-color: var(--white);
    border-radius: 16px 16px 0 0;
    height: 100%;
    width: 100%;
    padding: 30px 15px;
    margin: 0 auto;
  }

  .login-form-password .login-form__inner {
    height: calc(100vh - 2px);
  }

  .card-graph {
    grid-template-areas: "a" "b" "c";
    grid-template-columns: 1fr;
    padding: 0;
  }

  .card-graph__head {
    padding: 24px 24px 0;
  }

  .card-graph__body {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .card-graph__footer-inner {
    display: block;
  }

  .table-mobile-card__footer .table-dealings .btn-primary {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .table-counter {
    margin: 0 -15px;
    bottom: -70px;
  }

  .table-counter__inner {
    border-radius: 0;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    padding: 0 15px;
  }

  .table-counter__item {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .acount__body-title-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .support-info__link a {
    max: 100%;
  }

  .reception-field__center {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .reception-field__more {
    margin: 0 -14px -14px;
  }

  .reception-field .scanner-user--payment .scanner-user__name p:first-child {
    margin-bottom: 10px;
  }

  .reception-field .scanner-user--payment .scanner-user__name p:last-child {
    font-size: 16px;
  }

  .reception-field .scanner-user__photo {
    max-width: 85px;
    max-height: 85px;
    margin-bottom: 0;
  }

  .reception-field .scanner-user__photo span {
    width: 30%;
    height: 30%;
  }

  .reception-field .scanner-user__name {
    text-align: left;
  }

  .reception-field .scanner-user__name p {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .reception-field .scanner-user__name span {
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
  }

  .reception-field .scanner-user__info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 0;
    margin-top: 0;
  }
}

@media (max-width: 400px) {
  .modal .btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 135px;
  }

  .left-aside__list {
    padding: 17px 10px;
  }

  .left-aside__link {
    gap: 4px;
    padding: 0;
  }

  .left-aside__link span {
    font-size: 10px;
  }

  .table-links__searche {
    padding: 0;
  }

  .table-mobile-card--family.deactivated .table-mobile-card__item--parent .table-mobile-card__head {
    grid-template-areas: "a b" "c c";
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 373px) {
  .report-info-table__item:first-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .report__btns {
    grid-template-areas: "a" "c" "b";
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  body::-webkit-scrollbar {
    width: 5px;
  }

  .section {
    margin-bottom: 45px;
  }

  .container-left {
    padding-right: var(--container-padding);
  }

  .container-half-left {
    padding-left: var(--container-padding);
  }

  .container-half-right {
    padding-right: var(--container-padding);
  }

  .h1 {
    font-size: 26px;
  }
}

@media (any-hover: hover) {
  .btn.btn-primary:hover {
    opacity: 0.8;
  }

  .btn.btn-light:hover {
    border-color: var(--secondary);
  }

  .input-field:hover input {
    border-color: var(--secondary);
  }

  .input-field__input.border:hover {
    border-color: var(--secondary);
  }

  .page-body .litepicker .container__days div:hover {
    border-radius: 50%;
    border: solid 1px var(--secondary);
    color: var(--secondary);
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .page-body .litepicker .container__days div.is-today.is-in-range:hover {
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .page-body .litepicker .container__days div.is-in-range:hover {
    border-radius: 0;
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .page-body .litepicker .container__days div.is-start-date:hover {
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .page-body .litepicker .container__days div.is-end-date:hover {
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .pagination__num:hover {
    border-color: var(--secondary);
  }

  .drop-block__close:hover {
    border-color: var(--secondary);
  }

  .left-aside__link:hover {
    background-color: var(--primary-light);
  }

  .left-aside__link:hover .left-aside__icon use {
    fill: var(--extra-svg);
    stroke: var(--primary-light);
  }

  .left-aside__link:hover span {
    color: var(--extra-svg);
  }

  .card-dowmload a:hover {
    -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
  }

  .table-add-card__more:hover {
    border-color: var(--secondary);
  }

  .graphics__item-bar-fill:hover {
    background-color: var(--secondary);
  }

  .acount-block__info:hover {
    -webkit-box-shadow: 0 0 1px var(--aside-color);
    box-shadow: 0 0 1px var(--aside-color);
  }

  .company-contact__policy a:hover {
    border-color: var(--secondary);
  }
}