@charset "UTF-8";
body {
  margin: 0;
  font-family: "Lato", sans-serif;
}

.custom-clr {
  background-color: #fdf7f3;
}

.close-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.close-img img {
  width: 400px;
  margin-top: 50px;
  margin-bottom: 15px;
}

.reset-link {
  display: block;
  color: #b31f24;
  font-size: 5vw;
  font-weight: bold;
  text-decoration: none;
  text-decoration: underline;
}

.recommendations {
  text-decoration: none;
  display: block;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background-color: #FFC619;
  color: black;
  font-size: 4.5vw;
  font-weight: bold;
  text-decoration: none;
  margin: 10px auto;
  text-transform: capitalize;
  width: 55%;
}
.recommendations:hover {
  background-color: #B31F24;
  color: #fff;
}

.inner_header {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animation */
@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Apply animation */
.recommendations {
  animation: zoomPulse 1.5s infinite;
}

/* Optional: stronger effect on hover */
.recommendations:hover {
  animation: zoomPulse 0.8s infinite;
}

.play-btn {
  background: linear-gradient(to bottom, #B31F24, #5A1012);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
.play-btn:hover {
  background: #FFC619 !important;
  color: #000 !important;
}

.start-btn-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px 0px;
}

.play-btn-cus {
  background: linear-gradient(to bottom, #B31F24, #5A1012);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.play-btn-cus:hover {
  background: #FFC619 !important;
  color: #000 !important;
}

.survey-content {
  padding: 15px;
  background: linear-gradient(to bottom, rgb(251, 248, 243) 16%, rgba(251, 248, 243, 0.01) 36%, rgb(251, 248, 243) 85%);
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.05);
  margin: 10px;
  border-radius: 10px;
}
.survey-content .step_count {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: 10px auto;
}
.survey-content .step_count span {
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid lightgrey;
  color: grey;
  background-color: #fff;
  text-align: center;
  align-content: center;
  font-size: 3.5vw;
  font-weight: bold;
  position: relative;
}
.survey-content .step_count span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -33px;
  transform: translateY(-50%);
  width: 33px;
  height: 1px;
  background-color: lightgrey;
}
.survey-content .step_count span:last-child::after {
  display: none;
}
.survey-content .step_count .active {
  background: #b31f24 !important;
  color: #fff !important;
  border-color: #b31f24 !important;
}
.survey-content .step_count .active::after {
  background-color: #b31f24 !important;
}
.survey-content .step_count .active-cus::after {
  background-color: #b31f24 !important;
}

.user-info .info input {
  font-size: 3.5vw;
  padding: 14px;
  border: 2px solid rgba(0, 0, 0, 0.02) !important;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.02) !important;
  border-radius: 11px;
}

.logo {
  font-weight: bold;
  color: #B31F24;
  display: block;
  height: 65px;
  width: 140px;
}
.logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.exit {
  color: #B31F24;
  font-size: 14px;
  cursor: pointer;
}

.stepinfo {
  font-size: 4.5vw;
  font-weight: 600;
  color: #b31f24;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px 0;
}

h2 {
  font-size: 5vw;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Options */
.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 32px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 4vw;
  color: #646464;
  position: relative;
}
.option::after {
  content: "";
  position: absolute;
  border: 1px solid #ddd;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  right: 10px;
}
.option input {
  font-size: 4vw;
  color: #646464;
  padding: 12px;
  border-radius: 32px;
  box-shadow: none !important;
}
.option.type {
  box-shadow: none !important;
  border-color: #ddd !important;
}

.content {
  margin-top: 40px;
  text-align: center;
}

.search-wrapper {
  position: relative;
  max-width: 400px;
  margin: auto;
}

#suggestions {
  position: absolute;
  width: 78%;
  margin: 0 auto;
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  left: 50%;
  transform: translateX(-50%);
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #B31F24 #f1f1f1;
  /* thumb | track */
}
#suggestions .list-group-item:hover {
  background-color: #B31F24;
  color: #fff;
}

/* Chrome, Edge, Safari */
#suggestions::-webkit-scrollbar {
  width: 15px;
}

#suggestions::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#suggestions::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.type::after {
  display: none;
}

.option.active {
  border-color: #B31F24;
  background: #fff5f5;
}

.option.active::after {
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #B31F24;
  border-color: #B31F24;
  font-weight: bold;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  padding: 30px 0px;
  padding-top: 50px;
}
.buttons a {
  width: 50%;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: 0px 3px;
}
.buttons a:focus-visible, .buttons a:focus, .buttons a:active, .buttons a:focus-within, .buttons a:target, .buttons a:hover {
  background-color: #FFC619 !important;
  color: #000 !important;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}

.back {
  background-color: #383838;
  color: #fff;
  border: none !important;
  outline: none !important;
  border-radius: 25px;
  text-transform: uppercase;
}

.next {
  background-color: #b31f24;
  color: #fff;
  border: none !important;
  outline: none !important;
  border-radius: 25px;
  text-transform: uppercase;
}

.offers {
  background-color: #fff;
  padding: 15px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.05);
  margin: 10px;
  border-radius: 10px;
  position: relative;
}
.offers .start_end_points .strt {
  font-size: clamp(18px, 2.5vw, 20px);
  color: #b31f24;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
}
.offers .start_end_points .strt::before {
  content: "";
  width: 42px;
  height: 5px;
  background-color: #3d3c3c;
  position: absolute;
  left: 10px;
  bottom: 0;
}
.offers .start_end_points .strt::after {
  content: "";
  width: 7px;
  height: 5px;
  background-color: #b31f24;
  position: absolute;
  left: 0;
  bottom: 0;
}
.offers ul {
  padding: 0;
  margin-top: 15px;
}
.offers ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
  text-decoration: none;
}
.offers ul li span {
  margin-right: 10px;
  display: block;
  height: 37px;
}
.offers ul li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.offers ul li p {
  font-size: 4vw;
  margin-bottom: 0;
}
.offers ul li p strong {
  display: block;
}

.bottom-ad {
  margin: 0 10px;
}

/* Final Screen */
.big-btn {
  background: #FFC619;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
}

.center-content {
  text-align: center;
}

.app-cus-height {
  height: calc(100dvh - 62px) !important;
}

.cus-survey {
  height: 80vh;
}
.cus-survey .user-info {
  padding-top: 222px;
}
.cus-survey .buttons {
  padding-top: 8px;
}

.start {
  border: none;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.15);
  position: relative;
}
.start::after {
  content: "";
  display: block;
  background: url(/survey/images/start.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 66%;
  position: relative;
  bottom: 78%;
  z-index: -1;
}

.entered {
  border: none;
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.15);
  position: relative;
}
.entered::after {
  content: "";
  display: block;
  background: url(/survey/images/entered.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 80%;
  position: relative;
  top: 4%;
  z-index: -1;
}

.msg {
  position: absolute;
  text-align: center;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.msg h1 {
  font-size: 6vw;
  color: #B31F24;
  font-weight: bold;
}
.msg p {
  font-size: 3.5vw;
  text-transform: capitalize;
}

.msg-cus {
  text-align: center;
  margin: 10px 0px;
}
.msg-cus h1 {
  font-size: 6vw;
  color: #B31F24;
  font-weight: bold;
}
.msg-cus p {
  font-size: 3.5vw;
  text-transform: capitalize;
}

.main_wrap .left_section .banner-img {
  display: none;
}

@media (min-width: 992px) {
  body,
  html {
    overflow-x: hidden;
  }
  .cus-survey.finish {
    height: 405px;
  }
  .cus-survey.finish .user-info {
    padding-top: 0;
  }
  .cus-survey.finish .user-info .info input {
    font-size: 14px;
    font-size: 14px;
    width: 50%;
    margin: 5px auto;
  }
  .main_wrap {
    display: flex;
    margin: 25px;
  }
  .main_wrap .left_section {
    width: 35%;
  }
  .main_wrap .left_section .banner-img {
    display: block;
    width: 100%;
    height: 720px;
  }
  .main_wrap .right_section {
    width: 65%;
  }
  .main_wrap .start {
    box-shadow: none;
  }
  .main_wrap .start::after {
    display: none;
  }
  .main_wrap .finish {
    background: linear-gradient(to bottom, rgb(251, 248, 243) 16%, rgba(251, 248, 243, 0.01) 36%, rgb(251, 248, 243) 100%);
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 18px;
    text-wrap: nowrap;
  }
  .recommendations {
    width: 25%;
    font-size: 18px;
  }
  .close-img img {
    width: 450px;
    margin-top: 0px;
  }
  .app,
  .app-cus-height {
    height: unset !important;
  }
  .app {
    box-shadow: unset !important;
    padding-top: 60px;
  }
  .custom-clr {
    background: unset !important;
  }
  .logo {
    height: 60px;
    width: 190px;
    margin: 20px;
  }
  .stepinfo {
    font-size: 16px;
    margin: 10px auto;
  }
  .content {
    width: 40%;
    margin: 0 auto;
  }
  .content h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .option {
    font-size: 14px;
    padding: 15px;
    width: 45%;
    margin: 10px;
  }
  .option.type {
    width: 78%;
  }
  .buttons {
    background: unset;
  }
  .buttons .back,
  .buttons .next {
    width: 15%;
    height: 42px;
  }
  .msg {
    top: 50%;
  }
  .msg h1 {
    font-size: 18px;
  }
  .msg p {
    font-size: 14px;
  }
  .msg-cus h1 {
    font-size: 18px;
  }
  .msg-cus p {
    font-size: 14px;
  }
  .offers ul {
    display: flex;
    flex-wrap: wrap;
  }
  .offers ul {
    display: flex;
    flex-wrap: wrap;
  }
  .offers ul .row {
    width: 50%;
  }
  .offers ul li p {
    font-size: 14px !important;
    margin-bottom: 0px;
  }
  .play-btn {
    width: 50%;
    font-size: 14px;
  }
  .cus-survey {
    height: 280px;
  }
  .bottom-ad {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 35px;
  }
  br {
    display: none;
  }
  .survey-content .step_count {
    width: 23%;
    margin: 25px auto;
  }
  .survey-content .step_count span {
    font-size: 14px;
  }
  .survey-content .step_count span::after {
    right: -68px;
    width: 69px;
  }
  .cus-desk {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cus-desk .option input {
    font-size: 14px;
  }
  .offers-qtn {
    border: none !important;
    box-shadow: none !important;
    width: 55%;
    margin: 0 auto;
  }
  .qtn-logo .logo {
    height: 120px;
    width: 200px;
  }
  .main_wrap_finish .left_section .banner-img {
    height: 848px;
  }
  .survey-content.finish .step_count span::after {
    right: -60px;
    width: 59px;
  }
  .entered::after {
    display: none;
  }
  .cus-survey.entered .msg {
    top: 50%;
  }
  .start-btn-cover {
    margin: 23px 0px;
  }
  .play-btn-cus {
    width: 50%;
  }
  #suggestions {
    width: 30%;
  }
}/*# sourceMappingURL=style.css.map */