@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
  background: #f7f9ff;
   font-family: "Montserrat", sans-serif!important;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
}
h1, h2, h3, h4, h5, h6 {
  color: #00011c;
}
p {
  margin-bottom: 24px;
  line-height: 1.9;
}
label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #00011c;
}

/* TITLE */
#title-container {
  min-height: 460px;
  height: 100%;
  color: #fff;
/* background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); */
background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
  text-align: left;
  padding: 105px 28px 28px 28px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
}
#title-container img{}
#title-container h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  padding: 0;
  margin-bottom: 20px;
}

#title-container p {
  font-size: 15px;
  padding: 0 0px;
  color: #000;
}
.covid-image {
  width: 260px;
  margin-bottom: 30px;
}

/* FORMS */
#qbox-container {
  position: relative;
  padding: 30px;
  min-height: 630px;
  box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  background: #fff;
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
}
#steps-container {
  margin: auto;
  width: 500px;
  /* min-height: 420px;   */
}

.step {
  display: none;
}
.step img {
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
}
.step h4 {
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
  font-weight: 600;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.3;
  text-align: center;
}
button#prev-btn, button#next-btn, button#submit-btn {
  font-size: 17px;
  font-weight: bold;
  position: relative;
  width: 130px;
  height: 50px;
  background: #e13700;
  margin: 0 auto;
  margin-top: 20px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color .3s;
  text-align: center;
  color: #fff;
  border: 0;
 border-radius: 10px;

}
button#prev-btn:after, button#next-btn:after, button#submit-btn:after {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff531b;
  content: "";
  z-index: -2;
  transition: transform .3s;
}
button#prev-btn:hover::after, button#next-btn:hover::after, button#submit-btn:hover::after {
  transform: translateY(-80%);
  transition: transform .3s;
}
.progress {
  border-radius: 0px !important;
}
.q__question {
  position: relative;
}
.q__question:not(:last-child) {
  margin-bottom: 10px;
}
.question__input {
  position: absolute;
  left: -9999px;
}
.question__label {
  position: relative;
  display: block;
  line-height: 40px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 10px 5px 50px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.question__label span{
font-size: 12px;
line-height: 10px;
color: #e13700;
font-style: italic;
}


.question__label:hover {
  border-color: #e13700;
}
.question__label:before, .question__label:after {
  position: absolute;
  content: "";
}
.question__label:before {
  top: 12px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #ced4da;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.question__input:checked+.question__label:before {
  background-color: #e13700;
  box-shadow: 0 0 0 0;
}
.question__input:checked+.question__label:after {
  top: 22px;
  left: 18px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.form-check-input:checked, .form-check-input:focus {
  background-color: #e13700 !important;
  outline: none !important;
  border: none !important;
}
input:focus {
  outline: none;
}
#input-container {
  display: inline-block;
  box-shadow: none !important;
  margin-top: 36px !important;
}
label.form-check-label.radio-lb {
  margin-right: 15px;
}
#q-box__buttons {
  text-align: center;
}
input[type="text"], input[type="email"] {
  padding: 8px 14px;
}
input[type="text"]:focus, input[type="email"]:focus {
  border: 1px solid #e13700;
  border-radius: 5px;
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.form-check-input:checked[type=radio], .form-check-input:checked[type=radio]:hover, .form-check-input:checked[type=radio]:focus, .form-check-input:checked[type=radio]:active {
  border: none !important;
  -webkit-outline: 0px !important;
  box-shadow: none !important;
}
.form-check-input:focus, input[type="radio"]:hover {
  box-shadow: none;
  cursor: pointer !important;
}
#success {
  display: none;
}
#success h4 {
  color: #e13700;
}
.back-link {
  font-weight: 700;
  color: #e13700;
  text-decoration: none;
  font-size: 18px;
}
.back-link:hover {
  color: #82000a;
}

/* PRELOADER */
#preloader-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}
#preloader {
  background-image: url('../img/preloader.png');
  width: 120px;
  height: 119px;
  border-top-color: #fff;
  border-radius: 100%;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -75px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#preloader-wrapper .preloader-section {
  width: 51%;
  height: 100%;
  position: fixed;
  top: 0;
  background: #F7F9FF;
  z-index: 1000;
}
#preloader-wrapper .preloader-section.section-left {
  left: 0
}
#preloader-wrapper .preloader-section.section-right {
  right: 0;
}
.loaded #preloader-wrapper .preloader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #preloader-wrapper .preloader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #preloader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded #preloader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.percnt:after {
    content: "%";
    position: absolute;
    right: 15px;
    top: 10px;
    color: #000;
}
.form-group {
    position: relative;
}


.star-rating {
display: inline-block;
unicode-bidi: bidi-override;
direction: rtl;
}

input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 26px;
  cursor: pointer;
}

.star-rating label:before {
  content: '\2605'; /* Unicode character for a star */
  display: inline-block;
  color: #ccc;
}

input[type="radio"]:checked ~ label:before {
  color: #e85222; /* Change the color of the filled star when selected */
}

/* MEDIA QUERIES */
@media (min-width: 990px) and (max-width: 1199px) {
  #title-container {
    padding: 80px 28px 28px 28px;
  }
  #steps-container {
    width: 85%;
  }
}
@media (max-width: 991px) {
  #title-container {
    padding: 20px;
    min-height: inherit;
  }
}
@media (max-width: 767px) {
  #qbox-container {
    padding: 30px;
  }
  #steps-container {
    width: 100%;
  }
  #title-container {
    padding-top: 50px;
    text-align: center;
  }
  .covid-image {
    width: 150px;
    margin-bottom: 20px;
}
#title-container h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
#title-container p {
    font-size: 13px;
    padding: 0 0px;
    color: #000;
    margin-bottom: 0;
}

.step img {
    margin-bottom: 15px;
    max-width: 45px;
}
.step h4 {
    font-size: 1.1375rem;
}
h5.mb-3 {
    font-size: 18px;
}
.question__label span {
    display: block;
}

}
@media (max-width: 560px) {
  #qbox-container {
    padding: 20px;
  }
  #title-container {
    padding-top: 20px;
  }
}