

#quiz-popup {
  width: min(100%, 1100px);
  padding: 0;
  background: none;
}
.quiz-box {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
}
.quiz-box__inner {
  display: grid;
  grid-template-columns: 357px 1fr;
}
.quiz-box__left {
  /* border-radius: 20px 0px 0px 20px; */
  background: var(--Blue-Light, #c7dbfb);
  padding: 60px 24px;
}

.quiz-box__title {
  color: var(--Dark, #102131);
  font-family: Acrom;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px; /* 135% */

  margin-bottom: 60px;
}
.quiz-box__text {
  color: var(--Dark, #102131);
  font-family: Acrom;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}

.quiz-box__right {
  background: #fff;
  padding: 60px 40px 80px 98px;
}
.quiz-body__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}

.quiz-body__progress {
  flex-grow: 1;
}
.quiz-progress {
  height: 16px;
  position: relative;
  width: 100%;
}
.quiz-progress__bg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  background: #c7dbfb;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.quiz-progress__line {
  border-radius: 16px;
  border-right: 2px solid #fff;
  background: var(--Dark, #102131);
  color: #fff;
  text-align: center;
  font-family: Acrom;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 120% */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 5%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-body__steps_text {
  white-space: nowrap;
  color: #102131;
  text-align: right;
  font-family: Acrom;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  opacity: 0.64;
}

.quiz-step__title {
  color: #102131;
  font-family: Acrom;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px; /* 135% */
  margin-bottom: 24px;
}

.quiz-step__answer.--radio .wpcf7-list-item {
  display: block;
  margin: 8px 0;
}
.quiz-step__answer.--radio {
}

.quiz-step__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.wpcf7-radio .wpcf7-list-item label input {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  order: -1;
  z-index: 2;
  opacity: 0;
}

.wpcf7-radio .wpcf7-list-item label span {
  padding-left: 6px;
  font-size: 16px;
  color: #555555;
}

.wpcf7-radio .wpcf7-list-item label:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 50%;
  border: 1px solid;
  border-color: rgba(16, 33, 49, 0.4);
}
.wpcf7-radio .wpcf7-list-item label:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  background: #e64747;
  border-radius: 50%;
  left: 3px;
  top: 7px;
  transform: scale(0);
  transition: transform 0.3s;
  z-index: 1;
}

.wpcf7-radio .wpcf7-list-item:has(input:checked) label:after {
  transform: scale(1);
}

.wpcf7-list-item-label {
  color: #102131;
  /* text-align: center; */
  font-family: Acrom;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}

.quiz-step {
  display: none;
}
.quiz-step.--active {
  display: block;
}

.quiz-step__answer.--radio-image .wpcf7-list-item {
  margin: 0;
}
.quiz-step__answer.--radio-image .wpcf7-list-item input {
  width: 0;
  height: 0;
  opacity: 0;
}
.quiz-step__answer.--radio-image .wpcf7-list-item .wpcf7-list-item-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.quiz-step__answer.--radio-image .wpcf7-list-item label:before,
.quiz-step__answer.--radio-image .wpcf7-list-item label:after {
  display: none;
}
.quiz-step__answer.--radio-image .wpcf7-list-item .wpcf7-list-item-label img {
  border-radius: 16px;
  border: 4px solid rgba(0, 0, 0, 0);
}

.quiz-step__answer.--radio-image .wpcf7-list-item input:checked + .wpcf7-list-item-label img {
  border: 4px solid #e64747;
}
.quiz-step__answer.--radio-image .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  justify-content: space-between;
}

.quiz-step__answer.--form input {
  margin-bottom: 10px;
}
.quiz-step__answer.--form {
  max-width: 280px;
}
.quiz-step__answer.--form input[type="submit"] {
  color: #fff;
  border: none;
}

.quiz-box .wpcf7-response-output {
  color: #102131 !important;
}
.quiz-box__thx {
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #fff;
}
.quiz-box__thx-title {
  color: var(--Dark, #102131);
  text-align: center;
  font-family: Acrom;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px; /* 135% */
}
.quiz-box__thx-text {
  color: var(--Dark, #102131);
  text-align: center;
  font-family: Acrom;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 133.333% */
}
.quiz-box__thx-text a {
  color: var(--Dark, #102131);
  font-weight: 700;
  display: inline-block;
}

.quiz-box__thx-icon {
  text-align: center;
}
#quiz-popup .fancybox-close-small {
  padding: 6px;
  right: 10px;
  top: 10px;
}
.bhome.--center .banner-title {
  width: 100%;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.banner.bhome.--center {
  align-items: flex-start;
}
.banner-title__title .btn-n {
  padding: 20px 45px;
}
input.hidden {
  display: none;
}
.service-list-item {
  border-radius: 10px;
  background: #102131;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  margin-bottom: 6px;
}

.service-list-item .title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 24.3px; /* 142.941% */
  margin-bottom: 0;
}

.service-list-item .arrow {
  transition: transform 0.3s;
}

.services-list {
  margin-bottom: 80px;
}

.service-list-item.--active .arrow {
  transform: rotate(90deg);
}
.serivce-list-body {
  margin-top: 13px;
}
.serivce-list-body-item {
  display: grid;
  grid-template-columns: 1fr 168px;
  grid-gap: 10px;
  margin-bottom: 6px;
}
.serivce-list-body-item * {
  margin: 0;
}
.serivce-list-body-item-button a {
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 20px;
  text-align: center;
}
.serivce-list-body-left {
  display: grid;
  grid-template-columns: 1fr 168px;
  grid-gap: 20px;
}
.serivce-list-body-item-name,
.serivce-list-body-item-price {
  border-radius: 10px;
  background: #fff;
  padding: 11px 24px;
}
.serivce-list-body-item-price {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

.ti-header-logo svg {
  width: 80px;
}
.ti-stars .ti-star {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: -2px;
  background-repeat: no-repeat !important;
}
.ti-stars .ti-star.f {
  background: url(https://cdn.trustindex.io/assets/platform/Trustindex/star/f.svg);
}
.ti-stars .ti-star.h {
  background: url(https://cdn.trustindex.io/assets/platform/Trustindex/star/h.svg);
}
.ti-widget .ti-stars {
  margin-top: 3px;
  white-space: nowrap;
  display: block;
}
.ti-widget .ti-star {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin: 0 !important;
  margin-right: 1px !important;
  background-size: contain;
  background-repeat: no-repeat;
}
.ti-widget .ti-star:before,
.ti-widget .ti-star:after {
  content: none !important;
}
.ti-widget .ti-rating-text {
  font-size: 15px;
  color: #000000;
}
.ti-widget .ti-widget-header {
  margin-left: 45px !important;
  margin-right: 45px !important;
}
.ti-widget .source-Google .ti-header-logo-img {
  height: 25px !important;
  top: -2px;
}
.ti-widget .source-Google .ti-star.f {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/star/f.svg");
}
.ti-widget .source-Google .ti-star.h {
  background-image: url("https://cdn.trustindex.io/assets/platform/Google/star/h.svg");
}
.ti-widget .ti-widget-header {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background-color: white;
  backdrop-filter: blur(0px);
  padding: 0 20px;
  border-radius: 4px;
  border-style: solid;
  border-color: #ebebeb;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 11px;
}
.ti-widget .ti-widget-header * {
  font-size: 15px;
  color: #000000;
}
.ti-widget .ti-widget-header .ti-header-content {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
.ti-widget .ti-widget-header .ti-header-content.ti-active {
  display: flex;
}
.ti-widget .ti-widget-header .ti-header-content.ti-active:only-child {
  margin-top: 20px;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-logo {
  margin-right: 10px;
  /* height: 21px; */
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-logo .ti-header-logo-img {
  /* height: 21px; */
  width: auto;
  position: relative;
  vertical-align: baseline;
}
.ti-widget .ti-widget-header .ti-header-content .ti-stars {
  display: inline-block;
  vertical-align: top;
  margin: 1px 0;
  margin-right: 8px;
  line-height: 0;
}
.ti-widget .ti-widget-header .ti-header-content .ti-stars .ti-star {
  width: 18px;
  height: 18px;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-rating-text {
  font-weight: bold;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-rating-text .ti-rating-text {
  margin-right: 8px;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-rating-text .ti-header-rating + .ti-header-rating-reviews:before,
.ti-widget .ti-widget-header .ti-header-content .ti-header-rating-text .ti-rating-text + .ti-header-rating-reviews:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  height: 15px;
  width: 0px;
  border-left: solid 1px #000000;
  margin: 3px 8px;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-rating-text.ti-mobile {
  display: none;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-write-btn-container {
  margin-top: 12px;
  position: relative;
}
.ti-widget .ti-widget-header .ti-header-content .ti-header-write-btn-container {
  margin-top: 0;
  margin-left: auto;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .ti-header-content {
    justify-content: center;
  }
  .ti-header-rating-text {
    text-align: center;
    margin-top: 10px;
  }
  .serivce-list-body-item {
    border-radius: 10px;
    background: #fff;
    gap: 0;
    margin-bottom: 8px;
  }
  .serivce-list-body {
    margin-top: 15px;
  }
  .serivce-list-body-left {
    display: block;
    padding: 10px 10px 10px 18px;
    font-size: 14px;
    line-height: 19.3px; /* 137.857% */
  }
  .serivce-list-body-item-name:after {
    content: " / ";
  }
  .serivce-list-body-item-name,
  .serivce-list-body-item-price,
  .serivce-list-body-item-price p {
    background: none;
    padding: 0;
    display: inline;
  }
  .serivce-list-body-item-price {
    text-align: left;
    font-weight: 600;
  }
  .serivce-list-body-item-button a {
    height: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 20.169px; /* 144.064% */
    padding: 10px;
    display: flex;
    align-items: center;
  }
  .serivce-list-body-item {
    grid-template-columns: 1fr 104px;
  }
}
@media screen and (max-width: 420px) {
  .ti-widget .ti-widget-header .ti-header-content .ti-header-rating-text .ti-header-rating + .ti-header-rating-reviews:before {
    display: none;
  }
  .ti-header-rating-reviews {
    display: block;
    margin-top: 10px;
  }
}



