/* //======================================================================================================================================================== */
:root {
  --currentColor: #ffe600;
  --currentColorHover: #eedb2f;


  --formCheckboxBoxOpacity: 0.5;
  --formCheckboxBoxSize: 28px;
  --formCheckboxBoxRadius: 4px;
  --formCheckboxBoxLine: 2px;
  --formCheckboxBoxColor: currentColor;
  --formCheckboxArrowColor: currentColor;
  --formCheckboxArrowSize: 14px;

  --formRadioSize: 28px;
  --formRadioBorderColor: currentColor;
  --formRadioBorderSize: 2px;
  --formRadioOpacity: 0.5;
  --formRadioDotSize: 10px;
}

.quiz-form-hero__btn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--currentColor);
  border: 0;
  border-radius: 5px;
  padding: 16px 30px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  text-transform: uppercase;
  transition: all 0.2s ease 0s;
}

.quiz-form-hero__btn:hover {
  background-color: var(--currentColorHover);
}

.quiz-form-hero__btn svg {
  width: 18px;
  height: 18px;
}

.quiz-form-list {
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(1rem, 0.357rem + 3.21vw, 1.563rem);
  transition: all 0.4s ease 0s;
}

.quiz-form-list li {
  margin-left: 25px;
  position: relative;
  margin-bottom: 4px;
}

.quiz-form-list li span {
  font-size: clamp(1rem, 0.357rem + 3.21vw, 1.563rem);
  font-weight: 400;
  line-height: 1.9;
  border-bottom: 1px solid currentColor;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}

.quiz-form-list li:hover {
  color: rgba(255, 255, 255, 0.75);
}

.quiz-form-list li:after {
  content: "";
  position: absolute;
  top: 13px;
  left: -25px;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
}



.quiz-form-title span {
  color: var(--currentColor);
  display: block;
}

.title-1 {
  font-size: clamp(1.625rem, 0.196rem + 7.14vw, 2.875rem);
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.quiz-form-sub-title {
  font-size: clamp(1rem, 0.357rem + 3.21vw, 1.563rem);
  font-weight: 700;
  padding: 5px 0 clamp(0.938rem, 0.223rem + 3.57vw, 1.563rem);
}

.quiz-form-hero__desc {
  font-size: clamp(1rem, 0.357rem + 3.21vw, 1.563rem);
  font-weight: 700;
  padding: 5px 0 clamp(0.938rem, 0.223rem + 3.57vw, 1.563rem);
}




@media (min-width: 576px) {
  .quiz-form-hero {
    height: 100vh;
    min-height: min-content;
  }
}


.quiz-form-hero {
/* min-height: 100vh; */
/* min-height: 942px; */
height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.quiz-form-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.quiz-form-hero__body {
  padding: clamp(1rem, 0.455rem + 2.73vw, 2.5rem);
  background-color: rgba(0, 0, 0, 0.88);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  width: 100%;
  opacity: 0;
  visibility: visible;
  transform: scale(0);
  /* transition: all 0.3s ease 0s; */
}
.quiz-form-hero__body.visible{
  opacity: 1;
  transform: scale(1);
}


.quiz-form-hero__desc {
  font-size: 16px;
  padding: 5px 0 25px 0;
  display: inline-block;
}

.quiz-form-hero__desc span {
  color: var(--currentColor);
}

.page-promo::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background-color: #000;
  opacity: 0.5;
}




/* //=================================================================== */
html.open_quiz {
  overflow: hidden;
}

.quiz__popup--body {
  max-width: 1150px;
  margin: 0 auto;
}

.quiz-form__popup {
  overflow-y: auto;
}

.quiz-form__popup-clouse {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  cursor: pointer;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);

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

.progress-loader-bar {
  position: relative;
  width: 240px;
  height: 3px;
  margin-top: 37px;
  margin: 0 0 clamp(0.625rem, -0.057rem + 3.41vw, 2.5rem);
}

.progress-loader-bar .progress-loader-bg {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  top: 0;
  left: 0;
  line-height: 24px;
  opacity: 0.3;
}

.progress-loader-bar .current {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 3px;
  background: #000;
  height: 100%;
  width: 0;
  transition: width 0.35s ease;
}

.progress-loader-bar .progress-runner[data-value] {
  position: absolute;
  overflow: hidden;
  right: -20px;
  bottom: 12px;
  min-width: 40px;
  text-align: center;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}

.progress-loader-bar .progress-runner[data-value]:before {
  content: attr(data-value);
  line-height: 2;
  display: block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border-radius: 3px;
  padding: 0 3px;
}

.progress-loader-bar .progress-runner[data-value]:after {
  content: "";
  transform: translate(-50%);
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  transition: left 0.3s ease;
}

.quiz-form__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: clamp(1rem, 0.455rem + 2.73vw, 2.5rem);
  padding-top: 65px;
  color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: -1000;
  transform: scale(0);
  transition: all 0.3s ease 0s;
  /* display: flex;
  align-items: center;
  min-height: 538px; */


}

html.open_quiz .quiz-form__popup {
  opacity: 1;
  visibility: visible;
  z-index: 100;
  transform: scale(1);
}
html.open_quiz .quiz-form-hero__body {
  opacity: 0;
  visibility: visible;
  transform: scale(0);
}


.step__btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step__btn .btn-prev {
  font-size: 0.01px;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-radius: 5px;
  background-color: rgba(6, 6, 7, 0.2);

  background-position: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23000000" class="bi bi-arrow-right-short" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z"/></svg>');
  background-repeat: no-repeat;
  transform: rotate(-180deg);
  background-size: 24px;
  transition: background-color 0.3s ease 0s;
}

.step__btn .btn-prev:hover {
  background-color: rgba(6, 6, 7, 0.4);
}

.step__btn .btn:not(.wpcf7-submit) {
  pointer-events: none;
  opacity: 0.4;
  transform: translateZ(0);
  transition: all 0.3s ease 0s;
}

.btn {
  display: flex;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  transition: all 0.3s ease 0s;
  padding: 9px 15px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 7px 7px 0px;
}

.input__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.step {
  max-width: 600px;
}

.step-title {
  display: block;
  font-weight: 600;
  letter-spacing: .35px;
  margin-bottom: clamp(1.5rem, 0.909rem + 2.95vw, 3.125rem);
  font-size: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
  line-height: 1.2;
}

.step-title {
  align-self: flex-start;
}

.step--body {
  margin-bottom: clamp(1.375rem, 0.739rem + 3.18vw, 3.125rem);
}

.label-check {
  padding: 5px 0;
}

.label-check input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.01px;
  height: 0.01px;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

.label-check span {
  font-size: 15px;
  line-height: 1.4;
  color: rgb(6, 6, 7);

  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-check span::before {
  content: "";
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 1px solid rgb(6, 6, 7);
  border-radius: 5px;
}

.label-check span::after {
  content: "";
  position: absolute;
  transform: rotate(-45deg);
  transform-origin: 40% 45%;
  transition: all .05s;
  opacity: 0;
}

.label-check input:checked~span::after {
  display: block;
  border: 2px solid currentColor;
  border-top: 0;
  border-right: 0;
  height: calc(14px / 2);
  width: 14px;
  top: 7px;
  left: 6px;
  opacity: 1;
}

.slider-range__list-Y {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
}

.slider-range__list-Y>* {
  flex: 1 1 1px;
}

.label__input {
  display: block;
  font-size: 17px;
  line-height: 1.375;
  padding-bottom: 16px;
  font-weight: 700;
  text-align: left;
}

.label-range {
  margin-top: clamp(1.125rem, 0.625rem + 2.5vw, 2.5rem);
}

.label-text input {
  color: currentColor;
  background: rgba(6, 6, 7, .1);
  ;
  display: block;
  width: 100%;
  border: 1px solid transparent;
  font-family: inherit;
  min-height: 56px;
  font-size: inherit;
  line-height: 1.333;
  font-weight: 400;
  padding: 3px 15px 2px;
  word-break: keep-all;
  border-radius: 4px;
  transition: all .3s ease;
  -moz-appearance: none;
  appearance: none;
  max-width: 511px;
}

.input-file-row--title {
  display: block;
  font-size: 16px;
  line-height: 1.375;
  padding-bottom: 10px;
  font-weight: 700;
  text-align: left;
}




/*  */

#custom-handle {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

.ui-slider {
  max-width: 550px;
}

.label-range .ui-slider-horizontal {
  background-color: rgb(6, 6, 7, 0.2);
  height: 2px;
  max-width: 511px;
}

.label-range .ui-slider .ui-slider-range {
  background-color: #000;
}

.label-range .ui-slider .ui-slider-handle {
  border: 1px solid currentColor;
  background-color: currentColor;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -0.5625em;
}

.label-range .ui-slider .ui-slider-handle::before {
  content: attr(data-position);
  display: flex;
  position: absolute;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 8px;
  height: 24px;
  top: -20px;
  left: -100%;
  color: #fff;
  background-color: #060607;
  opacity: 0;
  border-radius: 3px;
  transition: top .3s ease, opacity .3s ease;
  column-gap: 10px;
}
.label-range .ui-slider .ui-slider-handle:hover::before,
.label-range .ui-slider .ui-slider-handle.ui-state-active::before {
  opacity: 1;
  top: -29px;

}

.quiz-form__popup .input-file span:focus,
.quiz-form__popup .input-file span {
  outline: 0;
  box-shadow: none;
}

.quiz-form__popup .input-file:hover span {
  background-color: transparent;
  color: #000;
}





/* //======================================================================================================================================================== */

.col-checkbox .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-checkbox .wpcf7-list-item {
  margin-left: 0;
  position: relative;
}
.col-radio .wpcf7-list-item  input,
.col-checkbox .wpcf7-list-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.01px;
  height: 0.01px;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

.col-checkbox .wpcf7-list-item-label {
  display: flex;
  font-weight: 500;
  font-size: 16px;
}

.col-checkbox .wpcf7-list-item span::before {
  content: "";
  position: relative;
  flex-shrink: 0;
  display: block;
  position: relative;
  opacity: var(--formCheckboxBoxOpacity);
  width: var(--formCheckboxBoxSize);
  height: var(--formCheckboxBoxSize);
  border-radius: var(--formCheckboxBoxRadius);
  border: var(--formCheckboxBoxLine) solid var(--formCheckboxBoxColor);
  box-sizing: border-box;
  margin-right: calc(var(--formCheckboxBoxSize) / 2);
  transition: opacity .3s ease
}

.col-checkbox .wpcf7-list-item:hover span::before {
  opacity: 1;
}

.col-checkbox .wpcf7-list-item input~span::after {
  content: "";
  display: block;
  position: absolute;
  border: 2px solid var(--formCheckboxArrowColor);
  border-top: 0;
  border-right: 0;
  box-sizing: border-box;
  height: calc(var(--formCheckboxArrowSize) / 2);
  width: var(--formCheckboxArrowSize);
  top: 9px;
  left: 7px;
  transform: rotate(-45deg);
  transform-origin: 40% 45%;
  transition: all .05s;
  opacity: 0;



}

.col-checkbox .wpcf7-list-item input:checked~span::after {
  opacity: 1;
  animation: checkAppearance .3s;
}

@keyframes checkAppearance {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.quiz-form__popup .input-file span.wpcf7-form-control-wrap {
  padding-left: 0;
  background-color: transparent;
  max-width: 313px;

}


.quiz-form__popup .input-file:hover span::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M11 16V7.85L8.4 10.45L7 9L12 4L17 9L15.6 10.45L13 7.85V16H11ZM6 20C5.45 20 4.979 19.804 4.587 19.412C4.195 19.02 3.99934 18.5493 4 18V15H6V18H18V15H20V18C20 18.55 19.804 19.021 19.412 19.413C19.02 19.805 18.5493 20.0007 18 20H6Z" fill="black"/></svg>');
}


.last-hidden-chek .wpcf7-list-item.last {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

.col-radio .wpcf7-radio{
  display: flex;
  flex-direction: column;
}
.col-radio  .wpcf7-list-item{
  margin-left: 0;
}
.col-radio  .wpcf7-list-item-label{
  position: relative;
  display: flex;
  align-items: center;
}
.col-radio  .wpcf7-list-item-label::before{
  content: "";
  border-radius: 50%;
  box-sizing: border-box;
  border: var(--formRadioBorderSize) solid var(--formRadioBorderColor);


  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: var(--formRadioOpacity);
  position: relative;
  width: var(--formRadioSize);
  height: var(--formRadioSize);
  margin-right: calc(var(--formRadioSize) / 2);
  transition: opacity .3s ease;
}
.col-radio  .wpcf7-list-item-label:hover::before,
.col-radio .wpcf7-list-item  input:checked ~ .wpcf7-list-item-label::before{
  opacity: 1;
}

.col-radio .wpcf7-list-item  input ~ .wpcf7-list-item-label::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  top: 8px;
  left: 9px;
  width: var(--formRadioDotSize);
  height: var(--formRadioDotSize);
  transition: all .3s ease;

  border-radius: 50%;
  box-sizing: border-box;
  border: var(--formRadioBorderSize) solid var(--formRadioBorderColor);
}
.col-radio .wpcf7-list-item  input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}

.quiz-form__popup .btn-next{
opacity: 0.5;
pointer-events: none;
}
.quiz-form__popup .btn-next:hover{
  color: #fff;
}
.quiz-form__popup .btn-next.further{
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.steps {
  position: relative;
  overflow: hidden;
}
.steps .step{
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: #fff;
  padding: 15px;
  transform: translateX(-150%);
  transition: all 0.8s cubic-bezier(.17,.67,.7,.89) 0s;
  opacity: 0;
}
.steps .step.active{
  position: static;
  z-index: 1;
  opacity: 1;
  transform: translateX(0)
}