.quizSlider {
  max-width: 853px;
}
.quizSlider:not(:last-child) {
  margin-bottom: 30px;
}
.quizSlider .quizItem {
  display: none;
}
.quizSlider .quizItem.active {
  display: block;
}
.progressbar {
  margin-bottom: 20px;
}
.quizItem__title + .progressbar {
  margin-top: -17px;
}
.progressbar__num {
  font-weight: 600;
  font-size: 14px;
  color: #00B2FF;
  margin-bottom: 5px;
}
.progressbar__scale {
  background-color: #F3F3F3;
  border-radius: 10px;
}
.progressbar__line {
  height: 4px;
  background-color: #00B2FF;
  border-radius: 10px;
  transition: width 1000ms;
}
.quizItem__body {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  background-color: #FFFFFF;
  box-shadow: inset 0 0 0 1px #F3F3F3;
  border-radius: 10px;
  padding: 20px 15px;
}
@media (min-width: 470px) {
  .quizItem__body {
    padding: 25px;
  }
}
.quizItem__title {
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
}
.quizItem__content {
  flex-grow: 1;
}
.quizItem__inputs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.quizItem__label {
  font-size: 14px;
  margin-bottom: 5px;
}
.quizItem__input {
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.11;
  letter-spacing: -0.01em;
  min-height: 45px;
  width: 100%;
  border-bottom: 1px solid #F3F3F3;
}
@media (min-width: 640px) {
  .quizItem__input--half {
    width: 48%;
  }
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]),
.quizItem__input textarea,
.quizItem__input select {
  background-color: #FAFAFA;
  box-shadow: inset 0 0 0 1px #F3F3F3;
  border-radius: 7px;
  border: 0;
  font-family: inherit;
  color: #000000;
  padding: 0.8em 1.2em;
  min-height: 45px;
  font-size: 14px;
  line-height: 1.2;
  width: 100%;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit])::-webkit-input-placeholder,
.quizItem__input textarea::-webkit-input-placeholder,
.quizItem__input select::-webkit-input-placeholder {
  font-weight: 400;
  color: #818F98;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit])::-moz-placeholder,
.quizItem__input textarea::-moz-placeholder,
.quizItem__input select::-moz-placeholder {
  font-weight: 400;
  color: #818F98;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]):-moz-placeholder,
.quizItem__input textarea:-moz-placeholder,
.quizItem__input select:-moz-placeholder {
  font-weight: 400;
  color: #818F98;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]):-ms-input-placeholder,
.quizItem__input textarea:-ms-input-placeholder,
.quizItem__input select:-ms-input-placeholder {
  font-weight: 400;
  color: #818F98;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]):focus::-webkit-input-placeholder,
.quizItem__input textarea:focus::-webkit-input-placeholder,
.quizItem__input select:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]):focus::-moz-placeholder,
.quizItem__input textarea:focus::-moz-placeholder,
.quizItem__input select:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]):focus:-moz-placeholder,
.quizItem__input textarea:focus:-moz-placeholder,
.quizItem__input select:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]):focus:-ms-input-placeholder,
.quizItem__input textarea:focus:-ms-input-placeholder,
.quizItem__input select:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quizItem__input input:not([type="checkbox"]):not([type="radio"]):not([type=submit]).error,
.quizItem__input textarea.error,
.quizItem__input select.error {
  box-shadow: 0 0 0 1px #FF0000;
  color: #FF0000;
}
.quizItem__input--radio {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.quizItem__input--radio label {
  display: flex;
  align-items: center;
  position: relative;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  min-height: 45px;
  padding: 14px 0 14px 26px;
  user-select: none;
  cursor: pointer;
  flex-grow: 1;
  font-size: 14px;
}
.quizItem__input--radio label:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -5px;
  height: 10px;
  width: 10px;
  border-radius: 9px;
  box-shadow: inset 0 0 0 2px #FFF, 0 0 0 2px #00B2FF;
  background-color: #FFFFFF;
  transition: background-color 300ms;
}
.quizItem__input--radio label:hover:before {
  background-color: #00B2FF50;
}
.quizItem__input--radio label a {
  text-decoration: underline;
  color: inherit;
}
.quizItem__input--radio input:not([type="checkbox"]):not([type="radio"]):not([type=submit]) {
  display: none;
  box-shadow: inset 0 0 0 1px #00B2FF;
  border-radius: 0px 5px 5px 0px;
}
.quizItem__input--radio input[type=radio] {
  display: none;
}
.quizItem__input--radio input[type=radio]:checked + label::before {
  background-color: #00B2FF;
}
.quizItem__input--radio input[type=radio]:checked ~ input:not([type="checkbox"]):not([type="radio"]):not([type=submit]) {
  display: block;
}
.quizItem__input--checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.quizItem__input--checkbox label {
  display: flex;
  align-items: center;
  position: relative;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 14px 0 14px 22px;
  min-height: 45px;
  user-select: none;
  cursor: pointer;
  flex-grow: 1;
  font-size: 14px;
}
.quizItem__input--checkbox label:before,
.quizItem__input--checkbox label:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  height: 14px;
  width: 14px;
}
.quizItem__input--checkbox label:hover:after {
  opacity: 0.5;
}
.quizItem__input--checkbox label:before {
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px #A2ABB2;
  background-color: #FFFFFF;
  transition: background-color 300ms;
}
.quizItem__input--checkbox label:after {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 4L3 6L7 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  opacity: 0;
  transition: opacity 300ms;
}
.quizItem__input--checkbox label a {
  text-decoration: underline;
  color: inherit;
}
.quizItem__input--checkbox input[type=checkbox] {
  display: none;
}
.quizItem__input--checkbox input[type=checkbox]:checked + label::before {
  background-color: #0B2556;
  box-shadow: inset 0 0 0 1px #0B2556;
}
.quizItem__input--checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.quizItem__agree {
  margin-bottom: 14px;
}
.quizItem__agree label {
  display: block;
  position: relative;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #666666;
  padding-left: 2.25em;
  user-select: none;
  cursor: pointer;
  flex-grow: 1;
}
.quizItem__agree label:before,
.quizItem__agree label:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1rem;
  height: 1em;
  width: 1em;
  border-radius: 2px;
  transition: opacity 300ms;
}
.quizItem__agree label:before {
  box-shadow: inset 0 0 0 1px #D6D6D6;
  border-radius: 2px;
}
.quizItem__agree label:after {
  border-left: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  height: 4px;
  width: 8px;
  transform: rotate(-45deg);
  left: 3px;
  top: 2px;
  opacity: 0;
}
.quizItem__agree label a {
  text-decoration: underline;
  color: inherit;
  border: none;
}
.quizItem__agree input[type=checkbox] {
  display: none;
}
.quizItem__agree input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.quizItem__error {
  color: red;
  margin-bottom: 15px;
  margin-top: -5px;
}
.quizItem__result {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 105px;
  background-color: #FAFAFA;
  border-radius: 11px;
  font-size: 14px;
  text-align: center;
  color: #000000;
}
.quizItem__result p {
  color: inherit;
  font-size: inherit;
}
.quizItem__result a {
  color: #00B2FF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.quizItem__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.quizItem__prev {
  padding: 8px 20px 10px;
  height: 40px;
  cursor: pointer;
  outline: none;
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #000000;
  font-family: inherit;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #0B2556;
}
.quizItem__prev:disabled {
  color: #B5B5B5;
  cursor: default;
  box-shadow: inset 0 0 0 1px #B5B5B5;
}
.quizItem__next {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  width: min-content;
  padding: 8px 20px 10px;
  height: 40px;
  background-color: #0B2556;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #FFFFFF;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: 0;
  margin-left: auto;
}
.quizItem__next::after {
  display: block;
  content: '';
  height: 18px;
  width: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.75 9H14.25M14.25 9L9 3.75M14.25 9L9 14.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}
.quizItem__next:disabled {
  background-color: #B5B5B5;
  cursor: default;
}
