body {
  font-family: "Inter", system-ui;
  background-color: #f6f8fb;
  color: #212223;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

p {
  color: #666;
  font-weight: 300;
  font-size: 15px;
}

.color-primary {
  color: #c70122;
}

.btn {
  display: block;
  padding: 15px 25px;
  background: #212223;
  color: #fff;
  width: 100%;
  font-weight: 500;
  border-radius: 5px;
}

.btn-prev {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6901960784);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}
.btn-prev:hover {
  cursor: pointer;
}
.btn-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-next {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6901960784);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}
.btn-next:hover {
  cursor: pointer;
}
.btn-next.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.layout {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.wrap-progress {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 15px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.wrap-progress .progress {
  height: 4px;
  background: #dfe0e0;
  position: relative;
  border-radius: 4px;
}
.wrap-progress .progress .progress-label {
  font-size: 14px;
  position: absolute;
  left: calc(50% - 10px);
  top: -25px;
}
.wrap-progress .progress .progress-label .main-value {
  color: #c70122;
}
.wrap-progress .progress .progress-inner {
  border-radius: 4px !important;
  transition: all 0.3s ease-out;
  position: absolute;
  left: -20%;
  background: #c70122;
  height: 4px;
  width: 20%;
}

.wrap-quiz-content .step {
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6901960784);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 420px) {
  .wrap-quiz-content .step {
    padding: 30px;
  }
}
.wrap-quiz-content .wrap-mask {
  margin-top: 30px;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 50% 50%;
}
.wrap-quiz-content .wrap-mask .data {
  text-align: left;
  font-size: 14px;
  color: #666;
}
.wrap-quiz-content .wrap-mask .data .name {
  font-weight: 600;
}
.wrap-quiz-content .wrap-mask .data .autog {
  display: inline-block;
  max-width: 120px;
  margin-top: 15px;
}
.wrap-quiz-content .wrap-mask .photo {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.15);
}
.wrap-quiz-content .actions {
  margin-top: 30px;
}

.step .step-body .img-flag {
  width: 100%;
  max-width: 96px;
}
.step .step-body .img-icon {
  width: 100%;
  max-width: 48px;
}
.step .step-body .inputs-wrapper {
  margin-top: 30px;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}
.step .step-body .inputs-wrapper .radio-group {
  position: relative;
}
.step .step-body .inputs-wrapper .radio-group .card-label {
  border-radius: 5px;
  border-width: 1px;
  display: flex;
  padding: 15px;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-height: 134px;
  font-weight: 500;
  transition: all 0.3s ease-out;
  text-align: center;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.15);
}
.step .step-body .inputs-wrapper .radio-group .card-label:hover {
  cursor: pointer;
}
.step .step-body .inputs-wrapper .radio-group input[type=radio]:checked + .card-label {
  border-color: rgba(199, 1, 34, 0.5019607843);
  background: #fff;
  box-shadow: none;
}
.step .step-body .inputs-wrapper .radio-group input {
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  position: absolute;
}
.step .step-body .inputs-wrapper .radio-group img {
  display: inline-block;
  border-radius: 5px;
}

.form .form-group {
  margin-top: 15px;
  position: relative;
  padding-top: 15px;
}
.form .form-group .form-label {
  padding: 5px 10px;
  margin: 0;
  position: absolute;
  font-weight: 400;
  display: inline-block;
  font-size: 14px;
  top: -1px;
  left: 10px;
  background: #fff;
  border-radius: 5px;
  z-index: 1;
}
.form .form-group .form-input {
  border: 1px solid rgba(226, 232, 240, 0.6901960784);
  padding: 12px 15px;
  width: 100%;
  border-radius: 5px;
}
.form .form-group .form-input.phone {
  padding: 12px 10px 12px 55px;
}
.form .form-group .form-input:focus {
  outline: 4px solid rgba(209, 25, 25, 0.1019607843);
}

.logo {
  max-width: 146px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 25px;
}

.hidden {
  visibility: hidden;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.icon-arrow-left {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/arrow_left.svg") no-repeat center;
  background-size: contain;
}

.icon-arrow-right {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/arrow_right.svg") no-repeat center;
  background-size: contain;
}

.icon-arrow-lock {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/arrow_lock.svg") no-repeat center;
  background-size: contain;
}

.icon-arrow-check {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/arrow_check.svg") no-repeat center;
  background-size: contain;
}

.wrap-snake {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 15px 0;
  margin-left: -10px;
  margin-right: -10px;
}
.wrap-snake .snake {
  position: relative;
  padding: 16px;
}
.wrap-snake .snake .point {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e1e1;
  position: absolute;
  z-index: 2;
}
.wrap-snake .snake .point:after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 6px;
}
.wrap-snake .snake .point.active {
  background: #c70122;
}
.wrap-snake .snake .point:hover {
  cursor: pointer;
  background: #c70122;
}
.wrap-snake .snake .connect {
  position: absolute;
  background: #e0e1e1;
  display: block;
  z-index: 1;
}
.wrap-snake .snake .connect.active {
  background: #c70122;
}
.wrap-snake .snake.snake-1 .point {
  right: 0;
  top: 0;
}
.wrap-snake .snake.snake-1 .connect-1-2 {
  top: 13px;
  right: 13px;
  left: 0;
  height: 6px;
}
.wrap-snake .snake.snake-2 .point {
  left: 0;
  top: 0;
}
.wrap-snake .snake.snake-2 .connect-2-1 {
  top: 13px;
  right: 0;
  left: 13px;
  height: 6px;
}
.wrap-snake .snake.snake-2 .connect-2-3 {
  top: 13px;
  left: 13px;
  bottom: 0;
  width: 6px;
}
.wrap-snake .snake.snake-3 {
  padding: 64px 16px;
}
.wrap-snake .snake.snake-3 .point {
  left: 0;
  top: calc(50% - 16px);
}
.wrap-snake .snake.snake-3 .connect-3-2 {
  top: 0;
  left: 13px;
  width: 6px;
  height: 50%;
}
.wrap-snake .snake.snake-3 .connect-3-4 {
  top: calc(50% - 4px);
  left: 13px;
  right: 0;
  height: 6px;
}
.wrap-snake .snake.snake-4 {
  padding: 64px 16px;
}
.wrap-snake .snake.snake-4 .point {
  right: 0;
  top: calc(50% - 16px);
}
.wrap-snake .snake.snake-4 .connect-4-3 {
  top: calc(50% - 4px);
  right: 13px;
  left: 0;
  height: 6px;
}
.wrap-snake .snake.snake-4 .connect-4-5 {
  bottom: 0;
  right: 13px;
  width: 6px;
  height: 50%;
}
.wrap-snake .snake.snake-5 .point {
  right: 0;
  bottom: 0;
}
.wrap-snake .snake.snake-5 .connect-5-6 {
  bottom: 13px;
  right: 13px;
  left: 0;
  height: 6px;
}
.wrap-snake .snake.snake-6 .point {
  left: 0;
  bottom: 0;
}
.wrap-snake .snake.snake-6 .connect-6-5 {
  bottom: 13px;
  left: 13px;
  right: 0;
  height: 6px;
}
.wrap-snake .label {
  padding: 0 10px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 420px) {
  .wrap-snake .label {
    padding: 0 15px;
    font-size: 15px;
  }
}
.wrap-snake .label:hover {
  color: #c70122;
  cursor: pointer;
}
.wrap-snake .label.active {
  color: #c70122;
}
.wrap-snake .label.label-2 {
  text-align: right;
}
.wrap-snake .label.label-3 {
  text-align: right;
}
.wrap-snake .label.label-6 {
  text-align: right;
}

.overflow-hidden {
  overflow: hidden;
}/*# sourceMappingURL=app.css.map */