.quiz {
  padding: 20px 0 30px;
  border: 4px solid #ffb800;
  border-left: none;
  border-right: none;
} .quiz__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
} .quiz__content h2 {
  font-family: 'Open Sans';
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: #3f484f;
  margin: 0;
} .quiz-sides {
  display: flex;
  border: 1px solid #ffb800;
} .quiz_left {
  background-image: url(../images/quiz-bg_left.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  display: flex;
  flex-direction: column;
  max-width: 631px;
  width: 100%;
  padding: 50px 60px 60px;
} .quiz_left > img {
  max-width: 168px;
  width: 100%;
} .quiz_left > p:first-of-type {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: #ffb800;
  margin: 25px 0;
} .quiz_left h3 {
  font-family: 'Open Sans';
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  vertical-align: middle;
  color: #3f484f;
  margin: 0;
} .quiz_left p:last-of-type {
  font-family: 'Open Sans';
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  color: #000000CC;
  margin: 0;
} .quiz .line {
  max-width: 95px;
  width: 100%;
  height: 4px;
  background: #ffb800;
  margin: 25px 0 15px;
} .quiz .line_long {
  max-width: 375px;
  width: 100%;
  height: 4px;
  background: #ffb800;
  margin: 25px 0;
} .quiz-advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
  max-width: 405px;
  width: 100%;
} .quiz-advantage {
  max-width: 190px;
  width: 100%;
  display: flex;
  gap: 10px;
} .quiz-advantage svg {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
} .quiz-advantage__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
} .quiz_left .quiz-advantage__text h4 {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 1%;
  color: #000000CC;
  margin: 0;
} .quiz_left .quiz-advantage__text p {
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1%;
  color: #000000CC;
  margin: 0;
} .quiz_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 567px;
  width: 100%;
  padding: 30px 40px 20px;
} .quiz_right .progress {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;

  margin: 0;
  padding: 0;
  height: auto;
  overflow: visible;
  background: none;
  border-radius: 0;
  box-shadow: none;
} .quiz_right .progress > p {
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  color: #3f484f;
  margin-bottom: 0;
} .quiz_right .progress > p span {
  color: #ffb800;
} .quiz_right .progress-bar {
  position: relative;
  display: flex;
  width: 100%;
  height: 11px;
  background: #3F484F;
  border-radius: 5px;
} .quiz_right .progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 11px;
  background: #ffb800;
  border-radius: 5px;
} .quiz-question__ask h3 {
  font-family: 'Open Sans';
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  vertical-align: middle;
  color: #354D66;
  margin: 0 0 5px;
} .quiz-question__ask p {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  vertical-align: middle;
  color: #354D66;
  margin: 0;
} .quiz-questions {
  position: relative;
  min-height: 504px;
  margin-top: 17px;
} .quiz-question {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
} .quiz-question.active {
  opacity: 1;
  pointer-events: inherit;
} .quiz-question p {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  color: #3F484F;
  margin: 0;
} .quiz-question__field {
  display: flex;
  align-items: center;
  gap: 20px;
  max-height: 64px;
  height: 100%;
  padding: 10px 25px;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0px 0px 13.2px -4px #00000040;
  cursor: pointer;
} .quiz-question__field:hover {
  box-shadow: 0px 0px 25px -4px #00000040;
} .quiz-question__field .square {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid #EFB400;
  border-radius: 5px;
  margin-left: auto;
} .quiz-question__field .square svg {
  min-width: 14px;
  min-height: 10px;
  width: 14px;
  height: 10px;
  transform: scale(0);
} .quiz-question__field.active .square svg {
  transform: scale(1);
} .quiz-question__field svg {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
} .quiz-question__field-text {
  display: flex;
  flex-direction: column;
} .quiz-question__field-text span {
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  color: #3F484F80;
} .quiz-navigation {
  height: fit-content;
  margin-top: 20px;
} .quiz-navigation .close-safety {
  display: flex;
  align-items: center;
  gap: 6px;
} .quiz-navigation .close-safety svg {
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
} .quiz-navigation .close-safety p {
  font-family: 'Roboto';
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1%;
  color: #373E44;
  margin: 0;
} .quiz-navigation__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
} .quiz-navigation__button.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 162px;
  width: 100%;
  height: 60px;
  border: 2px solid #354D66;
  border-radius: 10px;
  cursor: pointer;
} .quiz-navigation__button.next {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 310px;
  width: 100%;
  height: 60px;
  background: #EFB400;
  border-radius: 10px;
  cursor: pointer;
} .quiz-navigation__button svg {
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
} .quiz-navigation__button p {
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1%;
  margin: 0;
} .quiz-navigation__button.prev svg {
  color: #3F484F;
  transform: rotate(180deg);
} .quiz-navigation__button.next svg,
  .quiz-navigation__button.next p {
  color: #FFFFFF;
} .quiz-navigation__button.prev:hover {
  background: #1B212A;
  border: 2px solid #1B212A;
} .quiz-navigation__button.prev:hover svg {
  color: #FFFFFF;
  transform: rotate(180deg);
} .quiz-navigation__button.next:hover {
  background: #1B212A;
} .quiz-navigation__button.disabled {
  opacity: .4;
  pointer-events: none;
}

.quiz .quiz-question:last-of-type {
  justify-content: start;
  gap: 30px;
} .quiz .quiz-callback__form-field {
  margin-bottom: 0;
} .quiz .quiz-callback__form-field input[type="text"] {
  background: #FFFFFF;
  box-shadow: 0px 0px 14px 0px #00000040;
  border: none;
} .quiz .quiz-callback__form-field p,
  .quiz .quiz-callback__form-field svg {
  color: #3F484F;
} .quiz-callback__form-field {
	position: relative;
	margin-bottom: 20px;
} .quiz-callback__form-field input[type="text"],
	.quiz-callback__form-field textarea {
	width: 100%;
	padding: 20px;
	background: #354D6680;
	border: 1px solid #3F484F;
	border-radius: 10px;
	outline: none;
	resize: none;

	font-family: 'Roboto';
	font-size: 20px;
	font-weight: 300;
	line-height: 18px;
	letter-spacing: 1%;
	color: #FFFFFF;
} .quiz-callback__form-field input[type="text"] ~ label,
	.quiz-callback__form-field textarea ~ label {
	position: absolute;
	top: 15px;
	left: 15px;
	display: flex;
	align-items: center;
	gap: 20px;

	font-family: 'Roboto';
	font-size: 24px;
	font-weight: 300;
	line-height: 18px;
	letter-spacing: 1%;
	color: #FFFFFFA1;

	background: transparent;
	border-radius: 10px;
	padding: 5px;
	user-select: none;
	pointer-events: none;
} .quiz-callback__form-field label span {
	color: #EFB400;
} .quiz-callback__form-field input[type="text"]:focus ~ label,
	.quiz-callback__form-field input[type="text"]:not(:placeholder-shown) ~ label,
	.quiz-callback__form-field textarea:focus ~ label,
	.quiz-callback__form-field textarea:not(:placeholder-shown) ~ label {
	top: -20px;
	left: 40px;
	background: #3F484F;
} .quiz-callback__form-field input[type="text"]:focus ~ label p,
  .quiz-callback__form-field input[type="text"]:focus ~ label svg {
  color: #FFFFFF;
} .quiz-question button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 21px 15px;
  background: #EFB400;
  border: none;
  border-radius: 10px;
  outline: none;
  margin-top: 20px;

  font-family: 'Roboto';
  font-size: 32px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1%;
  color: #FFFFFF;
} .quiz-question button:hover {
  background: #3F484F;
} .warning {
  max-width: 378px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
  color: #000000;
}

@media (max-width: 1040px) {
  .quiz_left {
    padding: 50px 15px 60px;
  }
} @media (max-width: 910px) {
  .quiz-sides {
    flex-direction: column;
  } .quiz_left {
    max-width: 100%;
    padding: 50px 60px 120px;
  } .quiz_right {
    max-width: 100%;
  } .quiz-advantages {
    max-width: 100%;
  }
} @media (max-width: 550px) {
  .quiz_left {
    background-position: center;
    padding: 15px 25px;
  } .quiz_left > p:first-of-type {
    margin: 20px 0;
  } .quiz_left h3 {
    font-size: 24px;
    line-height: 30px;
  } .quiz .line {
    margin: 20px 0 15px;
  } .quiz_left p:last-of-type {
    font-size: 16px;
    line-height: 22px;
  } .quiz .line_long {
    margin: 20px 0;
  } .quiz-advantage {
    max-width: 280px;
  } .quiz-advantage__text {
    gap: 4px;
  } .quiz_left .quiz-advantage__text h4 {
    font-weight: 700;
  } .quiz_right {
    padding: 30px 15px 20px;
  } .quiz-question__ask h3 {
    font-size: 20px;
  } .quiz-question button {
    margin: 0;
  }
}