.kid {
  display: block;
  width: auto;
  overflow: visible;
  pointer-events: none;
  transform-origin: 50% 100%;
  --kid-idle: 7.2s;
  -webkit-animation: kid-breathe var(--kid-idle) ease-in-out infinite;
          animation: kid-breathe var(--kid-idle) ease-in-out infinite;
}
.kid path,
.kid circle,
.kid ellipse,
.kid rect,
.kid polygon,
.kid line {
  pointer-events: auto;
}
.kid .kid__body,
.kid .kid__head,
.kid .kid__head-in,
.kid .kid__hair,
.kid .kid__lid,
.kid .kid__pupil,
.kid .kid__brow,
.kid .kid__mouth,
.kid .kid__blush,
.kid .kid__arm,
.kid .kid__hand,
.kid .kid__prop,
.kid .kid__shadow,
.kid .kid__spark {
  transform-box: view-box;
}
.kid .kid__body {
  transform-origin: 50% 100%;
  transition: transform 0.55s cubic-bezier(0.34, 1.16, 0.5, 1);
}
.kid .kid__head {
  -webkit-animation: kid-nod var(--kid-idle) ease-in-out infinite;
          animation: kid-nod var(--kid-idle) ease-in-out infinite;
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
.kid .kid__hair {
  -webkit-animation: kid-nod var(--kid-idle) ease-in-out infinite;
          animation: kid-nod var(--kid-idle) ease-in-out infinite;
  -webkit-animation-delay: -0.85s;
          animation-delay: -0.85s;
}
.kid .kid__head-in,
.kid .kid__brow,
.kid .kid__mouth,
.kid .kid__blush {
  transition: transform 0.4s cubic-bezier(0.34, 1.16, 0.5, 1);
}
.kid .kid__lid {
  -webkit-animation: kid-blink 11.4s infinite;
          animation: kid-blink 11.4s infinite;
}
.kid .kid__pupil {
  -webkit-animation: kid-glance 13.7s ease-in-out infinite;
          animation: kid-glance 13.7s ease-in-out infinite;
}
.kid .kid__prop {
  -webkit-animation: kid-prop-sway 9.4s ease-in-out infinite;
          animation: kid-prop-sway 9.4s ease-in-out infinite;
}
.kid .kid__shadow {
  -webkit-animation: kid-shadow var(--kid-idle) ease-in-out infinite;
          animation: kid-shadow var(--kid-idle) ease-in-out infinite;
}
.kid .kid__spark {
  opacity: 0;
}
.kid.is-waving .kid__arm {
  -webkit-animation: kid-wave 0.82s cubic-bezier(0.4, 0, 0.5, 1) 3;
          animation: kid-wave 0.82s cubic-bezier(0.4, 0, 0.5, 1) 3;
}
.kid.is-waving .kid__hand {
  -webkit-animation: kid-wave-hand 0.82s cubic-bezier(0.4, 0, 0.5, 1) 3;
          animation: kid-wave-hand 0.82s cubic-bezier(0.4, 0, 0.5, 1) 3;
}
.kid.is-waving .kid__pupil {
  -webkit-animation: kid-glance-front 2.46s cubic-bezier(0.34, 1.16, 0.5, 1) both;
          animation: kid-glance-front 2.46s cubic-bezier(0.34, 1.16, 0.5, 1) both;
}
.kid.is-waving .kid__prop {
  -webkit-animation: kid-prop-lift 2.46s cubic-bezier(0.34, 1.16, 0.5, 1);
          animation: kid-prop-lift 2.46s cubic-bezier(0.34, 1.16, 0.5, 1);
}
.kid.is-waving .kid__shadow {
  -webkit-animation: kid-shadow-hop 0.82s ease-in-out 3;
          animation: kid-shadow-hop 0.82s ease-in-out 3;
}
.kid.is-waving .kid__spark {
  -webkit-animation: kid-spark 1.23s ease-out 2;
          animation: kid-spark 1.23s ease-out 2;
}
.kid.is-waving .kid__spark--2 {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.kid.is-waving .kid__spark--3 {
  -webkit-animation-delay: 0.31s;
          animation-delay: 0.31s;
}

@-webkit-keyframes kid-breathe {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.55%) rotate(-0.3deg);
  }
}

@keyframes kid-breathe {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-0.55%) rotate(-0.3deg);
  }
}
@-webkit-keyframes kid-nod {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1.1px) rotate(-0.9deg);
  }
}
@keyframes kid-nod {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-1.1px) rotate(-0.9deg);
  }
}
@-webkit-keyframes kid-blink {
  0%, 30%, 32%, 57%, 59%, 60.4%, 62.4%, 87%, 89%, 100% {
    transform: translateY(0);
  }
  30.8%, 31.4%, 57.8%, 58.4%, 61.2%, 61.6%, 87.8%, 88.4% {
    transform: translateY(var(--kid-lid));
  }
}
@keyframes kid-blink {
  0%, 30%, 32%, 57%, 59%, 60.4%, 62.4%, 87%, 89%, 100% {
    transform: translateY(0);
  }
  30.8%, 31.4%, 57.8%, 58.4%, 61.2%, 61.6%, 87.8%, 88.4% {
    transform: translateY(var(--kid-lid));
  }
}
@-webkit-keyframes kid-glance {
  0%, 22% {
    transform: translate(0, 0);
  }
  27%, 44% {
    transform: translate(1.2px, 0.2px);
  }
  49%, 63% {
    transform: translate(0, 0);
  }
  68%, 82% {
    transform: translate(-1.1px, 0.3px);
  }
  88%, 100% {
    transform: translate(0, 0);
  }
}
@keyframes kid-glance {
  0%, 22% {
    transform: translate(0, 0);
  }
  27%, 44% {
    transform: translate(1.2px, 0.2px);
  }
  49%, 63% {
    transform: translate(0, 0);
  }
  68%, 82% {
    transform: translate(-1.1px, 0.3px);
  }
  88%, 100% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes kid-glance-front {
  0% {
    transform: translate(0, 0);
  }
  18%, 74% {
    transform: translate(0, -1.1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes kid-glance-front {
  0% {
    transform: translate(0, 0);
  }
  18%, 74% {
    transform: translate(0, -1.1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes kid-prop-sway {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-1.1deg);
  }
}
@keyframes kid-prop-sway {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-1.1deg);
  }
}
@-webkit-keyframes kid-prop-lift {
  0% {
    transform: translateY(0) rotate(0);
  }
  28% {
    transform: translateY(-2.5px) rotate(-3deg);
  }
  62% {
    transform: translateY(-1px) rotate(1.6deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes kid-prop-lift {
  0% {
    transform: translateY(0) rotate(0);
  }
  28% {
    transform: translateY(-2.5px) rotate(-3deg);
  }
  62% {
    transform: translateY(-1px) rotate(1.6deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes kid-shadow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03, 0.94);
    opacity: 0.9;
  }
}
@keyframes kid-shadow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03, 0.94);
    opacity: 0.9;
  }
}
@-webkit-keyframes kid-shadow-hop {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(1.1, 0.82);
    opacity: 0.72;
  }
}
@keyframes kid-shadow-hop {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(1.1, 0.82);
    opacity: 0.72;
  }
}
@-webkit-keyframes kid-wave {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(calc(-15deg * var(--kid-wave-dir, 1)));
  }
  38% {
    transform: rotate(calc(9deg * var(--kid-wave-dir, 1)));
  }
  61% {
    transform: rotate(calc(-12deg * var(--kid-wave-dir, 1)));
  }
  83% {
    transform: rotate(calc(5deg * var(--kid-wave-dir, 1)));
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes kid-wave {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(calc(-15deg * var(--kid-wave-dir, 1)));
  }
  38% {
    transform: rotate(calc(9deg * var(--kid-wave-dir, 1)));
  }
  61% {
    transform: rotate(calc(-12deg * var(--kid-wave-dir, 1)));
  }
  83% {
    transform: rotate(calc(5deg * var(--kid-wave-dir, 1)));
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes kid-wave-hand {
  0% {
    transform: rotate(0);
  }
  22% {
    transform: rotate(calc(-20deg * var(--kid-wave-dir, 1)));
  }
  47% {
    transform: rotate(calc(14deg * var(--kid-wave-dir, 1)));
  }
  70% {
    transform: rotate(calc(-16deg * var(--kid-wave-dir, 1)));
  }
  90% {
    transform: rotate(calc(7deg * var(--kid-wave-dir, 1)));
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes kid-wave-hand {
  0% {
    transform: rotate(0);
  }
  22% {
    transform: rotate(calc(-20deg * var(--kid-wave-dir, 1)));
  }
  47% {
    transform: rotate(calc(14deg * var(--kid-wave-dir, 1)));
  }
  70% {
    transform: rotate(calc(-16deg * var(--kid-wave-dir, 1)));
  }
  90% {
    transform: rotate(calc(7deg * var(--kid-wave-dir, 1)));
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes kid-spark {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-28deg);
  }
  30% {
    opacity: 1;
    transform: scale(1.12) rotate(6deg);
  }
  68% {
    opacity: 0.85;
    transform: scale(0.92) rotate(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.45) rotate(16deg);
  }
}
@keyframes kid-spark {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-28deg);
  }
  30% {
    opacity: 1;
    transform: scale(1.12) rotate(6deg);
  }
  68% {
    opacity: 0.85;
    transform: scale(0.92) rotate(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.45) rotate(16deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .kid,
.kid .kid__head,
.kid .kid__hair,
.kid .kid__lid,
.kid .kid__pupil,
.kid .kid__prop,
.kid .kid__shadow,
.kid.is-waving .kid__arm,
.kid.is-waving .kid__hand,
.kid.is-waving .kid__pupil,
.kid.is-waving .kid__prop,
.kid.is-waving .kid__shadow,
.kid.is-waving .kid__spark {
    -webkit-animation: none;
            animation: none;
  }

  .kid .kid__body,
.kid .kid__head-in,
.kid .kid__brow,
.kid .kid__mouth,
.kid .kid__blush {
    transition: none;
    transform: none;
  }
}
.registration-step-one__background-content-1 {
  position: absolute;
  left: 38px;
  bottom: 30px;
}

.registration-step-one__background-content-2 {
  position: absolute;
  right: 38px;
  bottom: 60px;
}

.background-layer.registration_step_bg {
  position: absolute;
  padding-bottom: 0;
}
.background-layer.registration_step_bg .bg-layer__1 {
  transform: scale(-1, 1);
}
.background-layer.registration_step_bg .bg-layer__2 {
  transform: scale(-1, 1);
}

.content-background.registration_step_bg {
  padding: 10px;
}

.content {
  padding: 10px;
}

.registration_step_bg {
  position: relative;
  padding-bottom: 120px;
}
.registration_step_bg .content {
  border: 1px dashed;
  position: relative;
  z-index: 1;
}

.registration-step-one__background-content-1,
.registration-step-one__background-content-2 {
  z-index: 2;
  pointer-events: none;
}

.content__title.content__title-step-one {
  max-width: 640px;
  margin: 0 auto;
}

.content__form-registration-step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 640px;
  width: 100%;
  min-height: 152px;
  margin: 0 auto 28px;
  padding: 12px 25px 28px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 2px 0;
  position: relative;
  z-index: 1;
}
.content__form-registration-step label .label {
  min-width: 130px;
}
.content__form-registration-step span {
  line-height: 16px;
  margin-right: 15px;
}
.content__form-registration-step input {
  width: 100%;
  height: 35px;
}
.content__form-registration-step input[type=checkbox] {
  min-width: 0;
  height: auto;
}
.content__form-registration-step input[type=radio] {
  min-width: 0;
  height: auto;
}

.content__form-registration-step-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.content__form-registration-step-item span {
  line-height: 16px;
  margin-right: 15px;
}

.content__form-radio {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}
.content__form-radio label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.content__form-radio span {
  font-size: 15px;
  padding-top: 3px;
  white-space: initial;
}

.form-registration-step__divider {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 6px 0 16px;
}

.form-registration-step__conditions {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 25px;
  padding: 0 20px;
}
.form-registration-step__conditions label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  min-height: 28px;
  cursor: pointer;
}
.form-registration-step__conditions label input.custom_input_check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-registration-step__conditions label .custom_input_check__box {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-registration-step__conditions label span.flex {
  margin: 0;
  line-height: 1.4;
}

.form-registration-step__button {
  height: 56px;
  width: 165px;
  margin: 0 auto;
}
.form-registration-step__button.btn-warning {
  background-color: #62a82d;
  color: #fff;
}

@-webkit-keyframes user-type-shake {
  0%, 100% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-6px);
  }
  30% {
    transform: translateX(6px);
  }
  45% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
  90% {
    transform: translateX(3px);
  }
}

@keyframes user-type-shake {
  0%, 100% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-6px);
  }
  30% {
    transform: translateX(6px);
  }
  45% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
  90% {
    transform: translateX(3px);
  }
}
.content__form-radio.user-type {
  display: flex;
  flex: 0 1 438px;
  width: auto;
  min-width: 0;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: nowrap;
  padding-top: 15px;
}
.content__form-radio.user-type .user-type-option {
  position: relative;
  cursor: pointer;
  flex: 0 0 210px;
  max-width: 210px;
  display: flex;
  align-items: stretch;
}
.content__form-radio.user-type .user-type-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.content__form-radio.user-type .user-type-option .user-type-card {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  flex: 1 1 auto;
  min-height: 232px;
  gap: 12px;
  padding: 22px 12px 16px;
  border: 2px solid #dfe4ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(30, 72, 158, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.16, 0.5, 1);
}
.content__form-radio.user-type .user-type-option .user-type-card__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin: 0;
  flex: 1 1 auto;
  min-height: 156px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf1ff 100%);
  transition: background 0.22s ease;
  overflow: visible;
}
.content__form-radio.user-type .user-type-option .user-type-card__stage .kid {
  width: auto;
  margin-bottom: 0;
  margin-top: 0;
}
.content__form-radio.user-type .user-type-option .user-type-card__stage .kid--teacher {
  height: 176px;
}
.content__form-radio.user-type .user-type-option .user-type-card__stage.user-type-card__stage--pair {
  gap: 0;
}
.content__form-radio.user-type .user-type-option .user-type-card__stage.user-type-card__stage--pair .kid {
  height: 146px;
}
.content__form-radio.user-type .user-type-option .user-type-card__stage.user-type-card__stage--pair .user-type-figure--flip {
  margin-right: -22px;
}
.content__form-radio.user-type .user-type-option .user-type-figure {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin: 0;
  line-height: 0;
  flex: 0 0 auto;
}
.content__form-radio.user-type .user-type-option .user-type-figure--flip {
  transform: scaleX(-1);
}
.content__form-radio.user-type .user-type-option .user-type-figure::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 62%;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45, 32, 26, 0.22), transparent 68%);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.34, 1.16, 0.5, 1), opacity 0.45s ease;
}
.content__form-radio.user-type .user-type-option .user-type-figure::after {
  content: "";
  position: absolute;
  left: var(--spark-x);
  top: var(--spark-y);
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  pointer-events: none;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 34'%3E%3Cpath d='M24 3q1.4 4.6 6 6-4.6 1.4-6 6-1.4-4.6-6-6 4.6-1.4 6-6Z' fill='%2300AEEF'/%3E%3Cpath d='M7 12q1 3.4 4.4 4.4Q8 17.4 7 20.8 6 17.4 2.6 16.4 6 15.4 7 12Z' fill='%23F34A4B'/%3E%3Cpath d='M26 22q.8 2.6 3.4 3.4-2.6.8-3.4 3.4-.8-2.6-3.4-3.4 2.6-.8 3.4-3.4Z' fill='%23FEC901'/%3E%3C/svg%3E") center/contain no-repeat;
}
.content__form-radio.user-type .user-type-option .user-type-figure:has(.is-waving)::after {
  -webkit-animation: user-type-spark 1.25s ease-out 0.04s 2;
          animation: user-type-spark 1.25s ease-out 0.04s 2;
}
.content__form-radio.user-type .user-type-option:hover .user-type-figure::before,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card .user-type-figure::before {
  transform: translateX(-50%) scale(1.12, 0.8);
  opacity: 0.75;
}
.content__form-radio.user-type .user-type-option .user-type-figure:has(.kid--teacher) {
  --spark-x: 92%;
  --spark-y: 24%;
}
.content__form-radio.user-type .user-type-option .user-type-figure:has(.kid--pupil-boy) {
  --spark-x: 94%;
  --spark-y: 36%;
}
.content__form-radio.user-type .user-type-option .user-type-figure:has(.kid--pupil-girl) {
  --spark-x: 90%;
  --spark-y: 33%;
}
.content__form-radio.user-type .user-type-option .user-type-card__label {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0;
  padding: 0;
}
.content__form-radio.user-type .user-type-option:hover .user-type-card {
  border-color: #62a82d;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(30, 72, 158, 0.12);
}
.content__form-radio.user-type .user-type-option:hover .user-type-card__stage {
  background: linear-gradient(180deg, #f3fbee 0%, #e6f6da 100%);
}
.content__form-radio.user-type .user-type-option:hover .kid .kid__body,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card .kid .kid__body {
  transform: translateY(-4px) rotate(calc(0.6deg * var(--kid-lean-dir, 1)));
}
.content__form-radio.user-type .user-type-option:hover .kid .kid__head-in,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card .kid .kid__head-in {
  transform: rotate(calc(2.8deg * var(--kid-lean-dir, 1)));
}
.content__form-radio.user-type .user-type-option:hover .kid .kid__brow,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card .kid .kid__brow {
  transform: translateY(-2.1px);
}
.content__form-radio.user-type .user-type-option:hover .kid .kid__mouth,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card .kid .kid__mouth {
  transform: scale(1.18, 1.32);
}
.content__form-radio.user-type .user-type-option:hover .kid .kid__blush,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card .kid .kid__blush {
  transform: scale(1.12);
}
.content__form-radio.user-type .user-type-option input[type=radio]:checked + .user-type-card {
  border-color: #62a82d;
  background: #f9fff5;
  box-shadow: 0 0 0 3px rgba(98, 168, 45, 0.18), 0 8px 18px rgba(98, 168, 45, 0.12);
}
.content__form-radio.user-type .user-type-option input[type=radio]:checked + .user-type-card .user-type-card__stage {
  background: linear-gradient(180deg, #f1fae9 0%, #dff2cf 100%);
}
.content__form-radio.user-type .user-type-option input[type=radio]:checked + .user-type-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #62a82d url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.4 8.2l3 3 6.2-6.6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
  -webkit-animation: user-type-pop 0.32s cubic-bezier(0.34, 1.16, 0.5, 1) both;
          animation: user-type-pop 0.32s cubic-bezier(0.34, 1.16, 0.5, 1) both;
}
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card {
  border-color: #62a82d;
  box-shadow: 0 0 0 3px rgba(98, 168, 45, 0.3);
}
.content__form-radio.user-type.user-type--required .user-type-card {
  border-color: #e05252;
  background: #fff5f5;
  -webkit-animation: user-type-shake 0.45s ease-out both;
          animation: user-type-shake 0.45s ease-out both;
}

.kid--teacher {
  --kid-wave-dir: -1;
  --kid-idle: 6.8s;
}
.kid--teacher .kid__lid {
  -webkit-animation-duration: 10.6s;
          animation-duration: 10.6s;
  -webkit-animation-delay: -3.1s;
          animation-delay: -3.1s;
}

.kid--pupil-boy {
  --kid-wave-dir: -1;
  --kid-idle: 7.9s;
}
.kid--pupil-boy .kid__lid {
  -webkit-animation-duration: 12.2s;
          animation-duration: 12.2s;
  -webkit-animation-delay: -6.4s;
          animation-delay: -6.4s;
}

.kid--pupil-girl {
  --kid-wave-dir: -1;
  --kid-idle: 6.2s;
}
.kid--pupil-girl .kid__lid {
  -webkit-animation-duration: 9.8s;
          animation-duration: 9.8s;
  -webkit-animation-delay: -2.2s;
          animation-delay: -2.2s;
}
.kid--pupil-girl.is-waving .kid__arm, .kid--pupil-girl.is-waving .kid__hand, .kid--pupil-girl.is-waving .kid__spark {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}

.content__form-radio.user-type .user-type-option .user-type-card {
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
}
.content__form-radio.user-type .user-type-option .user-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.85) 49%, transparent 78%);
  transform: translateX(-115%);
  transition: transform 0.65s cubic-bezier(0.34, 1.16, 0.5, 1);
}
.content__form-radio.user-type .user-type-option:hover .user-type-card::before,
.content__form-radio.user-type .user-type-option input[type=radio]:focus-visible + .user-type-card::before {
  transform: translateX(115%);
}
.content__form-radio.user-type .user-type-option .user-type-card__stage {
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(79, 126, 200, 0.08), inset 0 -20px 35px rgba(215, 230, 250, 0.38);
}
.content__form-radio.user-type .user-type-option:hover .user-type-card__stage,
.content__form-radio.user-type .user-type-option input[type=radio]:checked + .user-type-card .user-type-card__stage {
  box-shadow: inset 0 0 0 1px rgba(98, 168, 45, 0.14), inset 0 -24px 38px rgba(212, 236, 194, 0.25);
}

@-webkit-keyframes user-type-spark {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-24deg);
  }
  28% {
    opacity: 1;
    transform: scale(1.1) rotate(6deg);
  }
  66% {
    opacity: 0.9;
    transform: scale(0.95) rotate(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(14deg);
  }
}

@keyframes user-type-spark {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-24deg);
  }
  28% {
    opacity: 1;
    transform: scale(1.1) rotate(6deg);
  }
  66% {
    opacity: 0.9;
    transform: scale(0.95) rotate(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(14deg);
  }
}
@-webkit-keyframes user-type-pop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes user-type-pop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 400px) {
  .content__form-radio.user-type {
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .content__form-radio.user-type .user-type-option {
    flex: 1 1 150px;
    min-width: 0 !important;
    max-width: 168px !important;
  }
  .content__form-radio.user-type .user-type-option .user-type-card {
    min-height: 196px;
    min-width: 0 !important;
  }
  .content__form-radio.user-type .user-type-option .user-type-card__stage {
    min-height: 118px;
  }
  .content__form-radio.user-type .user-type-option .user-type-card__stage .kid--teacher {
    height: 134px;
  }
  .content__form-radio.user-type .user-type-option .user-type-card__stage.user-type-card__stage--pair .kid {
    height: 104px;
  }
  .content__form-radio.user-type .user-type-option .user-type-card__stage.user-type-card__stage--pair .user-type-figure--flip {
    margin-right: -15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .content__form-radio.user-type .user-type-card::before,
.content__form-radio.user-type .user-type-figure::before {
    transition: none;
    transform: none;
  }

  .content__form-radio.user-type .user-type-figure::before {
    transform: translateX(-50%);
  }

  .content__form-radio.user-type .user-type-figure::after {
    -webkit-animation: none;
            animation: none;
  }
}
