:root {
  --font-family: Arial, serif;
  --color-black: #111;
  --color-black-rgb: 17, 17, 17;
  --color-black2: #1b1b1b;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-gray-light: #9c9c9c;
  --color-gray-dark: #313132;
  --color-red: #ef4e23;
  --color-red2: #dc3545;
  --color-red-rgb: 220, 53, 69;
  --color-red-dark: #932d12;
  --color-yellow: #fcb813;
  --color-green: #28a745;
}

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

html,
body {
  min-height: 100%;
}

input,
select,
button,
textarea {
  font-family: var(--font-family);
}

#svg_sprite {
  position: absolute;
  bottom: 110%;
  right: 110%;
  opacity: 0;
}

.wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 75px;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--color-black);
  line-height: 1;
}

.__order_load {
  position: fixed;
  display: none;
  z-index: 9999999999999 !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
}
.__order_load span {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#fff 0 0);
  background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
  background-size: 50% 100%;
  animation: order-loader 1s infinite linear;
}

@keyframes order-loader {
  0% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
  33% {
    background-size: 20% 30%, 20% 100%, 20% 100%;
  }
  50% {
    background-size: 20% 100%, 20% 30%, 20% 100%;
  }
  66% {
    background-size: 20% 100%, 20% 100%, 20% 30%;
  }
  100% {
    background-size: 20% 100%, 20% 100%, 20% 100%;
  }
}
.block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 30px;
}
.block__logo {
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}
.block__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  background: var(--color-black2);
  padding: 30px;
  border-radius: 20px;
  max-width: 426px;
  width: 100%;
  gap: 5px;
}
.block__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
}
.block__subtitle {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-gray-light);
  line-height: 1.2;
}
.block__file {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--color-red);
  border: none;
  padding: 0 15px;
  border-radius: 10px;
  color: var(--color-white);
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.25s;
}
.block__file:hover {
  background: var(--color-red-dark);
}
.block__file input {
  position: absolute;
  opacity: 0;
  width: 0;
}
.block__file svg {
  width: 14px;
  height: 17px;
}

.params__box {
  position: relative;
  display: flex;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--color-gray-dark);
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.params__box > span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(5px, -65%);
  padding: 0 5px;
  color: rgba(var(--color-white-rgb), 0.75);
  background: var(--color-black2);
}
.params__input {
  flex: 1 1 calc(50% - 5px);
  display: flex;
  position: relative;
}
.params__input.disabled {
  opacity: 0.25;
  pointer-events: none;
}
.params__input:first-child {
  flex: 0 0 100%;
}
.params__input input {
  background: var(--color-gray-dark);
  border: none;
  padding: 20px 10px 10px;
  border-radius: 10px;
  color: var(--color-white);
  width: 100%;
  height: 50px;
  font-size: 16px;
  outline: none !important;
  font-family: Arial, serif;
}
.params__input input:-webkit-autofill, .params__input input:-webkit-autofill:focus {
  transition: outline 0.25s, background-color 0s 600000s, color 0s 600000s;
}
.params__input input[disabled] {
  font-size: 0;
}
.params__input input.error-input {
  background: var(--color-red2);
}
.params__input input ~ span {
  position: absolute;
  pointer-events: none;
  font-size: 16px;
  font-weight: 400;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: font-size 0.25s, top 0.25s;
  color: rgba(var(--color-white-rgb), 0.5);
}
.params__input input:focus ~ span, .params__input input:valid:not(:placeholder-shown) ~ span, .params__input input:invalid:not(:placeholder-shown) ~ span {
  font-size: 10px;
  top: 10px;
}
.params__dopBut {
  flex: 1 1 calc(50% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  border: none;
  color: var(--color-white);
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s;
  font-size: 16px;
  font-family: Arial, serif;
  text-align: center;
  height: 50px;
}
.params__dopBut:hover {
  background: var(--color-red-dark);
}
.params__dopBox {
  display: none;
  flex: 0 0 100%;
  position: relative;
  padding-top: 10px;
  border-top: 2px solid var(--color-gray-dark);
}
.params__dopBox.show {
  display: block;
}
.params__dopBox > span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -65%);
  padding: 0 5px;
  color: rgba(var(--color-white-rgb), 0.75);
  background: var(--color-black2);
}
.params__dop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-height: 150px;
  overflow: auto;
}
.params__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.params__text {
  color: var(--color-white);
}
.params__text small {
  opacity: 0.5;
}

.checkbox-wrapper-34 {
  --g08: #E1E5EB;
}

.checkbox-wrapper-34 .tgl {
  display: none;
}

.checkbox-wrapper-34 .tgl,
.checkbox-wrapper-34 .tgl:after,
.checkbox-wrapper-34 .tgl:before,
.checkbox-wrapper-34 .tgl *,
.checkbox-wrapper-34 .tgl *:after,
.checkbox-wrapper-34 .tgl *:before,
.checkbox-wrapper-34 .tgl + .tgl-btn {
  box-sizing: border-box;
}

.checkbox-wrapper-34 .tgl::selection,
.checkbox-wrapper-34 .tgl:after::selection,
.checkbox-wrapper-34 .tgl:before::selection,
.checkbox-wrapper-34 .tgl *::selection,
.checkbox-wrapper-34 .tgl *:after::selection,
.checkbox-wrapper-34 .tgl *:before::selection,
.checkbox-wrapper-34 .tgl + .tgl-btn::selection {
  background: none;
}

.checkbox-wrapper-34 .tgl + .tgl-btn {
  outline: 0;
  display: block;
  flex: 0 0 57px;
  width: 57px;
  height: 27px;
  position: relative;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  align-self: flex-start;
}

.checkbox-wrapper-34 .tgl + .tgl-btn:after,
.checkbox-wrapper-34 .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 44%;
  height: 100%;
  text-align: center;
}

.checkbox-wrapper-34 .tgl + .tgl-btn:after {
  left: 0;
}

.checkbox-wrapper-34 .tgl + .tgl-btn:before {
  display: inline;
  position: absolute;
  top: 7px;
}

.checkbox-wrapper-34 .tgl:checked + .tgl-btn:after {
  left: 56.5%;
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn {
  background: var(--g08);
  border-radius: 20rem;
  padding: 2px;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:after {
  border-radius: 2em;
  background: #fff;
  transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:active {
  box-shadow: inset 0 0 0 30px rgba(0, 0, 0, 0.1);
}

.checkbox-wrapper-34 .tgl-ios + .tgl-btn:active:after {
  padding-right: 0.4em;
}

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn {
  background: var(--color-green);
}

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn:active {
  box-shadow: inset 0 0 0 30px rgba(0, 0, 0, 0.1);
}

.checkbox-wrapper-34 .tgl-ios:checked + .tgl-btn:active:after {
  margin-left: -0.4em;
}

.error {
  position: absolute;
  bottom: 15px;
  right: 15px;
  max-width: 250px;
  z-index: 10;
}
.error div {
  background: var(--color-red);
  box-shadow: 0 0 15px rgba(var(--color-red-rgb), 0.5);
  color: var(--color-white);
  margin: 0 0 6px;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
}
.error div hr {
  margin: 5px 0;
  border: 1px solid rgba(var(--color-white-rgb), 0.5);
  border-top: none;
}
.error div.warning {
  background: var(--color-yellow);
  color: var(--color-black);
}
.error div.warning hr {
  border-color: rgba(var(--color-black-rgb), 0.5);
}

#go {
  width: 100%;
  margin: 0 auto;
  background: var(--color-red);
  border: none;
  color: var(--color-white);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s;
  font-size: 16px;
  font-family: Arial, serif;
  margin-top: 20px;
}
#go:hover {
  background: var(--color-red-dark);
}

.popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  line-height: 1.2;
  background: rgb(49, 49, 50);
  padding: 10px;
  color: #fff;
  border-radius: 20px;
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  gap: 20px;
}
.popupBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(17, 17, 17, 0.9);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 30px;
}
.popup__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.popup__code {
  max-width: 815px;
}
.popup__code pre {
  margin: 0 !important;
}
.popup__tabs {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.popup__tab {
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-family: Arial, serif;
  font-size: 14px;
  font-weight: 700;
  min-width: 42px;
  padding: 8px 12px;
  transition: filter 0.25s, border-color 0.25s;
}
.popup__tab--success {
  background: var(--color-green);
}
.popup__tab--error {
  background: var(--color-red);
}
.popup__tab--active {
  border-color: #fff;
  filter: brightness(1.15);
}
.popup__panels {
  width: 100%;
}
.popup__body {
  overflow: auto;
  width: 100%;
}
.popup__panel {
  display: none;
  width: 100%;
}
.popup__panel--active {
  display: block;
}
.popup__title {
  font-size: 20px;
}
.popup__subtitle {
  font-size: 14px;
}
.popup__ok {
  margin: 0 auto;
  background: #16ab16;
  border: none;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s;
  font-size: 16px;
  font-family: Arial, serif;
}
.popup__ok:hover {
  background: #006200;
}

.table {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  max-width: 815px;
}
.table--th {
  flex: 0 0 auto;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table--code {
  width: calc(100% - 150px);
  justify-content: normal;
}