@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/**  Стили скролбара - старт */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #254558;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #254558;
}

::-webkit-scrollbar-track {
  background: #212121;
  border-radius: 15px;
  box-shadow: inset 8px 19px 30px #f0f0f0;
}

/**  Стили скролбара - конец */
/**  Стили выделения - старт */
::-moz-selection {
  background: #4f3558;
  opacity: 1;
  color: #e9e7e9;
}
::selection {
  background: #4f3558;
  opacity: 1;
  color: #e9e7e9;
}

/**  Стили выделения - конец */
/**  Кастомный сброс стилей - начало */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

input,
select,
label,
button,
textarea {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: 1.1;
  color: inherit;
  outline: none;
  border: none;
}
input::-moz-placeholder, select::-moz-placeholder, label::-moz-placeholder, button::-moz-placeholder, textarea::-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  color: #c4c4c4;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, label:-ms-input-placeholder, button:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  color: #c4c4c4;
}
input::placeholder,
select::placeholder,
label::placeholder,
button::placeholder,
textarea::placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  color: #c4c4c4;
}

input:focus {
  outline: 1px solid #808080;
}

input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: none;
}

pre {
  white-space: break-spaces;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
}

/**  Кастомный сброс стилей - конец */
/**  Стили флексов - Старт */
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.flex--fdc {
  flex-direction: column;
}
.flex--fdcr {
  flex-direction: column-reverse;
}
.flex--fdr {
  flex-direction: row;
}
.flex--fdrr {
  flex-direction: row-reverse;
}
.flex--aic {
  align-items: center;
}
.flex--ais {
  align-items: flex-start;
}
.flex--aie {
  align-items: flex-end;
}
.flex--aistr {
  align-items: stretch;
}
.flex--jcc {
  justify-content: center;
}
.flex--jcs {
  justify-content: flex-start;
}
.flex--jce {
  justify-content: flex-end;
}
.flex--jcsb {
  justify-content: space-between;
}
.flex--jcsa {
  justify-content: space-around;
}
.flex--jcse {
  justify-content: space-evenly;
}
.flex--fww {
  flex-wrap: wrap;
}
.flex--fwn {
  flex-wrap: nowrap;
}

/**  Стили флексов - конец */
.tac {
  text-align: center;
}
.tal {
  text-align: left;
}
.taright {
  text-align: right;
}
.taj {
  text-align: justify;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 300;
  color: #2b2b3a;
  background-color: #e9e7e9;
  font-family: "Roboto", sans-serif;
}

body {
  position: relative;
}
body::before {
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #05a58d 0%, #05a58d 20%, #909095 20%, #909095 40%, #e9e7e9 40%, #e9e7e9 60%, #4f3558 60%, #4f3558 80%, #329284 80%, #329284 100%);
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 25px 0px rgba(43, 43, 58, 0.3);
}

.Site {
  width: 100%;
  height: auto;
  min-height: 100%;
}
.Site__leftSide {
  width: 320px;
  min-width: 320px;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media (max-width: 1200px) {
  .Site__leftSide {
    width: 280px;
    min-width: 280px;
  }
}
@media (max-width: 1200px) and (max-width: 991px) {
  .Site__leftSide {
    width: 0px;
    min-width: 0px;
  }
}
.Site__rightSide {
  flex-grow: 1;
  padding: 25px 25px;
  max-height: 100vh;
  overflow: auto;
}
@media (max-width: 991px) {
  .Site__rightSide {
    transition: transform ease 0.4s, filter ease 0.4s;
  }
  .Site__rightSide.Aside--open {
    transform: translateX(350px);
    filter: blur(2px);
    pointer-events: none;
  }
}
@media (max-width: 991px) and (max-width: 414px) {
  .Site__rightSide.Aside--open {
    transform: translateX(100vw);
  }
}
.Site__rightSide--full {
  padding: 0px;
  width: 100%;
  height: 100vh;
}
.Site__rightSide--color {
  background-color: #329284;
  background-image: url("../image/robots.svg");
  background-repeat: repeat;
  background-position: center center;
}

.Aside {
  width: 100%;
  min-height: 100%;
  height: auto;
  box-shadow: 0px 0px 25px 0px rgba(43, 43, 58, 0.3);
  background-color: #329284;
  color: #e9e7e9;
  position: relative;
  z-index: 1000;
}
@media (max-width: 991px) {
  .Aside {
    width: 350px;
    max-width: 100vw;
    transform: translateX(-100%);
    transition: transform ease 0.4s;
  }
}
@media (max-width: 991px) and (max-width: 414px) {
  .Aside {
    width: 100vw;
  }
}
@media (max-width: 991px) {
  .Aside--open {
    transform: translateX(0%);
  }
}
@media (max-width: 991px) and (max-width: 414px) {
  .Aside--open .Aside__toggler {
    background-color: #254558;
    left: auto;
    right: 0;
    border-radius: 8px 0px 0px 8px;
  }
}
.Aside__toggler {
  height: 48px;
  aspect-ratio: 1/1;
  padding: 7px 7px;
  background: #329284 url("../image/Aside__toggler2.svg") no-repeat center/auto 60%;
  position: absolute;
  bottom: 15px;
  left: 100%;
  z-index: 1000;
  cursor: pointer;
  font-size: 0px;
  border-radius: 0px 8px 8px 0px;
}
@media (min-width: 992px) {
  .Aside__toggler {
    display: none;
  }
}
@media (max-width: 414px) {
  .Aside__toggler {
    transition: all linear 0.4s;
  }
}

.Auth {
  padding: 15px;
}
.Login {
  width: 100%;
}
.Login__avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 25px 0px rgba(43, 43, 58, 0.3);
}
@media (max-width: 1200px) {
  .Login__avatar {
    width: 60px;
  }
}
.Login__avatar > img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.Login__header {
  padding: 15px 7px;
}
@media (max-width: 1200px) {
  .Login__header {
    padding: 12px 7px;
  }
}
.Login__top {
  padding-left: 15px;
}
.Login__name {
  display: block;
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 1200px) {
  .Login__name {
    font-size: 17px;
  }
}
.Login__exit {
  display: block;
  margin-top: 5px;
  transition: all ease 0.3s;
}
.Login__exit:hover {
  opacity: 0.65;
  color: #2b2b3a;
}

.Nav {
  width: 100%;
  background: #05a58d;
  padding: 5px 0px;
  box-shadow: 0px 0px 0px 0px rgba(43, 43, 58, 0.3);
}
.Nav > ul {
  list-style: none;
  width: 100%;
  margin: 0;
  gap: 10px;
}
.Nav > ul > li {
  width: 100%;
}
.Nav > ul > li > b {
  display: block;
  padding: 10px 15px;
  background: #008a96;
  color: #e9e7e9;
  background: #909095;
  font-weight: 500;
}
.Nav > ul > li > a {
  display: block;
  padding: 7px 15px;
  transition: all ease 0.3s;
}
.Nav > ul > li > a:hover {
  background-color: #329284;
}

.Table {
  width: 100%;
  border-collapse: collapse;
}
* ~ .Table {
  margin-top: 20px;
}
.Table caption,
.Table thead,
.Table tbody,
.Table tfoot,
.Table tr,
.Table th,
.Table td {
  border: 0px solid #d7d7d7;
  border-collapse: collapse;
}
.Table tbody td {
  border-bottom: 1px solid #d7d7d7;
}
.Table td,
.Table th {
  padding: 7px 6px;
}
.Table__caption {
  font-size: 1.3rem;
  padding: 7px 15px;
}
.Table__caption--tal {
  text-align: left;
}
.Table__caption--dark {
  background: #254558;
  color: #e9e7e9;
}
.Table__thead {
  background: #329284;
}
.Table__tr--command[data-active="0"] {
  opacity: 0.5;
}
.Table__th {
  color: #FFF;
  padding: 15px 5px !important;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  font-family: "Montserrat Alternates", sans-serif;
  border: 1px solid #329284 !important;
}
.Table__tbody--overflow {
  overflow-y: auto;
}
.Table__tbody--spoiler > tr {
  display: none;
}
.Table__tbody--spoiler > tr:first-child {
  display: table-row !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.Table__tbody--spoiler.open .Table__td--caption {
  background: #05a58d;
  color: #e9e7e9;
}
.Table__tbody--spoiler.open > tr {
  display: table-row;
}
.Table__tbody tr:hover {
  background: rgba(50, 146, 132, 0.2);
}
.Table__td a:not(.Bttn) {
  -webkit-text-decoration: underline dotted 1px;
          text-decoration: underline dotted 1px;
  color: #329284;
}
.Table__td--sheckbox {
  width: 60px;
}
.Table__td--search {
  padding: 0 !important;
  border-top: 2px solid rgba(37, 69, 88, 0.2) !important;
  border-bottom: 2px solid rgba(37, 69, 88, 0.2) !important;
}
.Table__td--add_new button {
  margin-left: auto;
}
.Table__td--caption {
  font-size: 20px;
  padding-left: 14px !important;
  transition: all ease 0.3s;
}
.Table__td--caption:hover {
  background: #05a58d;
  color: #e9e7e9;
}
.Table__td--type {
  width: 30%;
}
.Table__td--lang {
  width: 150px;
  text-align: center;
  border-left: 1px solid #d7d7d7 !important;
}
.Table__td--value, .Table__td--aliases {
  border-left: 1px solid #d7d7d7 !important;
  padding: 0 !important;
}
.Table__td--value textarea, .Table__td--aliases textarea {
  display: block;
  width: 100%;
  border: none;
  font-size: 16px;
  line-height: 1.4;
  padding: 7px 15px;
  resize: vertical;
}
.Table__td--aliases textarea {
  width: 350px;
}
.Table__td--id {
  text-align: center;
}
.Table__td--move {
  cursor: move;
}
.Table__td--command input {
  width: 150px;
  height: 54px;
}
.Table__td--description input {
  width: 250px;
  height: 54px;
}
.Table__td--permission select {
  width: 250px;
  padding: 5px 5px;
  height: 54px;
}

.closeIcon {
  display: block;
  aspect-ratio: 1/1;
  width: inherit;
  height: auto;
  cursor: pointer;
}
.closeIcon::after, .closeIcon::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #2b2b3a;
}
.closeIcon::after {
  transform: translateY(-50%) rotate(45deg);
}
.closeIcon::before {
  transform: translateY(-50%) rotate(-45deg);
}

[data-show] {
  transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

[data-show="1"] {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.AddNewType {
  width: 500px;
  max-width: 100vw;
  height: auto;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #e9e7e9;
  border-radius: 8px;
  box-shadow: 0px 0px 15px 0px rgba(43, 43, 58, 0.45);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: visibility ease 0.3s, opacity ease 0.3s;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.AddNewType--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.AddNewType__title {
  width: 100%;
  padding: 10px 16px;
  background: #329284;
  border-radius: 8px 8px 0px 0px;
  font-size: 18px;
  color: #e9e7e9;
}
.AddNewType__close {
  width: 20px;
  position: absolute;
  right: 15px;
  top: 10px;
}
.AddNewType__form {
  padding: 25px;
  display: block;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 14px;
  flex-direction: column;
}
.AddNewType__form > * {
  width: 100%;
}
.AddNewType__section input {
  margin-top: 10px;
}
.AddNewType__button {
  width: 100%;
}
.AddNewType select,
.AddNewType input {
  outline: none;
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid rgba(23, 17, 32, 0.65);
  border-radius: 4px;
  padding: 5px 15px;
}
.AddNewType select:valid,
.AddNewType input:valid {
  border-color: #1ed2f4;
}
.AddNewType select:invalid,
.AddNewType input:invalid {
  border-color: #4f3558;
}

.Bttn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  height: 46px;
  padding: 5px 20px;
  font-size: 15px;
  font-weight: 450;
  transition: all ease 0.3s;
  text-align: center;
}
.Bttn--inline {
  display: inline-flex;
}
.Bttn--cbp {
  background: #05a58d;
  color: #e9e7e9;
}
.Bttn--cbp:hover {
  background: #2b2b3a;
  color: #e9e7e9;
}
.Bttn--cbb {
  background: #254558;
  color: #e9e7e9;
}
.Bttn--cbb:hover {
  background: #329284;
  color: #e9e7e9;
}

.Form {
  display: block;
  width: 100%;
}
.Form__button {
  display: block;
  padding: 5px 20px;
  width: auto;
  height: 46px;
  background: #2b2b3a;
  color: #e9e7e9;
  transition: all ease 0.3s;
}
.Form__button:hover {
  background: #1ed2f4;
  color: #2b2b3a;
}
.EditCommand {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  offset: 0;
  z-index: 5000;
  background: rgba(43, 43, 58, 0.2);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  transition: opacity ease 1s, visibility ease 1s;
}
.EditCommand--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.EditCommand__close {
  cursor: pointer;
}
.EditCommand__close--back {
  width: 100%;
  height: 100%;
  offset: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.EditCommand__close--icon {
  width: 42px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10;
  background: #329284 url("../image/icons/close-white.svg") no-repeat center/60% auto;
  transform: translateY(-100%);
}
.EditCommand__wrap {
  position: relative;
  z-index: 10;
  padding: 10px;
  background: #e9e7e9;
  box-shadow: 0px 0px 25px 0px rgba(43, 43, 58, 0.3);
  width: clamp(350px, 40vw, 550px);
}
.EditCommand__title {
  padding: 7px 14px;
  background: #329284;
  color: #e9e7e9;
  font-size: 18px;
}
.EditCommand__form {
  padding: 10px 10px;
  gap: 7px;
}
.EditCommand__line {
  width: 100%;
}
.fEl {
  width: 100%;
  position: relative;
}
.fEl--checkbox {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.fEl__title {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.fEl__checkbox {
  width: 60px;
  height: 35px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  background: rgba(144, 144, 149, 0);
  border-radius: 60px;
  padding: 5px;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(43, 43, 58, 0.2) inset;
  cursor: pointer;
}
.fEl__checkbox::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  background: #909095;
  border-radius: 50%;
  margin-left: 0px;
  transition: all ease 0.3s;
}
.fEl__checkbox:checked::after {
  margin-left: 50%;
  background: #05a58d;
}
.fEl__field {
  display: block;
  width: 100%;
  height: 48px;
  padding: 7px 15px;
  box-shadow: 0px 0px 10px 0px rgba(43, 43, 58, 0.2) inset;
  background: #e9e7e9;
}
.fEl__select {
  display: block;
  width: 100%;
  height: 48px;
  border: 1px solid #999;
  padding: 7px 15px;
}
.fEl__select option {
  display: block;
  width: 100%;
  padding: 5px;
}
.fEl__textarea {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100px;
  border: 1px solid #999;
  padding: 7px 15px;
  resize: vertical;
}
.fEl__bttn {
  width: auto;
  height: 42px;
  background: #254558;
  color: #e9e7e9;
  padding: 5px 25px;
}
.fEl__label {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
}
.fEl__label--radio input {
  cursor: pointer;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  min-width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border: 2px solid #2b2b3a;
  border-radius: 99px;
  transition: all ease 0.3s;
  margin-right: 10px;
}
.fEl__label--radio input:checked {
  border-color: #254558;
  box-shadow: 0px 0px 0px 4px #e9e7e9 inset;
  background: #254558;
}
.fEl__label span {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.pTitle {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  border-left: 4px solid #05a58d;
  padding: 0.3rem 1rem;
  margin-bottom: 30px;
}

.Title {
  font-weight: 400;
  margin: 1rem 0;
}
.Title--h2 {
  font-size: 1.4rem;
}

.tableSearch {
  display: block;
  width: 100%;
  height: 46px;
  padding: 7px 25px;
}/*# sourceMappingURL=style.css.map */