@charset "UTF-8";
/*Colors*/
/*Fonts*/
@font-face {
  font-family: "Regular";
  src: url(../fonts/Regular.ttf);
}
@font-face {
  font-family: "Medium";
  src: url(../fonts/Medium.ttf);
}
@font-face {
  font-family: "SemiBold";
  src: url(../fonts/SemiBold.ttf);
}
@font-face {
  font-family: "Bold";
  src: url(../fonts/Bold.ttf);
}
@font-face {
  font-family: "ExtraBold";
  src: url(../fonts/ExtraBold.ttf);
}
@keyframes moveTop {
  0% {
    top: -50px;
  }
  100% {
    top: 15px;
  }
}
/*Specification*/
* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  font-size: 1rem;
  color: #2A3048;
  font-family: "Regular", sans-serif;
  background-color: #F7F6FB;
  position: relative;
}

.btn {
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #7F39FB;
  transition: 0.3s all ease;
  color: #7F39FB;
  font-family: "Medium", sans-serif;
  font-size: 1.125rem;
}
.btn:hover {
  opacity: 1;
  transition: 0.3s all ease;
  background-color: transparent;
  background-color: #7F39FB;
  color: #FFF;
  border-color: #7F39FB;
}
.btn:focus {
  opacity: 1;
}
.btn-primary, .btn-success, .btn-info {
  border-color: #7F39FB;
  color: #2A3048;
}
.btn-primary:hover, .btn-success:hover, .btn-info:hover {
  border-color: #7F39FB;
  background-color: #7F39FB;
  color: #FFF;
}
.btn-secondary {
  border-color: rgba(42, 48, 72, 0.5);
  color: #FFF;
  background-color: rgba(42, 48, 72, 0.5);
}
.btn-secondary:hover {
  border-color: #2A3048;
  background-color: #2A3048;
  color: #FFF;
}
.btn-danger, .btn-warning {
  border-color: #FD6B6B;
  background-color: #FD6B6B;
  color: #FFF;
}
.btn-danger:hover, .btn-warning:hover {
  background-color: transparent;
  border-color: #FD6B6B;
  color: #FD6B6B;
}
.btn-light {
  border-color: rgba(42, 48, 72, 0.2);
  color: #2A3048;
  background-color: transparent;
}
.btn-light:hover {
  border-color: #2A3048;
  background-color: transparent;
  color: #2A3048;
}
.btn-dark {
  border-color: #2A3048;
  background-color: #2A3048;
  color: #FFF;
}
.btn-dark:hover {
  background-color: transparent;
  color: #2A3048;
  border-color: #2A3048;
}

.container {
  width: 100%;
  max-width: 1320px;
  box-sizing: border-box;
}
.container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 100%;
  max-width: 1320px;
}

input[type=checkbox] {
  border: 1px solid #7F39FB;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 4px;
  margin-top: 0;
}
input[type=checkbox]:focus {
  border: 0;
  box-shadow: none;
  border: 1px solid #7F39FB;
}
input[type=checkbox]:checked,
input[type=checkbox].form-check-input:indeterminate {
  background-color: #7F39FB;
  border-color: #7F39FB;
}
input[type=number], input[type=num] {
  border: 1px solid #979797;
  height: 40px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
}
input[type=number]:focus, input[type=num]:focus {
  border: 0;
  box-shadow: none;
  border: 1px solid #7F39FB;
}
input[type=number]::-moz-placeholder, input[type=num]::-moz-placeholder {
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
}
input[type=number]::placeholder, input[type=num]::placeholder {
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
}
input[type=text], input[type=email], input[type=tel], input[type=password] {
  border: 1px solid #979797;
  height: 40px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus {
  border: 0;
  box-shadow: none;
  border: 1px solid #7F39FB;
}

/* textarea {
  border: 1px solid #979797;
  height: 40px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
}
textarea:focus {
  border: 0;
  box-shadow: none;
  border: 1px solid #7F39FB;
} */

.modal {
  background-color: rgba(42, 48, 72, 0.1);
  backdrop-filter: blur(5px);
}
.modal-dialog {
  max-width: 420px;
}
.modal-sm {
  max-width: 350px;
}
.modal-content {
  border-color: transparent;
  border-radius: 20px;
}
.modal-title {
  font-size: 1.563rem !important;
  font-family: "Bold", sans-serif;
}
.modal-body {
  padding: 20px;
}
.modal-header {
  border: 0;
  justify-content: center;
  flex-wrap: nowrap;
  height: 80px;
  padding: 20px;
  padding-bottom: 0;
}
.modal-header .btn-close {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 30px;
  height: 30px;
  padding: 0;
  background-image: url(../icons/17-icon-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  opacity: 1;
  margin: 0;
}
.modal-footer {
  padding: 20px;
}
.modal-footer .modal-delete-form {
  width: calc(50% - 10px);
}
.modal-footer .modal-delete-form .btn-yes {
  width: 100%;
}
.modal-footer .btn-yes,
.modal-footer .btn-no {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 40px;
  border-radius: 10px;
  background-color: #7F39FB;
  color: #FFF;
  font-family: "Medium", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  width: calc(50% - 10px);
  border: 1px solid #7F39FB;
}
.modal-footer .btn-yes:hover,
.modal-footer .btn-no:hover {
  background-color: #2A3048;
  color: #FFF;
  transition: 0.3s all ease;
  border-color: #2A3048;
}
.modal-footer .btn-no {
  background-color: transparent;
  color: #7F39FB;
}
.modal__change-user {
  padding-top: 20px;
}
.modal__change-user select {
  margin-bottom: 20px;
}
.modal__change-user button[type=submit] {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.modal__change-user button[type=submit]:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.modal__change-user button[type=submit]:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
}
.modal__change-user button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.modal__delete-info, .modal__restore-info, .modal__change-info {
  display: block;
  margin: 0;
  padding: 0;
}
.modal__delete-info li, .modal__restore-info li, .modal__change-info li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.modal__delete-info li:last-child, .modal__restore-info li:last-child, .modal__change-info li:last-child {
  margin-bottom: 0;
}
.modal__delete-info li, .modal__restore-info li, .modal__change-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 20px;
}
.modal__delete-info li span, .modal__restore-info li span, .modal__change-info li span {
  display: block;
}
.modal__delete-info li span.name, .modal__restore-info li span.name, .modal__change-info li span.name {
  font-size: 1rem;
  font-family: "Bold", sans-serif;
}
.modal__delete-info li span.param, .modal__restore-info li span.param, .modal__change-info li span.param {
  font-size: 1rem;
  font-family: "Medium", sans-serif;
}
.modal__change-password {
  display: block;
}
.modal__change-password label {
  display: block;
  padding: 0;
  position: relative;
  margin-bottom: 10px;
}
.modal__change-password label .show-pass {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 13px;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-image: url(../icons/14-icon-pass.svg);
  cursor: pointer;
  z-index: 3;
}
.modal__change-password label .show-pass.active {
  background-image: url(../icons/15-icon-show-pass.svg);
}
.modal__change-password label.attached span {
  color: #2A3048;
  text-align: left;
  padding-left: 30px;
  height: 14px;
  font-size: 0.688rem;
}
.modal__change-password label.error input[type=email], .modal__change-password label.error input[type=password], .modal__change-password label.error input[type=text] {
  border-color: #FD6B6B;
  color: #FD6B6B;
}
.modal__change-password label.error.attached.email-label span:before {
  content: "Неверный email";
}
.modal__change-password label.error.attached.password-label span:before {
  content: "Пароли не совпадают";
}
.modal__change-password label.error.attached.password-label.pass span:before {
  content: "Неверный пароль";
}
.modal__change-password label.error.attached span {
  font-size: 0;
}
.modal__change-password label.error.attached span:before {
  font-size: 0.688rem;
  display: block;
  color: #FD6B6B;
  font-family: "SemiBold", sans-serif;
}
.modal__change-password label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  z-index: 1;
  align-content: center;
}
.modal__change-password label input[type=email], .modal__change-password label input[type=password], .modal__change-password label input[type=text] {
  position: relative;
  height: 50px;
  border-radius: 10px;
  background-color: transparent;
  z-index: 2;
  font-size: 1.125rem;
  padding: 0 10px;
  text-align: center;
}
.modal__change-password button[type=submit] {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.modal__change-password button[type=submit]:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.modal__change-password button[type=submit]:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
}
.modal__change-password button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}

select,
select.form-select {
  border: 1px solid #979797;
  height: 40px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  padding: 0 10px 0 10px;
  --bs-form-select-bg-img: none;
  background-image: url(../icons/07-icon-arrow.svg);
  background-size: 8px;
  cursor: pointer;
  background-position: right 10px bottom 50%;
  border-radius: 10px;
}
select:focus,
select.form-select:focus {
  border: 0;
  box-shadow: none;
  border: 1px solid #7F39FB;
}
select:disabled,
select.form-select:disabled {
  background-color: rgba(127, 57, 251, 0.1);
  border-color: rgba(127, 57, 251, 0.1);
  cursor: default;
}

.nav-tabs {
  border-color: transparent;
}

.tab-pane {
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
}
.tab-pane.fade {
  opacity: 1;
}
.tab-pane {
  border-radius: 20px;
}
.tab-pane:first-child {
  border-top-left-radius: 0;
}

.nav-tabs .nav-link {
  color: #7F39FB;
  font-family: "Medium", sans-serif;
  font-size: 1.125rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 10px;
  padding-bottom: 11px;
}
.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #2A3048;
  font-family: "Medium", sans-serif;
  font-size: 1.125rem;
  border-color: transparent;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

header {
  position: absolute;
  top: 15px;
  z-index: 2;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  max-width: 1296px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 20px;
}
header.fixed-head {
  position: fixed;
  animation: moveTop 0.3s ease-in-out;
}
header .logo {
  display: block;
  width: 135px;
  height: 40px;
  background-image: url(../img/logo-head.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-right: 20px;
}
header form {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 335px);
  height: 40px;
  position: relative;
}
header form input[type=text] {
  width: 100%;
  border: 1px solid rgba(42, 48, 72, 0.2);
  height: 40px;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  color: #2A3048;
  position: relative;
  border-radius: 10px;
  padding: 0 10px;
  transition: 0.3s all ease;
}
header form input[type=text]:focus {
  outline: none;
  border-color: rgba(127, 57, 251, 0.5);
  transition: 0.3s all ease;
}
header form input[type=text]::-moz-placeholder {
  color: rgba(42, 48, 72, 0.5);
  font-family: "Medium", sans-serif;
}
header form input[type=text]::placeholder {
  color: rgba(42, 48, 72, 0.5);
  font-family: "Medium", sans-serif;
}
header form button[type=submit] {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 5px;
  opacity: 0.8;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  background-image: url(../icons/05-icon-search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  transition: 0.3s all ease;
}
header form button[type=submit]:focus {
  outline: none;
}
header form button[type=submit]:hover {
  opacity: 1;
  transition: 0.3s all ease;
}
header .lk-panel {
  width: 160px;
  margin-left: 20px;
}
header .lk-panel .button {
  width: 100%;
  position: relative;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #7F39FB;
  transition: 0.3s all ease;
  color: #7F39FB;
  font-family: "Medium", sans-serif;
  font-size: 1.125rem;
  height: 40px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 15px;
}
header .lk-panel .button:hover {
  transition: 0.3s all ease;
  background-color: transparent;
  background-color: #7F39FB;
  color: #FFF;
  border-color: #7F39FB;
}
header .lk-panel .button:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../icons/04-icon-user.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  top: calc(50% - 15px);
  position: absolute;
  left: 10px;
  border-radius: 50%;
  background-color: #FFF;
}

footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #2A3048;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 0 20px;
  height: 60px;
  background-color: #2A3048;
  max-width: 1296px;
}
footer .logo {
  width: 72px;
  height: 16px;
  display: block;
  background-image: url(../img/logo-footer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-right: 10px;
}
footer .year {
  color: #FFF;
  font-family: "Medium", sans-serif;
  font-size: 1.25rem;
}
footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}
footer ul li {
  margin: 0;
  margin-left: 10px;
  padding: 0;
  list-style-type: none;
}
footer ul li:first-child a {
  padding-left: 36px;
  position: relative;
}
footer ul li:first-child a:before, footer ul li:first-child a:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url(../icons/01-icon-file.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  transition: 0.3s all ease;
  position: absolute;
  top: calc(50% - 8px);
  left: 10px;
  opacity: 1;
}
footer ul li:first-child a:after {
  background-image: url(../icons/02-icon-file.svg);
  opacity: 0;
}
footer ul li:first-child a:hover:before {
  opacity: 0;
}
footer ul li:first-child a:hover:after {
  opacity: 1;
}
footer ul li a {
  color: #FFF;
  text-decoration: none;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #FFF;
  border-radius: 10px;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
}
footer ul li a:hover {
  background-color: #FFF;
  color: #2A3048;
}

.content {
  min-height: calc(100vh - 75px);
  padding-top: 125px;
  padding-bottom: 30px;
  width: 100%;
  margin: 0 auto;
  max-width: 1320px;
}

.error-page {
  padding-left: 12px;
  padding-right: 12px;
  align-content: center;
  text-align: center;
}
.error-page__title {
  font-size: 9.375rem;
  text-align: center;
  font-family: "ExtraBold", sans-serif;
  color: #7F39FB;
  height: 140px;
  line-height: 8.75rem;
  align-content: center;
  margin-bottom: 20px;
}
.error-page__info {
  font-size: 1.875rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  text-align: center;
  height: 60px;
  margin-bottom: 20px;
  align-content: center;
}
.error-page__back {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 10px;
  background-color: #7F39FB;
  color: #FFF;
  height: 40px;
  max-width: 350px;
  border-radius: 10px;
  margin: 0 auto;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.error-page__back:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../icons/03-icon-back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-right: 10px;
}
.error-page__back:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}

.enter-param .row {
  align-items: stretch;
}
.enter-param__left, .enter-param__right {
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  border-radius: 20px;
  height: 100%;
  border: 2px solid #FFF;
}
.enter-param__left .head, .enter-param__right .head {
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  padding: 15px 20px;
  height: 75px;
  align-content: center;
  text-align: left;
  font-family: "SemiBold", sans-serif;
  font-size: 1.125rem;
}
.enter-param__left .body, .enter-param__right .body {
  padding: 15px 20px;
}
.enter-param__left label, .enter-param__right label {
  cursor: pointer;
}
.enter-param__left {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.enter-param__left .body {
  padding-top: 0;
  width: 100%;
}
.enter-param__left .head {
  white-space: 100%;
}
.enter-param__left .error-msg {
  display: none;
}
.enter-param__left.error {
  border: 2px solid #FD6B6B;
}
.enter-param__left.error .error-msg {
  display: flex;
  height: 50px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #FD6B6B;
  color: #FFF;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 10px 20px;
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
  margin-top: auto;
}
.enter-param__left.error .error-msg:before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background-image: url(../icons/06-icon-warning.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-right: 10px;
}
.enter-param__left ul {
  padding: 0;
  margin: 0;
}
.enter-param__left ul li ul {
  padding-left: 30px;
  border-top: 1px solid rgba(42, 48, 72, 0.2);
}
.enter-param__left ul li ul li:last-child ul {
  border-bottom: 0;
}
.enter-param__left ul li ul li ul {
  padding-top: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
}
.enter-param__left ul li ul li ul li .line {
  padding-top: 0 !important;
}
.enter-param__left ul li ul li ul li ul {
  border: 0;
}
.enter-param__left ul li {
  list-style-type: none;
}
.enter-param__left ul li .line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 15px;
  padding-top: 15px;
}
.enter-param__left ul li .line label {
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  line-height: 1.25rem;
}
.enter-param__left ul li .line label span {
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
  height: 20px;
  line-height: 18px;
  display: block;
  margin-top: 2px;
}
.enter-param__right .line {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.enter-param__right .line-sub {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: block;
  margin-left: 140px;
  height: 40px;
  align-content: center;
  font-size: 1rem;
}
.enter-param__right .line-sub span {
  font-family: "ExtraBold", sans-serif;
  color: #FD6B6B;
  font-size: 1rem;
}
.enter-param__right .line.select select {
  max-width: 60px;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.enter-param__right .line.select input[type=text],
.enter-param__right .line.select input[type=number] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.enter-param__right .line input[type=text],
.enter-param__right .line input[type=number] {
  max-width: 250px;
}
.enter-param__right .line button[type=submit] {
  width: 250px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  margin-left: 140px;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  cursor: pointer;
  color: #FFF;
  transition: 0.3s all ease;
  border: 1px solid #7F39FB;
  background-color: #7F39FB;
}
.enter-param__right .line button[type=submit]:hover {
  background-color: transparent;
  color: #7F39FB;
}
.enter-param__right .line button[type=submit]:disabled {
  border-color: transparent;
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.enter-param__right .line button[type=submit]:disabled:hover {
  border-color: transparent;
}
.enter-param__right .line .addon {
  width: 60px;
  display: block;
  text-align: center;
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
}
.enter-param__right .line__info {
  width: 130px;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.enter-param__right .line__info.req:after {
  content: "*";
  display: inline;
  color: #FD6B6B;
  font-size: 0.875rem;
  font-family: "ExtraBold", sans-serif;
}
.enter-param__right .line select {
  max-width: 250px;
}

.head-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}

.lk-line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
.lk-line .control-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #7F39FB;
  color: #2A3048;
  height: 40px;
  width: 250px;
  border-radius: 10px;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  margin-right: 20px;
}
.lk-line .control-link:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
  border-color: #2A3048;
  color: #FFF;
}
.lk-line .exit-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 10px;
  background-color: #7F39FB;
  color: #FFF;
  height: 40px;
  width: 100px;
  border-radius: 10px;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.lk-line .exit-link:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}

.back-to-main {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 10px;
  background-color: #7F39FB;
  color: #FFF;
  height: 40px;
  max-width: 350px;
  border-radius: 10px;
  margin-right: auto;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.back-to-main:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../icons/03-icon-back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-right: 10px;
}
.back-to-main:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}

.param-result .tab-pane {
  overflow: hidden;
}
.param-result h1 {
  font-weight: normal;
  font-size: 2.188rem;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 30px;
}
.param-result .row {
  align-items: stretch;
}
.param-result__left .tab-pane {
  height: 100%;
  min-height: 500px;
}
.param-result__graphic {
  width: 100%;
  height: 500px;
  padding: 20px;
}
.param-result__graphic .placeholder-custom {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #D9D9D9;
  border-radius: 15px;
}
.param-result__graphic .placeholder-custom span {
  font-size: 7.5rem;
  color: rgba(42, 48, 72, 0.5);
}
.param-result__chars {
  height: 500px;
}
.param-result__chars ul {
  display: block;
  padding: 0;
  margin: 0;
  padding-top: 20px;
}
.param-result__chars ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  list-style-type: none;
  height: 40px;
  padding: 0 20px;
}
.param-result__chars ul li:nth-child(odd) {
  background-color: rgba(42, 48, 72, 0.1);
}
.param-result__chars ul li .name {
  width: 400px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.param-result__chars ul li .param {
  width: calc(100% - 400px);
  font-family: "SemiBold", sans-serif;
  font-size: 1.125rem;
}
.param-result__materials {
  height: 500px;
}
.param-result__materials ul {
  display: block;
  padding: 0;
  margin: 0;
}
.param-result__materials ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  list-style-type: none;
  height: 40px;
  padding: 0 20px;
}
.param-result__materials ul li:nth-child(even) {
  background-color: rgba(42, 48, 72, 0.1);
}
.param-result__materials ul li.head {
  height: 60px;
  font-size: 1rem;
}
.param-result__materials ul li.head .item {
  width: 400px;
  font-size: 1rem;
  font-family: "SemiBold", sans-serif;
}
.param-result__materials ul li.head .item:last-child {
  width: calc(100% - 400px);
}
.param-result__materials ul li .name {
  width: 400px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.param-result__materials ul li .param {
  width: calc(100% - 400px);
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.param-result__slider {
  height: 500px;
  padding: 20px;
  position: relative;
  width: 100%;
}
.param-result__slider .item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 460px;
}
.param-result__slider .item img {
  display: block;
  margin: 0 auto;
  width: auto;
}
.param-result__slider .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  border: 0;
  background-color: transparent;
  font-size: 0 !important;
  cursor: pointer;
  z-index: 2;
  top: calc(50% - 20px);
  left: auto;
  right: auto;
  transition: 0.3s all ease;
}
.param-result__slider .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}
.param-result__slider .slick-arrow.slick-prev {
  background-image: url(../icons/08-icon-left.svg);
  left: 10px;
}
.param-result__slider .slick-arrow.slick-next {
  background-image: url(../icons/09-icon-right.svg);
  right: 20px;
}
.param-result__right {
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  height: 550px;
  overflow: hidden;
}
.param-result__right .head {
  display: flex;
  height: 50px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 20px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
}
.param-result__right .head .name {
  margin-right: auto;
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
  flex-shrink: 0;
}
.param-result__right .head .pdf,
.param-result__right .head .add {
  text-decoration: none;
  width: 100px;
  height: 30px;
  border: 1px solid #7F39FB;
  color: #7F39FB;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.75rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  cursor: pointer;
  margin-right: 5px;
}
.param-result__right .head .pdf:hover,
.param-result__right .head .add:hover {
  background-color: #2A3048;
  color: #FFF;
  border-color: #2A3048;
}
.param-result__right .head .add {
  background-color: #7F39FB;
  color: #FFF;
  margin: 0;
}
.param-result__right .head .add:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-image: url(../icons/10-icon-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 5px;
}
.param-result__right .body {
  height: 500px;
}
.param-result__right .body .title {
  padding: 0 20px;
  height: 60px;
  font-size: 1.125rem;
  font-family: "Bold", sans-serif;
  align-content: center;
}
.param-result__right .body ul {
  padding: 0;
  margin: 0;
  padding-right: 10px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
}
.param-result__right .body ul:last-child {
  padding-bottom: 20px;
  border: 0;
}
.param-result__right .body ul li {
  padding: 0 5px 0 20px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 40px;
}
.param-result__right .body ul li:nth-child(odd) {
  background-color: rgba(42, 48, 72, 0.1);
}
.param-result__right .body ul li .name {
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.param-result__right .body ul li .param {
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
}
.param-result__long {
  margin-top: 20px;
  border-radius: 20px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  overflow: hidden;
}
.param-result__long ul {
  padding: 0;
  margin: 0;
}
.param-result__long ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.param-result__long .head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 50px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  padding-right: 10px;
}
.param-result__long .head .item {
  width: 16%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.param-result__long .head .item:first-child {
  width: 10%;
  padding-left: 20px;
}
.param-result__long .head .item:last-child {
  padding-right: 20px;
}
.param-result__long .head .item span {
  font-size: 0.875rem;
  font-family: "SemiBold", sans-serif;
  white-space: nowrap;
}
.param-result__long .head .item .filter {
  width: 40px;
  height: 40px;
  transition: 0.3s all ease;
  background-image: url(../icons/13-icon-default.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
  flex-shrink: 0;
}
.param-result__long .head .item .filter:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}
.param-result__long .head .item.up .filter {
  background-image: url(../icons/12-icon-up.svg);
}
.param-result__long .head .item.down .filter {
  background-image: url(../icons/11-icon-down.svg);
}
.param-result__long .body {
  padding-bottom: 10px;
  height: 240px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-right: 10px;
}
.param-result__long .body .simplebar-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.param-result__long .body .line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 40px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  cursor: pointer;
  transition: 0.3s all ease;
}
.param-result__long .body .line:hover {
  background-color: rgba(42, 48, 72, 0.1);
}
.param-result__long .body .line.active {
  background-color: rgba(127, 57, 251, 0.2);
}
.param-result__long .body .line.active:hover {
  background-color: rgba(127, 57, 251, 0.2);
}
.param-result__long .body .line .item {
  width: 16%;
}
.param-result__long .body .line .item:first-child {
  width: 10%;
  padding-left: 20px;
}
.param-result__long .body .line .item:last-child {
  padding-right: 20px;
}

.search-result h1 {
  font-weight: normal;
  font-size: 2.188rem;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 30px;
}
.search-result h1 span {
  font-family: "Regular", sans-serif;
}
.search-result__form {
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
}
.search-result__form .form-header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 50px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  padding: 0 20px;
}
.search-result__form .form-header span {
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
}
.search-result__form .form-header .reset {
  width: 100px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #7F39FB;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #7F39FB;
  font-size: 0.85rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
}
.search-result__form .form-header .reset:hover {
  background-color: #2A3048;
  color: #FFF;
  border-color: #2A3048;
  transition: 0.3s all ease;
}
.search-result__form .form-item {
  display: none;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
}
.search-result__form .form-item.show-all .line {
  display: flex;
}
.search-result__form .form-item .title {
  height: 60px;
  padding: 0 20px;
  align-content: center;
  font-family: "Bold", sans-serif;
  font-size: 1.125rem;
}
.search-result__form .form-item .more {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
  padding-left: 20px;
  width: 100%;
  height: 40px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  color: #7F39FB;
}
.search-result__form .form-item .more:hover {
  color: #2A3048;
}
.search-result__form .form-item .more.show {
  font-size: 0;
}
.search-result__form .form-item .more.show:before {
  content: "Скрыть";
  display: block;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  color: #7F39FB;
}
.search-result__form .form-item .more.show:hover:before {
  color: #2A3048;
}
.search-result__form .form-item .more.show:after {
  transform: rotate(180deg);
}
.search-result__form .form-item .more:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url(../icons/07-icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
.search-result__form .form-item .line {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: none;
  margin-bottom: 15px;
  padding: 0 20px;
}
.search-result__form .form-item .line:nth-child(1), .search-result__form .form-item .line:nth-child(2), .search-result__form .form-item .line:nth-child(3), .search-result__form .form-item .line:nth-child(4) {
  display: flex;
}
.search-result__form .form-item .line.active {
  display: flex;
}
.search-result__form .form-item.active {
  display: block;
}
.search-result__form .form-footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
}
.search-result__form .form-footer .all {
  width: 130px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #7F39FB;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #7F39FB;
  font-size: 0.85rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  margin-right: 5px;
}
.search-result__form .form-footer .all:hover {
  background-color: #2A3048;
  color: #FFF;
  border-color: #2A3048;
  transition: 0.3s all ease;
}
.search-result__form .form-footer button[type=submit] {
  width: 100px;
  height: 30px;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 0.85rem;
  font-family: "Medium", sans-serif;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
}
.search-result__form .form-footer button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.search-result__has-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 20px;
}
.search-result__has-items .item {
  padding: 10px;
  padding-bottom: 15px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  border: 1px solid #FFF;
  transition: 0.3s all ease;
}
.search-result__has-items .item:hover {
  transition: 0.3s all ease;
  box-shadow: none;
}
.search-result__has-items .item .title {
  text-decoration: none;
  height: 50px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  font-size: 1.125rem;
  font-family: "SemiBold", sans-serif;
  transition: 0.3s all ease;
  color: #2A3048;
  display: block;
  margin-bottom: 10px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-content: center;
}
.search-result__has-items .item .title:hover {
  transition: 0.3s all ease;
  color: #7F39FB;
}
.search-result__has-items .item .art {
  height: 20px;
  display: block;
  align-content: center;
  font-size: 0.75rem;
  font-family: "SemiBold", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  margin-bottom: 10px;
}
.search-result__has-items .item img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
.search-result__has-items .item .info {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.75rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  margin-bottom: 15px;
}
.search-result__has-items .item .line {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.search-result__has-items .item .line .more {
  text-decoration: none;
  height: 40px;
  width: calc(100% - 50px);
  border: 1px solid #7F39FB;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 10px;
  color: #2A3048;
  transition: 0.3s all ease;
}
.search-result__has-items .item .line .more:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
  color: #FFF;
  border-color: #2A3048;
}
.search-result__has-items .item .line .add {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #7F39FB;
  transition: 0.3s all ease;
  background-image: url(../icons/10-icon-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
}
.search-result__has-items .item .line .add:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.search-result__no-items {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding-top: 15%;
  font-size: 2.813rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
}

.single-item-page h1 {
  font-weight: normal;
  font-size: 2.188rem;
  font-family: "SemiBold", sans-serif;
  margin-bottom: 20px;
  height: 40px;
  display: block;
  align-content: center;
}
.single-item-page__slider {
  background-color: #FFF;
  border-radius: 20px;
  height: 450px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
}
.single-item-page__slider img {
  display: block;
  margin: 0 auto;
  height: 400px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-item-page__slider .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  border: 0;
  background-color: transparent;
  font-size: 0 !important;
  cursor: pointer;
  z-index: 2;
  bottom: 10px;
  left: auto;
  right: 10px;
  transition: 0.3s all ease;
}
.single-item-page__slider .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}
.single-item-page__slider .slick-arrow.slick-prev {
  background-image: url(../icons/08-icon-left.svg);
  right: 60px;
}
.single-item-page__slider .slick-arrow.slick-next {
  background-image: url(../icons/09-icon-right.svg);
  right: 20px;
}
.single-item-page__info {
  padding-left: 20px;
}
.single-item-page__info .art {
  font-size: 1.313rem;
  font-family: "SemiBold", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  height: 20px;
  align-content: center;
  margin-bottom: 20px;
}
.single-item-page__info .text {
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 30px;
}
.single-item-page__info .line {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.single-item-page__info .line .pdf,
.single-item-page__info .line .add {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #7F39FB;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  width: 130px;
  height: 40px;
  transition: 0.3s all ease;
  cursor: pointer;
  margin-right: 10px;
}
.single-item-page__info .line .pdf:hover,
.single-item-page__info .line .add:hover {
  background-color: #2A3048;
  border-color: #2A3048;
  transition: 0.3s all ease;
  color: #FFF;
}
.single-item-page__info .line .add {
  background-color: #7F39FB;
  color: #FFF;
}
.single-item-page__info .line .add:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-image: url(../icons/10-icon-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 10px;
}
.single-item-page__text {
  padding: 20px;
}
.single-item-page__text p {
  font-size: 1rem;
  line-height: 1.875rem;
  margin-bottom: 10px;
}
.single-item-page__graphic, .single-item-page__parts {
  width: 100%;
  min-height: 500px;
  padding: 20px;
}
.single-item-page__graphic .placeholder-custom, .single-item-page__parts .placeholder-custom {
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #D9D9D9;
  border-radius: 15px;
}
.single-item-page__graphic .placeholder-custom span, .single-item-page__parts .placeholder-custom span {
  font-size: 7.5rem;
  color: rgba(42, 48, 72, 0.5);
}
.single-item-page__chars ul {
  display: block;
  padding: 0;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.single-item-page__chars ul li {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  list-style-type: none;
  height: 40px;
  padding: 0 20px;
}
.single-item-page__chars ul li:nth-child(odd) {
  background-color: rgba(42, 48, 72, 0.1);
}
.single-item-page__chars ul li .name {
  width: 50%;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.single-item-page__chars ul li .param {
  width: 50%;
  font-family: "SemiBold", sans-serif;
  font-size: 1.125rem;
}
.single-item-page__slidertab {
  height: 500px;
  padding: 20px;
  position: relative;
  width: 100%;
}
.single-item-page__slidertab .item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 460px;
}
.single-item-page__slidertab .item img {
  display: block;
  margin: 0 auto;
  width: auto;
}
.single-item-page__slidertab .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  border: 0;
  background-color: transparent;
  font-size: 0 !important;
  cursor: pointer;
  z-index: 2;
  top: calc(50% - 20px);
  left: auto;
  right: auto;
  transition: 0.3s all ease;
}
.single-item-page__slidertab .slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}
.single-item-page__slidertab .slick-arrow.slick-prev {
  background-image: url(../icons/08-icon-left.svg);
  left: 10px;
}
.single-item-page__slidertab .slick-arrow.slick-next {
  background-image: url(../icons/09-icon-right.svg);
  right: 20px;
}
.single-item-page__tab {
  padding-top: 60px;
}

.enter-lk {
  width: 100%;
  min-height: calc(100vh - 300px);
  padding-top: 5%;
}
.enter-lk__item {
  max-width: 350px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  padding: 20px 0;
}
.enter-lk__item .title {
  text-align: center;
  height: 60px;
  align-content: center;
  font-size: 2.5rem;
  font-family: "Bold", sans-serif;
  margin-bottom: 20px;
}
.enter-lk__item label {
  display: block;
  padding: 0 20px;
  position: relative;
  margin-bottom: 10px;
}
.enter-lk__item label .show-pass {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 13px;
  right: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-image: url(../icons/14-icon-pass.svg);
  cursor: pointer;
  z-index: 3;
}
.enter-lk__item label .show-pass.active {
  background-image: url(../icons/15-icon-show-pass.svg);
}
.enter-lk__item label.attached span {
  color: #2A3048;
  text-align: left;
  padding-left: 30px;
  height: 14px;
  font-size: 0.688rem;
}
.enter-lk__item label.error input[type=email], .enter-lk__item label.error input[type=password], .enter-lk__item label.error input[type=text] {
  border-color: #FD6B6B;
  color: #FD6B6B;
}
.enter-lk__item label.error.attached.email-label span:before {
  content: "Неверный email";
}
.enter-lk__item label.error.attached.password-label span:before {
  content: "Неверный пароль";
}
.enter-lk__item label.error.attached span {
  font-size: 0;
}
.enter-lk__item label.error.attached span:before {
  font-size: 0.688rem;
  display: block;
  color: #FD6B6B;
  font-family: "SemiBold", sans-serif;
}
.enter-lk__item label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  z-index: 1;
  align-content: center;
}
.enter-lk__item label input[type=email], .enter-lk__item label input[type=password], .enter-lk__item label input[type=text] {
  position: relative;
  height: 50px;
  border-radius: 10px;
  background-color: transparent;
  z-index: 2;
  font-size: 1.125rem;
  padding: 0 10px;
  text-align: center;
}
.enter-lk__item button[type=submit] {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  margin-bottom: 20px;
}
.enter-lk__item button[type=submit]:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.enter-lk__item button[type=submit]:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
}
.enter-lk__item button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.enter-lk__item .forgot {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #7F39FB;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
  margin-bottom: 10px;
}
.enter-lk__item .forgot:hover {
  color: #2A3048;
  transition: 0.3s all ease;
}
.enter-lk__item .subline {
  height: 16px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
.enter-lk__item .subline:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(42, 48, 72, 0.2);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}
.enter-lk__item .subline span {
  position: relative;
  background-color: #FFF;
  display: block;
  color: rgba(42, 48, 72, 0.5);
  padding: 0 10px;
}
.enter-lk__item .subtitle {
  text-align: center;
  font-size: 1.125rem;
  display: block;
  color: rgba(42, 48, 72, 0.5);
  align-content: center;
  height: 20px;
  margin-bottom: 20px;
  font-family: "Medium", sans-serif;
}
.enter-lk__item .reg {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #2A3048;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  text-decoration: none;
  border: 1px solid #7F39FB;
}
.enter-lk__item .reg:hover {
  transition: 0.3s all ease;
  color: #FFF;
  background-color: #2A3048;
  border-color: #2A3048;
}

.registration-page__item {
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  border-radius: 20px;
  display: none;
}
.registration-page__item.show {
  display: block;
}
.registration-page__item .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  flex-wrap: nowrap;
  font-size: 1.563rem;
  font-family: "Bold", sans-serif;
}
.registration-page__item .title .back-to-enter {
  text-decoration: none;
  font-size: 0.75rem;
  font-family: "Medium", sans-serif;
  color: #2A3048;
  width: 140px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 8px;
  border: 1px solid #7F39FB;
  transition: 0.3s all ease;
}
.registration-page__item .title .back-to-enter:hover {
  transition: 0.3s all ease;
  border-color: #2A3048;
  background-color: #2A3048;
  color: #FFF;
}
.registration-page__item form {
  display: block;
  padding: 15px 20px;
  padding-bottom: 20px;
}
.registration-page__item form label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 40px;
  margin-bottom: 10px;
}
.registration-page__item form label.check {
  height: auto;
  margin-bottom: 40px;
  align-items: flex-start;
}
.registration-page__item form label.check span {
  display: block;
  width: 430px;
  height: 20px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.registration-page__item form label.check span a {
  color: #7F39FB;
  transition: 0.3s all ease;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.registration-page__item form label.check span a:hover {
  color: #2A3048;
  transition: 0.3s all ease;
}
.registration-page__item form label.req span:after {
  content: "*";
  font-size: 0.875rem;
  font-family: "ExtraBold", sans-serif;
  color: #FD6B6B;
}
.registration-page__item form label span {
  flex-shrink: 0;
  display: block;
  align-content: center;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  width: 200px;
}
.registration-page__item form label .pass-key {
  width: 100%;
  max-width: 250px;
  position: relative;
}
.registration-page__item form label .pass-key input {
  position: relative;
}
.registration-page__item form label .pass-key .show-pass {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-image: url(../icons/14-icon-pass.svg);
  cursor: pointer;
  z-index: 3;
}
.registration-page__item form label .pass-key .show-pass.active {
  background-image: url(../icons/15-icon-show-pass.svg);
}
.registration-page__item form label input[type=text], .registration-page__item form label input[type=name], .registration-page__item form label input[type=password], .registration-page__item form label input[type=tel], .registration-page__item form label input[type=email] {
  width: 100%;
  max-width: 250px;
}
.registration-page__item form label input[type=text]::-moz-placeholder, .registration-page__item form label input[type=name]::-moz-placeholder, .registration-page__item form label input[type=password]::-moz-placeholder, .registration-page__item form label input[type=tel]::-moz-placeholder, .registration-page__item form label input[type=email]::-moz-placeholder {
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.registration-page__item form label input[type=text]::placeholder, .registration-page__item form label input[type=name]::placeholder, .registration-page__item form label input[type=password]::placeholder, .registration-page__item form label input[type=tel]::placeholder, .registration-page__item form label input[type=email]::placeholder {
  transition: 0.3s all ease;
}
.registration-page__item form label.error input {
  border-color: #FD6B6B;
}
.registration-page__item form label.error .info {
  display: flex;
}
.registration-page__item form label .info {
  width: calc(100% - 450px);
  padding-left: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: none;
  font-size: 0.75rem;
  font-family: "Medium", sans-serif;
  color: #FD6B6B;
}
/* .registration-page__item form label .info:before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background-image: url(../icons/16-icon-alert.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 10px;
} */
.registration-page__item form .line {
  width: 100%;
  padding-left: 200px;
  align-content: center;
  display: block;
  height: 40px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.registration-page__item form .line span {
  font-size: 0.875rem;
  font-family: "ExtraBold", sans-serif;
  color: #FD6B6B;
}
.registration-page__item form button[type=submit] {
  margin-left: 200px;
  width: 250px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.registration-page__item form button[type=submit]:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.registration-page__item form button[type=submit]:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
}
.registration-page__item form button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.registration-page__success {
  margin: 0 auto;
  margin-top: 5%;
  background-color: #FFF;
  border-radius: 20px;
  max-width: 350px;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
}
.registration-page__success.show {
  display: block;
}
.registration-page__success .title {
  text-align: center;
  height: 60px;
  align-content: center;
  font-family: "Bold", sans-serif;
  font-size: 1.563rem;
}
.registration-page__success .info {
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 20px;
}
.registration-page__success .info b {
  font-weight: normal;
  font-family: "Bold", sans-serif;
  white-space: nowrap;
}
.registration-page__success .info b.selected-mail {
  word-break: break-all;
}
.registration-page__success .back-to {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #2A3048;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  text-decoration: none;
  border: 1px solid #7F39FB;
}
.registration-page__success .back-to:hover {
  transition: 0.3s all ease;
  color: #FFF;
  background-color: #2A3048;
  border-color: #2A3048;
}

.restore-page {
  width: 100%;
  min-height: calc(100vh - 300px);
  padding-top: 5%;
}
.restore-page__item.show {
  display: block;
}
.restore-page__item {
  max-width: 350px;
  margin: 0 auto;
  display: none;
  border-radius: 20px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  padding: 20px 0;
}
.restore-page__item .title {
  text-align: center;
  height: 60px;
  align-content: center;
  font-size: 1.563rem;
  font-family: "Bold", sans-serif;
  margin-bottom: 20px;
}
.restore-page__item label {
  display: block;
  padding: 0 20px;
  position: relative;
  margin-bottom: 10px;
}
.restore-page__item label.attached span {
  color: #2A3048;
  text-align: left;
  padding-left: 30px;
  height: 14px;
  font-size: 0.688rem;
}
.restore-page__item label.error input[type=email] {
  border-color: #FD6B6B;
  color: #FD6B6B;
}
/* .restore-page__item label.error.attached.email-label span:before {
  content: "Такой e-mail не существует";
} */
.restore-page__item label.error.attached span {
  font-size: 0;
}
.restore-page__item label.error.attached span:before {
  font-size: 0.688rem;
  display: block;
  color: #FD6B6B;
  font-family: "SemiBold", sans-serif;
}
.restore-page__item label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  color: rgba(42, 48, 72, 0.5);
  z-index: 1;
  align-content: center;
}
.restore-page__item label input[type=email] {
  position: relative;
  height: 50px;
  border-radius: 10px;
  background-color: transparent;
  z-index: 2;
  font-size: 1.125rem;
  padding: 0 10px;
  text-align: center;
}
.restore-page__item button[type=submit] {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  margin-bottom: 20px;
}
.restore-page__item button[type=submit]:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.restore-page__item button[type=submit]:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
}
.restore-page__item button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.restore-page__item .subline {
  height: 16px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
.restore-page__item .subline:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(42, 48, 72, 0.2);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}
.restore-page__item .subline span {
  position: relative;
  background-color: #FFF;
  display: block;
  color: rgba(42, 48, 72, 0.5);
  padding: 0 10px;
}
.restore-page__item .back-to {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #2A3048;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  text-decoration: none;
  border: 1px solid #7F39FB;
}
.restore-page__item .back-to:hover {
  transition: 0.3s all ease;
  color: #FFF;
  background-color: #2A3048;
  border-color: #2A3048;
}
.restore-page__success {
  display: none;
  margin: 0 auto;
  margin-top: 5%;
  background-color: #FFF;
  border-radius: 20px;
  max-width: 350px;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  padding-top: 20px;
  padding-bottom: 20px;
  display: none;
}
.restore-page__success.show {
  display: block;
}
.restore-page__success .title {
  text-align: center;
  height: 60px;
  align-content: center;
  font-family: "Bold", sans-serif;
  font-size: 1.563rem;
}
.restore-page__success .info {
  font-size: 1rem;
  line-height: 1.875rem;
  padding: 20px;
}
.restore-page__success .info b {
  font-weight: normal;
  font-family: "Bold", sans-serif;
  white-space: nowrap;
}
.restore-page__success .info b.selected-mail {
  word-break: break-all;
}
.restore-page__success .back-to {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #2A3048;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
  text-decoration: none;
  border: 1px solid #7F39FB;
}
.restore-page__success .back-to:hover {
  transition: 0.3s all ease;
  color: #FFF;
  background-color: #2A3048;
  border-color: #2A3048;
}

.lk-page__userinfo {
  padding: 20px;
}
.lk-page__userinfo .change-pass {
  margin-left: 200px;
  width: 140px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: transparent;
  color: #7F39FB;
  font-size: 0.75rem;
  font-family: "Medium", sans-serif;
  border-radius: 8px;
  height: 30px;
  cursor: pointer;
  transition: 0.3s all ease;
  border: 1px solid #7F39FB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.lk-page__userinfo .change-pass:hover {
  background-color: #2A3048;
  transition: 0.3s all ease;
  border-color: #2A3048;
  color: #FFF;
}
.lk-page__userinfo button[type=submit] {
  margin-left: 200px;
  width: 250px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  border: 0;
  background-color: #7F39FB;
  color: #FFF;
  font-size: 1rem;
  font-family: "Medium", sans-serif;
  border-radius: 10px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s all ease;
}
.lk-page__userinfo button[type=submit]:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
}
.lk-page__userinfo button[type=submit]:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
}
.lk-page__userinfo button[type=submit]:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.lk-page__userinfo .line {
  width: 100%;
  padding-left: 200px;
  align-content: center;
  display: block;
  height: 40px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.lk-page__userinfo .line span {
  font-size: 0.875rem;
  font-family: "ExtraBold", sans-serif;
  color: #FD6B6B;
}
.lk-page__userinfo label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 40px;
  margin-bottom: 10px;
}
.lk-page__userinfo label.check {
  height: auto;
  margin-bottom: 40px;
  align-items: flex-start;
}
.lk-page__userinfo label.check span {
  display: block;
  width: 430px;
  height: 20px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.lk-page__userinfo label.check span a {
  color: #7F39FB;
  transition: 0.3s all ease;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.lk-page__userinfo label.check span a:hover {
  color: #2A3048;
  transition: 0.3s all ease;
}
.lk-page__userinfo label.req span:after {
  content: "*";
  font-size: 0.875rem;
  font-family: "ExtraBold", sans-serif;
  color: #FD6B6B;
}
.lk-page__userinfo label span {
  flex-shrink: 0;
  display: block;
  align-content: center;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  width: 200px;
}
.lk-page__userinfo label .pass-key {
  width: 100%;
  max-width: 250px;
  position: relative;
}
.lk-page__userinfo label .pass-key input {
  position: relative;
}
.lk-page__userinfo label .pass-key .show-pass {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  right: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-image: url(../icons/14-icon-pass.svg);
  cursor: pointer;
  z-index: 3;
}
.lk-page__userinfo label .pass-key .show-pass.active {
  background-image: url(../icons/15-icon-show-pass.svg);
}
.lk-page__userinfo label input[type=text], .lk-page__userinfo label input[type=name], .lk-page__userinfo label input[type=password], .lk-page__userinfo label input[type=tel], .lk-page__userinfo label input[type=email] {
  width: 100%;
  max-width: 250px;
}
.lk-page__userinfo label input[type=text]::-moz-placeholder, .lk-page__userinfo label input[type=name]::-moz-placeholder, .lk-page__userinfo label input[type=password]::-moz-placeholder, .lk-page__userinfo label input[type=tel]::-moz-placeholder, .lk-page__userinfo label input[type=email]::-moz-placeholder {
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.lk-page__userinfo label input[type=text]::placeholder, .lk-page__userinfo label input[type=name]::placeholder, .lk-page__userinfo label input[type=password]::placeholder, .lk-page__userinfo label input[type=tel]::placeholder, .lk-page__userinfo label input[type=email]::placeholder {
  transition: 0.3s all ease;
}
.lk-page__userinfo label input[type=text]:disabled, .lk-page__userinfo label input[type=name]:disabled, .lk-page__userinfo label input[type=password]:disabled, .lk-page__userinfo label input[type=tel]:disabled, .lk-page__userinfo label input[type=email]:disabled {
  border-color: transparent;
  background-color: transparent;
  font-family: "SemiBold", sans-serif;
}
.lk-page__userinfo label.error input {
  border-color: #FD6B6B;
}
.lk-page__userinfo label.error .info {
  display: flex;
}
.lk-page__userinfo label .info {
  width: calc(100% - 450px);
  padding-left: 10px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: none;
  font-size: 0.75rem;
  font-family: "Medium", sans-serif;
  color: #FD6B6B;
}
.lk-page__userinfo label .info:before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background-image: url(../icons/16-icon-alert.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 10px;
}

.control-panel h1 {
  height: 40px;
  font-size: 1.563rem;
  font-family: "SemiBold", sans-serif;
  font-weight: normal;
  margin-bottom: 30px;
}
.control-panel__catalog ul {
  padding: 0;
  margin: 0;
}
.control-panel__catalog ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.control-panel__catalog {
  margin-bottom: 50px;
  border: 0;
  position: relative;
}
.control-panel__catalog .add-new {
  background-color: #7F39FB;
  border-radius: 10px;
  text-decoration: none;
  color: #FFF;
  width: 130px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
}
.control-panel__catalog .add-new.top, .control-panel__catalog .add-new.bottom {
  position: absolute;
  top: -45px;
  right: 0;
}
.control-panel__catalog .add-new.bottom {
  bottom: -45px;
  top: auto;
}
.control-panel__catalog .add-new:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-image: url(../icons/10-icon-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 10px;
}
.control-panel__catalog .add-new:hover {
  background-color: #2A3048;
  transition: 0.3s all ease;
}
.control-panel__catalog .head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 50px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  padding-right: 120px;
}
.control-panel__catalog .head .item {
  width: 15%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.control-panel__catalog .head .item:first-child {
  width: 10%;
  padding-left: 20px;
}
.control-panel__catalog .head .item:last-child {
  padding-right: 20px;
}
.control-panel__catalog .head .item span {
  font-size: 0.875rem;
  font-family: "SemiBold", sans-serif;
  white-space: nowrap;
}
.control-panel__catalog .head .item .filter {
  width: 40px;
  height: 40px;
  transition: 0.3s all ease;
  background-image: url(../icons/13-icon-default.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
  flex-shrink: 0;
}
.control-panel__catalog .head .item .filter:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}
.control-panel__catalog .head .item.up .filter {
  background-image: url(../icons/12-icon-up.svg);
}
.control-panel__catalog .head .item.down .filter {
  background-image: url(../icons/11-icon-down.svg);
}
.control-panel__catalog .body {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.control-panel__catalog .body .buttons {
  width: 120px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding-right: 10px;
  flex-shrink: 0;
}
.control-panel__catalog .body .buttons form {
  margin: 0;
}
.control-panel__catalog .body .buttons__activity {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.control-panel__catalog .body .buttons__activity:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #7F39FB;
  border-radius: 3px;
}
.control-panel__catalog .body .buttons__activity.active:before {
  background-image: url(../icons/23-icon-checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.control-panel__catalog .body .buttons__activity:hover {
  opacity: 0.7;
}
.control-panel__catalog .body .buttons__edit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  text-decoration: none;
  position: relative;
  transition: 0.3s all ease;
  cursor: pointer;
}
.control-panel__catalog .body .buttons__edit:before, .control-panel__catalog .body .buttons__edit:after {
  opacity: 1;
  content: "";
  position: absolute;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../icons/18-icon-edit.svg);
}
.control-panel__catalog .body .buttons__edit:after {
  opacity: 0;
  background-image: url(../icons/19-icon-edit.svg);
}
.control-panel__catalog .body .buttons__edit:hover:before {
  opacity: 0;
}
.control-panel__catalog .body .buttons__edit:hover:after {
  opacity: 1;
}
.control-panel__catalog .body .buttons__delete {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-image: url(../icons/20-icon-del.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
  transition: 0.3s all ease;
}
.control-panel__catalog .body .buttons__delete:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}
.control-panel__catalog .body .line {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  /* height: 40px; */
  min-height: 40px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  transition: 0.3s all ease;
}
.control-panel__catalog .body .line:hover {
  background-color: rgba(42, 48, 72, 0.1);
}
.control-panel__catalog .body .line.inactive .item {
  opacity: 0.45;
}
.control-panel__catalog .body .line .item {
  width: 15%;
}
.control-panel__catalog .body .line .item:first-child {
  width: 10%;
  padding-left: 20px;
}
.control-panel__catalog .body .line .item:last-child {
  padding-right: 20px;
}
.control-panel__users {
  padding-top: 20px;
  padding-bottom: 20px;
}
.control-panel__users ul {
  display: block;
  margin: 0;
  padding: 0;
}
.control-panel__users ul li {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  margin: 0;
  padding: 0 10px 0 20px;
  height: 40px;
  width: 100%;
  border-top: 1px solid rgba(42, 48, 72, 0.2);
}
.control-panel__users ul li:last-child {
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
}
.control-panel__users ul li:hover {
  background-color: rgba(42, 48, 72, 0.1);
  transition: 0.3s all ease;
}
.control-panel__users ul li span {
  display: block;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.control-panel__users ul li span.id {
  width: 70px;
  flex-shrink: 0;
}
.control-panel__users ul li span.email {
  width: 220px;
  flex-shrink: 0;
  font-family: "SemiBold", sans-serif;
}
.control-panel__users ul li span.role {
  min-width: 120px;
  flex-shrink: 1;
}
.control-panel__users ul li .buttons {
  width: 80px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding-right: 10px;
  flex-shrink: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.control-panel__users ul li .buttons__edit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  text-decoration: none;
  position: relative;
  transition: 0.3s all ease;
  cursor: pointer;
}
.control-panel__users ul li .buttons__edit.disabled {
  background-image: url(../icons/22-icon-edit.svg);
  cursor: default;
}
.control-panel__users ul li .buttons__edit.disabled:before, .control-panel__users ul li .buttons__edit.disabled:after {
  display: none;
}
.control-panel__users ul li .buttons__edit.disabled:hover {
  opacity: 1;
}
.control-panel__users ul li .buttons__edit:before, .control-panel__users ul li .buttons__edit:after {
  opacity: 1;
  content: "";
  position: absolute;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../icons/18-icon-edit.svg);
}
.control-panel__users ul li .buttons__edit:after {
  opacity: 0;
  background-image: url(../icons/19-icon-edit.svg);
}
.control-panel__users ul li .buttons__edit:hover:before {
  opacity: 0;
}
.control-panel__users ul li .buttons__edit:hover:after {
  opacity: 1;
}
.control-panel__users ul li .buttons__delete {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  background-image: url(../icons/20-icon-del.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
  transition: 0.3s all ease;
}
.control-panel__users ul li .buttons__delete.disabled {
  background-image: url(../icons/21-icon-del.svg);
  cursor: default;
}
.control-panel__users ul li .buttons__delete.disabled:hover {
  opacity: 1;
}
.control-panel__users ul li .buttons__delete:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}
.control-panel__group {
  padding-top: 20px;
  padding-bottom: 20px;
}
.control-panel__group ul {
  display: block;
  margin: 0;
  padding: 0;
}
.control-panel__group ul li {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  margin: 0;
  padding: 0 10px 0 20px;
  height: 40px;
  width: 100%;
  border-top: 1px solid rgba(42, 48, 72, 0.2);
}
.control-panel__group ul li:last-child {
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
}
.control-panel__group ul li:hover {
  background-color: rgba(42, 48, 72, 0.1);
  transition: 0.3s all ease;
}
.control-panel__group ul li span {
  display: block;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.control-panel__group ul li span.id {
  width: 70px;
  flex-shrink: 0;
}
.control-panel__group ul li span.name {
  width: 220px;
  flex-shrink: 0;
  font-family: "SemiBold", sans-serif;
}
.control-panel__group ul li span.url {
  width: 220px;
  flex-shrink: 1;
}
.control-panel__group ul li span.qty {
  width: 220px;
  flex-shrink: 1;
}
.control-panel__group ul li .buttons {
  width: 80px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding-right: 10px;
  flex-shrink: 0;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
}
.control-panel__group ul li .buttons__edit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  text-decoration: none;
  position: relative;
  transition: 0.3s all ease;
}
.control-panel__group ul li .buttons__edit.disabled {
  background-image: url(../icons/22-icon-edit.svg);
  cursor: default;
}
.control-panel__group ul li .buttons__edit.disabled:before, .control-panel__group ul li .buttons__edit.disabled:after {
  display: none;
}
.control-panel__group ul li .buttons__edit.disabled:hover {
  opacity: 1;
}
.control-panel__group ul li .buttons__edit:before, .control-panel__group ul li .buttons__edit:after {
  opacity: 1;
  content: "";
  position: absolute;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../icons/18-icon-edit.svg);
}
.control-panel__group ul li .buttons__edit:after {
  opacity: 0;
  background-image: url(../icons/19-icon-edit.svg);
}
.control-panel__group ul li .buttons__edit:hover:before {
  opacity: 0;
}
.control-panel__group ul li .buttons__edit:hover:after {
  opacity: 1;
}
.control-panel__group ul li .buttons__delete {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 30px;
  height: 30px;
  background-image: url(../icons/20-icon-del.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
  transition: 0.3s all ease;
}
.control-panel__group ul li .buttons__delete.disabled {
  background-image: url(../icons/21-icon-del.svg);
  cursor: default;
}
.control-panel__group ul li .buttons__delete.disabled:hover {
  opacity: 1;
}
.control-panel__group ul li .buttons__delete:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}

.add-edit h1 {
  height: 40px;
  font-size: 1.563rem;
  font-family: "SemiBold", sans-serif;
  font-weight: normal;
  margin-bottom: 30px;
}
.add-edit__single {
  padding: 20px 0;
  position: relative;
  position: relative;
  margin-bottom: 50px;
}
.add-edit__single .line {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
  padding: 0 20px;
  overflow: hidden;
}
.add-edit__single .line:nth-child(odd) {
  background-color: rgba(42, 48, 72, 0.1);
}
.add-edit__single .line.file .file-buttons {
  visibility: visible;
}
.add-edit__single .line.file .line__label-btn {
  font-size: 0;
}
.add-edit__single .line.file .line__label-btn:before {
  content: "Заменить";
  font-size: 0.875rem;
}
.add-edit__single .line.req .line__info span {
  display: inline;
  color: #FD6B6B;
  font-family: "SemiBold", sans-serif;
}
.add-edit__single .line__num {
  width: 40px;
  height: 40px;
  display: block;
  text-align: left;
  align-content: center;
  font-family: "Bold", sans-serif;
  flex-shrink: 0;
}
.add-edit__single .line__info {
  width: 270px;
  flex-shrink: 0;
  font-family: "Medium", sans-serif;
  padding-right: 5px;
}
.add-edit__single .line__info span {
  display: none;
}
.add-edit__single .line__add {
  width: 80px;
  flex-shrink: 0;
  font-family: "Medium", sans-serif;
}
.add-edit__single .line select {
  width: 100px;
  flex-shrink: 0;
  margin-right: 20px;
}
.add-edit__single .line label {
  width: 180px;
  flex-shrink: 0;
  font-family: "Medium", sans-serif;
  font-size: 0.875rem;
}
/* .add-edit__single .line textarea {
  width: 160px;
  margin-right: 20px;
  flex-shrink: 0;
} */
/* .add-edit__single .line input[type=text], .add-edit__single .line input[type=number] {
  width: 160px;
  margin-right: 20px;
  flex-shrink: 0;
} */
.add-edit__single .line input[type=text].err, .add-edit__single .line input[type=number].err {
  border-color: #FD6B6B !important;
}
.add-edit__single .line__change {
  width: 380px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.add-edit__single .line__change .chk {
  display: none;
  width: 20px;
  height: 20px;
  background-image: url(../icons/23-icon-checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 20px;
}
.add-edit__single .line__change.ready .chk {
  display: block;
}
.add-edit__single .line__change.ready .line__change-btn {
  font-size: 0;
}
.add-edit__single .line__change.ready .line__change-btn:before {
  content: "Изменить";
  color: #FFF;
  font-size: 0.875rem;
}
.add-edit__single .line__change-btn {
  width: 160px;
  height: 40px;
  border-radius: 10px;
  background-color: #7F39FB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  cursor: pointer;
  color: #FFF;
}
.add-edit__single .line__change-btn:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.add-edit__single .line input[type=file] {
  position: absolute;
  z-index: -100;
}
.add-edit__single .line .file-buttons {
  width: 220px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  display: flex;
  visibility: hidden;
}
.add-edit__single .line__preview {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #7F39FB;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 20px;
  background-image: url(../icons/24-icon-show.svg);
}
.add-edit__single .line__preview:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.add-edit__single .line__del {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #FD6B6B;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 20px;
  background-image: url(../icons/25-icon-del.svg);
}
.add-edit__single .line__del:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.add-edit__single .line__label-btn {
  width: 160px !important;
  height: 40px;
  border-radius: 10px;
  background-color: #7F39FB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  cursor: pointer;
  color: #FFF;
}
.add-edit__single .line__label-btn:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.add-edit .submit-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.add-edit .submit-item.top, .add-edit .submit-item.bottom {
  position: absolute;
  top: -45px;
  right: 0;
}
.add-edit .submit-item.bottom {
  bottom: -45px;
  top: auto;
}
.add-edit .submit-item__cancel, .add-edit .submit-item__save {
  background-color: transparent;
  border-radius: 10px;
  text-decoration: none;
  color: #FFF;
  width: 130px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
  color: #2A3048;
  border: 1px solid #7F39FB;
  cursor: pointer;
  margin-left: 10px;
}
.add-edit .submit-item__cancel:hover, .add-edit .submit-item__save:hover {
  background-color: #2A3048;
  transition: 0.3s all ease;
  border-color: #2A3048;
  color: #FFF;
}
.add-edit .submit-item__save {
  background-color: #7F39FB;
  color: #FFF;
}
.add-edit .submit-item__save:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
  border-color: transparent;
}
.add-edit .submit-item__save:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  border-color: transparent;
}
.add-edit__history {
  border-radius: 20px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(42, 48, 72, 0.05);
  overflow: hidden;
}
.add-edit__history ul {
  padding: 0;
  margin: 0;
}
.add-edit__history ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.add-edit__history .head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 50px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  padding-right: 10px;
}
.add-edit__history .head .last {
  font-size: 0.875rem;
  font-family: "SemiBold", sans-serif;
  white-space: nowrap;
}
.add-edit__history .head .item {
  width: 180px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.add-edit__history .head .item:first-child {
  width: 180px;
  flex-shrink: 0;
  padding-left: 20px;
}
.add-edit__history .head .item:nth-child(2) {
  width: 200px;
  margin-right: 10px;
}
.add-edit__history .head .item:last-child {
  width: 200px;
  padding-right: 20px;
}
.add-edit__history .head .item span {
  font-size: 0.875rem;
  font-family: "SemiBold", sans-serif;
  white-space: nowrap;
}
.add-edit__history .head .item .filter {
  width: 40px;
  height: 40px;
  transition: 0.3s all ease;
  background-image: url(../icons/13-icon-default.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  cursor: pointer;
  flex-shrink: 0;
}
.add-edit__history .head .item .filter:hover {
  transition: 0.3s all ease;
  opacity: 0.8;
}
.add-edit__history .head .item.up .filter {
  background-image: url(../icons/12-icon-up.svg);
}
.add-edit__history .head .item.down .filter {
  background-image: url(../icons/11-icon-down.svg);
}
.add-edit__history .body {
  padding-bottom: 10px;
  height: 240px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.add-edit__history .body .simplebar-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.add-edit__history .body .line {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  height: 40px;
  border-bottom: 1px solid rgba(42, 48, 72, 0.2);
  transition: 0.3s all ease;
}
.add-edit__history .body .line:hover {
  background-color: rgba(42, 48, 72, 0.1);
}
.add-edit__history .body .line.active {
  background-color: rgba(127, 57, 251, 0.2);
}
.add-edit__history .body .line.active:hover {
  background-color: rgba(127, 57, 251, 0.2);
}
.add-edit__history .body .line .item {
  font-size: 0.875rem;
}
.add-edit__history .body .line .item:first-child {
  padding-left: 20px;
}
.add-edit__history .body .line .item:last-child {
  padding-right: 20px;
}
.add-edit__history .body .line .item.date {
  width: 100px;
}
.add-edit__history .body .line .item.time {
  width: 80px;
  padding-left: 10px;
}
.add-edit__history .body .line .item.username {
  width: 200px;
  margin-right: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.add-edit__history .body .line .item.changes {
  font-size: 0.875rem;
  width: 30%;
  flex-shrink: 1;
}
.add-edit__history .body .line .item.changes-before {
  margin-left: 10px;
}
.add-edit__history .body .line .item.changes-before, .add-edit__history .body .line .item.changes-after {
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
}
.add-edit__history .body .line .item.changes-after {
  margin-right: 10px;
}
.add-edit__history .body .line .item.changes-arrow {
  width: 20px;
  height: 20px;
  background-image: url(../icons/26-icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin: 0 10px;
}
.add-edit__history .body .line .item.changes-restore {
  margin-left: auto;
  width: 130px;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  height: 30px;
  border-radius: 10px;
  border: 1px solid #7F39FB;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: 20px;
  padding: 0;
}
.add-edit__history .body .line .item.changes-restore:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
  color: #FFF;
  border-color: #2A3048;
}

.category-edit h1 {
  height: 40px;
  font-size: 1.563rem;
  font-family: "SemiBold", sans-serif;
  font-weight: normal;
  margin-bottom: 30px;
}
.category-edit__single {
  padding: 20px 0;
  position: relative;
  position: relative;
  margin-bottom: 50px;
}
.category-edit__single .line {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  overflow: hidden;
}
.category-edit__single .line:nth-child(odd) {
  background-color: rgba(42, 48, 72, 0.1);
}
.category-edit__single .line.file .file-buttons {
  visibility: visible;
}
.category-edit__single .line.file .line__label-btn {
  font-size: 0;
}
.category-edit__single .line.file .line__label-btn:before {
  content: "Заменить";
  font-size: 0.875rem;
}
.category-edit__single .line.req .line__info span {
  display: inline;
  color: #FD6B6B;
  font-family: "SemiBold", sans-serif;
}
.category-edit__single .line__num {
  width: 40px;
  height: 40px;
  display: block;
  text-align: left;
  align-content: center;
  font-family: "Bold", sans-serif;
  flex-shrink: 0;
}
.category-edit__single .line__info {
  width: 270px;
  flex-shrink: 0;
  font-family: "Medium", sans-serif;
  padding-right: 5px;
}
.category-edit__single .line__info span {
  display: none;
}
.category-edit__single .line__add {
  width: 80px;
  flex-shrink: 0;
  font-family: "Medium", sans-serif;
}
.category-edit__single .line select {
  width: 100px;
  flex-shrink: 0;
  margin-right: 20px;
}
.category-edit__single .line label {
  width: 180px;
  flex-shrink: 0;
  font-family: "Medium", sans-serif;
  font-size: 0.875rem;
}
/* .category-edit__single .line textarea {
  width: 160px;
  margin-right: 20px;
  flex-shrink: 0;
} */
/* .category-edit__single .line input[type=text], .category-edit__single .line input[type=number] {
  width: 160px;
  margin-right: 20px;
  flex-shrink: 0;
} */
.category-edit__single .line input[type=text].err, .category-edit__single .line input[type=number].err {
  border-color: #FD6B6B !important;
}
.category-edit__single .line__change {
  width: 380px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.category-edit__single .line__change .chk {
  display: none;
  width: 20px;
  height: 20px;
  background-image: url(../icons/23-icon-checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 20px;
}
.category-edit__single .line__change.ready .chk {
  display: block;
}
.category-edit__single .line__change.ready .line__change-btn {
  font-size: 0;
}
.category-edit__single .line__change.ready .line__change-btn:before {
  content: "Изменить";
  color: #FFF;
  font-size: 0.875rem;
}
.category-edit__single .line__change-btn {
  width: 160px;
  height: 40px;
  border-radius: 10px;
  background-color: #7F39FB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  cursor: pointer;
  color: #FFF;
}
.category-edit__single .line__change-btn:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.category-edit__single .line input[type=file] {
  position: absolute;
  z-index: -100;
}
.category-edit__single .line .file-buttons {
  width: 220px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  display: flex;
  visibility: hidden;
}
.category-edit__single .line__preview {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #7F39FB;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 20px;
  background-image: url(../icons/24-icon-show.svg);
}
.category-edit__single .line__preview:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.category-edit__single .line__del {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #FD6B6B;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  margin-left: 20px;
  background-image: url(../icons/25-icon-del.svg);
}
.category-edit__single .line__del:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.category-edit__single .line__label-btn {
  width: 160px !important;
  height: 40px;
  border-radius: 10px;
  background-color: #7F39FB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 0.875rem;
  font-family: "Medium", sans-serif;
  transition: 0.3s all ease;
  cursor: pointer;
  color: #FFF;
}
.category-edit__single .line__label-btn:hover {
  transition: 0.3s all ease;
  background-color: #2A3048;
}
.category-edit .submit-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.category-edit .submit-item.top, .category-edit .submit-item.bottom {
  position: absolute;
  top: -45px;
  right: 0;
}
.category-edit .submit-item.bottom {
  bottom: -45px;
  top: auto;
}
.category-edit .submit-item__cancel, .category-edit .submit-item__save {
  background-color: transparent;
  border-radius: 10px;
  text-decoration: none;
  color: #FFF;
  width: 130px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: 0.3s all ease;
  font-family: "Medium", sans-serif;
  color: #2A3048;
  border: 1px solid #7F39FB;
  cursor: pointer;
  margin-left: 10px;
}
.category-edit .submit-item__cancel:hover, .category-edit .submit-item__save:hover {
  background-color: #2A3048;
  transition: 0.3s all ease;
  border-color: #2A3048;
  color: #FFF;
}
.category-edit .submit-item__save {
  background-color: #7F39FB;
  color: #FFF;
}
.category-edit .submit-item__save:disabled {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  cursor: default;
  border-color: transparent;
}
.category-edit .submit-item__save:disabled:hover {
  background-color: rgba(42, 48, 72, 0.25);
  color: rgba(42, 48, 72, 0.5);
  border-color: transparent;
}

/*Adaptive*/
@media screen and (max-width: 1320px) {
  header,
  footer {
    width: calc(100% - 24px);
  }
}
@media screen and (max-width: 1279px) {
  .enter-param__left.error .error-msg {
    font-size: 0.85rem;
  }
  .param-result__right .head .pdf,
  .param-result__right .head .add {
    width: 40px;
    font-size: 0;
  }
  .param-result__right .head .pdf:before {
    content: "PDF";
    font-size: 0.75rem;
    font-family: "Bold", sans-serif;
  }
  .param-result__long .head .item span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .search-result__has-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .search-result__form .form-footer {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    height: 90px;
  }
  .search-result__form .form-footer .all {
    margin-bottom: 5px;
  }
  .search-result__form .form-footer .all,
  .search-result__form .form-footer button[type=submit] {
    width: 100%;
  }
  .search-result__form .form-header .reset {
    width: 80px;
  }
  .control-panel__catalog .head .item span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}/*# sourceMappingURL=main.css.map */
