@charset "UTF-8";
/* Глобальные стили */
html {
  min-height: 100%;
  font-size: clamp(1px, 5.33333333vw, 20px);
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(1px, 1.04166667vw, 20px);
  }
}

body {
  margin: 0;
  height: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: Manrope, Arial, Helvetica, sans-serif;
}
*:focus {
  outline: unset;
}

.d-block {
  display: block !important;
}

/* Стоковые элементы */
.stock-input {
  border: 0.05rem solid #71717A;
  padding: 0.5rem 0.5rem 0.4rem 1.5rem;
  width: 100%;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color, border-color 500ms ease-out;
  cursor: pointer;
  border-radius: 0.25rem;
}

::placeholder {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.3);
  transition: color 500ms ease-out;
}

.container {
  padding: 0rem 7.35rem 0rem 7.35rem;
  max-width: 1920px !important;
  margin: auto;
  position: relative;
  max-height: 50rem;
  opacity: 100%;
  transition: max-height 500ms ease-out, padding 500ms ease-out, opacity 500ms ease-out;
}
.container_state_hidden {
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 !important;
  transition: max-height 500ms ease-out, padding 500ms ease-out, opacity 500ms ease-out;
}
.container_state_loading {
  opacity: 0.5;
  pointer-events: none;
}
.container_visibility_hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .container {
    padding: 0rem 1.6rem 0rem 1.6rem;
  }
}
.stock-button {
  border: 0;
  background: #B5C8DB;
  color: black;
  text-align: center;
  font-size: 1rem;
  padding: 0.7rem 1rem 0.75rem 1rem;
  display: block;
  font-weight: 400;
  cursor: pointer;
  border-radius: 0.25rem;
  box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.08);
  transition: opacity 500ms ease-out;
}
.stock-button__icon {
  width: 1rem;
}
.stock-button_state_loading {
  opacity: 0.5;
  pointer-events: none;
}
.stock-button_visibility_hidden {
  display: none !important;
}
.stock-button_type_second {
  background-color: white;
  border: 0.05rem solid black;
  padding: 0.7rem 1rem 0.7rem 1rem;
}
.stock-button_type_remove {
  background-color: #A62323;
  color: white;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stock-form {
  transition: opacity 500ms ease-out;
}
.stock-form_state_loading {
  opacity: 0.5;
  pointer-events: none;
}
.stock-form__row_type_error .stock-input, .stock-form__row_type_error ::placeholder, .stock-form__row_type_error .stock-checkbox__text, .stock-form__row_type_error .stock-link {
  color: #A62323;
}
.stock-form__row_type_error .stock-input, .stock-form__row_type_error .stock-checkbox__input {
  border-color: #A62323;
}

.login-field {
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  pointer-events: none;
}

.title {
  text-align: center;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 132.6%;
  font-weight: 500;
}
.title_size_little {
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 700;
}

.stock-link {
  color: #3D8DA3;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.15rem;
}

.stock-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.1rem;
}
.stock-checkbox__input {
  appearance: none;
  -webkit-appearance: none;
  background-color: #B5C8DB;
  margin: 0;
  font: inherit;
  min-width: 1rem;
  min-height: 1rem;
  max-width: 1rem;
  max-height: 1rem;
  border: 0.05rem solid #71717A;
  display: grid;
  place-content: center;
  border-radius: 0.225rem;
  cursor: pointer;
}
.stock-checkbox__input:checked::before {
  transform: scale(1);
}
.stock-checkbox__input::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.225rem;
  transform: scale(0);
  transition: 200ms transform ease-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: black;
}
.stock-checkbox__text {
  color: black;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  cursor: pointer;
}

/* СТИЛИ */
/* Блок - Регистрация, Ребенок */
.register-block, .child-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
.register-block__title, .child-block__title {
  margin-bottom: 2rem;
}
.register-block__form, .child-block__form {
  width: 100%;
  max-width: 22.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.register-block__inputs, .child-block__inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
.register-block__actions, .child-block__actions {
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .register-block__actions, .child-block__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .register-block button, .child-block button {
    width: 100%;
  }
  .child-block {
    padding-top: 0;
  }
}
/* QR */
.qr-block {
  padding: 1.6rem;
}
.qr-block__notice {
  text-align: center;
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin-bottom: 0rem;
  display: none;
}
.qr-block__item {
  gap: 1rem;
  text-align: center;
  height: 60vh;
  min-height: 25rem;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.qr-block__image {
  width: 10rem;
}

@media (max-width: 768px) {
  .qr-block__notice {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
