/* GLOBAL */
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/IBMPlexSans-Regular.woff2") format("woff2"),
    url("../fonts/IBMPlexSans-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/IBMPlexSans-Medium.woff2") format("woff2"),
    url("../fonts/IBMPlexSans-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/IBMPlexSans-SemiBold.woff2") format("woff2"),
    url("../fonts/IBMPlexSans-SemiBold.woff") format("woff");
  font-display: swap;
}
body {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
  min-width: 769px;
  min-height: 100vh;
  color: #000000;
  font-family: "IBM Plex Sans", "Arial", sans-serif;
  line-height: 1.3;
  font-size: 13px;
  font-weight: 500;
  background-color: #f5f7f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opened-menu body {
  overflow: hidden;
}
.opened-popup body {
  overflow: hidden;
}
.opened-modal body {
  overflow: hidden;
}
body.close-order {
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 12px 16px 24px;
}

.main {
  background-color: #e0e7ee;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  scroll-behavior: smooth;
}

input,
textarea {
  color: #000000;
  font-family: inherit;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type="button"],
input[type="submit"],
button {
  font: inherit;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
}

a {
  color: #000000;
  transition: color 0.3s;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover,
a:focus-visible {
  transition: color 0.3s;
  color: #008cea;
}

button {
  transition: opacity 0.3s;
}
button:hover,
button:focus-visible {
  transition: opacity 0.3s;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.clearfix:after,
.wrapper:after,
.row:after {
  content: "";
  display: table;
  clear: both;
  visibility: hidden;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.visually-hidden,
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 140, 234, 0.5);
  z-index: 101;
  display: none;
}
.overlay.open {
  display: block;
}

select {
  outline: none;
}

.flex-grow {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.button {
  display: inline-block;
  padding: 3px 16px;
  font-family: inherit;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ccd9e5;
  background-color: #fff;
  border-radius: 8px;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover,
.button:focus-visible {
  color: #008cea;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.button:disabled {
  background-color: #e0e7ee;
  color: #fff;
  border-color: #e0e7ee;
  cursor: no-drop;
}
.button--blue {
  color: #fff;
  background-color: #008cea;
  border-color: #008cea;
}
.button--gray {
  color: #8ea2b5;
  background-color: #e0e7ee;
  border-color: #e0e7ee;
}
.button--green {
  background-color: #adea00;
  border-color: #adea00;
}
.button--green:hover,
.button--green:focus-visible {
  color: #000;
}
.button--big {
  padding: 7px 16px;
  font-size: 15px;
  line-height: 20px;
}
.button--borderless {
  position: relative;
  border: none;
  background: transparent;
  color: #8ea2b5;
  font-weight: 500;
  padding: 0;
  padding-left: 26px;
}
.button--borderless svg {
  position: absolute;
  top: 9px;
  left: 0;
}
.button--borderless:hover svg {
  stroke: #008cea;
}
.button--right {
  margin-left: auto;
}
.button--wide {
  padding-left: 36px;
  padding-right: 36px;
}

.select {
  position: relative;
}
.select::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 44px;
  bottom: 10px;
  width: 1px;
  background: #ccd9e5;
  pointer-events: none;
}
.select::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 16px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  pointer-events: none;
}
.select select {
  width: 100%;
  height: 36px;
  padding: 0 60px 0 15px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #8ea2b5;
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.select--dark select {
  color: #000;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
}

.select-outside {
  position: relative;
}
.select-outside select {
  position: relative;
  height: 21px;
  width: 100%;
  padding-left: 8px;
  padding-right: 28px;
  font: inherit;
  text-align: center;
  color: #000;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  z-index: 2;
}
.select-outside::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 20px);
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #ccd9e5;
}
.select-outside::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  pointer-events: none;
  z-index: 3;
}

.custom-select--parent {
  position: relative;
}
.custom-select--border {
  position: relative;
  padding-right: 20px;
}
.custom-select--border .custom-select__button {
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #ccd9e5;
}
.custom-select--border .custom-select__placeholder {
  left: 8px;
}
.custom-select--border .custom-select__icon {
  position: absolute;
  top: 3px;
  right: 0;
}
.custom-select--border .custom-select__dropdown {
  width: auto;
  border: 1px solid #ccd9e5;
  border-radius: 8px;
}
.custom-select--border .custom-select__dropdown li {
  padding-left: 8px;
  padding-right: 8px;
}

.custom-select__button {
  display: flex;
  width: 100%;
  align-items: center;
  padding-left: 8px;
  padding-right: 6px;
  text-align: left;
}
.custom-select__button--single {
  padding-right: 0;
}

.custom-select__icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
}
.custom-select__icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.custom-select__icon--line {
  margin-left: 16px;
}
.custom-select__icon--line::before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -8px;
  height: 16px;
  width: 1px;
  background: #ccd9e5;
  pointer-events: none;
}
.custom-select.is-open .custom-select__icon svg {
  transform: translate(-50%, -50%) rotate(180deg);
}

.custom-select__color {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.custom-select__color--blue {
  background: #008cea;
}

.custom-select__text {
  flex-grow: 1;
}

.custom-select__dropdown {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  border: 1px solid #ccd9e5;
  border-top: none;
  z-index: 7;
}
.custom-select.is-open .custom-select__dropdown {
  visibility: visible;
  opacity: 1;
}

.custom-select__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
}
.custom-select__list li {
  position: relative;
  padding: 6px 16px;
}
.custom-select__list li:hover {
  background: #e0e7ee;
}

.custom-select__item-secondary {
  font-size: 11px;
  font-weight: 500;
  color: #8ea2b5;
}

.custom-select__item {
  display: block;
}
.custom-select__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.custom-select__item img {
  margin-right: 4px;
  object-fit: cover;
}

.custom-select__placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  opacity: 0.3;
}

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

.custom-select__button:disabled {
  pointer-events: none;
  opacity: 0.3;
}

.custom-select__text {
  flex-shrink: 0;
  width: 70%;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.custom-select__text img {
  margin-right: 4px;
  object-fit: cover;
}

.custom-select__text br {
  display: none;
}

.custom-select.is-disabled {
  pointer-events: none;
}

.custom-select.is-disabled .custom-select__list {
  display: none;
}

.custom-select.open-up .custom-select__list {
  bottom: auto;
  top: 0;
  transform: translateY(calc(-100% + 10px));
}

.custom-select.is-open .custom-select__list {
  visibility: visible;
  opacity: 1;
}

.custom-select.not-empty .custom-select__text {
  opacity: 1;
}

.custom-select.not-empty .custom-select__placeholder {
  opacity: 0;
}

.custom-select.is-invalid .custom-select__button {
  border: 2px solid #ff1553;
}

.custom-select.is-invalid .custom-select__button:focus,
.custom-select.is-invalid .custom-select__button:hover {
  border: 2px solid rgba(255, 21, 83, 0.5);
}

.custom-select.slide-up.not-empty .custom-select__text,
.custom-select.slide-up.is-open .custom-select__text {
  opacity: 1;
}

.custom-select__icon--location {
  margin-right: -4px;
}
.custom-select__icon--location::before {
  left: -10px;
}
.custom-select.is-open .custom-select__icon--location.custom-select__icon svg {
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .custom-select {
    padding: 4px 0 14px;
    width: 100%;
  }
  .custom-select__placeholder {
    transform: translateY(calc(-50% - 5px));
  }
}
.ip-select--parent {
  position: relative;
}
.ip-select--border {
  position: relative;
  padding-right: 20px;
}
.ip-select--border .ip-select__button {
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
  border: 1px solid #ccd9e5;
}
.ip-select--border .ip-select__placeholder {
  left: 8px;
}
.ip-select--border .ip-select__icon {
  position: absolute;
  top: 3px;
  right: 0;
}
.ip-select--border .ip-select__dropdown {
  width: auto;
  border: 1px solid #ccd9e5;
  border-radius: 8px;
}
.ip-select--border .ip-select__dropdown li {
  padding-left: 8px;
  padding-right: 8px;
}

.ip-select__button {
  display: flex;
  width: 100%;
  align-items: center;
  padding-left: 8px;
  padding-right: 6px;
  text-align: left;
}
.ip-select__button--single {
  padding-right: 0;
}

.ip-select__icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
}
.ip-select__icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ip-select__icon--line {
  margin-left: 16px;
}
.ip-select__icon--line::before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -8px;
  height: 16px;
  width: 1px;
  background: #ccd9e5;
  pointer-events: none;
}
.ip-select.is-open .ip-select__icon svg {
  transform: translate(-50%, -50%) rotate(180deg);
}

.ip-select__color {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.ip-select__color--blue {
  background: #008cea;
}

.ip-select__text {
  flex-grow: 1;
}

.ip-select__dropdown {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  border: 1px solid #ccd9e5;
  border-top: none;
  z-index: 7;
}
.ip-select.is-open .ip-select__dropdown {
  visibility: visible;
  opacity: 1;
}

.ip-select__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
}
.ip-select__list li {
  position: relative;
}
.ip-select__list .ip-select__custom-select-item {
  display: block;
  cursor: pointer;
  padding: 6px 16px;
}
.ip-select__list .ip-select__custom-select-item:hover {
  background: #e0e7ee;
}

.ip-select__item-secondary {
  font-size: 11px;
  font-weight: 500;
  color: #8ea2b5;
}

.ip-select__item {
  display: block;
}
.ip-select__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ip-select__item img {
  margin-right: 4px;
  object-fit: cover;
}

.ip-select__placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  opacity: 0.3;
}

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

.ip-select__button:disabled {
  pointer-events: none;
  opacity: 0.3;
}

.ip-select__text {
  flex-shrink: 0;
  width: 70%;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.ip-select__text img {
  margin-right: 4px;
  object-fit: cover;
}

.ip-select__text br {
  display: none;
}

.ip-select.is-disabled {
  pointer-events: none;
}

.ip-select.is-disabled .ip-select__list {
  display: none;
}

.ip-select.open-up .ip-select__list {
  bottom: auto;
  top: 0;
  transform: translateY(calc(-100% + 10px));
}

.ip-select.is-open .ip-select__list {
  visibility: visible;
  opacity: 1;
}

.ip-select.not-empty .ip-select__text {
  opacity: 1;
}

.ip-select.not-empty .ip-select__placeholder {
  opacity: 0;
}

.ip-select.is-invalid .ip-select__button {
  border: 2px solid #ff1553;
}

.ip-select.is-invalid .ip-select__button:focus,
.ip-select.is-invalid .ip-select__button:hover {
  border: 2px solid rgba(255, 21, 83, 0.5);
}

.ip-select.slide-up.not-empty .ip-select__text,
.ip-select.slide-up.is-open .ip-select__text {
  opacity: 1;
}

.ip-select__icon--location {
  margin-right: -4px;
}
.ip-select__icon--location::before {
  left: -10px;
}
.ip-select.is-open .ip-select__icon--location.ip-select__icon svg {
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .ip-select {
    padding: 4px 0 14px;
    width: 100%;
  }
  .ip-select__placeholder {
    transform: translateY(calc(-50% - 5px));
  }
}
.radio-box {
  display: flex;
  gap: 12px;
}

.radio span {
  position: relative;
  display: inline-block;
  padding-left: 26px;
}
.radio span::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #ccd9e5;
}
.radio input:checked + span::before {
  border: 5px solid #8ea2b5;
}

.checkbox {
  position: relative;
  display: block;
  flex-shrink: 0;
  padding-left: 26px;
  line-height: 18px;
  cursor: pointer;
}
.checkbox span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.checkbox span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccd9e5;
  background-color: #fff;
  border-radius: 4px;
}
.checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  display: none;
  left: 4px;
  top: 5px;
  width: 11px;
  height: 9px;
  background-image: url("../images/icons/stack.svg#tick");
  background-size: contain;
}
.checkbox input:checked + span::before {
  background-color: #8ea2b5;
  border-color: #8ea2b5;
}
.checkbox input:checked + span::after {
  display: block;
}
.checkbox input:focus-visible + span::before {
  box-shadow: 0 0 5px rgba(0, 140, 234, 0.5);
}
.checkbox:has(:disabled) {
  opacity: 0.4;
}
.checkbox a {
  color: #008cea;
}
.checkbox a:hover {
  opacity: 0.7;
}
.checkbox--wrap span {
  overflow: visible;
  white-space: pre-wrap;
  text-overflow: clip;
}

.checkbox-round {
  position: relative;
  display: block;
  flex-shrink: 0;
  padding-left: 52px;
  font-size: 13px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}
.checkbox-round span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.checkbox-round span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 20px;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
  border-radius: 12px;
}
.checkbox-round span::after {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccd9e5;
  transition: left 0.3s;
}
.checkbox-round input:checked + span::before {
  background-color: #008cea;
  border-color: #008cea;
}
.checkbox-round input:checked + span::after {
  left: 24px;
  background-color: #fff;
}
.checkbox-round input:focus-visible + span::before {
  box-shadow: 0 0 5px rgba(0, 140, 234, 0.5);
}
.checkbox-round:has(:disabled) {
  opacity: 0.4;
}

.dropdown {
  position: relative;
}
.dropdown:hover .dropdown__wrapper {
  display: flex;
}

.dropdown__wrapper {
  display: none;
  position: absolute;
  flex-direction: column;
  min-width: 130px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ccd9e5;
  box-shadow: 0px 8px 12px 0px rgba(142, 162, 181, 0.5);
  z-index: 6;
}
.dropdown__wrapper--left {
  top: -13px;
  left: 40px;
}
.dropdown__wrapper--left::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 14px;
  height: 13px;
  background: #fff;
  border-top: 1px solid #ccd9e5;
  border-left: 1px solid #ccd9e5;
  border-top-left-radius: 3px;
  transform: rotate(-40deg) skew(16deg) translateX(-10px);
  z-index: 1;
}
.dropdown__wrapper--left::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -39px;
  width: 40px;
  height: 100%;
}
.dropdown__wrapper--top {
  top: calc(100% + 17px);
  left: 50%;
  transform: translateX(-50%);
}
.dropdown__wrapper--top::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 50%;
  width: 18px;
  height: 17px;
  background: #fff;
  border-top: 1px solid #ccd9e5;
  border-left: 1px solid #ccd9e5;
  border-top-left-radius: 4px;
  transform: rotate(52deg) skew(16deg) translateX(-15px);
  z-index: 1;
}
.dropdown__wrapper--top::before {
  content: "";
  display: block;
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 40px;
}
.dropdown__wrapper--top-right {
  top: calc(100% + 17px);
  right: 0;
}
.dropdown__wrapper--top-right::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 3px;
  width: 14px;
  height: 13px;
  background: #fff;
  border-top: 1px solid #ccd9e5;
  border-left: 1px solid #ccd9e5;
  border-top-left-radius: 4px;
  transform: rotate(52deg) skew(16deg) translateX(-15px);
  z-index: 1;
}
.dropdown__wrapper--top-right::before {
  content: "";
  display: block;
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 40px;
}

.tel-mask {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.tel-mask span {
  line-height: 17px;
}
.tel-mask img {
  margin-right: 8px;
}
.tel-mask--disabled span {
  color: #8ea2b5;
}

/* DATA */
[data-tabs="parent"] {
  overflow: hidden;
}
[data-tabs="parent"].no-transition > [data-tabs="control"],
[data-tabs="parent"].no-transition > [data-tabs="content"],
[data-tabs="parent"].no-transition > [data-tabs="element"] {
  transition: none;
}
[data-tabs="parent"].no-transition-global [data-tabs="control"],
[data-tabs="parent"].no-transition-global [data-tabs="content"],
[data-tabs="parent"].no-transition-global [data-tabs="element"] {
  transition: none;
}

[data-tabs="parent"] [data-tabs="content"] {
  position: relative;
}

[data-tabs="element"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
}

[data-tabs="element"].for-load {
  position: static;
  visibility: visible;
  opacity: 1;
  transition: none;
}

[data-tabs="element"].is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

[data-accordion-init] > [data-tabs="content"],
[data-accordion-init] > [data-tabs="controls"] {
  display: none;
}
[data-accordion-init] [data-tabs="element"] {
  z-index: 1;
  visibility: visible;
  position: static;
  opacity: 1;
}

[data-tabs="accordion-wrapper"] {
  display: block;
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

[data-tabs="accordion-content"] {
  overflow: hidden;
}

[data-tabs="accordion"] {
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

[data-tabs="accordion"].is-active > [data-tabs="accordion-wrapper"] {
  max-height: none;
}

/* BLOCKS */
.color-box__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.color-box__list li {
  padding: 0;
}

.color-box__dropdown {
  padding: 7px 15px 16px;
  width: auto;
  left: -1px;
  right: -1px;
}

.color-box__buttons button {
  width: 100%;
  color: #8ea2b5;
}
.color-box__buttons button:not(:last-child) {
  margin-bottom: 12px;
}

.color-picker__spectrum-map {
  position: relative;
  width: 226px;
  height: 136px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
}
.color-picker__spectrum-map canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 8px;
}

.color-picker__hue-map {
  position: relative;
  width: 173px;
  height: 12px;
  border-radius: 8px;
}
.color-picker__hue-map canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
  border-radius: 8px;
}
.color-picker__hue-map button {
  margin-left: -6px;
}

.color-picker__color-cursor {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ccd9e5;
  background-color: #fff;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.color-picker__color-cursor.dragging {
  transition: none;
}

.color-picker__hue-map-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.color-picker__hue-color {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccd9e5;
  background-color: #fff;
}

.color-picker__field-group input {
  width: 40px;
  height: 36px;
  font-size: 13px;
  color: #000000;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #ccd9e5;
  text-align: center;
}
.color-picker__field-group input::-webkit-outer-spin-button,
.color-picker__field-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.color-picker__field-group input[type="number"] {
  appearance: inherit;
  -moz-appearance: textfield;
}
.color-picker__field-group--hex {
  flex-grow: 1;
}
.color-picker__field-group--hex input {
  width: 100%;
}

.color-picker__field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.color-picker__field-group-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-left: 12px;
}

.color-picker__color-value-wrapper {
  display: flex;
  margin-bottom: 19px;
}

.color-picker__buttons {
  display: flex;
  padding-top: 16px;
  padding-bottom: 19px;
  border-top: 1px solid #ccd9e5;
}
.color-picker__buttons button {
  flex-grow: 1;
}
.color-picker__buttons button:not(:last-child) {
  flex-grow: 2;
  margin-right: 16px;
}

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

.company-item__image {
  position: relative;
  width: 45px;
  height: 45px;
  margin-right: 12px;
  border-radius: 50%;
  border: 1px solid #ccd9e5;
}
.company-item__image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 27px;
}
.company-item__image--owner img {
  left: calc(50% + 3px);
}

.company-item__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
}

.company-item__position {
  display: inline-block;
  margin: 0;
  font-size: 13px;
  color: #8ea2b5;
}
.company-item__position--owner {
  margin-top: 4px;
  padding: 2px 12px;
  color: #fff;
  border-radius: 12px;
  background-color: #008cea;
}

.create-company-box {
  border: 1px solid #e0e7ee;
  border-radius: 8px;
  background-color: #fff;
}

.create-company-box__header {
  display: flex;
  align-items: center;
  padding: 19px 24px;
  background: #f5f7f8;
}

.create-company-box__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.create-company-box__list li {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid #e0e7ee;
}

.create-company-box__image img {
  vertical-align: bottom;
  border-radius: 7px;
}

.create-company-box__header-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.create-company-box__name {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.create-company-box__wip {
  position: relative;
  align-self: center;
  width: calc(100% - 440px);
  max-width: 460px;
  margin-right: 40px;
  margin-left: 20px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #8ea2b5;
}
.create-company-box__wip::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e0e7ee;
}
.create-company-box__wip span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  background: #f5f7f8;
  z-index: 3;
}

.create-company-box__buttons {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.create-company-box__item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 300px;
}

.create-company {
  width: 100%;
  background-color: #fff;
}

.create-company__container {
  max-width: 993px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
}

.create-company__title {
  margin-bottom: 9px;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  color: #000;
}

.create-company__subtitle {
  margin-top: 0;
  margin-bottom: 17px;
  text-align: center;
}

.create-company__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.create-company__box {
  margin-bottom: 24px;
}

.create-company__footer {
  margin-top: 43px;
  text-align: center;
  padding: 20px 12px;
  background: #f5f7f8;
  border-radius: 8px;
}
.create-company__footer p {
  margin: 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  text-align: center;
  color: #8ea2b5;
}

.docs__box:not(:last-child) {
  margin-bottom: 16px;
}

.docs__card {
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 10px 16px 10px 68px;
  margin-bottom: 12px;
  color: #8ea2b5;
  border-color: #e0e7ee;
}
.docs__card::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 16px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccd9e5;
  transform: translateY(-50%);
  background-size: 18px;
}
.docs__card:last-child {
  margin-bottom: 0;
}
.docs__card--text::before {
  background-image: url("../images/icons/stack.svg#document-text-blue");
}
.docs__card--tick::before {
  background-image: url("../images/icons/stack.svg#tick-circle");
}
.docs__card--monitor::before {
  background-image: url("../images/icons/stack.svg#monitor");
}
.docs__card--mobile::before {
  background-image: url("../images/icons/stack.svg#mobile");
  background-size: 15px;
}
.docs__card--robot::before {
  background-image: url("../images/icons/stack.svg#emoji-happy");
}
.docs__card--icon {
  padding: 16px;
  align-items: stretch;
}
.docs__card--icon::before {
  display: none;
}

.docs__card-icon {
  position: relative;
  flex-shrink: 0;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  border: 1px solid #e0e7ee;
}
.docs__card-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.docs__card-content-wrap {
  display: flex;
  flex-direction: column;
}
.docs__card-content-wrap .docs__card-content {
  margin-bottom: 10px;
}
.docs__card-content-wrap .docs__card-content-bottom {
  margin-top: auto;
}

.docs__card-text {
  margin: 0;
}

.docs__card-main {
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 0;
}
.docs__card-main span {
  font-size: 15px;
  color: #000;
}

.docs__card-time {
  line-height: 13px;
  margin: 0;
}

.docs__card-content {
  margin-right: auto;
}

.docs__card-buttons {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}

.docs__card-btn {
  position: relative;
  width: 18px;
  height: 20px;
  padding: 0;
}
.docs__card-btn svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.docs__card-btn:hover svg {
  stroke: #008cea;
}

.docs__legend {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  padding-left: 20px;
}
.docs__legend::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #ccd9e5;
  z-index: 1;
}
.docs__legend--between {
  margin-top: 20px;
  margin-bottom: 15px;
}

.docs__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 16px;
  font-size: 15px;
  line-height: 20px;
  background-color: #fff;
  z-index: 2;
}

.docs__buttons {
  margin-bottom: 12px;
}
.docs__buttons button {
  width: 100%;
}
.docs__buttons--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.docs__card-big {
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
  padding: 16px;
}

.docs__card-footer {
  display: flex;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #ccd9e5;
}

.docs__card-author {
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #8ea2b5;
}

.docs__card-author-name {
  display: flex;
  align-items: center;
  margin-left: 12px;
  color: #000;
}
.docs__card-author-name img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.docs__card-big-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.docs__card-image-wrapper {
  width: 120px;
}
.docs__card-image-wrapper button {
  width: 100%;
}

.docs__card-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #ccd9e5;
}
.docs__card-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.docs__card-list ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  padding-top: 3px;
}
.docs__card-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 13px;
}

.docs__list-property {
  width: 100px;
  padding-right: 8px;
  color: #8ea2b5;
}

.docs__setting {
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  width: 20px;
  height: 24px;
  background-color: #fff;
  z-index: 2;
}
.docs__setting svg {
  position: absolute;
  top: 0;
  left: 0;
}

.docs__company {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 17px;
  padding-bottom: 3px;
}

.docs__company-item {
  padding-left: 10px;
  padding-right: 10px;
}
.docs__company-item:nth-child(2n) {
  border-left: 1px solid #ccd9e5;
}

.footer {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  align-items: center;
}

.footer__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 20px;
}

.footer__item {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
}
.footer__item:not(:last-child) {
  padding-right: 17px;
  margin-right: 16px;
}
.footer__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #8ea2b5;
}

.footer__link {
  vertical-align: bottom;
}

.form {
  position: relative;
}
.form--button {
  display: inline-block;
}
.form--button button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.form--button button svg {
  vertical-align: bottom;
}
.form--product .form__content-inner {
  gap: 12px 16px;
}
.form--product .form__content {
  padding: 0;
  height: calc(100vh - 149px);
  max-height: calc(100vh - 149px);
}
.form--product .form__label {
  width: 110px;
}
.form--product .form__checkbox-wrap {
  padding-left: 110px;
}
.form--product .form__docs-box {
  padding: 16px 16px 16px 16px;
  background-color: #fff;
  border-radius: 8px;
}
.form--under-nav .form__content {
  padding: 0;
  height: calc(100vh - 228px);
}
.form--tariff .form__docs-box {
  padding: 16px 16px 16px 16px;
  background-color: #fff;
  border-radius: 8px;
}
.form--tariff .form__buttons--fixed {
  margin-bottom: -40px;
}
.form input::-webkit-outer-spin-button,
.form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.form input[type="number"] {
  appearance: inherit;
  -moz-appearance: textfield;
}
.form .checkbox span {
  overflow: visible;
  white-space: normal;
}

.form__content {
  padding: 20px 16px 70px 16px;
  height: calc(100vh - 184px);
  overflow-y: auto;
}
@media (max-width: 1199px) {
  .form__content {
    height: calc(100vh - 232px);
  }
}

.form__content-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 1425px) {
  .form__content-inner {
    grid-template-columns: 1fr;
  }
}

.form__content-grow {
  flex-grow: 1;
  padding-bottom: 16px;
}

.form__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.form__buttons--right {
  margin-left: auto;
}

.form__buttons--fixed {
  width: auto;
  position: sticky;
  bottom: 0;
  padding: 20px;
  margin-left: -16px;
  margin-right: -16px;
  background-color: #fff;
  border-top: 1px solid #ccd9e5;
  z-index: 6;
}
.form__buttons--fixed button {
  width: 258px;
}

.form__box {
  padding-bottom: 19px;
}
.form__box:not(:last-child) {
  border-bottom: 1px solid #ccd9e5;
}
.form__box:not(:first-child) {
  padding-top: 20px;
}

.form__row {
  margin-bottom: 12px;
}
.form__row--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 12px;
}
.form__row--two .form__field:nth-child(2n) .form__label {
  padding-left: 16px;
}
.form__row--two input {
  width: 110px;
}
@media (max-width: 1023px) {
  .form__row--two.form__row--big {
    grid-template-columns: 1fr;
  }
}
.form__row--margin {
  margin-bottom: 19px;
}
.form__row:last-child {
  margin-bottom: 0;
}
.form__row--line {
  padding-bottom: 15px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccd9e5;
}
.form__row--line.form__row--two {
  column-gap: 30px;
}
.form__row--no-line {
  padding-bottom: 0;
  margin-bottom: 0;
}
.form__row--no-line.form__row--two {
  column-gap: 30px;
}
.form__row--long {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form__row--long > div {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .form__row--long {
    grid-template-columns: 1fr;
  }
}
.form__row--padding-top {
  padding-top: 10px;
}

.form__field-wrap {
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 4px 10px 4px 16px;
  height: 36px;
}
.form__field-wrap--input {
  background-color: #fff;
}
.form__field-wrap--textarea {
  height: auto;
  padding: 0;
  background-color: #fff;
}
.form__field-wrap input {
  font-size: 13px;
  font-weight: 500;
  flex-grow: 1;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
}
.form__field-wrap input:disabled {
  color: #8ea2b5;
}
.form__field-wrap textarea {
  height: 46px;
  padding: 10px 10px 10px 16px;
  width: 100%;
  border: none;
  background: transparent;
  resize: vertical;
}
.form__field-wrap--textarea-big textarea {
  height: 80px;
  resize: none;
}
.form__field-wrap--text-right input {
  padding-right: 10px;
  text-align: right;
}

.form__number {
  display: block;
  flex-grow: 1;
}
.form__field-wrap:has([disabled]) .form__number {
  color: #8ea2b5;
}

.form__btn-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-left: 10px;
}
.form__btn-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke: #8ea2b5;
}
.form__btn-icon--text {
  width: auto;
  min-width: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #8ea2b5;
}
.form__btn-icon:hover svg,
.form__btn-icon:focus-visible svg {
  stroke: #008cea;
}
.form__btn-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: -8px;
  width: 1px;
  background: #ccd9e5;
}

.form__field {
  display: flex;
  align-items: center;
}
.form__field--min-input .form__label {
  width: 130px;
}
.form__field--min-input input {
  width: 70px;
}
.form__field--border {
  padding: 1px;
  border-radius: 8px;
  border: 1px solid #e0e7ee;
}
.form__field--border .form__label {
  padding-left: 16px;
}
.form__field--border .form__field-wrap {
  height: 32px;
  border-color: #e0e7ee;
  background-color: #e0e7ee;
}

.form__label {
  width: 102px;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 13px;
  padding-right: 7px;
}

.form__total-sum {
  flex-grow: 1;
  padding: 3px 10px;
  font-size: 22px;
  line-height: 28px;
  color: #008cea;
  text-align: right;
  background: #f5f7f8;
  border: 1px solid #008cea;
  border-radius: 8px;
}

.form__debt {
  flex-grow: 1;
  padding: 10px;
  line-height: 16px;
  text-align: right;
  border-radius: 8px;
  background: #ffb7ae;
}

.form__date-wrap {
  flex-grow: 1;
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  justify-content: center;
}

.form__time {
  font-size: 14px;
  line-height: 1.5;
}

.form__select {
  position: relative;
  flex-grow: 1;
}
.form__select::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 25px;
  bottom: 4px;
  width: 1px;
  background: #ccd9e5;
  pointer-events: none;
}
.form__select::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  pointer-events: none;
}
.form__select select {
  width: 100%;
  height: 24px;
  padding: 0 27px 0 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #000;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form__phone-wrap {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.form__phone-wrap button::before {
  display: none;
}

.form__checkbox-wrap {
  width: 100%;
  padding-left: 102px;
  margin-top: 8px;
  padding-bottom: 4px;
}

.form__box-button {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 16px;
  border-top: 1px solid #ccd9e5;
}
.form__box-button--right {
  justify-content: flex-end;
}
.form__box-button--no-line {
  border-top: none;
  margin-top: 0;
}
.form__box-button--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.form__file-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  border: 1px dashed #8ea2b5;
  border-radius: 6px;
}
.form__file-wrap::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 22px;
  height: 22px;
  background-image: url("../images/icons/stack.svg#add-circle");
  z-index: 1;
}
.form__file-wrap input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.form__file-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px;
  background: #f5f7f8;
  border-radius: 8px;
}

.form__file-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid #8ea2b5;
  background: #ffffff;
  border-radius: 6px;
}
.form__file-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.form__file-name {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.form__file-del {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  margin-left: 6px;
}
.form__file-del svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__custom-select {
  flex-grow: 1;
}

.form__field-wrap--custom-select {
  position: relative;
  padding-left: 8px;
}
.form__field-wrap--custom-select:has(.is-open) {
  border-radius: 8px 8px 0 0;
  background-color: #fff;
}
.form__field-wrap--custom-select .custom-select__dropdown {
  left: -1px;
  right: -1px;
  width: auto;
}

.form__button-in-row {
  margin-left: 110px;
  margin-top: 12px;
}

.form__file-title {
  margin-bottom: 10px;
}

.form__edit-box {
  display: flex;
  align-items: center;
  height: 32px;
  margin-top: -1px;
  margin-right: -9px;
  padding: 3px 12px;
  border-radius: 6px;
  background-color: #e0e7ee;
}
.form__edit-box input {
  width: 100px;
  margin-right: 10px;
}
.form__edit-box input:disabled {
  color: #8ea2b5;
}

.form__button-right {
  margin-left: auto;
}

.form__content-input {
  display: flex;
  flex-grow: 1;
  color: #000;
}
.form__content-input--gray {
  color: #8ea2b5;
}

.form__content-input-status {
  display: block;
  margin-left: 6px;
  color: #8ea2b5;
}
.form__content-input-status--right {
  margin-left: auto;
}

.form__hint-title {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 13px;
  color: #000;
}

.form__hint {
  padding: 12px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: #8ea2b5;
  border-radius: 8px;
  background-color: #f5f7f8;
}
.form__hint p {
  margin-top: 0;
  margin-bottom: 5px;
}
.form__hint p:last-child {
  margin-bottom: 0;
}
.form__hint a {
  color: #008cea;
}
.form__hint h3 {
  margin: 0;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}
.form__hint:last-child {
  margin-bottom: 0;
}

.form__field--output {
  padding-left: 35px;
}

.form__output-table {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
}
.form__output-table th {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
  font-weight: 500;
  color: #8ea2b5;
}
.form__output-table td {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
}

.form__checkbox-group {
  margin-bottom: 12px;
}

.form__multiselect-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 24px;
  min-width: 155px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  box-shadow: 0px 8px 12px 0px rgba(142, 162, 181, 0.5);
  z-index: 4;
}
.form__multiselect-dropdown::after {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: 14px;
  width: 18px;
  height: 17px;
  background: #fff;
  border-top: 1px solid #ccd9e5;
  border-left: 1px solid #ccd9e5;
  border-top-left-radius: 4px;
  transform: rotate(52deg) skew(16deg);
  z-index: 1;
}
.form__multiselect-dropdown::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 12px;
}
.form__multiselect-dropdown ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  position: relative;
  background: #fff;
  border-radius: 8px;
  z-index: 2;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.form__multiselect-dropdown li {
  position: relative;
  padding: 8px 16px 8px 38px;
  line-height: 18px;
  cursor: pointer;
}
.form__multiselect-dropdown li:first-child {
  border-radius: 8px 8px 0 0;
}
.form__multiselect-dropdown li:last-child {
  border-radius: 0 0 8px 8px;
}
.form__multiselect-dropdown li:hover {
  background-color: #e0e7ee;
}
.form__multiselect-dropdown li.selected {
  background-color: #e0e7ee;
  cursor: default;
}
.form__multiselect-dropdown img {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.form__multiselect-dropdown .form__multiselect-item-all {
  padding-left: 16px;
}

.form__multiselect-selected {
  position: relative;
  padding: 7px 35px 7px 12px;
  display: flex;
  align-items: center;
  margin-right: 1px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  background: #e0e7ee;
  border-radius: 8px;
  transition: color 0.3s;
}
.form__multiselect-selected::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 12px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#close");
  mask-image: url("../images/icons/stack.svg#close");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  transition: background-color 0.3s;
}
.form__multiselect-selected:hover,
.form__multiselect-selected:focus-visible {
  color: #008cea;
  transition: color 0.3s;
}
.form__multiselect-selected:hover::after,
.form__multiselect-selected:focus-visible::after {
  background-color: #008cea;
  transition: background-color 0.3s;
}
.form__multiselect-selected img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.form__multiselect {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1px;
  flex-grow: 1;
  padding: 1px;
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  background-color: #fff;
}

.form__multiselect-inner {
  position: relative;
}
.form__multiselect-inner:hover .form__multiselect-dropdown {
  display: block;
}

.form__multiselect-add {
  padding: 6px;
  color: #8ea2b5;
}

@media (max-width: 1023px) {
  .form--mini .form__row--two {
    grid-template-columns: 1fr;
  }
  .form--mini .form__row--two .form__field:nth-child(2n) .form__label {
    padding-left: 0;
  }
  .form--mini .form__row--two .form__field--output {
    padding-left: 0;
  }
}

.form__button-center {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 8px;
  text-align: center;
}
.form__button-center .button {
  padding-left: 36px;
  padding-right: 36px;
}

.form__mini-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form__mini-wrap .form__field {
  flex-grow: 1;
}
.form__mini-wrap .form__label {
  width: max-content;
  max-width: 200px;
  padding-right: 15px;
}

.form__custom-select-item {
  display: block;
}

.form__legend {
  position: relative;
  text-align: center;
  margin-bottom: 23px;
}
.form__legend::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #ccd9e5;
  z-index: 1;
}

.form__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 16px;
  font-size: 15px;
  line-height: 20px;
  background-color: #fff;
  z-index: 2;
}

.form__link-password {
  margin-left: auto;
  font-size: 13px;
  text-align: right;
  color: #8ea2b5;
}

.header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.header__box {
  position: relative;
}
.header__box--form {
  flex-grow: 1;
}
.header__box--form form {
  position: relative;
  width: 100%;
}
.header__box--form input[type="search"] {
  width: 100%;
  height: 36px;
  padding: 0 36px 0 16px;
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
}
.header__box--form button[type="submit"] {
  position: absolute;
  top: 9px;
  right: 10px;
  height: 16px;
  width: 16px;
}
.header__box--form button[type="submit"]::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/icons/stack.svg#search-normal");
  mask-image: url("../images/icons/stack.svg#search-normal");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  transition: background-color 0.3s;
}
.header__box--form button[type="submit"]:hover::before,
.header__box--form button[type="submit"]:focus-visible::before {
  background-color: #008cea;
  transition: background-color 0.3s;
}
.header__box--user {
  margin-left: 8px;
}
@media (max-width: 1023px) {
  .header__box--form {
    width: 100%;
  }
  .header__box--user {
    margin-left: auto;
  }
}

.header__btn-user {
  position: relative;
  padding: 7px 40px 7px 48px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 18px 8px 8px 18px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-user::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 16px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  transition: background-color 0.3s;
}
.header__btn-user img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.header__btn-user:hover,
.header__btn-user:focus-visible {
  color: #008cea;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-user:hover::after,
.header__btn-user:focus-visible::after {
  background-color: #008cea;
  transition: background-color 0.3s;
}

.header__btn-notification {
  position: relative;
  padding: 7px 7px 7px 31px;
  min-width: 59px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-notification svg {
  position: absolute;
  top: 9px;
  left: 12px;
  width: 18px;
  height: 18px;
  stroke: #000;
  transition: stroke 0.3s;
}
.header__btn-notification:hover,
.header__btn-notification:focus-visible {
  color: #008cea;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-notification:hover svg,
.header__btn-notification:focus-visible svg {
  stroke: #008cea;
  transition: stroke 0.3s;
}

.header__btn-invite {
  position: relative;
  padding: 7px 40px 7px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  border-radius: 8px;
  background-color: #008cea;
  border: 1px solid #008cea;
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-invite::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 16px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: background-color 0.3s;
}
.header__btn-invite:hover,
.header__btn-invite:focus-visible {
  color: #008cea;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-invite:hover::after,
.header__btn-invite:focus-visible::after {
  background-color: #008cea;
  transition: background-color 0.3s;
}

.header__box--star .header__btn {
  position: relative;
  padding-left: 42px;
}
.header__box--star .header__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 16px;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("../images/icons/stack.svg#star-fly");
  mask-image: url("../images/icons/stack.svg#star-fly");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: background-color 0.3s;
}
.header__box--star .header__btn--green::before {
  background-color: #000;
}
.header__box--star .header__btn--blue:hover::before {
  background-color: #008cea;
}

.input {
  height: 36px;
  border: 1px solid #ccd9e5;
  border-radius: 8px;
  padding: 9px 16px;
}
.input--filter {
  min-width: 460px;
  background-color: #f5f7f8;
  padding-right: 30px;
}
.input--filter::placeholder {
  color: #8ea2b5;
  font-weight: 500;
}
.input--leads {
  background-color: #f5f7f8;
  width: 100%;
}
.input--leads::placeholder {
  color: #8ea2b5;
  font-weight: 500;
}
.input--goods {
  font-weight: 500;
}
.input--right {
  text-align: right;
  padding-right: 12px;
}

.logo {
  display: block;
  width: 89px;
  height: 23px;
}
.logo img {
  vertical-align: bottom;
}

.modal-form input::-webkit-outer-spin-button,
.modal-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.modal-form input[type="number"] {
  appearance: inherit;
  -moz-appearance: textfield;
}

.modal-form__row {
  margin-bottom: 12px;
}

.modal-form__field {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.modal-form__field > label {
  flex-shrink: 0;
  width: 92px;
}
.modal-form__field--textarea {
  align-items: flex-start;
}

.modal-form__field-input {
  display: flex;
  align-items: center;
  flex-grow: 1;
  background: #f5f7f8;
  border: 1px solid #ccd9e5;
  border-radius: 8px;
}
.modal-form__field-input input {
  flex-grow: 1;
  border: none;
  background-color: transparent;
  height: 34px;
  padding: 0 12px;
}
.modal-form__field-input button {
  margin-right: 7px;
}
.modal-form__field-input--white {
  background-color: #fff;
}

.modal-form__field-file {
  position: relative;
  width: 112px;
  height: 112px;
  border: 1px dashed #8ea2b5;
  border-radius: 6px;
}
.modal-form__field-file::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 22px;
  height: 22px;
  background-image: url("../images/icons/stack.svg#add-circle");
  z-index: 1;
}
.modal-form__field-file input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.modal-form__field-select {
  flex-grow: 1;
}
.modal-form__field-select::before {
  right: 34px;
}
.modal-form__field-select::after {
  right: 12px;
}

.modal-form__field-textarea {
  flex-grow: 1;
}
.modal-form__field-textarea textarea {
  width: 100%;
  height: 144px;
  padding: 8px 12px;
  border: 1px solid #ccd9e5;
  border-radius: 8px;
  resize: none;
}

.modal-form__check {
  width: 100%;
  padding-left: 104px;
}
.modal-form__check .modal__checkbox {
  margin-bottom: 0;
}

.modal-form__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ccd9e5;
}
.modal-form__buttons button {
  width: 143px;
}
.modal-form__buttons--mini {
  margin-left: 19px;
  margin-right: 19px;
  padding-top: 16px;
  padding-bottom: 18px;
}
.modal-form__buttons--mini button {
  width: 117px;
}
.modal-form__buttons--without-border {
  border: none;
}

.modal-form__field-radio {
  margin-bottom: 12px;
}

.modal-form__list-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.modal-form__setting {
  display: block;
  width: 12px;
  height: 24px;
  margin-right: 6px;
}

.modal-form__list-text {
  flex-grow: 1;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 16px;
}

.modal-form__del {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-left: 4px;
  margin-right: -4px;
  background-color: #8ea2b5;
  -webkit-mask-image: url("../images/icons/stack.svg#close");
  mask-image: url("../images/icons/stack.svg#close");
  -webkit-mask-size: 12px;
  mask-size: 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.modal-form__field-input--color-box {
  position: relative;
}
.modal-form__field-input--color-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  bottom: 9px;
  right: 59px;
  width: 1px;
  background: #ccd9e5;
}
.modal-form__field-input--color-box:has(.is-open) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.modal-form__list-btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 250px;
  font-size: 15px;
}

.modal-form__label {
  display: inline-block;
  margin-bottom: 4px;
}

.modal-form__file-image {
  display: none;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid #e0e7ee;
  background: #ffffff;
  border-radius: 6px;
}
.modal-form__file-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.modal-form__file-image-name {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.modal-form__file-image-del {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
  padding: 0;
  margin-left: 6px;
}
.modal-form__file-image-del svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 140, 234, 0.5);
  z-index: 200;
}
.modal-wrapper .modal {
  position: relative;
  margin: auto;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: block;
  overflow: visible;
  background: #fff;
  box-shadow: 0 8px 12px 0 rgba(0, 120, 214, 0.5);
  z-index: 5;
}
.modal-wrapper.modal-wrapper--close {
  display: none;
}
.modal-wrapper--transparent {
  background-color: transparent;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 948px;
  height: auto;
  max-height: 655px;
  padding: 16px 16px 0 16px;
  background-color: #ccd9e5;
  border-radius: 8px;
}
.modal--add-section {
  max-width: 544px;
  max-height: 100vh;
}
.modal--mini {
  max-width: 320px;
}
.modal--settings-color {
  max-width: 250px;
  padding-left: 12px;
  padding-right: 11px;
}
.modal--add-address {
  max-width: 544px;
}
.modal--middle {
  max-width: 544px;
}
.modal--add-company .modal-form__field-textarea textarea {
  height: 80px;
}
.modal--notification {
  max-width: 368px;
}
.modal--notification-error .modal__title {
  color: #ff6711;
  border-color: #ff6711;
}

.modal__title {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 16px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #ccd9e5;
}

.modal__form-search-wrap {
  display: flex;
  width: 100%;
}

.modal__form-search {
  position: relative;
  width: 100%;
  max-width: 50%;
}
.modal__form-search svg {
  position: absolute;
  top: 9px;
  right: 11px;
}

.modal__form-search-btn {
  width: 42px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
  transition: color 0.3s, background-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  margin-left: auto;
}
.modal__form-search-btn svg {
  vertical-align: bottom;
  stroke: #8ea2b5;
}
.modal__form-search-btn:hover svg {
  stroke: #008cea;
}

.modal__checkbox-group {
  column-count: 4;
  padding: 16px 0 20px 0;
}

.modal__checkbox {
  position: relative;
  display: block;
  flex-shrink: 0;
  padding-left: 26px;
  line-height: 18px;
  cursor: pointer;
  margin-bottom: 15px;
}
.modal__checkbox span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.modal__checkbox span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccd9e5;
  background-color: #fff;
  border-radius: 4px;
}
.modal__checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  display: none;
  left: 4px;
  top: 5px;
  width: 11px;
  height: 9px;
  background-image: url("../images/icons/stack.svg#tick");
  background-size: contain;
}
.modal__checkbox input:checked + span::before {
  background-color: #8ea2b5;
  border-color: #8ea2b5;
}
.modal__checkbox input:checked + span::after {
  display: block;
}
.modal__checkbox input:focus-visible + span::before {
  box-shadow: 0 0 5px rgba(0, 140, 234, 0.5);
}
.modal__checkbox:has(:disabled) {
  opacity: 0.4;
}

.modal__actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccd9e5;
  padding: 20px 0;
}

.modal__actions-group {
  display: flex;
}
.modal__actions-group button {
  min-width: 153px;
}
.modal__actions-group button:first-child {
  margin-right: 16px;
}

.modal__desc-list {
  color: #8ea2b5;
}
.modal__desc-list h3 {
  margin: 0;
  font-size: 13px;
  line-height: 14px;
  font-weight: 500;
}
.modal__desc-list ol {
  margin-top: 3px;
  margin-bottom: 15px;
  padding-left: 20px;
}
.modal__desc-list li {
  margin-bottom: 2px;
}

.modal__description {
  padding-top: 12px;
  margin-bottom: 5px;
  text-align: center;
}
.modal__description p {
  margin: 0;
}

.modal__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.modal__buttons--centered {
  padding-top: 14px;
  padding-bottom: 32px;
}

.navigation {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  background-color: #fff;
}
@media (max-width: 1023px) {
  .navigation {
    padding: 13px 16px;
  }
}

.navigation__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.navigation__link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
}
.navigation__link--disabled:hover,
.navigation__link--disabled:focus-visible,
.navigation__link--disabled:active {
  color: #000;
}
.navigation__link--current {
  color: #008cea;
}

.navigation__number {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 5px;
  font-size: 13px;
  line-height: 17px;
  color: #fff;
  border-radius: 6px;
  background-color: #008cea;
}

.navigation__button {
  position: relative;
  display: inline-block;
  padding-right: 24px;
  padding-left: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  transition: color 0.3s;
}
.navigation__button::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #000;
  transition: background-color 0.3s;
}
.navigation__button:hover,
.navigation__button:focus-visible {
  color: #008cea;
  transition: color 0.3s;
}
.navigation__button:hover::after,
.navigation__button:focus-visible::after {
  background-color: #008cea;
  transition: background-color 0.3s;
}

.navigation__additionally {
  margin-left: 20px;
}

.order {
  margin-bottom: 16px;
}

.order__header {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.order__title-wrap {
  position: relative;
  margin-right: 48px;
  padding-left: 23px;
  padding-right: 40px;
  padding-top: 3px;
}

.order__like {
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
  padding: 0;
  width: 25px;
  height: 25px;
}
.order__like svg {
  fill: none;
  stroke: #8ea2b5;
}
.order__like.active svg {
  fill: #008cea;
  stroke: #fff;
}

.order__title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.order__create {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  background: #adea00;
  border-radius: 8px;
  transition: opacity 0.3s;
}
.order__create:hover,
.order__create:focus-visible {
  opacity: 0.6;
  transition: opacity 0.3s;
  color: #000;
}
@media (max-width: 1023px) {
  .order__create {
    margin-right: 0;
    margin-left: auto;
    padding: 8px 42px;
  }
}

.order__search {
  position: relative;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #ffffff;
  border-radius: 8px;
}
.order__search form {
  width: 100%;
  display: flex;
}
.order__search input[type="search"] {
  flex-grow: 1;
  height: 34px;
  padding: 0 60px 0 8px;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  transition: opacity 0.3s;
}
.order__search input[type="search"]:hover,
.order__search input[type="search"]:focus-visible {
  opacity: 0.8;
}
.order__search button[type="submit"],
.order__search button[type="reset"] {
  position: absolute;
  top: 9px;
  right: 36px;
  height: 16px;
  width: 16px;
}
.order__search button[type="submit"]::before,
.order__search button[type="reset"]::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../images/icons/stack.svg#search-normal");
  mask-image: url("../images/icons/stack.svg#search-normal");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  transition: background-color 0.3s;
}
.order__search button[type="submit"]:hover::before,
.order__search button[type="submit"]:focus-visible::before,
.order__search button[type="reset"]:hover::before,
.order__search button[type="reset"]:focus-visible::before {
  background-color: #008cea;
  transition: background-color 0.3s;
}
.order__search button[type="reset"] {
  right: 10px;
}
.order__search button[type="reset"]::before {
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#close");
  mask-image: url("../images/icons/stack.svg#close");
}
@media (max-width: 1023px) {
  .order__search {
    width: 100%;
    margin-top: 12px;
  }
}

.order__tag {
  position: relative;
  padding: 8px 32px 8px 12px;
  margin-right: 1px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  background: #e0e7ee;
  border-radius: 8px;
  transition: color 0.3s;
}
.order__tag::after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: 12px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#close");
  mask-image: url("../images/icons/stack.svg#close");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  transition: background-color 0.3s;
}
.order__tag:hover,
.order__tag:focus-visible {
  color: #008cea;
  transition: color 0.3s;
}
.order__tag:hover::after,
.order__tag:focus-visible::after {
  background-color: #008cea;
  transition: background-color 0.3s;
}

.order__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #8ea2b5;
}

.order__box {
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  padding: 7px 15px;
  margin-right: auto;
}

.order__stats {
  position: relative;
  display: flex;
  align-items: center;
}
.order__stats:not(:last-child) {
  padding-right: 17px;
  margin-right: 16px;
}
.order__stats:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #ccd9e5;
}
.order__stats p {
  margin: 0;
}
.order__stats p:not(:last-child) {
  margin-right: 16px;
}

.order__stats-number {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 6px;
  color: #ffffff;
  border-radius: 6px;
}
.order__stats-number--orange {
  background: #ff6711;
}
.order__stats-number--green {
  background: #adea00;
}

.order__message-stats {
  position: relative;
  width: 18px;
  height: 18px;
}
.order__message-stats svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  stroke: #8ea2b5;
}
.order__message-stats:hover svg,
.order__message-stats:focus-visible svg {
  stroke: #008cea;
}

.order__robots {
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  padding: 8px 16px 9px 46px;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #8ea2b5;
}
.order__robots svg {
  position: absolute;
  top: 9px;
  left: 16px;
  stroke: #8ea2b5;
}
.order__robots:hover,
.order__robots:focus-visible {
  color: #008cea;
}
.order__robots:hover svg,
.order__robots:focus-visible svg {
  stroke: #008cea;
}

.order__stats-select {
  position: relative;
}
.order__stats-select select {
  position: relative;
  height: 21px;
  width: 100%;
  padding-left: 8px;
  padding-right: 28px;
  font: inherit;
  text-align: center;
  color: #8ea2b5;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
}
.order__stats-select::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 20px);
  border-radius: 6px;
  background-color: #fff;
}
.order__stats-select::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  pointer-events: none;
  z-index: 3;
}

.order__btn {
  width: 42px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
}
.order__btn svg {
  vertical-align: bottom;
  stroke: #8ea2b5;
}
.order__btn:hover svg {
  stroke: #008cea;
}
.order__btn--goods {
  background-color: #f5f7f8;
  border: 1px solid #ccd9e5;
  margin-left: auto;
}

.order__btn-dropdown {
  margin-left: auto;
}

.order__dropdown-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.order__dropdown-list li {
  margin-bottom: 14px;
}
.order__dropdown-list li:last-child {
  margin-bottom: 0;
}
.order__dropdown-list li span {
  padding-top: 1px;
  line-height: 13px;
  overflow: visible;
  white-space: wrap;
  text-overflow: clip;
}

.order__btn-dropdown__wrapper {
  width: 185px;
}

.order-history__card {
  border-radius: 8px;
  border: 1px solid #ccd9e5;
  background-color: #f5f7f8;
  padding: 20px 16px;
  margin-bottom: 16px;
  border-color: #e0e7ee;
}
.order-history__card.active {
  color: #8ea2b5;
  background-color: #e0e7ee;
}
.order-history__card.active .button {
  color: #8ea2b5;
  background-color: #fff;
}

.order-history__card-title {
  margin: 0;
  font-size: 15px;
}

.order-history__card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.order-history__card-status {
  display: inline-block;
  padding: 2px 12px;
  color: #fff;
  border-radius: 12px;
}
.order-history__card-status.done {
  background-color: #8ea2b5;
}

.order-history-card__box {
  padding-top: 5px;
  padding-bottom: 6px;
}
.order-history-card__box:last-child {
  padding-bottom: 0;
}
.order-history-card__box--line-top {
  padding-top: 14px;
  padding-bottom: 6px;
  border-top: 1px solid #e0e7ee;
}

.order-history__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 13px;
}

.order-history__property {
  width: 126px;
  color: #8ea2b5;
}

.order-history__value a {
  color: #008cea;
}
.order-history__value a:hover {
  opacity: 0.7;
}

.order-history__card-tablet table {
  width: 100%;
  border-collapse: collapse;
}
.order-history__card-tablet table .center {
  text-align: center;
}
.order-history__card-tablet table .right {
  text-align: right;
}
.order-history__card-tablet tr {
  border-bottom: 1px solid #ccd9e5;
}
.order-history__card-tablet tr:last-child {
  border-bottom: none;
}
.order-history__card-tablet th {
  padding-bottom: 16px;
  padding-right: 10px;
  text-align: left;
  color: #8ea2b5;
}
.order-history__card-tablet td {
  padding-bottom: 14px;
  padding-top: 17px;
  padding-right: 10px;
  vertical-align: top;
}

.order-history__link a {
  color: #008cea;
}
.order-history__link a:hover {
  opacity: 0.7;
}

.order-single-overlay {
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding-left: 278px;
  transition: right 0.5s, left 0.5s;
  overflow-y: scroll;
}
.order-single-overlay.close {
  position: absolute;
  left: 100%;
  right: -100%;
  transition: right 0.5s, left 0.5s, padding-left 0.5s;
  padding-left: 80px;
  background-color: transparent;
}
@media (max-width: 1023px) {
  .order-single-overlay {
    padding-left: 90px;
  }
}

.order-single-wrapper.close-order {
  position: relative;
  overflow: hidden;
}
.order-single-wrapper--min .order-single {
  max-width: 853px;
  margin-left: auto;
}
.order-single-wrapper--small .order-single {
  max-width: 620px;
  margin-left: auto;
}

.order-single {
  position: relative;
  background-color: #e0e7ee;
  padding: 20px 16px;
}

.order-single__flag {
  position: absolute;
  top: 21px;
  left: auto;
  right: 100%;
  width: auto;
  height: 28px;
  font-weight: 500;
  line-height: 28px;
  background-color: #f5f7f8;
  border-radius: 16px 0 0 16px;
  padding-left: 28px;
  padding-right: 8px;
}
.order-single__flag--min {
  padding-right: 0;
}

.order-single__close {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  padding: 0;
  background-color: #8ea2b5;
  -webkit-mask-image: url("../images/icons/stack.svg#close");
  mask-image: url("../images/icons/stack.svg#close");
  -webkit-mask-size: 12px;
  mask-size: 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.order-single__close:hover {
  background-color: #008cea;
}

.order-single__header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1199px) {
  .order-single__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.order-single__title-wrap {
  position: relative;
  margin-right: 20px;
  padding-right: 40px;
  padding-top: 3px;
}

.order-single__header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .order-single__header-actions {
    margin-left: 0;
  }
}

.order-single__status {
  display: flex;
  padding-left: 24px;
}
.order-single__status--three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.order-single__status--three-column .order-single__status-item {
  padding: 9px;
}
.order-single__status--three-column .order-single__status-item:last-child {
  margin-right: 0;
  border-radius: 0 4px 4px 0;
}
.order-single__status--three-column
  .order-single__status-item:last-child::after {
  display: none;
}

.order-single__status-item {
  position: relative;
  height: 36px;
  text-align: center;
  line-height: 17px;
  font-weight: 500;
  padding: 9px 36px;
  margin-right: 40px;
  margin-bottom: 20px;
}
.order-single__status-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -23px;
  width: 24px;
  height: 36px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrowtail");
  mask-image: url("../images/icons/stack.svg#arrowtail");
}
.order-single__status-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -23px;
  width: 24px;
  height: 36px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrowhead");
  mask-image: url("../images/icons/stack.svg#arrowhead");
}
.order-single__status-item.done {
  background-color: #0078d6;
  color: rgba(255, 255, 255, 0.7);
}
.order-single__status-item.done::before {
  background-color: #0078d6;
}
.order-single__status-item.done::after {
  background-color: #0078d6;
}
.order-single__status-item.in-progress {
  background-color: #008cea;
  color: #f5f7f8;
}
.order-single__status-item.in-progress::before {
  background-color: #008cea;
}
.order-single__status-item.in-progress::after {
  background-color: #008cea;
}
.order-single__status-item.inactive {
  background-color: #ccd9e5;
  color: #8ea2b5;
}
.order-single__status-item.inactive::before {
  background-color: #ccd9e5;
}
.order-single__status-item.inactive::after {
  background-color: #ccd9e5;
}
.order-single__status-item:first-child::before {
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 4px 0 0 4px;
}
@media (max-width: 1199px) {
  .order-single__status-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.order-single__subtitle {
  margin-top: 12px;
}
.order-single__subtitle p {
  margin: 0;
}
.order-single__subtitle a {
  color: #008cea;
}

.order-tabs__wrap {
  padding: 19px 16px;
}

.order-tabs__controls {
  display: flex;
}

.order-tabs__control {
  height: 36px;
  padding: 9px 24px;
  cursor: pointer;
  color: #8ea2b5;
  font-weight: 500;
  text-align: center;
}

.order-tabs__control.active {
  background-color: #fff;
  color: #000;
  border-radius: 8px 8px 0 0;
}

.order-tabs__content-item {
  display: none;
  background-color: #fff;
  border-radius: 8px;
}
.order-tabs__content-item:first-of-type {
  border-radius: 0 8px 8px 8px;
}

.order-tabs__content-item.active {
  display: block;
}

.order-tabs__goods-heading {
  display: flex;
}
.order-tabs__goods-heading .button {
  min-width: 179px;
}
.order-tabs__goods-heading .button:first-child {
  margin-right: 16px;
}

.order-tariffs {
  max-width: 1060px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .order-tariffs {
    max-width: calc(100vw - 70px);
  }
}

.order-tariffs__header.order-single__header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.order-tariffs__header.order-single__header .order-single__title-wrap {
  padding-right: 0;
}

.order-tariffs__header-button-wrapper {
  align-self: flex-end;
  margin-left: auto;
  display: flex;
  flex-shrink: 0;
  padding: 1px;
  border: 1px solid #e0e7ee;
  border-radius: 8px;
  background-color: #fff;
}

.order-tariffs___header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 86px;
  padding: 5px 6px;
  color: #8ea2b5;
  text-align: center;
  border-radius: 6px;
}
.order-tariffs___header-button span {
  padding: 1px 8px;
}
.order-tariffs___header-button .order-tariffs__sale {
  color: #008cea;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #008cea;
}
.order-tariffs___header-button:hover {
  box-shadow: 0 0 5px rgba(0, 140, 234, 0.3);
}
.order-tariffs___header-button.active {
  color: #fff;
  background-color: #008cea;
}

.order-tariffs__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
}

.order-tariffs__body {
  height: calc(100vh - 114px);
  overflow-y: auto;
}
@media (max-width: 1199px) {
  .order-tariffs__body {
    overflow: auto;
  }
}

.order-tariffs-wrapper .order-single-overlay {
  padding-left: 30px;
}

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

.pagination__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  margin-left: 12px;
  margin-right: 12px;
}

.pagination__item:not(:last-child) {
  border-right: 1px solid #e0e7ee;
}

.pagination__link {
  padding-left: 12px;
  padding-right: 12px;
}
.pagination__link.active {
  color: #8ea2b5;
}

.placing-an-order .placing-an-order__tariff-card {
  width: 100%;
}
.placing-an-order .placing-an-order__hint {
  margin-bottom: 12px;
}
.placing-an-order.last .placing-an-order__button-fixed {
  display: none;
}
.placing-an-order.last .placing-an-order__content {
  height: calc(100vh - 151px);
}
.placing-an-order .individual {
  display: none;
}
.placing-an-order.ip-selected-individual-on .individual {
  display: block;
}
.placing-an-order.ip-selected-individual-on .legal-entity {
  display: none;
}

.placing-an-order__coupon-form {
  padding: 16px 0;
}

.placing-an-order__body {
  position: relative;
}

.placing-an-order__content {
  height: calc(100vh - 228px);
  padding-bottom: 16px;
  overflow-y: auto;
}

.placing-an-order__button-fixed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: auto;
  position: sticky;
  bottom: 0;
  padding: 20px;
  margin-left: -16px;
  margin-right: -16px;
  background-color: #fff;
  border-top: 1px solid #ccd9e5;
  z-index: 6;
}
.placing-an-order__button-fixed button {
  padding-left: 36px;
  padding-right: 36px;
}
.placing-an-order__button-fixed--one-button:has([disabled]) {
  display: none;
}

.placing-an-order__step {
  display: none;
}
.placing-an-order__step.active-step {
  display: block;
}
.placing-an-order__step .docs__list-property {
  width: 150px;
}
.placing-an-order__step .docs__card-list li {
  margin-bottom: 16px;
}

.placing-an-order__cards {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 18px;
}
.placing-an-order__cards li {
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  color: #000;
}
.placing-an-order__cards input:checked + label {
  color: #008cea;
}
.placing-an-order__cards input:checked + label .placing-an-order__card-image {
  border-color: #008cea;
}
.placing-an-order__cards label {
  cursor: pointer;
}

.placing-an-order__card-image {
  position: relative;
  width: 89px;
  height: 56px;
  margin-bottom: 9px;
  border-radius: 6px;
  border: 1px solid #e0e7ee;
}
.placing-an-order__card-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.placing-an-order__success-image {
  position: relative;
  align-self: center;
  display: block;
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: #008cea;
}
.placing-an-order__success-image svg {
  position: absolute;
  top: 15px;
  left: 14px;
}

.placing-an-order__order-success {
  display: flex;
  flex-direction: column;
}

.placing-an-order__success-desc {
  margin: 0;
  margin-bottom: 11px;
  text-align: center;
}

.placing-an-order__download-btn {
  margin-top: 18px;
  align-self: center;
  padding-left: 36px;
  padding-right: 36px;
}

.placing-an-order__field-description {
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: 115px;
  color: #8ea2b5;
}

.placing-an-order__total-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
  text-align: left;
}

.placing-an-order__total-prop {
  display: block;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  color: #000;
}

.placing-an-order__total-val {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: #000;
}

.placing-an-order__form-card-row-wrapper {
  margin-top: 12px;
  margin-bottom: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #e0e7ee;
  border-bottom: 1px solid #e0e7ee;
}

.placing-an-order__card-submit {
  display: block;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}

.popover {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
  width: 314px;
  max-width: none;
  padding: 8px;
  border-radius: 8px;
  background: rgba(224, 231, 238, 0.9);
  border: 1px solid #ffffff;
  box-shadow: 0px 8px 12px 0px rgba(142, 162, 181, 0.5);
  transform: translateX(-50%);
  z-index: 10;
}
.popover.open {
  display: flex;
}
.popover::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 50%;
  width: 18px;
  height: 17px;
  background: rgb(224, 231, 238);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-top-left-radius: 4px;
  transform: rotate(52deg) skew(16deg) translateX(-15px);
  z-index: 1;
}
.popover--buy {
  width: 381px;
}
.popover--demo {
  width: 349px;
}
.popover--my {
  width: 328px;
}

.popover__box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  background-color: #fff;
  z-index: 2;
}
.popover__box:last-child {
  margin-bottom: 0;
}

.popover__image {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
}
.popover__image img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e7ee;
}
.popover__image--icon {
  background: #e0e7ee;
}
.popover__image--icon-green {
  background-color: #adea00;
}
.popover__image--icon-blue {
  background-color: #008cea;
}
.popover__image svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.popover__user-name {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.popover__user-character {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.popover__content {
  margin-right: 8px;
  font-size: 13px;
  line-height: 13px;
}
.popover__content p {
  margin: 0;
  font-weight: 500;
}

.popover__box-button {
  margin-left: auto;
}

.popover__button {
  position: relative;
  display: inline-block;
  padding: 10px 12px 10px 38px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  border-radius: 4px;
  background-color: #fff;
}
.popover__button svg {
  position: absolute;
  top: 7px;
  left: 12px;
  width: 18px;
  height: 19px;
  stroke: #8ea2b5;
  transition: stroke 0.3s;
}
.popover__button:hover,
.popover__button:focus-visible {
  color: #008cea;
  background-color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, background-color 0.3s;
}
.popover__button:hover svg,
.popover__button:focus-visible svg {
  stroke: #008cea;
  transition: stroke 0.3s;
}

.popover-btn {
  position: relative;
  padding-right: 40px;
}
.popover-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 16px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: background-color 0.3s;
}
.popover-btn.open::after {
  transform: scale(1, -1);
}
.popover-btn.button--green::after {
  background-color: #000;
}
.popover-btn.button--blue:hover::after {
  background-color: #008cea;
}

.popover__box-subtitle {
  display: block;
  margin-top: 3px;
  color: #8ea2b5;
}

.popover__box-subtitle--blue {
  color: #008cea;
}

.popover__box-title--gray {
  color: #8ea2b5;
}

.warning .popover-btn,
.warning .popover-btn:hover {
  color: #fff;
  background-color: #eb5300;
  border-color: #eb5300;
}
.warning .popover-btn::after,
.warning .popover-btn:hover::after {
  background-color: #fff;
}
.warning .popover-btn::before,
.warning .popover-btn:hover::before {
  background-color: #fff;
  -webkit-mask-image: url("../images/icons/stack.svg#danger");
  mask-image: url("../images/icons/stack.svg#danger");
}
.warning .popover__box:first-child {
  background-color: #ff6711;
}
.warning .popover__box:first-child .popover__image {
  background-color: #fff;
}
.warning .popover__box:first-child .popover__image svg {
  display: none;
}
.warning .popover__box:first-child .popover__image::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("../images/icons/stack.svg#danger");
  mask-image: url("../images/icons/stack.svg#danger");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #ff6711;
}
.warning .popover__box:first-child .popover__box-title {
  color: #fff;
}
.warning .popover__box:first-child .popover__box-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.warning .popover__box:first-child .popover__box-button {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}
.warning .popover__box:first-child .popover__box-button:hover {
  opacity: 0.7;
}

.settings-box {
  display: flex;
}

.settings-box__sidebar {
  width: 196px;
  margin-right: 16px;
  flex-shrink: 0;
}

.settings-box__sidebar-title {
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  color: #8ea2b5;
}

.settings-box__sidebar-search {
  width: 100%;
  margin-bottom: 12px;
}
.settings-box__sidebar-search input {
  width: 100%;
  background-color: #f5f7f8;
}

.settings-box__nav-wrapper {
  height: calc(100vh - 140px);
  overflow-y: auto;
}

.settings-box__tab-nav {
  margin-bottom: 16px;
}

.settings-box__tab-nav-button {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 20px;
  color: #000;
  text-align: left;
  border-radius: 8px;
}
.settings-box__tab-nav-button.is-active:hover,
.settings-box__tab-nav-button.is-active {
  color: #fff;
  background-color: #8ea2b5;
}
.settings-box__tab-nav-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.settings-box__nav-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.settings-box__nav-list li {
  margin-bottom: 7px;
}

.settings-box__nav-link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  color: #8ea2b5;
  text-transform: uppercase;
}

.settings-box__body {
  flex-grow: 1;
}

.settings-box__tab-header {
  padding-bottom: 4px;
}

.settings-box__tab-title {
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.settings-box__tab-subtitle {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
}
.settings-box__tab-subtitle p {
  margin-top: 0;
  margin-bottom: 13px;
}

.settings-box__tab-content-wrapper {
  height: calc(100vh - 140px);
  overflow-y: auto;
}

.settings-box__tab-element {
  width: 100%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 220px;
  flex-shrink: 0;
  color: #fff;
  background-color: #008cea;
}

.sidebar__header {
  position: relative;
  padding: 20px 54px 18px 54px;
}
.sidebar__header::after {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar__burger {
  position: absolute;
  top: 18px;
  left: 21px;
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
}
.sidebar__burger span {
  position: absolute;
  left: 2px;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 999rem;
}
.sidebar__burger span:nth-child(1) {
  top: 6px;
}
.sidebar__burger span:nth-child(2) {
  top: 11px;
}
.sidebar__burger span:nth-child(3) {
  top: 16px;
}
.open-menu .sidebar__burger span:nth-child(1) {
  top: 11px;
  transform: rotate(-45deg);
}
.open-menu .sidebar__burger span:nth-child(2) {
  top: 11px;
  transform: rotate(-45deg);
}
.open-menu .sidebar__burger span:nth-child(3) {
  top: 11px;
  transform: rotate(45deg);
}
.sidebar__burger:hover,
.sidebar__burger:focus-visible {
  opacity: 0.6;
}

.sidebar__setting {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 24px;
  height: 24px;
  opacity: 0.5;
}
.sidebar__setting svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  stroke: #fff;
}
.sidebar__setting:hover,
.sidebar__setting:focus-visible {
  opacity: 0.8;
}

.sidebar__content {
  padding: 0 12px;
}

.sidebar__box {
  padding-top: 11px;
  padding-bottom: 5px;
}
.sidebar__box--main .sidebar__button {
  min-height: 38px;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}
.sidebar__box--main .sidebar__button svg {
  width: 18px;
  height: 18px;
}
.sidebar__box--main .sidebar__number {
  padding: 2px 6px;
}

.sidebar__box-row {
  margin-bottom: 6px;
}

.sidebar__button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding: 7px 8px 7px 42px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: padding-left 0.3s, border-color 0.3s, background-color 0.3s;
}
.sidebar__button svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.sidebar__button:hover,
.sidebar__button:focus-visible,
.sidebar__button--current {
  padding-left: 37px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transition: padding-left 0.3s, border-color 0.3s, background-color 0.3s;
}
.sidebar__button:hover .sidebar__number,
.sidebar__button:focus-visible .sidebar__number,
.sidebar__button--current .sidebar__number {
  opacity: 1;
  transition: opacity 0.3s;
}

.sidebar__number {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin-left: auto;
  padding: 2px 4px;
  font-size: 13px;
  color: #008cea;
  background-color: #fff;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar__footer {
  position: relative;
  margin-top: auto;
  padding: 10px 55px 34px 24px;
}

.sidebar__copyright {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.sidebar__up {
  position: absolute;
  top: 0;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.15);
  transition: transform 0.5s;
}
.sidebar__up::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-image: url("../images/icons/stack.svg#arrow-down-white");
  transform: translate(-50%, -50%) rotate(180deg);
}
.sidebar__up:hover,
.sidebar__up:focus-visible {
  transform: translateY(-5px);
  transition: transform 0.5s;
}

.sidebar__button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.sidebar__button--this {
  padding-left: 43px;
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.social__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.social__list a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #e0e7ee;
}
.social__list a img,
.social__list a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.social__list a:hover,
.social__list a:focus-visible {
  border-color: #008cea;
}

.stats-number {
  display: inline-block;
  padding: 4px 8px;
  line-height: 13px;
  color: #ffffff;
  border-radius: 6px;
}
.stats-number--orange {
  background: #ff6711;
}
.stats-number--green {
  background: #adea00;
}
.stats-number--blue {
  background: #008cea;
}
.stats-number--gray {
  color: #000;
  background: #e0e7ee;
}
.stats-number--grey {
  color: #8ea2b5;
  background: #e0e7ee;
}
.stats-number--right {
  margin-left: 6px;
}
.stats-number--left {
  margin-right: 6px;
}

.table-dropdown__wrapper {
  width: 240px;
  top: -19px;
}

.table-dropdown__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.table-dropdown__list:not(:last-child) {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccd9e5;
}

.table-dropdown__item {
  margin-bottom: 16px;
}
.table-dropdown__item:last-child {
  margin-bottom: 0;
}
.table-dropdown__item--with-sublist {
  position: relative;
  padding-right: 14px;
}
.table-dropdown__item--with-sublist::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 4px;
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url("../images/icons/stack.svg#arrow-down-gray");
  transform: rotate(-90deg);
}
.table-dropdown__item--with-sublist:hover::after {
  transform: rotate(0);
}
.table-dropdown__item--with-sublist:hover .table-dropdown__sublist {
  display: block;
}

.table-dropdown__sublist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: none;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 30px;
}
.table-dropdown__sublist li {
  margin-bottom: 16px;
}
.table-dropdown__sublist li:last-child {
  margin-bottom: 0;
}

.table-sidebar {
  position: relative;
  padding: 16px 16px 20px;
  width: 282px;
}
.table-sidebar--close {
  width: 44px;
}
.table-sidebar--close .table-sidebar__toggle {
  height: 36px;
}
.table-sidebar--close .table-sidebar__toggle::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.table-sidebar--close .table-sidebar__wrapper {
  display: none;
}

.table-sidebar__title {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.3;
}

.table-sidebar__info-popover {
  display: none;
  position: absolute;
  flex-direction: column;
  top: -13px;
  left: 40px;
  width: 130px;
  padding: 16px 10px 18px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ccd9e5;
  box-shadow: 0px 8px 12px 0px rgba(142, 162, 181, 0.5);
  z-index: 6;
}
.table-sidebar__info-popover::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 14px;
  height: 13px;
  background: #fff;
  border-top: 1px solid #ccd9e5;
  border-left: 1px solid #ccd9e5;
  border-top-left-radius: 3px;
  transform: rotate(-40deg) skew(16deg) translateX(-10px);
  z-index: 1;
}
.table-sidebar__info-popover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -39px;
  width: 40px;
  height: 100%;
}

.table-sidebar__info-box:hover .table-sidebar__info-popover {
  display: flex;
}

.table-sidebar__info {
  text-align: left;
  padding: 0;
  margin-bottom: 16px;
}
.table-sidebar__info:last-child {
  margin-bottom: 0;
}
.table-sidebar__info:hover {
  color: #008cea;
}

.table-sidebar__info-btn {
  display: none;
  position: absolute;
  width: 16px;
  height: 16px;
  padding: 0;
  top: 5px;
  left: 8px;
}

.table-sidebar__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  margin-left: -8px;
  margin-bottom: 16px;
}

.table-sidebar__sublist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: none;
  padding-left: 25px;
}

.table-sidebar__item {
  position: relative;
  padding: 1px 4px 1px 26px;
}
.table-sidebar__item::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/stack.svg#folder");
}
.open .table-sidebar__item::before {
  background-image: url("../images/icons/stack.svg#folder-open");
}
.close .table-sidebar__item::before {
  background-image: url("../images/icons/stack.svg#folder-add");
}

.table-sidebar__item-wrap {
  position: relative;
  display: inline-block;
  padding: 4px 8px 4px 36px;
  border-radius: 8px;
}
.table-sidebar__item-wrap::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: none;
  top: 7px;
  left: 17px;
  width: 12px;
  height: 12px;
  background-image: url("../images/icons/stack.svg#arrow-down-gray");
}
.table-sidebar__item-wrap.open::before {
  display: block;
  transform: rotate(-180deg);
}
.table-sidebar__item-wrap.close::before {
  display: block;
  transform: rotate(-90deg);
}
.table-sidebar__item-wrap.open + .table-sidebar__sublist {
  display: block;
}
.table-sidebar__item-wrap:hover {
  background: #e0e7ee;
}
.table-sidebar__item-wrap:hover .table-sidebar__info-btn {
  display: block;
}

.table-sidebar__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.table-sidebar__create {
  margin-top: auto;
}

.table-sidebar__toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  background-color: #e0e7ee;
  border-radius: 6px;
  transform: translateY(-50%);
}
.table-sidebar__toggle::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-image: url("../images/icons/stack.svg#arrow-down-gray");
  transform: translate(-50%, -50%) rotate(90deg);
}

.table-sidebar__list-wrapper {
  padding-right: 14px;
}

.table-with-sidebar {
  background-color: #fff;
  border-radius: 7px;
}

.table-with-sidebar__wrapper {
  display: flex;
}

.table-with-sidebar__sidebar {
  flex-shrink: 0;
  border-right: 1px solid #ccd9e5;
}

.table {
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
}

@media (max-width: 1425px) {
  .table__wrapper {
    overflow-x: scroll;
    width: calc(100vw - 280px);
    margin-left: 8px;
  }
  .table__wrapper--single {
    width: auto;
    margin-right: 8px;
  }
  .table__wrapper--sidebar {
    width: calc(100vw - 550px);
    margin-left: 0;
  }
}

@media (max-width: 1425px) {
  .table-sidebar--close + .table .table__wrapper {
    width: calc(100vw - 308px);
  }
}

@media (max-width: 1425px) {
  .table__content {
    width: 1175px;
  }
}

.table__button {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.table__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #ccd9e5;
}
@media (max-width: 1199px) {
  .table__footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .table__pagination {
    order: -1;
    width: 100%;
    margin-bottom: 12px;
  }
}

.table__stats {
  width: 30%;
  display: flex;
  align-items: center;
}
.table__stats p {
  margin: 0;
}
.table__stats p:not(:last-child) {
  margin-right: 52px;
}
.table__stats span {
  padding-left: 10px;
}
@media (max-width: 1199px) {
  .table__stats {
    width: 50%;
  }
}

.table__page {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .table__page {
    width: 50%;
  }
}

.table__page-inner {
  display: flex;
  align-items: center;
  padding: 1px;
  padding-left: 15px;
  border: 1px solid #e0e7ee;
  border-radius: 8px;
}

.table__page-select {
  position: relative;
  margin-left: 16px;
}
.table__page-select select {
  height: 32px;
  padding-left: 12px;
  padding-right: 32px;
  font: inherit;
  border-radius: 6px;
  background: #e0e7ee;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.table__page-select::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 12px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url("../images/icons/stack.svg#arrow-down");
  mask-image: url("../images/icons/stack.svg#arrow-down");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #8ea2b5;
  pointer-events: none;
}

.table__head {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 8px;
  padding-right: 8px;
  color: #8ea2b5;
  line-height: 18px;
  border-bottom: 1px solid #ccd9e5;
}
.table__head--order-single {
  border-top: 1px solid #ccd9e5;
}

.table__row {
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 15px;
  padding-left: 8px;
  padding-right: 8px;
  line-height: 18px;
  border-bottom: 1px solid #ccd9e5;
}
.table__row--input {
  padding-top: 12px;
  padding-bottom: 12px;
}
.table__wrapper--history .table__row {
  padding-top: 14px;
  padding-bottom: 13px;
}

.table__checkbox {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 30px;
  padding-left: 22px;
  padding-right: 8px;
  line-height: 18px;
  cursor: pointer;
}
.table__checkbox span {
  display: inline-block;
}
.table__checkbox span::before {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid #8ea2b5;
  background-color: #fff;
  border-radius: 4px;
}
.table__checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  display: none;
  left: 11px;
  top: 6px;
  width: 8px;
  height: 7px;
  background-image: url("../images/icons/stack.svg#tick");
  background-size: contain;
}
.table__checkbox input:checked + span::before {
  background-color: #008cea;
  border-color: #008cea;
}
.table__checkbox input:checked + span::after {
  display: block;
}
.table__checkbox input:focus-visible + span::before {
  box-shadow: 0 0 5px rgba(0, 140, 234, 0.5);
}
.table__checkbox:has(:disabled) {
  opacity: 0.4;
}

.table__setting {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 18px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__setting span {
  position: absolute;
  left: 8px;
  top: 0;
}

.table__id {
  width: 54px;
  flex-shrink: 0;
  padding-left: 8px;
  padding-right: 8px;
}

.table__counteragent {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 131px;
  padding-left: 8px;
  padding-right: 8px;
  width: 11.1%;
  line-height: 18px;
  word-break: break-word;
}
.table__counteragent img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.table__number {
  flex-shrink: 0;
  width: 71px;
  padding-left: 8px;
  padding-right: 8px;
}

.table__date {
  flex-shrink: 0;
  width: 163px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__date span:not(:first-child) {
  padding-left: 5px;
}
.table__date--order-single {
  width: 190px;
}

.table__status {
  flex-shrink: 0;
  width: 113px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__row .table__status span {
  display: inline-block;
  min-width: 83px;
  padding: 1px 4px;
  line-height: 17px;
  text-align: center;
  border-radius: 12px;
}
.table__status--work span {
  color: #008cea;
  border: 1px solid #008cea;
}
.table__status--pause span {
  border: 1px solid #8ea2b5;
}
.table__status--done span {
  color: #8ea2b5;
  border: 1px solid #8ea2b5;
}

.table__release {
  flex-shrink: 0;
  width: 163px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__release span:not(:first-child) {
  padding-left: 5px;
}

.table__priority {
  flex-shrink: 0;
  width: 110px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__row .table__priority span {
  display: inline-block;
  min-width: 80px;
  padding: 2px 4px;
  line-height: 17px;
  text-align: center;
  border-radius: 12px;
}
.table__priority--high span {
  background: #ffb7ae;
}
.table__priority--middle span {
  background: #ffe89a;
}
.table__priority--low span {
  background: #e0e7ee;
}

.table__responsible {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 133px;
  width: 11.3%;
  padding-left: 8px;
  padding-right: 8px;
  word-break: break-word;
}
.table__responsible img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.table__message {
  min-width: 140px;
  padding-left: 8px;
  padding-right: 8px;
}

.table__author {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 170px;
  padding-left: 8px;
  padding-right: 8px;
  width: 11.1%;
  line-height: 18px;
  word-break: break-word;
}
.table__author img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.table__event-type {
  flex: 1;
  width: 240px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__row .table__event-type span {
  display: inline-block;
  min-width: 80px;
  padding: 2px 7px;
  line-height: 17px;
  text-align: center;
  border-radius: 12px;
  background: #e0e7ee;
}

.table__description {
  flex: 2;
  min-width: 140px;
  padding-left: 8px;
  padding-right: 8px;
}
.table__description span a {
  color: #008cea;
}

.table__goods {
  display: flex;
  align-items: center;
  flex: 1;
}
.table__goods span {
  display: inline-block;
  padding: 0 12px;
}
.table__goods .input {
  width: 100%;
  margin-right: 12px;
}

.table__price {
  width: 164px;
  padding-left: 12px;
  padding-right: 12px;
}
.table__price .input {
  width: 100%;
}

.table__amount {
  width: 114px;
  padding-left: 12px;
  padding-right: 12px;
}
.table__amount .input {
  width: 100%;
}

.table__sum {
  width: 164px;
  padding-left: 12px;
  padding-right: 12px;
}
.table__sum .input {
  width: 100%;
}

.table__summary {
  max-width: 320px;
  margin-left: auto;
}

.table__summary-row {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 11px;
}
.table__summary-row:last-of-type {
  margin-bottom: 0;
}
.table__summary-row span {
  color: #8ea2b5;
  font-weight: 500;
}
.table__summary-row b {
  font-weight: 500;
}

.table__total {
  border-top: 1px solid #ccd9e5;
}

.table__total-row {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-left: auto;
}

.table__name {
  display: flex;
  align-items: center;
  width: 210px;
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}
.table__name img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.table__name > img {
  margin-right: 12px;
}

.table__name-image {
  display: block;
  width: 36px;
  height: 36px;
  background: #e0e7ee;
  border-radius: 8px;
  margin-right: 12px;
}

.table__article {
  width: 75px;
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.table__texture {
  width: 75px;
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.table__color {
  width: 50px;
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.table__brand {
  width: 60px;
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.table__purchase-price {
  width: 120px;
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}

span.table__goods-image {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 0;
  background: #e0e7ee;
  border-radius: 8px;
}

.tariff-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 24px;
  z-index: 2;
}
.tariff-box:last-child {
  margin-bottom: 0;
}
.tariff-box--top {
  align-self: flex-start;
}

.tariff-box__image {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
}
.tariff-box__image img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e7ee;
}
.tariff-box__image--icon {
  background: #e0e7ee;
}
.tariff-box__image--icon-green {
  background-color: #adea00;
}
.tariff-box__image--icon-blue {
  background-color: #008cea;
}
.tariff-box__image--border {
  border: 1px solid #e0e7ee;
}
.tariff-box__image svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tariff-box__title {
  margin: 0;
}

.tariff-box__subtitle {
  display: block;
  margin-top: 3px;
  color: #8ea2b5;
}

.tariff-box__subtitle--blue {
  color: #008cea;
}

.tariff-card {
  width: 240px;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #008cea;
  background-color: #fff;
}
.tariff-card--green {
  border-color: #adea00;
}
.tariff-card--order .tariff-card__header {
  padding-bottom: 11px;
}

.tariff-card__header {
  padding-bottom: 16px;
  text-align: center;
  border-bottom: 1px solid #e0e7ee;
}

.tariff-card__title {
  position: relative;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.tariff-card__title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 100%;
  height: 1px;
  background-color: #e0e7ee;
}
.tariff-card__title span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #fff;
}

.tariff-card__number-users {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
}
.tariff-card__number-users span {
  display: block;
  font-size: 22px;
}

.tariff-card__old-price {
  display: block;
  min-height: 17px;
  font-size: 13px;
  line-height: 1.2;
  color: #8ea2b5;
}

.tariff-card__price-inner {
  font-size: 22px;
  line-height: 1.2;
  color: #008cea;
}
@media (max-width: 1023px) {
  .tariff-card__price-inner {
    font-size: 18px;
  }
}

.tariff-card__sale {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 10px;
  font-size: 13px;
  line-height: 17px;
  color: #5d9a00;
  background-color: #adea00;
  border-radius: 6px;
}

.tariff-card__price-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tariff-card__price-wrapper {
  padding-bottom: 14px;
}
.tariff-card__price-wrapper > p {
  margin-top: 3px;
  margin-bottom: 0;
}

.tariff-card__buy {
  width: 176px;
}

.tariff-card__volume {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1;
}

.tariff-card__content {
  padding-top: 7px;
}
@media (max-width: 1023px) {
  .tariff-card__content {
    position: relative;
    height: 265px;
    overflow-y: auto;
  }
}

.tariff-card__box-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1;
}

.tariff-card__box {
  margin-top: 13px;
}
.tariff-card__box ul {
  margin: 0;
  padding-left: 20px;
  list-style-position: outside;
}
.tariff-card__box li {
  font-size: 13px;
  line-height: 1.2;
}

.tariff-card__wrap-users {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.tariff-card__wrap-users .tariff-card__number-users {
  margin-right: 5px;
}
.tariff-card__wrap-users .tariff-card__number-users span {
  display: inline-block;
}
.tariff-card__wrap-users .tariff-card__volume {
  font-size: 15px;
}
.tariff-card__wrap-users .tariff-card__volume span {
  font-size: 22px;
}
.tariff-card__wrap-users p {
  margin: 0;
}

.tariff-card__price-sale {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tariff-card__sale-wrap {
  display: flex;
  gap: 2px;
  padding: 1px;
  border: 1px solid #e0e7ee;
  border-radius: 8px;
}

.tariff-card__sale-item {
  display: flex;
  align-items: center;
  padding: 6px;
  font-weight: 500;
  font-size: 13px;
  color: #8ea2b5;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.tariff-card__sale-item .tariff-card__percentage {
  display: none;
  padding: 2px 8px;
  color: #008cea;
  background-color: #fff;
  border-radius: 6px;
}
.tariff-card__sale-item .tariff-card__sale-period {
  padding: 0 8px;
}
input:checked + .tariff-card__sale-item {
  color: #fff;
  background: #008cea;
}
input:checked + .tariff-card__sale-item .tariff-card__percentage {
  display: inline-block;
}

.tariff-card__price-wrap {
  padding-left: 20px;
  padding-right: 22px;
  text-align: left;
}

.tariff-card__total-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
}
.tariff-card__total-wrapper a {
  color: #008cea;
}
.tariff-card__total-wrapper p {
  margin: 0;
}
.tariff-card__total-wrapper > p {
  max-width: 290px;
  color: #8ea2b5;
}

.tariff-card__total {
  padding-left: 20px;
}
.tariff-card__total p {
  color: #000;
}
.tariff-card__total .tariff-card__total-price {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: #000;
}
.tariff-card__total .tariff-card__total-saving {
  color: #008cea;
}

.tariff-stats__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tariff-stats__item-color {
  position: relative;
  padding-left: 28px;
  margin-right: 8px;
}
.tariff-stats__item-color::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.tariff-stats__item-color--green::before {
  background-color: #adea00;
}
.tariff-stats__item-color--gray::before {
  background-color: #e0e7ee;
}
.tariff-stats__item-color--white::before {
  border: 1px solid #e0e7ee;
  background-color: #fff;
}

.tariff-stats__subtext {
  color: #8ea2b5;
}

.tariff-stats__progress-bar {
  display: flex;
  width: 574px;
  max-width: 100%;
  height: 32px;
  padding: 1px;
  margin-right: 8px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #e0e7ee;
}
@media (max-width: 1023px) {
  .tariff-stats__progress-bar {
    width: 100%;
    margin-right: 0;
  }
}

.tariff-stats__green {
  width: 69px;
  height: 28px;
  margin-right: 1px;
  border-radius: 6px 0 0 6px;
  background-color: #adea00;
}

.tariff-stats__gray {
  width: 386px;
  height: 28px;
  border-radius: 0 6px 6px 0;
  background-color: #e0e7ee;
}

.tariff-stats__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}
.tariff-stats__row:last-child {
  margin-bottom: 0;
}
.tariff-stats__row--top {
  align-self: flex-start;
  margin-bottom: 0;
}
.tariff-stats__row--center {
  justify-content: center;
  gap: 24px;
  padding-bottom: 8px;
}

.tariff-stats__text p {
  margin: 0;
}
.tariff-stats__text a {
  color: #008cea;
}
.tariff-stats__text a:hover {
  opacity: 0.7;
}

.tariff-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 24px;
}
.tariff-stats__grid .tariff-box {
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  margin-right: 0;
  border-right: 1px solid #e0e7ee;
}
.tariff-stats__grid .tariff-box:last-child {
  border: none;
}
@media (max-width: 1199px) {
  .tariff-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tariff-stats__grid .tariff-box:nth-child(2n) {
    border: none;
  }
}

.user-box__wrapper {
  position: relative;
}

.user-box__indicator {
  position: absolute;
  top: -3px;
  right: 2px;
  padding-left: 16px;
  color: #8ea2b5;
}
.user-box__indicator::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.user-box__indicator.on::before {
  background-color: #adea00;
}
.user-box__indicator.off::before {
  background-color: red;
}

.user-box__image {
  flex-shrink: 0;
  margin-right: 65px;
}
.user-box__image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  vertical-align: bottom;
}

.user-box__content {
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.user-box__buttons {
  width: 167px;
}
.user-box__buttons .button {
  width: 100%;
}

.user-box__file {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
}
.user-box__file input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  -webkit-appearance: none;
  appearance: none;
  opacity: 0;
}

.user-box__position {
  position: relative;
  padding-top: 2px;
  padding-left: 31px;
  margin-bottom: 18px;
  min-height: 24px;
}

.user-box__position-icon {
  position: absolute;
  left: 0;
  top: 0;
}

.user-box__settings-image {
  padding-top: 22px;
}

.welcome {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-grow: 1;
  padding: 16px;
  background-color: #fff;
}
.welcome .form__row {
  margin-bottom: 16px;
}
.welcome .welcome__button {
  width: 100%;
  margin-top: 6px;
}
.welcome .welcome__subtitle {
  color: #8ea2b5;
}
.welcome .welcome__legend {
  margin-top: 40px;
  margin-bottom: 16px;
}

.welcome__background {
  border-radius: 16px;
  background-image: url("../images/backgrounds/login-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.welcome__logo {
  text-align: center;
}

.welcome__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 320px;
  height: calc(100vh - 32px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 83px;
  padding-bottom: 24px;
}

.welcome__footer-desc {
  font-size: 15px;
  text-align: center;
  color: #8ea2b5;
}
.welcome__footer-desc a {
  margin-left: 5px;
  color: #008cea;
}
.welcome__footer-desc a:hover {
  opacity: 0.6;
}

.welcome__row-checkbox {
  margin-top: 24px;
}
.welcome__row-checkbox label {
  display: inline-block;
}
.welcome__row-checkbox a {
  text-decoration: underline;
}

/* updated after 2025-08*/

.form__row__error {
  margin-top: -11px;
  margin-bottom: 16px;
  padding-left: 16px;
  padding-right: 10px;
  display: none;
}

.form__row__error p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: red;
}

.info__footer {
  margin: 40px 0 -24px;
  font-size: 10px;
  color: #8ea2b5;
  line-height: 0.7;
  font-weight: 300;
  text-align: center;
}

.info__footer a {
  color: #8ea2b5;
}

.info__footer a:hover {
  color: #008cea;
  transition: color 0.3s;
}

.welcome__container {
  height: auto;
  min-height: calc(100vh - 32px);
}
