header, footer {
  display: none !important;
}

#wrapper {
  height: 100vh;
}

.quiz {
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz .height {
  height: 100%;
}

.quiz .form {
  -webkit-animation: pop-in 0.5s;
  -moz-animation: pop-in 0.5s;
  -ms-animation: pop-in 0.5s;
  box-shadow: 0px 0px 30px rgba(155, 2, 6, 0.25);
  max-width: 1600px;
  width: 100%;
  background: var(--white-color);
  margin: auto;
  position: relative;
  z-index: 9999;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 991px) {
  .quiz .form {
    display: block;
  }
}

.quiz .form .icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: absolute;
  right: 30px;
  top: 12px;
  height: 45px;
  line-height: 49px;
  width: 45px;
  z-index: 2;
}

@media (max-width: 991px) {
  .quiz .form .icon {
    background-color: white;
    border-radius: 50%;
  }
}

.quiz .form .icon span {
  background-color: #ff0000;
  height: 3px;
  display: block;
  width: 22px;
}

.quiz .form .icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

@media (max-width: 991px) {
  .quiz .form .icon span:nth-child(1) {
    transform: translateY(1px) rotate(45deg);
  }
}

.quiz .form .icon span:nth-child(2) {
  transform: translateY(3px) rotate(-45deg);
}

@media (max-width: 991px) {
  .quiz .form .icon span:nth-child(2) {
    transform: translateY(-2px) rotate(-45deg);
  }
}

.quiz .form .step-bar {
  position: relative;
  width: 50%;
  overflow: hidden;
  padding: 50px 115px 50px 90px;
  background-color: rgba(155, 2, 6, 0.55);
}

@media (max-width: 767px) {
  .quiz .form .step-bar {
    padding: 50px 40px 50px 40px;
  }
}

@media (max-width: 991px) {
  .quiz .form .step-bar {
    width: 100%;
  }
}

.quiz .form .step-bar:after {
  top: -12px;
  content: "";
  width: 100%;
  height: 150%;
  right: -295px;
  position: absolute;
  transform: rotate(10deg);
  background-color: #8b0000;
}

@media (max-width: 780px) {
  .quiz .form .step-bar {
    padding-bottom: 50px;
  }
}

@media (max-width: 567px) {
  .quiz .form .step-bar {
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .quiz .form .step-bar {
    padding-top: 95px;
  }
}

@media (max-width: 480px) {
  .quiz .form .step-bar {
    padding-top: 80px;
  }
}

.quiz .form .step-bar .description-step {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  text-align: left;
  z-index: 2;
  font-family: var(--main-b);
}

@media (max-width: 480px) {
  .quiz .form .step-bar .description-step {
    transform: none;
    top: initial;
    left: initial;
  }
}

.quiz .form .step-bar .description-step h2 {
  color: white;
  font-size: 50px;
  line-height: 1.1;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .quiz .form .step-bar .description-step h2 {
    font-size: 30px;
  }
}

.quiz .form .step-bar .description-step p {
  font-size: 20px;
  color: black;
}

@media (max-width: 768px) {
  .quiz .form .step-bar .description-step p {
    font-size: 16px;
  }
}

.quiz .form .step-bar .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: 50px;
  max-width: 110px;
  right: 40px;
}

@media (max-width: 1200px) {
  .quiz .form .step-bar .steps {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .quiz .form .step-bar .steps {
    display: none;
  }
}

.quiz .form .step-bar .steps .form-step {
  width: 100%;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  position: relative;
}

.quiz .form .step-bar .steps .form-step:last-child {
  display: none;
}

.quiz .form .step-bar .steps .form-step:first-child:before {
  display: none;
}

.quiz .form .step-bar .steps .form-step .dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  display: inline-block;
  margin: 0px 3px;
  background: white;
  left: 50%;
  top: 0;
  z-index: 2;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
}

.quiz .form .step-bar .steps .form-step.active .dot {
  background-color: #d80000;
}

.quiz .form .step-bar .steps .form-step.completed:before, .quiz .form .step-bar .steps .form-step.completed:after {
  background-color: var(--main-color);
}

.quiz .form .step-bar .steps .form-step.before-last-from-step:after {
  display: none;
}

.quiz .form .question {
  font-size: 18px;
  line-height: 21px;
  color: var(--main-blueLight);
  font-family: var(--main-r);
  display: block;
  text-align: center;
  padding: 20px 20px 35px;
}

@media (max-width: 780px) {
  .quiz .form .question {
    padding: 18px 20px 12px;
    font-size: 16px;
    line-height: 19px;
  }
}

.quiz .form .content-survey {
  width: 50%;
  padding: 130px 55px 0 85px;
}

@media (max-width: 991px) {
  .quiz .form .content-survey {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .quiz .form .content-survey {
    padding: 50px 30px;
  }
}

@media (max-width: 480px) {
  .quiz .form .content-survey {
    padding: 25px 10px;
  }
}

.quiz .form .content-survey .step {
  padding: 0 5px;
}

.quiz .form .content-survey .step .thanks {
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .quiz .form .content-survey .step .thanks {
    padding-bottom: 0;
  }
}

.quiz .form .content-survey .step .thanks p {
  color: var(--black-color);
  font-family: var(--main-r);
  font-size: 18px;
  line-height: 21px;
}

.quiz .form .content-survey .step .thanks .check {
  max-width: 100px;
  padding: 35px 0;
  height: auto;
}

@media (max-width: 480px) {
  .quiz .form .content-survey .step .inputs {
    padding: 0 5px;
  }
}

.quiz .form .content-survey .step .inputs .wrong {
  margin-bottom: 10px;
  color: #d80000;
}

.quiz .form .content-survey .step .inputs .location-field:not(:last-child) {
  margin-bottom: 15px;
}

.quiz .form .content-survey .step .inputs .location-field label {
  display: none;
}

.quiz .form .content-survey .step .inputs .location-field .input-group {
  margin: 0 20px 20px;
}

@media (max-width: 991px) {
  .quiz .form .content-survey .step .inputs .location-field .input-group {
    margin: 0;
  }
}

.quiz .form .content-survey .step .inputs .location-field .input-group input, .quiz .form .content-survey .step .inputs .location-field .input-group textarea {
  width: 100%;
  max-width: 510px;
  border-radius: 5px;
  padding-left: 35px;
  border: 2px solid #e4e4e4;
  background-color: #f3f4fa;
}

.quiz .form .content-survey .step .inputs .location-field .input-group input.error, .quiz .form .content-survey .step .inputs .location-field .input-group textarea.error {
  border-color: var(--main-color);
}

.quiz .form .content-survey .step .inputs .location-field .input-group input {
  padding: 10px 20px;
  height: 60px;
}

@media (max-width: 991px) {
  .quiz .form .content-survey .step .inputs .location-field .input-group input {
    margin-bottom: 5px;
  }
}

.quiz .form .content-survey .step .inputs .location-field .input-group textarea {
  height: 100%;
  max-height: 120px;
  resize: none;
}

.quiz .form .content-survey .step .inputs .product {
  margin: 0 20px 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .quiz .form .content-survey .step .inputs .product {
    margin: 0;
  }
}

.quiz .form .content-survey .step .inputs .product .checkbox {
  position: relative;
}

.quiz .form .content-survey .step .inputs .product .checkbox:before {
  content: "";
  position: absolute;
  height: 38px;
  width: 38px;
  border-radius: 100%;
  left: 30px;
  top: -10px;
  background-color: #fff;
  border: 1px solid #9b0206;
}

.quiz .form .content-survey .step .inputs .product .checkbox:after {
  top: -3px;
  left: 37px;
  width: 24px;
  content: "";
  height: 24px;
  display: none;
  position: absolute;
  border-radius: 100%;
  background-color: #8b0000;
}

.quiz .form .content-survey .step .inputs .product input {
  display: none;
}

.quiz .form .content-survey .step .inputs .product input:checked + .checkbox:after {
  display: block;
}

.quiz .form .content-survey .step .inputs .product label {
  width: 100%;
  padding-left: 90px;
  height: 65px;
  color: #777777;
  font-size: 15px;
  line-height: 65px;
  font-weight: 400;
  position: relative;
  margin-bottom: 12px;
  display: inline-block;
  border: 2px solid #e5e5e5;
  transition: all 450ms ease-in-out;
}

@media (max-width: 576px) {
  .quiz .form .content-survey .step .inputs .product label {
    max-width: 100%;
  }
}

.quiz .form .content-survey .step .inputs .product label.error {
  border-color: var(--main-color);
}

.quiz .form .content-survey .step .main-btn {
  font-size: 15px;
  max-height: 60px;
  padding: 30px 0;
  max-width: 195px;
  width: 100%;
  margin: 35px auto 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .quiz .form .content-survey .step .main-btn {
    font-size: 15px;
    max-height: 52px;
    max-width: 161px;
  }
}

@media (max-width: 768px) {
  .quiz .form .content-survey .step .main-btn {
    margin: 20px auto 20px;
  }
}

@media (max-width: 480px) {
  .quiz .form .content-survey .step .main-btn {
    max-height: 30px;
    max-width: 125px;
  }
}

.survey-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

.survey-overlay.opened {
  opacity: 1;
  visibility: visible;
}

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

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