@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
}

body,
html {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

button,
a,
input {
  font-family: "Open Sans", sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.default_btn {
  display: flex;
  padding: 11px 16px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  border-radius: 6px;
  background: #3994ec;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  white-space: nowrap;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.default_btn:hover:not(:disabled) {
  background-color: #3182d1;
}
.default_btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.default_btn.type_reversed {
  color: #3994ec;
  background-color: transparent;
  border: 1px solid #3994ec;
}
.default_btn.type_reversed:hover {
  background-color: rgba(49, 129, 209, 0.0980392157);
}
.default_btn.loading {
  position: relative;
  overflow: hidden;
}
.default_btn.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  animation: wave 1.5s linear infinite;
}
.default_table {
  width: 100%;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.default_table tr {
  box-shadow: 0px -1px 0px 0px rgba(67, 41, 163, 0.3) inset;
}
.default_table thead {
  background-color: #f9f9f9;
}
.default_table thead tr th {
  width: 5%;
  text-wrap: nowrap;
  padding: 12px 30px 12px 16px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  text-align: left;
}
.default_table thead tr th.sortable {
  cursor: pointer;
}
.default_table tbody tr td {
  padding: 12px 0 12px 16px;
  text-align: left;
}
.default_table tbody tr td .interaction {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: block;
  border: none;
  outline: none;
  color: #3994ec;
  background-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.default_table tbody tr td .interaction:hover {
  text-decoration-line: underline;
  color: #1371cd;
}
.default_table tbody tr td p {
  color: #403e3f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
}
.default_table tbody tr td p b {
  font-weight: 500;
}
.default_table tbody tr td .edit {
  width: 100%;
  padding-bottom: 3px;
  font-size: 16px;
  font-weight: 400;
  color: #403e3f;
  line-height: 20.3px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(181, 181, 181);
  transition: 0.35s linear;
}
.default_table tbody tr td .edit:focus {
  border-bottom: 1px solid rgb(124, 124, 124);
}
.default_table tbody tr td .edit:disabled {
  opacity: 0.5;
}
.default_table tbody tr td .edit.success {
  color: #176d2b;
  border-bottom: 1px solid #28a745 !important;
}
.default_table tbody tr td .edit.error {
  color: #dc3545;
  border-bottom: 1px solid #dc3545 !important;
}
.default_table tbody tr td .delete {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.default_table tbody tr td .delete:hover {
  opacity: 0.8;
}
.default_table tbody tr td p,
.default_table tbody tr td a.interaction,
.default_table tbody tr td button.interaction {
  text-wrap: nowrap;
}
.default_table tbody tr td .group {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.default_table tbody tr td .status {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.69167;
  color: #3994ec;
}
.default_table__more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  padding: 11px 45px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  outline: none;
  border: none;
  border-radius: 6px;
  background: #545470;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.default_table__more-btn:hover {
  scale: 0.99;
  opacity: 0.9;
}
.default_table.no-border tbody tr {
  box-shadow: none;
}
.default_empty-table {
  width: 100%;
  padding: 20px 0 40px 12px;
  color: gray;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
  text-transform: uppercase;
}

.nav {
  z-index: 40;
  opacity: 1;
  position: relative;
  width: 100%;
  max-width: 268px;
  transition: 0.1s ease-in-out;
}
.nav__container {
  position: fixed;
  width: 100%;
  max-width: 268px;
  min-height: 100vh;
  height: 100%;
  padding: 60px 0 47px 49px;
  display: flex;
  flex-direction: column;
  overflow: scroll;
  background-color: #403e3f;
  scrollbar-width: thin;
  scrollbar-color: #888 #f5f5f5;
}
.nav__container::-webkit-scrollbar {
  width: 3px;
}
.nav__container::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.nav__container::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 6px solid #f5f5f5;
}
.nav__container::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.nav__mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 24px;
  background-color: #403e3f;
}
.nav__mobile-header__close {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
}
.nav__mobile-header__logo {
  width: 35px;
  height: 35px;
}
.nav__logo {
  width: 85%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px 0;
}
.nav__logo__img {
  width: 100%;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav__logo__group {
  display: flex;
  flex-direction: column;
}
.nav__logo__name {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 112.5% */
}
.nav__logo__view {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 112.5% */
}
.nav__data {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  margin-bottom: 15px;
  padding: 15px 0;
  border-top: 1px solid rgba(181, 181, 186, 0.2823529412);
  border-bottom: 1px solid rgba(181, 181, 186, 0.2823529412);
}
.nav__data__item {
  max-width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  list-style: none;
  color: #b5b5ba;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px;
}
.nav__list {
  margin-top: 53px;
  display: flex;
  flex-direction: column;
  list-style-type: none;
}
.nav__item {
  display: flex;
  align-items: center;
  padding: 16px 20px 16px 0;
  color: #b5b5ba;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
  border-bottom: 1px solid #747474;
}
.nav__item.type_active {
  font-weight: 600;
  color: #46b6ed;
  padding-bottom: 13.3px;
}
.nav__item.type_active::before {
  content: "";
  width: 6px;
  height: 24px;
  display: inline-block;
  margin: -1px 12px 0 0;
  background-color: #46b6ed;
}
.nav__item.type_active .nav__item__group {
  cursor: default;
}
.nav__item.type_active .nav__item__group:hover span {
  opacity: 1;
}
.nav__item.type_active .nav__item__group:hover svg {
  opacity: 1;
}
.nav__item.type_active .nav__item__group svg {
  rotate: -180deg;
}
.nav__item.type_active .nav__item__group svg path {
  fill: #46b6ed;
}
.nav__item.type_active .nav__item__group__list {
  margin: 10px 0 0 !important;
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
}
.nav__item:last-child {
  border-bottom: 1px solid transparent;
}
.nav__item a {
  display: flex;
  align-items: center;
}
.nav__item button {
  color: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
.nav__item a:hover,
.nav__item button:hover {
  opacity: 0.8;
}
.nav__item__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.nav__item__group:hover span {
  opacity: 0.9;
}
.nav__item__group:hover svg {
  opacity: 0.9;
  rotate: -180deg;
}
.nav__item__group:hover > .nav__item__group__list {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  margin: 10px 0 0 23px;
}
.nav__item__group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__item__group__list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.nav__item__group__list li {
  display: flex;
  align-items: center;
  list-style: none;
  color: #b5b5ba;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
}
.nav__item__group__list li.type_active {
  color: #46b6ed;
}
.nav__item__group__list li a {
  display: inherit;
  align-items: inherit;
}
.nav__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  padding: 4px 8px;
  background-color: transparent;
  background-color: rgba(57, 149, 236, 0.3921568627);
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 12px;
}
.nav__viewing {
  position: relative;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
}
.nav__viewing__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 14px;
  text-transform: capitalize;
  color: #b5b5ba;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 250% */
  letter-spacing: 0.36px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.nav__viewing__button:hover {
  opacity: 0.9;
}
.nav__viewing__button svg {
  transition: 0.2s ease-in-out;
}
.nav__viewing__item {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20.3px;
  color: white;
}
.nav__viewing.open .nav__viewing__button {
  color: #46b6ed;
}
.nav__viewing.open .nav__viewing__button svg {
  transform: rotate(180deg);
}
.nav__viewing.open .nav__viewing__button svg path {
  fill: #46b6ed;
}
.nav__info {
  margin-top: auto;
  padding-top: 5px;
  border-top: 1px solid #747474;
  display: flex;
  flex-direction: column;
}
.nav__info__container {
  display: flex;
  align-items: center;
}
.nav__info__item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 250% */
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.nav__info__item:hover {
  opacity: 0.8;
}
.nav__info__separator {
  padding: 0 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 250% */
  cursor: default;
}
.nav.type_light .nav__container {
  background-color: #f8f8f8;
}
.nav.type_light .nav__mobile-header {
  background-color: #f8f8f8;
}
.nav.type_light .nav__logo__view, .nav.type_light .nav__logo__name {
  color: #403e3f;
}
.nav.type_light .nav__data {
  border-top: 1px solid rgba(64, 62, 63, 0.4235294118);
  border-bottom: 1px solid rgba(64, 62, 63, 0.4235294118);
}
.nav.type_light .nav__data__item {
  color: #403e3f;
}
.nav.type_light .nav__item {
  color: #403e3f;
}
.nav.type_light .nav__item__group__header svg path {
  fill: #403e3f;
}
.nav.type_light .nav__item__group__list li {
  color: #403e3f;
  font-weight: 400;
}
.nav.type_light .nav__item__group__list li.type_active {
  color: #3994ec;
}
.nav.type_light .nav__item.type_active {
  color: #3994ec;
}
.nav.type_light .nav__item.type_active::before {
  background-color: #3994ec;
}
.nav.type_light .nav__viewing__button {
  color: #403e3f;
}
.nav.type_light .nav__viewing__button svg path {
  fill: #403e3f;
}
.nav.type_light .nav__viewing__item {
  color: #403e3f;
}
.nav.type_light .nav__viewing__item.type_active {
  border: 1px solid #403e3f;
}
.nav.type_light .nav__info__separator {
  color: #403e3f;
}
.nav.type_light .nav__info__item {
  color: #403e3f;
}

.nav-mobile {
  display: none;
  background-color: #403e3f;
  min-width: 60px;
  z-index: 30;
}
.nav-mobile.type_light {
  background-color: #f8f8f8;
}
.nav-mobile.type_light .nav-mobile__btn svg path {
  stroke: #403e3f;
}
.nav-mobile.type_light .nav-mobile__page-title {
  color: #403e3f;
}
.nav-mobile__btn {
  margin-top: 20px;
  width: 35px;
  height: 35px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.nav-mobile__btn svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav-mobile__btn svg path {
  stroke: white;
}
.nav-mobile__logo {
  display: none;
}
.nav-mobile__page-title {
  display: none;
}

.viewing-as {
  position: absolute;
  top: 34px;
  left: -5px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 215px;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 20px;
}
.viewing-as__item {
  list-style-type: none;
  background-color: #595858;
  border: 1px solid rgba(67, 41, 163, 0.2);
  transition: 0.25s linear;
}
.viewing-as__item:first-child {
  border-radius: 8px 8px 0 0;
}
.viewing-as__item:last-child {
  border-radius: 0 0 8px 8px;
}
.viewing-as__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
}
.viewing-as__item a span {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  color: white;
}
.viewing-as__item .svg-checked {
  display: none;
}
.viewing-as__item .svg-non-checked {
  display: block;
}
.viewing-as__item:hover {
  background-color: #5f5f5f;
}
.viewing-as__item.active .svg-checked {
  display: block;
}
.viewing-as__item.active .svg-non-checked {
  display: none;
}
.viewing-as.light .viewing-as__item {
  background-color: #FFFFFF;
  border: 1px solid rgba(67, 41, 163, 0.2);
}
.viewing-as.light .viewing-as__item a span {
  color: #545470;
}
.viewing-as.light .viewing-as__item:hover {
  background-color: #f1f1f1;
}

.page {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 70px 54px 50px 54px;
}
.page__title {
  display: flex;
  align-items: center;
  gap: 0 16px;
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.page__title .small {
  font-size: 25px;
}
.page__small-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 112.778% */
}
.page__small-info {
  margin: 15px 0 0 3px;
  color: #403e3f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
}
.page__back {
  margin-left: 3px;
  padding-bottom: 14px;
  color: #3994ec;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
}
.page__head-container {
  padding-bottom: 42px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.page__head-container__actions {
  margin-top: -10px;
  display: flex;
  align-items: center;
  gap: 0 13px;
}
.page__head-container .page__actions {
  margin: 0;
}
.page__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 8px;
  margin: 35px 0 18px;
}
.page__actions .default_btn {
  padding: 8px 11px;
}
.page__info-title {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.page__info-title__btn {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.page__info-title__btn div {
  position: absolute;
  top: 25px;
  left: 0;
  opacity: 0;
  z-index: -1;
  width: 250px;
  padding: 10px 10px 10px 20px;
  background-color: #403e3f;
  border-radius: 15px;
  box-shadow: 0 0 15px 5px rgba(167, 167, 167, 0.56);
  transition: 0.15s linear;
}
.page__info-title__btn div p {
  color: white;
  text-align: left;
}
.page__info-title__btn img:hover ~ div {
  opacity: 1;
  z-index: 10;
}
.page__help-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  background-color: white;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s linear;
}
.page__help-btn:hover {
  scale: 1.05;
  padding-right: 15px;
}
.page__description {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: black;
  text-align: left;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page__loader.loading {
  animation: spin 1s linear infinite;
}

.choices {
  margin-bottom: 0 !important;
}
.choices__inner {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #9a9a9b !important;
}
.choices__input {
  font-size: 14px !important;
  background-color: transparent !important;
}
.choices__list--multiple .choices__item {
  display: inline-flex !important;
  background-color: #46b6ed !important;
  border: none !important;
}
.choices__list--multiple .choices__button {
  margin: 1px -1px 0 8px !important;
  border-left: 1px solid #335861 !important;
}

.modal {
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7333333333);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity background-color 0.1s linear;
}
.modal.visible {
  z-index: 110;
  opacity: 1;
}

.base-modal {
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7333333333);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.1s linear, z-index 0s linear 0.1s;
}
.base-modal.visible {
  z-index: 100;
  opacity: 1;
  transition: opacity 0.1s linear, z-index 0s linear;
}
.base-modal.animated .base-modal__container {
  scale: 0.96;
}
.base-modal.animated.visible .base-modal__container {
  scale: 1;
}
.base-modal__close {
  position: absolute;
  top: -23px;
  right: -23px;
  width: -moz-fit-content;
  width: fit-content;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.base-modal__close:hover {
  opacity: 0.9;
}
.base-modal__head {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.base-modal__head__title {
  color: #545470;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 92.273% */
}
.base-modal__head__subtitle {
  color: #545470;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.base-modal__head__subtitle a {
  color: #3994ec;
}
.base-modal__container {
  position: relative;
  width: 85%;
  max-width: 400px;
  min-height: 250px;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 90%;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.08), 0px 0px 6px 2px rgba(53, 53, 70, 0.08);
  padding: 25px 15px 25px 25px;
  transition: 0.1s ease-in-out;
}
.base-modal__info {
  margin: 25px 0;
  font-size: 14px;
  color: #403e3f;
  line-height: 1.2;
}
.base-modal__info b {
  font-weight: 500;
}
.base-modal.view-as .list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(128, 128, 128, 0.175);
  list-style: none;
}
.base-modal.view-as .list__item {
  padding: 4px 6px;
  border: 1px solid rgba(128, 128, 128, 0.284);
  border-radius: 10px;
  font-size: 14px;
  color: rgba(64, 62, 63, 0.7411764706);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.base-modal.view-as .list__item.active {
  border: 1px solid #46b6ed;
  color: #46b6ed;
  box-shadow: 0 0 5px 2px rgba(40, 59, 61, 0.128);
  border-radius: 5px;
  pointer-events: none;
}
.base-modal.view-as .list__item:hover:not(.active) {
  scale: 0.99;
  opacity: 0.9;
}
.base-modal.crop .base-modal__container {
  max-width: 400px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 25px;
}
.base-modal.crop .base-modal__head__title {
  text-align: center;
}
.base-modal.crop .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.base-modal.crop .container__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin-top: 20px;
}
.base-modal.crop .container__title {
  text-align: center;
  color: #403e3f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.3px; /* 92.273% */
}
.base-modal.crop .container__image {
  width: 100%;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 20px;
}
.base-modal.crop .container__file-name {
  width: 90%;
  margin-top: 7px;
  text-align: center;
  color: gray;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.3px;
  word-break: break-all;
}
.base-modal.crop .container__btn {
  display: flex;
  padding: 8px 36px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  outline: none;
  border: none;
  border-radius: 6px;
  background: #545470;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.base-modal.crop .container__btn:hover {
  opacity: 0.8;
}
.base-modal.crop .cropper-container, .base-modal.crop .cropper-crop-box {
  max-height: 50vh;
}
.base-modal.email-content .ck-editor {
  border: 1px solid #DEE2E6;
  border-radius: 5px;
}
.base-modal.email-content .ck-editor__main {
  font-family: "Open Sans";
  font-weight: 300;
  font-size: 15px;
}
.base-modal.email-content .ck-editor__editable_inline {
  border: none;
}
.base-modal.email-content .ck-content {
  height: 30vh;
  padding: 13px 16px 0;
  overflow: scroll;
  scrollbar-width: thin;
  scrollbar-color: #888 #f5f5f5;
}
.base-modal.email-content .ck-content::-webkit-scrollbar {
  width: 3px;
}
.base-modal.email-content .ck-content::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.base-modal.email-content .ck-content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 6px solid #f5f5f5;
}
.base-modal.email-content .ck-content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.base-modal.email-content .ck-content p {
  max-width: 465px;
  margin: 0;
  padding-bottom: 15px;
  font-size: 16px;
  line-height: 26px;
  word-wrap: break-word;
}
.base-modal.email-content .ck-content li {
  margin-left: 15px;
}
.base-modal.email-content .ck-toolbar {
  background-color: transparent;
  border: none;
}
.base-modal.email-content .ck-toolbar__items {
  flex-wrap: wrap !important;
}
.base-modal.email-content .ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused {
  border: none;
  box-shadow: none;
}
.base-modal.email-content .base-modal__container {
  max-width: 600px;
  padding: 36px 54px 40px 47px;
}
.base-modal.email-content .base-modal__close {
  top: 12px;
  right: 12px;
}
.base-modal.email-content .form {
  max-width: 100%;
  margin-top: 36px;
}
.base-modal.email-content .form__actions {
  height: 20%;
  gap: 0 3px;
  margin: 27px 0 0 auto;
  justify-content: end;
}
.base-modal.email-content .form__other-btn, .base-modal.email-content .form__submit-btn {
  width: 100%;
  max-width: 183px;
}
.base-modal.verify .base-modal__container {
  max-width: 360px;
  padding: 25px;
}
.base-modal.verify .container__title {
  font-size: 18px;
  font-weight: 500;
  color: #403e3f;
}
.base-modal.verify .container__subtitle {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #403e3f;
}
.base-modal.verify .container .form__personal {
  gap: 20px 0;
  margin-top: 30px;
}
.base-modal.verify .container .form__actions {
  margin-top: 40px;
}
.base-modal.verify .container .form__error-container {
  margin: 15px 0 5px;
}
.base-modal.verify .container .form__error-container img {
  width: 15px;
  height: 15px;
}
.base-modal.verify .container .form__submit-btn {
  width: 100%;
  max-width: 100%;
}
.base-modal.verify .container__resend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #403e3f;
  text-align: center;
}
.base-modal.verify .container__resend button {
  background-color: transparent;
  border: none;
  outline: none;
  color: #3994ec;
  cursor: pointer;
  transition: 0.3s linear;
}
.base-modal.verify .container__resend button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.base-modal.verify .container__resend-text {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 400;
  color: #403e3f;
  text-align: center;
  opacity: 0.7;
  cursor: default;
}
.base-modal.toaster .base-modal__head__title {
  font-size: 20px;
}
.base-modal.toaster .base-modal__container {
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.base-modal.license .base-modal__container {
  max-width: 614px;
  padding: 24px 37px 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #B5B5BA #f5f5f5;
}
.base-modal.license .base-modal__container::-webkit-scrollbar {
  width: 10px;
  height: 75px;
}
.base-modal.license .base-modal__container::-webkit-scrollbar-thumb {
  background-color: #B5B5BA;
  border-radius: 5px;
}
.base-modal.license .base-modal__container::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.base-modal.license .base-modal__head {
  gap: 14px 0;
}
.base-modal.license .base-modal__head__title {
  text-align: center;
}
.base-modal.license .base-modal__close {
  top: 24px;
  right: 24px;
}
.base-modal.license .logo {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.base-modal.license .logo__img {
  width: 35px;
  height: 35px;
}
.base-modal.license .logo__text {
  color: #403e3f;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
}
.base-modal.license .container {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
}
.base-modal.license .container__info {
  color: #403e3f;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
}
.base-modal.license .container__main {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: 100%;
  height: min(260px, 34vh);
  margin-top: 23px;
  padding: 23px 29px 20px 24px;
  overflow-y: scroll;
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.0784313725), 0px 0px 6px 2px rgba(53, 53, 70, 0.0784313725);
  scrollbar-width: thin;
  scrollbar-color: #B5B5BA #f5f5f5;
}
.base-modal.license .container__main::-webkit-scrollbar {
  width: 10px;
  height: 75px;
}
.base-modal.license .container__main::-webkit-scrollbar-thumb {
  background-color: #B5B5BA;
  border-radius: 5px;
}
.base-modal.license .container__main::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.base-modal.license .container__main__title {
  color: #000;
  font-size: 17px;
  font-weight: 600;
  line-height: 20.3px;
  text-align: left;
}
.base-modal.license .container__main__block {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.base-modal.license .container__main__block__title {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  text-align: left;
}
.base-modal.license .container__main__block__text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
}
.base-modal.license .container__main__block__text b {
  font-weight: 500;
}
.base-modal.license .container__main__block__text a {
  color: #3994ec;
  text-decoration: underline;
}
.base-modal.license .container__main__block__text.uppercase {
  text-transform: uppercase;
}
.base-modal.license .container__main__block__list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.base-modal.license .container__main__block__list li {
  margin-left: 15px;
  color: rgba(0, 0, 0, 0.801);
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
}
.base-modal.license .container__print-btn {
  margin: 12px 0 0 auto;
  color: #3994ec;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.2s linear;
}
.base-modal.license .container__print-btn:hover {
  opacity: 0.8;
}
.base-modal.license .container .agreement {
  display: flex;
  flex-direction: column;
  gap: 18px 5px;
  margin-top: 21px;
}
.base-modal.license .container .agreement__item {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.base-modal.license .container .agreement__item__checkbox {
  transform: scale(1.2);
}
.base-modal.license .container .agreement__item__text {
  color: #262632;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.base-modal.license .container .contact {
  display: none;
  width: 100%;
  max-width: 534px;
  margin: 14px auto;
  padding: 7px 13px 9px;
  color: #F00;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 169.167% */
  background: #FFE3E3;
  border: 1px solid #F00;
  border-radius: 8px;
}
.base-modal.license .container .contact a {
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.base-modal.license .container .contact.visible {
  display: block;
}
.base-modal.license .container .actions {
  display: flex;
  align-items: center;
  gap: 0 4px;
  margin: 11px 0 0 auto;
}
.base-modal.license .container .actions__cancel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 127.455px;
  height: 44px;
  padding: 11px 8px;
  color: #3994ec;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.base-modal.license .container .actions__cancel-btn:hover:not(:disabled) {
  opacity: 0.8;
}
.base-modal.license .container .actions__cancel-btn:disabled {
  opacity: 0.6;
}
.base-modal.license .container .actions__install-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 127.455px;
  max-width: 100%;
  height: 44px;
  padding: 11px 16px;
  color: #FFF;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
  background: #3994ec;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.base-modal.license .container .actions__install-btn:hover:not(:disabled) {
  opacity: 0.9;
}
.base-modal.license .container .actions__install-btn:disabled {
  cursor: default;
  pointer-events: none;
  background-color: #b5b5ba;
}
.base-modal.device .base-modal__close {
  top: 15px;
  right: 15px;
}
.base-modal.device .base-modal__container {
  max-width: min(600px, 80%);
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #B5B5BA #f5f5f5;
}
.base-modal.device .base-modal__container::-webkit-scrollbar {
  width: 10px;
  height: 75px;
}
.base-modal.device .base-modal__container::-webkit-scrollbar-thumb {
  background-color: #B5B5BA;
  border-radius: 5px;
}
.base-modal.device .base-modal__container::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.base-modal.device .base-modal__content {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 20px;
}
.base-modal.device .info-item__title {
  font-size: 15px;
  color: #403e3f;
  font-weight: 600;
}
.base-modal.device .info-item__nested {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin: 8px 0 0 15px;
}
.base-modal.device .info-item__text {
  font-size: 15px;
  color: #403e3f;
  font-weight: 400;
}

.help {
  z-index: 50;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  justify-content: end;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.4862745098);
}
.help.visible {
  display: flex;
  pointer-events: all;
}
.help.visible .help__container {
  animation: helpAnimate 0.3s ease 0s forwards;
}
.help.visible .help-btn {
  display: none;
}
.help__container {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: min(80%, 600px);
  max-height: min(80vh, 650px);
  margin: min(15vh, 130px) auto 0;
  overflow: hidden;
  opacity: 0;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.0784313725);
  transition: 0.4s ease;
}
@media (max-height: 600px) {
  .help__container {
    margin: auto;
  }
}
@keyframes helpAnimate {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.help__close {
  width: 24px;
  height: 24px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.help__close:hover {
  opacity: 0.9;
}
.help__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  background-color: #403e3f;
  padding: 18px 22px;
}
.help__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
  color: white;
}
.help__body {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
  overflow-y: auto;
  max-height: calc(80vh - 150px);
  padding: 21px 28px 35px 22px;
  will-change: opacity, transform;
  backface-visibility: hidden;
  scrollbar-width: thin;
  scrollbar-color: #888 #f5f5f5;
}
.help__body::-webkit-scrollbar {
  width: 3px;
}
.help__body::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.help__body::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 6px solid #f5f5f5;
}
.help__body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.help__group {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
}
.help__small-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: black;
}
.help__small-title.bold {
  font-weight: 500;
}
.help__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  text-align: left;
  color: black;
}
.help__text a {
  color: inherit;
  text-decoration: underline;
}
.help__text b {
  font-weight: 500;
  color: #403e3f;
}
.help__list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.help__list__item {
  margin-left: 21px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: black;
}
.help__list__item b {
  font-weight: 500;
}
.help__list__item::marker {
  color: gray;
}

.form {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.form.type_auth {
  max-width: 400px;
  padding: 36px 49px 28px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.08), 0px 0px 6px 2px rgba(53, 53, 70, 0.08);
}
.form.type_auth .form__submit-btn {
  width: 100%;
  max-width: 155px;
}
.form.type_auth .form__other-btn {
  transition: 0.1s ease-in-out;
}
.form.type_auth .form__other-btn:hover {
  color: #1371cd;
  text-decoration-line: underline;
}
.form.type_modal {
  max-width: 400px;
  max-height: 95vh;
  padding: 36px 30px 28px;
  border-radius: 8px;
  background: white;
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.08), 0px 0px 6px 2px rgba(53, 53, 70, 0.08);
}
.form.type_modal .form__submit-btn {
  width: 100%;
  max-width: 183px;
}
.form.type_modal .form__submit-btn:only-child {
  max-width: none !important;
}
.form.type_modal .form__info {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  color: #545470;
  line-height: 24px;
}
.form.type_modal .form__submit-btn.type_close {
  width: 100%;
  max-width: 299px;
}
.form.type_modal .form__personal {
  overflow-y: auto;
  max-height: 50vh;
  scrollbar-width: thin;
  scrollbar-color: #888 #f5f5f5;
}
.form.type_modal .form__personal::-webkit-scrollbar {
  width: 3px;
}
.form.type_modal .form__personal::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.form.type_modal .form__personal::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 6px solid #f5f5f5;
}
.form.type_modal .form__personal::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
.form.type_interaction {
  max-width: 300px;
}
.form.type_interaction label {
  font-size: 14px;
}
.form.type_interaction input {
  color: #000;
  font-size: 16px;
}
.form.type_interaction .form__personal {
  gap: 32px 0;
  margin-top: 0;
}
.form__close {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.form__container {
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.form__head {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.form__title {
  color: #545470;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 92.273% */
  word-break: break-all;
}
.form__subtitle {
  color: #545470;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.form__small-text {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
}
.form__textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  border: 1px solid #D9D9D9;
  padding: 5px;
  color: #545470;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
  word-break: break-all;
}
.form__personal {
  display: flex;
  flex-direction: column;
  gap: 42px 0;
  margin-top: 43px;
}
.form__group {
  z-index: 5;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px 0;
}
.form__group.error label {
  color: #b90505;
}
.form__group.error .form__input, .form__group.error .form__select {
  border-bottom: 1px solid rgba(185, 5, 5, 0.3764705882);
  color: #b90505;
}
.form__group.error .form__input::-moz-placeholder, .form__group.error .form__select::-moz-placeholder {
  color: rgba(185, 5, 5, 0.3764705882);
}
.form__group.error .form__input::placeholder, .form__group.error .form__select::placeholder {
  color: rgba(185, 5, 5, 0.3764705882);
}
.form__group.error .form__required {
  color: #b90505;
}
.form__group.error .form__value {
  border-bottom: 1px solid rgba(185, 5, 5, 0.3764705882);
}
.form__group.error .form__value input {
  color: #b90505 !important;
}
.form__group.error .form__value input::-moz-placeholder {
  color: rgba(185, 5, 5, 0.3764705882) !important;
}
.form__group.error .form__value input::placeholder {
  color: rgba(185, 5, 5, 0.3764705882) !important;
}
.form__group.on-top {
  z-index: 6;
}
.form__group__box {
  display: flex;
  align-items: center;
}
.form__small-btn {
  margin-left: 10px;
  font-size: 12px;
  background-color: transparent;
  padding: 5px 10px;
  border: 1px solid #3994ec;
  border-radius: 8px;
  color: #3994ec;
  cursor: pointer;
}
.form__help-btn {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s linear;
}
.form__help-btn:hover {
  opacity: 0.8;
}
.form__action-btn {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  line-height: 20px;
  color: #3994ec;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.form__delete-btn {
  width: 37%;
  max-width: 100%;
  outline: none;
  border: none;
  border-radius: 6px;
  background-color: rgba(173, 82, 48, 0.97);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.3px; /* 145% */
  white-space: nowrap;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.form__delete-btn:hover {
  opacity: 0.9;
}
.form__delete-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.form__label {
  position: relative;
  color: #545470;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
  transition: 0.2s linear;
}
.form__required {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 115, 255, 0.584);
  transition: 0.2s linear;
}
.form__input, .form__select {
  width: 100%;
  padding-bottom: 5px;
  outline: none;
  border: none;
  border-bottom: 1px solid #9a9a9b;
  background-color: transparent;
  color: #403e3f;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
  transition: border-bottom-color 0.2s linear, color 0.2s linear, background-color 0.2s linear, opacity 0.2s linear;
}
.form__input::-moz-placeholder, .form__select::-moz-placeholder {
  color: #b5b5ba;
}
.form__input::placeholder, .form__select::placeholder {
  color: #b5b5ba;
}
.form__input:disabled, .form__select:disabled {
  color: #403e3f;
  opacity: 0.5;
  cursor: not-allowed;
}
.form__input.placeholder-black::-moz-placeholder, .placeholder-black.form__select::-moz-placeholder {
  color: #403e3f;
}
.form__input.placeholder-black::placeholder, .placeholder-black.form__select::placeholder {
  color: #403e3f;
}
.form__error-container {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  min-height: 30px;
  margin: 10px 0;
}
.form__error-container:has(.form__error-msg:not([style*="display: none"])) {
  display: flex;
}
.form__error-container:not(:has(.form__error-msg:not([style*="display: none"]))) {
  display: none;
}
.form__error-msg {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: rgba(185, 5, 5, 0.6078431373);
  font-size: 14px;
  line-height: 30px;
  font-style: normal;
  font-weight: 400;
}
.form__success-msg {
  display: flex;
  align-items: center;
  gap: 0 10px;
  color: rgba(3, 141, 40, 0.8705882353);
  font-size: 15px;
  line-height: 30px;
  font-style: normal;
  font-weight: 400;
}
.form__info-msg {
  display: flex;
  gap: 0 10px;
  color: #403e3f;
  font-size: 15px;
  line-height: 30px;
  font-style: normal;
  font-weight: 400;
}
.form__info-msg b {
  font-weight: 600;
}
.form__checkbox-container {
  display: flex;
  align-items: center;
  gap: 0 9px;
}
.form__checkbox-container input {
  width: 20px;
  height: 20px;
}
.form__checkbox-container label {
  color: #262632;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.form__values {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px 0;
  width: 100%;
}
.form__value {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0 13px;
  border-bottom: 1px solid #bebebe;
  padding-bottom: 5px;
}
.form__value label {
  color: #403e3f;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.form__value input {
  width: 100%;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 20.3px; /* 126.875% */
  color: #403e3f !important;
  text-align: right;
  border: none;
  outline: none;
}
.form__value input::-moz-placeholder {
  color: #b5b5ba !important;
  font-size: 14px;
}
.form__value input::placeholder {
  color: #b5b5ba !important;
  font-size: 14px;
}
.form__choice {
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}
.form__choice__item {
  display: flex;
  align-items: center;
  gap: 0 11px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.26875;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form__choice__item input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #555;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: transparent;
}
.form__choice__item input[type=radio]::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
  z-index: 1;
}
.form__choice__item input[type=radio]:checked::before {
  background-color: #555;
}
.form__choice__item:hover {
  opacity: 0.7;
}
.form__edit-btn {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #3994ec;
  cursor: pointer;
}
.form__submit-btn:disabled {
  background-color: #818181;
  opacity: 0.5;
  pointer-events: none;
}
.form__submit-btn.loading {
  position: relative;
  overflow: hidden;
}
.form__submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  animation: wave 1.5s linear infinite;
}
@keyframes wave {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.form__email-content-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 45px;
  font-size: 12px;
  color: #46b6ed;
  background-color: transparent;
  border: 1px solid #46b6ed;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.form__email-content-btn:hover:not(:disabled) {
  scale: 0.99;
  opacity: 0.8;
}
.form__email-content-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}
.form__email-content-btn:disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(151, 212, 249, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  animation: wave 1.5s linear infinite;
}
.form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 20px;
  background-image: url("../assets/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.form__select:invalid {
  color: #b5b5ba;
}
.form__select.multiselect option {
  font-size: 16px;
  padding: 2px 0;
}
@supports (-moz-appearance: none) {
  .form .form__select {
    background-image: url("../assets/arrow-down-black.svg");
    background-position: calc(100% - 10px) center;
  }
}
.form__actions {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 30px auto 0;
}
.form__other-btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  outline: none;
  border: none;
  background-color: transparent;
  color: #3994ec;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.3px; /* 145% */
  cursor: pointer;
}
.form__other-btn:hover:not(:disabled) {
  background-color: inherit;
  color: #3182d1;
}
.form__other-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
.form__password-container {
  position: relative;
}
.form__toggle-password {
  opacity: 0.4;
  position: absolute;
  top: 15px;
  right: 0;
  border: none;
  outline: none;
  background-color: transparent;
  transform: translateY(-50%);
  transition: 0.3s linear;
}
.form__toggle-password.active {
  opacity: 0.6;
  cursor: pointer;
}
.form__toggle-password:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.form__toggle-password:hover:is(.active) {
  opacity: 0.8;
}
.form__toggle-password.is-hide img.hide {
  display: block;
}
.form__toggle-password.is-hide img.show {
  display: none;
}
.form__toggle-password img.hide {
  display: none;
  margin-right: 0.5px;
}
.form__toggle-password img.show {
  display: block;
}
.form__box {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.settings__switch {
  margin-top: 39px;
  display: flex;
  align-items: center;
}

.switch {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 100px;
  border: 1px solid #d4d4db;
  background: white;
}
.switch__item {
  position: relative;
  flex-grow: 1;
  padding: 6px 2%;
  height: 100%;
  color: #000;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
  border-radius: 100px;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
}
.switch__item.type_active {
  color: white;
  font-weight: 600;
  background-color: #403e3f;
}
.switch__item .custom-date {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.switch.type_settings {
  gap: 15px 45px;
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.switch.type_settings .switch__item {
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 0 7px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 6px solid transparent;
  transition: color 0.3s linear, border 0.2s ease-in-out;
}
.switch.type_settings .switch__item.type_active {
  border-bottom: 6px solid #46B6ED;
  color: #000000;
  cursor: default;
}
.switch.type_settings .switch__item:hover:not(.type_active) {
  color: rgba(0, 0, 0, 0.6431372549);
}

.company-display {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 186px;
  padding-bottom: 30px;
}
.company-display__logo {
  width: 100%;
  max-height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-display__name {
  margin: 5px auto 0;
  font-size: 16px;
  font-weight: 500;
  color: #403e3f;
}
.company-display__link {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #3994ec;
}

.scroll-container {
  width: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #888 #f5f5f5;
}
.scroll-container::-webkit-scrollbar {
  width: 3px;
}
.scroll-container::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.scroll-container::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 6px solid #f5f5f5;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
  width: 100%;
}
.settings-list__full {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  max-width: 100%;
}
.settings-list__full .settings-list__item {
  width: 100%;
  max-width: 260px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.0784313725);
}
.settings-list__full .settings-list__item.visible {
  height: auto;
}
.settings-list__full .settings-list__item.visible .settings-list__item__body {
  display: flex;
  flex-direction: column;
  padding: 20px 17px 38px 17px;
}
.settings-list__full .settings-list__item.visible .settings-list__item__head {
  background-color: #403e3f;
  border-radius: 8px 8px 0 0;
}
.settings-list__full .settings-list__item__head {
  display: flex;
  align-items: center;
  height: 61px;
  padding: 0 28px;
  background-color: rgba(38, 38, 50, 0.6666666667);
  border: none;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.settings-list__full .settings-list__item__head:hover {
  opacity: 0.9;
}
.settings-list__full .settings-list__item__body {
  display: none;
}
.settings-list__full .settings-list__item__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 20.3px;
  text-align: left;
  color: #F8F8F8;
}
.settings-list__full .settings-list__resource-types {
  display: flex;
  flex-direction: column;
}
.settings-list__full .settings-list__resource-types__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 5px;
}
.settings-list__full .settings-list__resource-types__title {
  font-size: 18px;
  font-weight: 500;
}
.settings-list__full .settings-list__resource-types__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.331);
  height: auto;
}
.settings-list__full .settings-list__resource-types__item button {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  background-color: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #545470;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-decoration: underline;
}
.settings-list__full .settings-list__resource-types__item button:hover {
  opacity: 0.73;
}
.settings-list__full .settings-list__resource-types__item p {
  font-size: 15px;
}
.settings-list__full .settings-list__resource-types__button {
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  padding: 4px 25px;
  background-color: rgba(0, 0, 0, 0.598);
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s linear;
}
.settings-list__full .settings-list__resource-types__button:hover {
  opacity: 0.9;
}
.settings-list__full.hidden {
  display: none;
}
.settings-list__full.long {
  flex-wrap: nowrap;
}
.settings-list .form__submit-btn {
  font-size: 15px;
  padding: 10px 20px;
}
.settings-list__item {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px 0;
}
.settings-list__item.visible .settings-list__item__body {
  display: flex;
  flex-direction: column;
}
.settings-list__item.visible .settings-list__item__head svg {
  transform: rotate(180deg);
}
.settings-list__item.visible .settings-list__item__head svg path {
  fill: #3994ec;
}
.settings-list__item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.settings-list__item__head svg {
  width: 12px;
  height: 12px;
}
.settings-list__item__body {
  display: none;
}
.settings-list__item__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 20.3px;
  text-align: left;
  color: #403e3f;
}
.settings-list__form__odd-container {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}
.settings-list__form__logo {
  display: flex;
  flex-direction: column;
}
.settings-list__form__logo.hidden {
  padding-bottom: 19px;
}
.settings-list__form__logo.hidden .settings-list__form__logo__container {
  display: none;
}
.settings-list__form__logo.hidden .settings-list__form__logo__btn.type_upload {
  display: block;
}
.settings-list__form__logo__info {
  padding-bottom: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.settings-list__form__logo__info span {
  color: #545470;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.settings-list__form__logo__interaction {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.settings-list__form__logo__filename {
  color: #403e3f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
}
.settings-list__form__logo__btn {
  content: "";
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.settings-list__form__logo__btn.type_upload {
  display: none;
}
.settings-list__form__logo__btn span {
  color: #46b6ed;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
}
.settings-list__form__logo__btn input {
  display: none;
}
.settings-list__form__logo__preview {
  margin-top: 5px;
}
.settings-list__form__logo__preview img {
  margin-top: 8px;
  height: 55px;
  width: auto;
  max-width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.settings-list__form__bottom {
  width: 100%;
  margin-top: 46px;
}
.settings-list__form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 15px;
  margin-top: 52px;
}
.settings-list__form__actions button {
  max-width: none;
}
.settings-list__form__add-btn {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 20px;
  color: #3994ec;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.auth {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../assets/auth-bg.png") 50%/cover no-repeat;
}
.auth__wrapper {
  width: 100%;
  max-width: 400px;
  margin: 10vh auto 0;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.auth__container {
  width: 100%;
  min-height: inherit;
  display: flex;
  background: linear-gradient(180deg, rgba(3, 189, 246, 0.25) 0%, rgba(57, 148, 236, 0.25) 65.73%);
}
.auth__logo {
  display: flex;
  align-items: center;
  gap: 0 11px;
  padding-bottom: 52px;
}
.auth__logo__img {
  width: 50px;
  height: 50px;
}
.auth__logo__group {
  display: flex;
  flex-direction: column;
}
.auth__logo__name {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 110% */
}
.auth__logo__view {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.static {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.static__header {
  width: 100%;
  height: 80px;
  padding: 0 30px;
  background-color: #f9f9f9;
  display: flex;
}
.static__header__wrapper {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  margin: auto;
}
.static__header__logo {
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: #403e3f;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.static__header__logo img {
  width: 45px;
  height: 45px;
}
.static__header__logo:hover {
  opacity: 0.9;
}
.static__body {
  width: 90%;
  max-width: 1024px;
  margin: 60px auto 0;
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.static__title {
  font-size: 30px;
  font-weight: 400;
  color: #403e3f;
}
.static__block {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
.static__block b {
  font-weight: 600;
}
.static__block__title {
  padding: 2px 0;
  font-size: 18px;
}
.static__block__text {
  font-size: 16px;
}
.static__block__text.bold {
  font-weight: 500;
  font-style: italic;
}
.static__block__text a {
  color: #3994ec;
}
.static__block__list {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
}
.static__block__list li {
  position: relative;
  margin-left: 12px;
  color: #403e3f;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
}
.static__block__list li::before {
  position: absolute;
  top: 9px;
  left: -12px;
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 15px;
  background-color: #403e3f;
}
.static__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 300px;
  margin-top: auto;
  background-color: rgba(128, 128, 128, 0.052);
}
.static__footer__links {
  display: flex;
  align-items: center;
  gap: 0 30px;
  margin-top: 80px;
}
.static__footer__links a {
  font-size: 14px;
  color: #3994ec;
}
.static__footer__links a:hover {
  opacity: 0.95;
}
.static__footer__logo {
  margin-top: 30px;
}

.download {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}
.download__header {
  display: flex;
  width: 100%;
  height: 100px;
  padding: 0 100px;
  background-color: #403e3f;
  border: 1px solid #575757;
}
.download__header__wrapper {
  display: flex;
  align-items: center;
  width: 190%;
  max-width: 1200px;
  margin: auto auto;
}
.download__header__logo {
  display: flex;
  align-items: center;
  gap: 0 21px;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  color: white;
  transition: 0.3s ease-in-out;
}
.download__header__logo:hover {
  opacity: 0.8;
}
.download__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: min(10vh, 100px) auto 0;
  padding-bottom: 150px;
}
.download__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  color: #545470;
}
.download__title b {
  font-weight: 600;
}
.download__subtitle {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  text-align: center;
  color: #545470;
}
.download__button {
  margin: 21px auto 0;
  padding: 9px 21px;
  border-radius: 4px;
  background-color: #3994ec;
  font-size: 14px;
  font-weight: 600;
  line-height: 17.4px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: 0.2s linear;
}
.download__button:hover {
  opacity: 0.8;
  scale: 0.995;
}
.download__different-info {
  max-width: 398px;
  margin: 69px auto 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
  color: #403e3f;
}
.download__different-info a {
  font-weight: 400;
  color: #3994ec;
  text-decoration: underline;
}
.download__other-title {
  margin: 20px auto 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 45px;
  text-align: center;
  color: #545470;
}
.download__other-container {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 15px;
}
.download__device {
  width: 100%;
  max-width: 203px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download__device__logo {
  -o-object-fit: contain;
     object-fit: contain;
}
.download__device__body {
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
.download__device__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #545470;
}
.download__device__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  color: #545470;
}
.download.authorized .download__header {
  display: none;
}

.contact__container {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}
.contact__list {
  display: flex;
  flex-direction: column;
}
.contact__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20.3px;
  color: #000;
}
.contact__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  margin-top: 26px;
  padding-bottom: 19px;
  border-bottom: 1px solid #9A9A9B;
}
.contact__item__head {
  display: flex;
  flex-direction: column;
  gap: 1px 0;
}
.contact__item__toggle-btn {
  display: flex;
  align-items: center;
  gap: 0 13px;
  margin-top: 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.contact__item__toggle-btn span {
  margin-top: -2px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17.4px;
  text-decoration: underline;
  text-decoration-thickness: Auto;
  color: #3994ec;
  transition: 0.3s ease-in-out;
}
.contact__item__toggle-btn img {
  transition: 0.2s transform linear;
}
.contact__item__toggle-btn:hover span {
  opacity: 0.9;
}
.contact__item__toggle-btn:hover img {
  opacity: 0.9;
  transform: scale(0.9);
}
.contact__item__small-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20.3px;
  letter-spacing: 0%;
  color: #000;
}
.contact__item__small-text b {
  font-weight: 600;
}
.contact__item__link {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 14px;
  line-height: 20.3px;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #3994ec;
  transition: 0.3s ease-in-out;
}
.contact__item__link:hover {
  opacity: 0.9;
}
.contact__item__body {
  display: none;
  flex-direction: column;
  margin: 15px 0 0 29px;
}
.contact__item__body .form__actions {
  justify-content: flex-end;
}
.contact__item__issue {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
.contact__item__issue__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 20.3px;
  letter-spacing: 0%;
  color: #403e3f;
}
.contact__item__file-list {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  list-style: none;
}
.contact__item__file-list li {
  display: flex;
  align-items: center;
  gap: 0 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__item__file-list li span {
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.172);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-all;
  color: rgba(0, 0, 0, 0.752);
}
.contact__item__file-list li button {
  margin-top: 1.5px;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: rgba(100, 4, 4, 0.379);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.contact__item.open .contact__item__toggle-btn img {
  transform: rotate(180deg);
}
.contact__item.open .contact__item__body {
  display: flex;
}
.contact__item.open:last-child {
  padding-bottom: 11px;
}
.contact__item:last-child {
  border-bottom: 0;
  padding-bottom: 29px;
}
.contact__info {
  display: flex;
  flex-direction: column;
}

.pricing__container {
  display: flex;
  flex-direction: column;
  gap: 45px 0;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-top: 40px;
}
.pricing__title {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  color: #545470;
  padding-bottom: 15px;
}
.pricing__box {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.pricing__discount {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  list-style: none;
}
.pricing__discount__item {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
.pricing__discount__item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #403e3f;
}
.pricing__discount__item p {
  font-size: 16px;
  font-weight: 400;
  color: #403e3f;
}

.billing__container {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
  width: 100%;
  max-width: 340px;
  margin-top: 40px;
}
.billing__group {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: 100%;
}
.billing__group__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  color: #545470;
}
.billing__group__list {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.billing__group__list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.158);
}
.billing__group__list__item:first-child {
  border-top: 0;
}
.billing__group__list__item span {
  font-size: 16px;
  font-weight: 400;
  color: #403e3f;
}
.billing__group__list__item span strong {
  font-weight: 500;
}
.billing__group__list__item a {
  color: #3994ec;
  font-size: 16px;
  font-weight: 500;
}

.desktop-view .user-guide__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.desktop-view .user-guide .page__small-title {
  font-weight: 400;
}
.desktop-view .user-guide__box {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.desktop-view .user-guide__link {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: #3994ec;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.desktop-view .user-guide__link:hover {
  opacity: 0.8;
}
.desktop-view .groups__container {
  width: 100%;
  max-width: 486px;
  display: flex;
  flex-direction: column;
}
.desktop-view .users {
  padding-bottom: 100px;
}
.desktop-view .users__container {
  max-width: 1024px;
  display: flex;
  flex-direction: column;
}
.desktop-view .users__switch {
  max-width: 400px;
}
.desktop-view .users__list {
  width: 100%;
  margin-top: 55px;
}
.desktop-view .users__list__sub-container {
  display: none;
  flex-direction: column;
  gap: 40px 0;
}
.desktop-view .users__list__sub-container.visible {
  display: flex;
}
.desktop-view .users__list__sub-container.by-name .users__item__line {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.desktop-view .users__item {
  display: flex;
  flex-direction: column;
  gap: 25px 0;
}
.desktop-view .users__item__title {
  font-size: 18px;
  font-weight: 400;
}
.desktop-view .users__item__title b {
  font-weight: 600;
}
.desktop-view .users__item__container {
  width: 100%;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  background-color: #f9f9f9;
  transition: 0.5s linear;
}
.desktop-view .users__item__container:hover {
  border-radius: 5px;
  background-color: rgba(238, 238, 238, 0.6666666667);
}
.desktop-view .users__item__line {
  position: relative;
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, minmax(20%, 1fr));
}
.desktop-view .users__item__line__edit-btn {
  margin: auto;
  background-color: #545470;
  transition: 0.3s ease-in-out;
}
.desktop-view .users__item__line__edit-btn:hover {
  opacity: 0.8;
}
.desktop-view .users__item__line__text {
  font-size: 14px;
  padding: 0 3px;
  text-align: center;
  word-wrap: break-word;
}
.desktop-view .users__item__line__text b {
  font-weight: 600;
}
.desktop-view .users__item__line__delete-btn {
  max-width: 102px;
  margin: auto;
  background-color: #fe4500;
  transition: 0.3s linear;
}
.desktop-view .users__item__line__delete-btn:hover {
  opacity: 0.8;
}
.desktop-view .users-edit__container {
  display: flex;
  margin-top: 53px;
}
.desktop-view .users-edit__devices {
  margin-left: 77px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.desktop-view .import-job__container {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: 90%;
  max-width: 1024px;
  margin-top: 50px;
}
.desktop-view .import-job__status {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.desktop-view .import-job__status__title {
  font-size: 18px;
  line-height: 20px;
  color: #403e3f;
}
.desktop-view .import-job__status__display {
  padding: 10px 20px;
  border: 1px solid #545470;
  border-radius: 5px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 2px;
  color: #545470;
}
.desktop-view .networks__container {
  max-width: 557px;
  display: flex;
  flex-direction: column;
}
.desktop-view .networks-edit__container {
  display: flex;
  gap: 70px 50px;
  margin-top: 53px;
}
.desktop-view .networks-edit__guide {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.desktop-view .networks-edit__guide__head {
  display: flex;
  gap: 0 7px;
}
.desktop-view .networks-edit__guide__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}
.desktop-view .networks-edit__guide__show-btn {
  margin-top: 5px;
  outline: none;
  border: none;
  background-color: transparent;
  color: #3994ec;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
}
.desktop-view .networks-edit__guide__body {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  display: none;
}
.desktop-view .networks-edit__guide__body.visible {
  display: flex;
  flex-direction: column;
}
.desktop-view .networks-edit__guide__list li {
  margin-bottom: 10px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
  list-style-position: inside;
}
.desktop-view .networks-edit__guide__list li span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  word-break: break-all;
  background-color: rgba(199, 199, 199, 0.467);
  color: rgba(0, 0, 0, 0.785);
  padding: 0 3px;
}
.desktop-view .networks-edit__guide__list li:last-child {
  margin-bottom: 0;
}
.desktop-view .networks-edit__guide__information {
  margin-top: 25px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.desktop-view .networks-edit__guide__information a {
  font-weight: 600;
  color: #3994ec;
  transition: 0.1s ease-in-out;
}
.desktop-view .networks-edit__guide__information a:hover {
  text-decoration: underline;
  color: #1371cd;
}
.desktop-view .networks-edit__resources {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: 100%;
  max-width: 640px;
}
.desktop-view .resources__container {
  max-width: 1024px;
  display: flex;
  flex-direction: column;
}
.desktop-view .resources-edit__wrapper {
  max-width: 850px;
  display: flex;
  flex-direction: column;
}
.desktop-view .resources-edit__container {
  display: flex;
  flex-direction: column;
  margin-top: 53px;
}
.desktop-view .resources-permissions__wrapper {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
}
.desktop-view .resources-permissions__container {
  display: flex;
  flex-direction: column;
}
.desktop-view .resources-permissions__switch {
  max-width: 500px;
}
.desktop-view .resources-permissions__list {
  width: 100%;
  margin-top: 60px;
}
.desktop-view .resources-permissions__list__sub-container {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 50px 0;
}
.desktop-view .resources-permissions__list__sub-container.visible {
  display: flex;
}
.desktop-view .resources-permissions__item {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 5px;
  transition: 0.5s linear;
}
.desktop-view .resources-permissions__item:hover {
  border-radius: 20px;
  background-color: rgba(238, 238, 238, 0.7882352941);
}
.desktop-view .resources-permissions__item__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desktop-view .resources-permissions__item__title {
  max-width: 500px;
  word-wrap: break-word;
  padding-right: 20px;
  font-size: 20px;
  font-weight: 500;
}
.desktop-view .resources-permissions__item__group {
  position: relative;
}
.desktop-view .resources-permissions__item__add-btn {
  background-color: #545470;
}
.desktop-view .resources-permissions__item__add-btn:hover {
  opacity: 0.9;
}
.desktop-view .resources-permissions__item__select {
  z-index: -1;
  opacity: 0;
  position: absolute;
  top: 48px;
  right: -60px;
  width: 250px;
  max-height: 190px;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  border-top: 5px solid rgb(191, 191, 191);
  border-bottom: 5px solid rgb(191, 191, 191);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.176);
  transition: 0.2s ease-in-out;
}
.desktop-view .resources-permissions__item__select.visible {
  z-index: 10;
  opacity: 1;
}
.desktop-view .resources-permissions__item__select .option {
  width: 100%;
  min-height: 40px;
  padding: 3px 8px;
  background-color: rgb(210, 210, 210);
  border-bottom: 1px solid rgb(172, 172, 172);
  list-style-type: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.desktop-view .resources-permissions__item__select .option:hover {
  background-color: rgb(216, 216, 216);
}
.desktop-view .resources-permissions__item__select .option:last-child {
  border-bottom: 0;
}
.desktop-view .resources-permissions__item__select .option span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  color: #545470;
}
.desktop-view .resources-permissions__item__separator {
  content: "";
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background-color: rgb(202, 202, 202);
  box-shadow: 2px 0px 2px #888888;
}
.desktop-view .resources-permissions__item__container {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}
.desktop-view .resources-permissions__item__permission {
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desktop-view .resources-permissions__item__permission:hover .resources-permissions__item__permission__title {
  color: #403e3f;
}
.desktop-view .resources-permissions__item__permission:hover .resources-permissions__item__permission__btn {
  background-color: #fe1e00;
}
.desktop-view .resources-permissions__item__permission__title {
  width: 100%;
  max-width: 400px;
  word-wrap: break-word;
  font-weight: 400;
  transition: 0.3s linear;
}
.desktop-view .resources-permissions__item__permission__btn {
  background-color: #fe4500;
  font-size: 13px;
  transition: 0.3s linear;
}
.desktop-view .resources-permissions__item__permission__btn:hover {
  opacity: 0.8;
}
.desktop-view .filters__container {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}
.desktop-view .filters__head {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}
.desktop-view .filters__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desktop-view .filters__group .default_btn {
  margin-top: auto;
}
.desktop-view .filters__item {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  width: 100%;
}
.desktop-view .filters__content {
  margin-top: 35px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px 0;
}
.desktop-view .activity-alerts__container {
  max-width: 600px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.desktop-view .activity-alerts__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 50px;
}
.desktop-view .activity-alerts__list {
  width: 100%;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.desktop-view .activity-alerts__alert {
  width: 100%;
  min-height: 110px;
  border-radius: 8px;
  background: var(--Background-Background-Base, #fff);
  box-shadow: 0px 2px 6px 0px rgba(53, 53, 70, 0.08), 0px 0px 6px 2px rgba(53, 53, 70, 0.08);
  display: flex;
  flex-direction: column;
}
.desktop-view .activity-alerts__alert__head {
  padding: 10px 8px 9px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
}
.desktop-view .activity-alerts__alert__datetime {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.desktop-view .activity-alerts__alert__close {
  position: absolute;
  top: 9px;
  right: 8px;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.desktop-view .activity-alerts__alert__close:hover {
  opacity: 0.8;
}
.desktop-view .activity-alerts__alert__content {
  margin-top: 8px;
  padding: 0 8px 17px 20px;
  display: flex;
  flex-direction: column;
}
.desktop-view .activity-alerts__alert__title {
  color: #403e3f;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20.3px; /* 145% */
}
.desktop-view .activity-alerts__alert__title.type_warn {
  color: #fe4500;
}
.desktop-view .activity-alerts__alert__title.type_alert {
  color: #fcac35;
}
.desktop-view .activity-alerts__alert__title.type_update {
  color: #00b047;
}
.desktop-view .activity-alerts__alert__message {
  margin-top: 3px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.desktop-view .activity-network__container {
  max-width: 800px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 47px 0;
}
.desktop-view .activity-network__graphic {
  display: flex;
  flex-direction: column;
}
.desktop-view .activity-network__graphic__group {
  display: flex;
  flex-direction: column;
  gap: 38px 0;
}
.desktop-view .activity-network__graphic__list {
  width: 100%;
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 0 24px;
}
.desktop-view .activity-network__graphic__list__item {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.desktop-view .activity-network__graphic__list__item div {
  content: "";
  width: 24px;
  height: 24px;
  background-color: gray;
}
.desktop-view .activity-network__graphic__list__item div.type_blue {
  background-color: #aad0f2;
}
.desktop-view .activity-network__graphic__list__item div.type_pink {
  background-color: #f6b6c2;
}
.desktop-view .activity-network__graphic__list__item div.type_orange {
  background-color: #f3ae6b;
}
.desktop-view .activity-network__graphic__list__item div.type_yellow {
  background-color: #f7cf72;
}
.desktop-view .activity-network__graphic__list__item div.type_green {
  background-color: #b5dede;
}
.desktop-view .activity-network__graphic__list__item span {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.desktop-view .activity-network__graphic__content {
  content: "";
  width: 100%;
  height: 332px;
  background-color: rgba(217, 217, 217, 0.27);
}
.desktop-view .activity-resources__head-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 25px 0;
  width: 100%;
  margin-top: 50px;
  padding-bottom: 27px;
}
.desktop-view .activity-resources__head-container .default_btn {
  align-self: flex-end;
}
.desktop-view .activity-resources__wrapper {
  width: 100%;
  max-width: 977px;
}
.desktop-view .activity-user__container {
  max-width: 1150px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 27px 0;
}
.desktop-view .reports__container {
  width: 100%;
  margin-top: 48px;
  display: flex;
  gap: 0 95px;
}
.desktop-view .reports__filters {
  display: flex;
  flex-direction: column;
}
.desktop-view .reports__filters__group {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.desktop-view .reports__filters__choice {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.desktop-view .reports__filters__choice label {
  display: flex;
  align-items: center;
  color: #262632;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.desktop-view .reports__filters__choice label input {
  width: 18px;
  height: 20px;
  margin-right: 7px;
  border-radius: 4px;
  border: 1px solid #8f8fa1;
}
.desktop-view .reports__filters__multiselect {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.desktop-view .reports__filters__multiselect__title {
  color: #545470;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.desktop-view .reports__content {
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 17px 0;
}
.desktop-view .import-csv__container {
  width: 100%;
  margin-top: 68px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgb(224, 224, 224);
}
.desktop-view .import-csv__file-input {
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 30px;
  border: 1px solid rgb(228, 228, 228);
}
.desktop-view .import-csv__download-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  border: none;
  outline: none;
  background-color: transparent;
  color: #1371cd;
  text-decoration: underline;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.desktop-view .import-csv__download-btn:hover {
  opacity: 0.8;
}
.desktop-view .import-csv__import-btn {
  width: 100%;
  max-width: 182px;
  margin-top: 20px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.desktop-view .import-csv__import-btn:hover {
  opacity: 0.9;
}
.desktop-view .import-csv__table {
  margin-top: 30px;
  max-width: 768px;
}
.desktop-view .settings__container {
  margin-top: 77px;
  display: flex;
  flex-direction: column;
}

.user-view .user-info {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.user-view .user-info__item {
  display: flex;
  align-items: center;
  gap: 0 27px;
}
.user-view .user-info__item dt {
  width: 55px;
  font-size: 18px;
  font-weight: 600;
  line-height: 20.3px;
  text-align: left;
  color: black;
}
.user-view .user-info__item dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
  color: #403e3f;
}
.user-view .devices__container {
  width: 100%;
  max-width: 531px;
  display: flex;
  flex-direction: column;
  margin-top: 57px;
}
.user-view .devices__current {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.user-view .devices__current__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 22px;
}
.user-view .devices__current__group {
  display: flex;
  flex-direction: column;
}
.user-view .devices__current__info {
  margin-top: 12px;
  color: #403e3f;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 126.875% */
}
.user-view .change-password__title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
}
.user-view .change-password__container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 25px;
}
.user-view .change-password__subtitle {
  font-size: 17px;
  line-height: 0.9;
}
.user-view .change-password__subtitle b {
  font-weight: 500;
}
.user-view .resources__container {
  margin-top: 80px;
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}
.user-view .settings__container {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 41px 0;
}
.user-view .settings__password-change {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 22px 0;
}
.user-view .settings .form__personal {
  gap: 34px 0;
}

.partner-view .distributors__container {
  width: 100%;
  max-width: 720px;
  margin-top: 67px;
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}
.partner-view .distributors-add__container {
  width: 100%;
  max-width: 300px;
  margin-top: 77px;
  display: flex;
  flex-direction: column;
}
.partner-view .distributors-edit__container {
  width: 100%;
  margin-top: 67px;
  display: flex;
  gap: 0 70px;
}
.partner-view .distributors-edit__companies {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  max-width: 423px;
}
.partner-view .settings__container {
  width: 100%;
  max-width: 300px;
  margin-top: 77px;
  display: flex;
  flex-direction: column;
}

.distributor-view .companies__container {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.distributor-view .companies-add__container {
  width: 100%;
  max-width: 300px;
  margin-top: 77px;
  display: flex;
  flex-direction: column;
}
.distributor-view .companies-add .page__small-info {
  font-size: 18px;
}
.distributor-view .revenue__container {
  width: 100%;
  margin-top: 77px;
  display: flex;
  flex-direction: column;
}
.distributor-view .revenue__group {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
}
.distributor-view .revenue__group .form__group {
  width: 100%;
  max-width: 300px;
}
.distributor-view .revenue__choice {
  display: flex;
  align-items: center;
  gap: 0 22px;
}
.distributor-view .revenue__choice__item {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.distributor-view .revenue__choice__item input[type=radio] {
  width: 22px;
  height: 22px;
}
.distributor-view .revenue__choice__item label {
  color: #262632;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.3px; /* 145% */
}
.distributor-view .revenue__generate-btn {
  margin-top: 43px;
  padding: 9px 36px;
}
.distributor-view .settings__container {
  width: 100%;
  margin-top: 77px;
  display: flex;
  flex-direction: column;
}

.pcc-view .admins__container {
  width: 100%;
  max-width: 502px;
  display: flex;
  flex-direction: column;
}
.pcc-view .partners__container {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.pcc-view .partners-add__container {
  width: 100%;
  margin-top: 67px;
  display: flex;
}
.pcc-view .partners-edit__container {
  display: flex;
  gap: 0 70px;
  width: 100%;
  margin-top: 67px;
}
.pcc-view .partners-edit__companies {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  width: 100%;
  max-width: 423px;
  margin-top: 30px;
}
.pcc-view .distributors__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 751px;
}
.pcc-view .distributors-add__container {
  width: 100%;
  margin-top: 67px;
  display: flex;
}
.pcc-view .distributors-edit__container {
  width: 100%;
  margin-top: 67px;
  display: flex;
  gap: 0 70px;
}
.pcc-view .distributors-edit__companies {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px 0;
  max-width: 423px;
}
.pcc-view .distributors-edit .settings-list {
  margin: 20px 0;
}

.iti__search-input {
  padding: 3px 0 3px 6px !important;
}

.iti__country-container {
  margin-bottom: 6px !important;
}

@media screen and (max-width: 1320px) {
  .settings-list__full .settings-list__item__head {
    height: 52px;
  }
}
@media screen and (max-width: 1180px) {
  .page {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nav {
    max-width: 220px;
  }
  .nav__container {
    padding-left: 15px;
    max-width: 220px;
  }
  .viewing-as__item a {
    padding: 13px 16px;
  }
  .viewing-as__item a span {
    max-width: 140px;
    font-size: 12px;
  }
  .user-view .devices__container {
    margin-top: 30px;
  }
  .user-view .resources__container {
    margin-top: 60px;
    gap: 50px 0;
  }
  .download__header {
    height: 80px;
    padding: 0 50px;
  }
  .download__header__logo {
    gap: 0 15px;
  }
  .download__header__logo img {
    width: 35px;
    height: 35px;
  }
  .download__container {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1070px) {
  .page {
    overflow: scroll;
    padding-left: 90px;
    padding-right: 10px;
  }
  .default_table thead tr th {
    padding: 10px 12px;
    color: #000;
    font-size: 14px;
  }
  .default_table tbody tr td {
    padding: 10px 12px;
    font-size: 16px;
  }
  .default_table tbody tr td p,
  .default_table tbody tr td a.interaction,
  .default_table tbody tr td button.interaction {
    font-size: 16px;
  }
  .default_empty-table {
    font-size: 14px;
    padding: 15px 0 20px 12px;
  }
  .auth__wrapper {
    padding: 0 24px 80px;
  }
  .form.type_auth {
    padding: 24px 24px 30px;
  }
  .form.type_auth .form__title {
    font-weight: 400;
    font-size: 22px;
    line-height: 0.92273;
  }
  .form.type_auth .form__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
  }
  .form.type_auth .form__actions {
    flex-direction: column;
    align-items: center;
    gap: 16px 0;
    margin-top: 10px;
  }
  .form.type_auth .form__other-btn {
    padding: 11px 0;
    font-size: 14px;
  }
  .form.type_auth .form__submit-btn {
    padding: 11px 0;
    font-size: 16px;
  }
  .nav {
    opacity: 0;
    z-index: -1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: fixed;
    justify-content: start;
    background-color: rgba(0, 0, 0, 0.4862745098);
  }
  .nav__container {
    z-index: 50;
    padding: 20px 15px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.342);
  }
  .nav__data {
    margin-top: 15px;
  }
  .nav__list {
    margin-top: 10px;
  }
  .nav__viewing {
    margin-top: 15px;
  }
  .nav__viewing__container {
    gap: 0 3%;
  }
  .nav__item {
    font-size: 14px;
    padding: 10px 12px 10px 0;
  }
  .nav__item__group__list li {
    font-weight: 400;
  }
  .nav__item.type_active {
    padding-bottom: 10px;
  }
  .nav__item button {
    font-size: 14px;
  }
  .nav-mobile {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .desktop-view .users-edit__container {
    flex-direction: column;
  }
  .desktop-view .users-edit__devices {
    margin: 40px 0 0;
  }
  .desktop-view .resources-permissions__item__select {
    width: 150px;
    right: -14px;
  }
  .desktop-view .resources-permissions__item__select .option {
    padding: 3px 4px;
  }
  .desktop-view .resources-permissions__item__select .option span {
    font-size: 12px;
  }
  .base-modal.email-content .base__modal__container {
    max-width: 100%;
    padding: 30px 40px 30px 35px;
  }
  .base-modal.email-content .ck-content {
    max-height: 250px;
  }
  .download.authorized {
    margin-left: 60px;
  }
}
@media screen and (max-width: 820px) {
  .page {
    overflow: scroll;
    padding: 95px 20px 15px;
  }
  .page__head-container {
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .page__head-container__actions {
    margin-top: 26px;
  }
  .page__title {
    font-size: 0;
  }
  .page__info-title {
    gap: 0 8px;
  }
  .page__info-title__text {
    font-size: 16px;
  }
  .page__info-title__btn {
    width: 18px;
    height: 18px;
  }
  .page__info-title__btn img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page__info-title__btn div {
    left: -75px;
  }
  .page__small-title {
    font-size: 16px;
  }
  .page__small-info {
    font-size: 15px;
  }
  .page__actions {
    margin: 25px 0;
    gap: 10px 0;
    align-items: start;
    flex-direction: column;
  }
  .page__actions__group.large {
    flex-direction: column;
    align-items: start;
    gap: 10px 0;
  }
  .page__help-btn {
    z-index: 10;
    position: absolute;
    top: 75px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0px 2px 6px 5px rgba(53, 53, 70, 0.0784313725);
    background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.2s linear;
  }
  .page__help-btn:hover {
    scale: 1.05;
    padding-right: 15px;
  }
  .page.list .scroll-container {
    max-height: calc(100vh - 145px - 130px);
  }
  .page.list .page__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    width: 100%;
    min-height: 176px;
    margin: 0;
    padding: 0 24px 25px;
    z-index: 3;
  }
  .page.list .page__actions .default_btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 0;
    font-weight: 600;
    font-size: 18px;
  }
  .page.list .page__actions a:first-child, .page.list .page__actions button:first-child {
    margin-bottom: 12px;
  }
  .page.list .page__actions::before {
    content: "";
    width: 100%;
    height: 1px;
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.0745098039);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3058823529);
  }
  .static__header {
    display: none;
  }
  .static__body {
    margin-top: 0;
    gap: 27px 0;
  }
  .static__title {
    max-width: 274px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #000;
  }
  .static__block {
    gap: 17px 0;
  }
  .static__block__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
  }
  .static__block__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
  }
  .static__block__list li {
    font-size: 16px;
  }
  .settings__container {
    margin-top: 44px !important;
  }
  .settings__switch {
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
  .settings-list__full {
    justify-content: center;
  }
  .settings-list__full.long {
    flex-wrap: wrap;
  }
  .help__title {
    font-size: 20px;
    line-height: 18px;
  }
  .base-modal__head__title {
    font-size: 18px;
    line-height: 21px;
  }
  .base-modal.email-content .base-modal__container {
    padding: 20px 30px 25px 20px;
  }
  .base-modal.email-content .form {
    margin-top: 15px;
  }
  .base-modal.email-content .form__actions {
    margin-top: 10px;
  }
  .base-modal.email-content .ck-content {
    font-size: 12px;
  }
  .default_table thead tr th {
    padding: 12px 16px;
    color: #000;
  }
  .default_table tbody tr td {
    padding: 12px 16px;
  }
  .default_btn {
    font-size: 14px;
    padding: 9px 14px;
  }
  .switch.type_long {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    border: none;
  }
  .switch.type_long .switch__item {
    width: 100%;
    padding: 6px 4px;
    border-radius: 5px;
  }
  .switch.type_long .switch__item:not(.type_active) {
    background-color: #f8f8f8;
  }
  .switch.type_long .switch__item.type_active {
    background-color: #474747;
  }
  .form.type_modal {
    max-width: 80%;
    padding: 46px 24px 29px;
    border-radius: 8px;
    overflow: scroll;
  }
  .form.type_modal .form__title {
    font-size: 22px;
  }
  .form.type_modal .form__subtitle {
    font-size: 16px;
  }
  .form.type_modal .form__close, .form.type_modal .form__close img {
    width: 40px;
    height: 40px;
  }
  .form.type_modal .form__personal {
    margin-top: 45px;
    gap: 32px 0;
  }
  .form.type_modal .form__label {
    font-size: 20px;
  }
  .form.type_modal .form__input, .form.type_modal .form__select {
    font-size: 16px;
  }
  .form.type_modal .form__actions {
    gap: 0 15px;
    margin-top: 58px;
  }
  .form.type_modal .form__other-btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 5px;
    font-size: 16px;
    border: 1px solid #3994ec;
  }
  .form.type_modal .form__submit-btn {
    width: 100%;
    max-width: 100% !important;
    padding: 13px 5px;
    font-size: 16px;
  }
  .nav-mobile {
    width: 100%;
    height: 64px;
    top: 0;
    right: auto;
    left: auto;
  }
  .nav-mobile__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 17px;
  }
  .nav-mobile__btn {
    margin: auto 0;
  }
  .nav-mobile__btn svg path {
    stroke: #46B6ED;
  }
  .nav-mobile__page-title {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.015;
    color: #fff;
  }
  .nav-mobile__logo {
    display: block;
    width: 30px;
    height: 30px;
  }
  .nav-mobile__logo img {
    width: 100%;
    height: 100%;
  }
  .nav__container {
    max-width: 100%;
    padding: 24px 24px 50px;
  }
  .nav__mobile-header {
    display: flex;
  }
  .nav__logo {
    display: none;
  }
  .nav__list {
    gap: 10px 0;
    margin-top: 50px;
  }
  .nav__item {
    font-size: 20px;
    padding: 16px 0;
  }
  .nav__item.type_active {
    padding: 16px 0;
  }
  .nav__item:last-child {
    border-bottom: 1px solid #747474;
  }
  .nav__item__group__list li {
    font-size: 16px;
  }
  .nav__data__item {
    max-width: min(460px, 90%);
  }
  .nav__info {
    border: none;
  }
  .nav__info__item, .nav__info__separator {
    font-size: 16px;
  }
  .desktop-view .users__item__line {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    border-bottom: 1px solid rgb(221, 221, 221);
  }
  .desktop-view .users__item__line__text {
    font-size: 14px;
  }
  .desktop-view .users__item__line__edit-btn {
    margin: auto auto auto 15px;
  }
  .desktop-view .users__item__line__delete-btn {
    max-width: 84.69px;
    margin: auto 23px auto auto;
  }
  .desktop-view .users__item__line:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .desktop-view .users__item__container {
    padding: 15px;
  }
  .desktop-view .users-edit__container {
    width: 100%;
    max-width: 450px;
    margin: 53px auto 0;
  }
  .desktop-view .users-edit__container form {
    max-width: inherit !important;
  }
  .desktop-view .import-csv__container {
    margin-top: 30px;
    border-top: 1px solid transparent;
  }
  .desktop-view .groups__container {
    max-width: 100%;
  }
  .desktop-view .networks__container {
    max-width: 100%;
  }
  .desktop-view .networks__table {
    margin-top: 0;
  }
  .desktop-view .networks-edit__container {
    flex-direction: column;
    margin-top: 30px;
  }
  .desktop-view .networks-edit__guide__title {
    font-size: 15px;
  }
  .desktop-view .networks-edit__guide__show-btn {
    margin-top: 3px;
  }
  .desktop-view .networks-edit__guide__list li {
    font-size: 13px;
  }
  .desktop-view .import-job__status__title {
    font-size: 16px;
  }
  .desktop-view .import-job__status__display {
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 14px;
  }
  .desktop-view .resources__container {
    max-width: 100%;
  }
  .desktop-view .resources-permissions__item__title {
    font-size: 14px;
    max-width: 60%;
  }
  .desktop-view .resources-permissions__item__permission__btn {
    font-size: 12px;
    padding: 5px 10px;
  }
  .desktop-view .resources-permissions__item__permission__title {
    max-width: 60%;
    padding-right: 5px;
  }
  .desktop-view .resources-edit__container {
    margin-top: 30px;
  }
  .desktop-view .filters__head {
    gap: 27px 0;
    margin-top: 20px;
  }
  .desktop-view .filters__group {
    flex-direction: column;
    align-items: start;
    gap: 30px 0;
  }
  .desktop-view .activity-alerts__container {
    max-width: 100%;
    margin-top: 50px;
  }
  .desktop-view .activity-network__graphic__group {
    margin-top: 30px;
    padding: 0 10px;
    flex-direction: row;
    gap: 0 15px;
  }
  .desktop-view .activity-network__graphic__list {
    width: 20%;
    margin-top: 0;
    flex-direction: column;
    gap: 10px 0;
  }
  .desktop-view .activity-resources__head-container {
    flex-direction: column-reverse;
    gap: 30px 0;
  }
  .desktop-view .activity-resources__head-container .default_btn {
    margin-left: auto;
  }
  .desktop-view .activity-log__list {
    margin-top: 15px;
  }
  .desktop-view .reports__container {
    flex-direction: column;
    gap: 50px 0;
  }
  .desktop-view .reports .form__select {
    max-width: 240px;
  }
  .desktop-view .reports__content {
    max-width: 100%;
  }
  .desktop-view .reports__filters__multiselect {
    gap: 12px 0;
    margin-top: 30px;
  }
  .desktop-view .reports__filters__multiselect__title {
    font-size: 16px;
  }
  .user-view .devices .scroll-container {
    max-height: calc(100vh - 160px - 243px);
  }
  .user-view .devices__container {
    max-width: 100%;
    margin-top: 20px;
  }
  .user-view .devices__current {
    flex-direction: column-reverse;
    max-width: 100%;
    margin-top: 25px;
  }
  .user-view .devices__current__info {
    margin: 0 0 12px 0;
  }
  .user-view .change-password__title {
    font-size: 26px;
  }
  .user-view .change-password__subtitle {
    font-size: 16px;
    line-height: 1.1;
  }
  .user-view .resources__container {
    margin-top: 20px;
  }
  .user-view .settings .page__small-title {
    font-size: 20px;
  }
  .user-view .settings .default_btn {
    font-size: 14px;
    padding: 11px 15px;
  }
  .user-view .settings__container {
    gap: 40px 0;
    max-width: 90%;
    margin: 12px auto 0 !important;
  }
  .user-view .settings__password-change {
    margin: 0 auto;
    max-width: 100%;
  }
  .user-view .settings__password-change form {
    max-width: 100%;
  }
  .partner-view .settings__container {
    margin-top: 30px;
  }
  .partner-view .distributors-edit__container {
    flex-direction: column;
    gap: 30px 0;
    margin-top: 30px;
  }
  .partner-view .distributors-add__container {
    margin-top: 30px;
  }
  .distributor-view .companies__container {
    margin-top: 0;
  }
  .distributor-view .revenue .page__small-title {
    font-size: 18px;
  }
  .distributor-view .revenue__generate-btn {
    font-size: 15px;
    padding: 11px 44px;
  }
  .distributor-view .revenue__container {
    width: 90%;
    margin: 20px auto 0;
    align-items: center;
  }
  .distributor-view .revenue__container form {
    width: 100%;
    max-width: 500px;
  }
  .distributor-view .revenue__container form .form__group {
    max-width: 100%;
  }
  .distributor-view .revenue__choice {
    flex-wrap: wrap;
    gap: 15px 10px;
  }
  .pcc-view .distributors__container, .pcc-view .admins__container, .pcc-view .partners__container, .pcc-view .pricing__container {
    max-width: 100%;
    margin-top: 0;
  }
  .pcc-view .billing__container {
    margin: 0 auto;
    max-width: 75%;
  }
  .download__header {
    padding: 0 25px;
  }
  .download__title {
    font-size: 25px;
    line-height: 32px;
  }
  .download__different-info {
    margin-top: 40px;
  }
  .download__other-title {
    max-width: 300px;
    margin-top: 30px;
    line-height: 30px;
  }
  .download__other-container {
    width: 90%;
    max-width: 600px;
    gap: 5%;
  }
  .download.authorized {
    margin: 64px 0 0;
  }
  .contact__container {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .base-modal.email-content .base-modal__container {
    padding: 40px 20px 25px 20px;
  }
  .base-modal.device .info-item__title, .base-modal.device .info-item__text {
    font-size: 14px;
  }
  .desktop-view .users-edit__container {
    max-width: 400px;
  }
  .user-view .change-password__title {
    font-size: 22px;
  }
  .user-view .change-password__container {
    max-width: 100%;
  }
  .form.type_modal .form__actions {
    flex-direction: column;
    gap: 19px 0;
  }
  .form.type_modal .form__other-btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 5px;
    font-size: 16px;
    border: 1px solid #3994ec;
  }
  .form.type_modal .form__delete-btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 5px;
  }
  .form.type_modal .form__submit-btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 5px;
    font-size: 16px;
  }
}
@media screen and (max-width: 476px) {
  .default_btn {
    font-size: 12px;
    padding: 7px 11px;
  }
  .desktop-view .users-edit__container {
    max-width: 300px;
  }
  .desktop-view .reports__filters__multiselect {
    gap: 12px 0;
    margin-top: 30px;
  }
  .desktop-view .reports__filters__multiselect__title {
    font-size: 15px;
  }
  .distributor-view .revenue .page__small-title {
    font-size: 17px;
  }
  .distributor-view .revenue__generate-btn {
    margin-top: 25px;
    font-size: 14px;
    padding: 8px 36px;
  }
  .form.type_auth .form__personal {
    margin-top: 20px;
  }
  .form.type_modal {
    max-width: 90%;
  }
  .settings-list__full {
    flex-direction: column;
    margin: 0 auto;
  }
  .download__header {
    height: 65px;
    padding: 0 15px;
  }
  .download__container {
    align-items: center;
    max-width: 90%;
    margin: min(6vh, 60px) auto 0;
  }
  .download__title {
    max-width: 280px;
  }
  .download__subtitle {
    max-width: 280px;
  }
}
@media screen and (max-width: 380px) {
  .switch.type_settings {
    gap: 15px 30px;
  }
  .switch.type_settings .switch__item {
    text-align: center;
  }
  .user-view .devices__current__head {
    flex-direction: column;
    align-items: start;
    gap: 10px 0;
  }
  .user-view .devices .scroll-container {
    max-height: calc(100vh - 180px - 176px);
  }
  .user-view .change-password__title {
    font-size: 20px;
  }
  .user-view .change-password__subtitle {
    font-size: 15px;
  }
  .user-view .settings .page__small-title {
    font-size: 18px;
  }
  .user-view .settings .default_btn {
    font-size: 12px;
    padding: 8px 11px;
  }
  .user-view .settings__password-change {
    max-width: 95%;
  }
}/*# sourceMappingURL=style.css.map */
