@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Orelega+One&display=swap");
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: #333;
}
body h1 {
  font-family: "Orelega One", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 100%;
}
body p {
  padding: 0;
  margin: 0;
  line-height: 150%;
}
body header {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  background: linear-gradient(to bottom, #E44C4C 70%, white 30%);
  box-sizing: border-box;
}
body header .header-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}
body header .header-container h1 {
  padding: 30px 0;
  color: white;
}
body header .header-container .sub-heading {
  background: white;
  padding: 30px;
  border: none;
  border-radius: 12px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
body main {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
body main .main-container {
  position: relative;
  width: auto;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
body main .main-container .headline {
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .main-container .headline h2 {
  padding: 0;
  margin: 0;
  line-height: 100%;
  font-size: 20px;
  font-weight: 600;
}
body main .main-container .error-box {
  display: none;
  background: #ffe8e8;
  border: none;
  border-left: #e05d5d solid 5px;
  border-radius: 8px;
  padding: 20px;
  margin: 0;
  margin-bottom: 50px;
}
body main .main-container .error-box p {
  padding: 0;
  margin: 0;
  line-height: 120%;
  color: #e05d5d;
  font-weight: 500;
}
body main .main-container .questionnaire {
  position: relative;
  padding: 50px;
  padding-top: 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.3s ease;
}
body main .main-container .questionnaire h3.question {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 120%;
}
body main .main-container .questionnaire h3.question span.required {
  color: #e05d5d;
}
body main .main-container .questionnaire .answer-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .main-container .questionnaire .answer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body main .main-container .questionnaire .answer-container ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  align-self: flex-start;
}
body main .main-container .questionnaire .answer-container ul li .option-circle {
  position: relative;
  width: 20px;
  height: 20px;
  border: #aaa solid 1px;
  border-radius: 100px;
}
body main .main-container .questionnaire .answer-container ul li .option-circle-selected {
  border: #333 solid 1px;
}
body main .main-container .questionnaire .answer-container ul li .option-circle-selected::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #006FED;
  z-index: 500;
  border: none;
  border-radius: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body main .main-container .questionnaire .answer-container ul li:hover {
  cursor: pointer;
}
body main .main-container .questionnaire .answer-container input {
  padding: 10px;
  border: #ddd solid 1px;
  border-radius: 8px;
  outline: none;
  resize: none;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  box-sizing: border-box;
}
body main .main-container .questionnaire .answer-container input::-moz-placeholder {
  color: #aaa;
  font-weight: 400;
}
body main .main-container .questionnaire .answer-container input::placeholder {
  color: #aaa;
  font-weight: 400;
}
body main .main-container .questionnaire .answer-container .phonenumber-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}
body main .main-container .questionnaire .answer-container .phonenumber-wrapper span.area-code {
  padding: 10px;
  border: #ddd solid 1px;
  border-radius: 8px 0px 0px 8px;
  background: #eee;
  color: #333;
  font-weight: 600;
  border-right: none;
}
body main .main-container .questionnaire .answer-container input.phonenumber {
  flex: 1;
  border-radius: 0px 8px 8px 0px;
}
body main .main-container .questionnaire .loading-results {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0;
}
body main .main-container .questionnaire .loading-results img {
  width: 50px;
}
body main .main-container .questionnaire .loading-results p {
  color: #aaa;
}
body main .main-container .progress-container {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  background: #006FED;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
  gap: 20px;
}
body main .main-container .progress-container .progress-bar {
  flex: 1;
  background: #005abf;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  height: 20px;
}
body main .main-container .progress-container .progress-bar .progress {
  height: 100%;
  width: 0%;
  background: white;
  transition: width 0.3s ease;
}
body main .main-container .progress-container button {
  padding: 20px;
  background: #3593ff;
  color: white;
  box-sizing: border-box;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
body main .main-container .progress-container button:hover {
  cursor: pointer;
  background: #4da0ff;
}
body main .main-container .progress-container button.progress-btn-submit {
  background: #f5b52a;
  color: #333;
  font-weight: bold;
}
body .thankyou {
  position: relative;
  width: 100%;
  padding: 150px 20px;
  margin: 0;
  box-sizing: border-box;
}
body .thankyou .thankyou-box {
  position: relative;
  width: auto;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  padding: 20px;
  border: #ddd solid 1px;
  border-radius: 300px;
  gap: 20px;
  align-items: center;
  background: white;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
body .thankyou .thankyou-box .img-box {
  width: 200px;
  height: 200px;
  background: #E44C4C;
  border: none;
  border-radius: 200px;
  overflow: hidden;
}
body .thankyou .thankyou-box .img-box .customer-support {
  width: 100%;
  height: 100%;
  background-image: url("img/reviewmycrash-support.png");
  background-size: cover;
  background-repeat: no-repeat;
}
body .thankyou .thankyou-box .thankyou-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
body .thankyou .thankyou-box .thankyou-details h1 {
  padding: 0;
  margin: 0;
  line-height: 100%;
  color: #E44C4C;
  font-size: 36px;
  font-weight: normal;
}
body .thankyou .thankyou-box .thankyou-details h2 {
  font-size: 24px;
  color: #333;
  padding: 0;
  margin: 0;
  line-height: 100%;
  font-weight: 600;
}
body .thankyou .thankyou-box .thankyou-details p {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  line-height: 100%;
  color: #888;
}
body .thankyou .thankyou-box .thankyou-details p a {
  color: #E44C4C;
  font-weight: 600;
}
body footer {
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
body footer .footer-container {
  position: relative;
  width: auto;
  max-width: 1000px;
  padding: 100px 20px;
  padding-bottom: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body footer .footer-container p {
  padding: 0;
  margin: 0;
  line-height: 150%;
  font-size: 12px;
  color: #888;
  text-align: center;
}
body footer .footer-container p a {
  font-weight: 600;
  color: #888;
}

@media screen and (max-width: 480px) {
  body header .header-container h1 {
    font-size: 24px;
  }
  body header .header-container .sub-heading {
    padding: 20px;
  }
  body header .header-container .sub-heading p {
    font-size: 14px;
  }
  body main .main-container .headline {
    padding: 30px 0;
  }
  body main .main-container .headline h1 {
    font-size: 24px;
  }
  body main .main-container .headline h2 {
    font-size: 14px;
  }
  body main .main-container .error-box {
    padding: 10px;
    margin: 0;
    margin-bottom: 30px;
  }
  body main .main-container .error-box p {
    font-size: 14px;
  }
  body main .main-container .questionnaire {
    padding: 30px 0;
    padding-top: 0px;
  }
  body main .main-container .questionnaire h3.question {
    font-size: 16px;
  }
  body main .main-container .questionnaire .answer-container ul li {
    font-size: 14px;
  }
  body main .main-container .questionnaire .answer-container ul li .option-circle {
    width: 16px;
    height: 16px;
  }
  body main .main-container .questionnaire .answer-container ul li .option-circle-selected::before {
    width: 10px;
    height: 10px;
  }
  body main .main-container .progress-container {
    gap: 10px;
  }
  body main .main-container .progress-container .progress-bar {
    height: 10px;
  }
  body main .main-container .progress-container button {
    padding: 10px;
    font-size: 14px;
    gap: 5px;
  }
  body .thankyou {
    padding: 20px;
  }
  body .thankyou .thankyou-box {
    border-radius: 20px;
    flex-direction: column;
  }
  body .thankyou .thankyou-box .img-box {
    width: 150px;
    height: 150px;
  }
  body .thankyou .thankyou-box .thankyou-details {
    text-align: center;
  }
  body .thankyou .thankyou-box .thankyou-details h1 {
    font-size: 24px;
  }
  body .thankyou .thankyou-box .thankyou-details h2 {
    font-size: 14px;
  }
  body .thankyou .thankyou-box .thankyou-details p {
    font-size: 14px;
  }
  body footer .footer-container {
    padding: 50px 20px;
  }
}/*# sourceMappingURL=style.css.map */