.qwiz {
  margin: 2rem 0px;
  overflow: hidden;
}

.qwiz__footer {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.qwiz__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.qwiz-progress {
  margin: 10px 0px;
  height: 25px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
  -webkit-box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 4px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.qwiz-progress__inner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d96826;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  border-radius: 10px;
}

.qwiz-progress__procent {
  color: #FFF;
}

.qwiz-step {
  margin: 2rem 0px;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition: all 0.3s cubic-bezier(0.36, 0.67, 0.37, 0.67);
  transition: all 0.3s cubic-bezier(0.36, 0.67, 0.37, 0.67);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.qwiz-step__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.qwiz-item__title {
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
  color: #555555;
  margin-bottom: 15px;
  margin-top: 15px;
}

.qwiz-item__subtitle {
  text-align: center;
}

.qwiz-answer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .qwiz-answer__container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.qwiz-answer__item {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 3px;
  cursor: pointer;
}

.qwiz-answer__item.active .checkbox-psevdo::before,
.qwiz-answer__item.active .radio-psevdo::before {
  opacity: 1;
}

.qwiz-answer__item-images {
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .qwiz-answer__item-images {
    height: 130px;
  }
}

.qwiz-answer__item-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
  z-index: 3;
}

.qwiz-answer__footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 10px;
}

.qwiz-final-check {
  position: relative;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 3rem;
}

.qwiz-final-btn {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.hidden {
  display: none;
}

.checkbox-label {
  display: block;
  position: relative;
  cursor: pointer;
}

.checkbox-btn:checked ~ .checkbox-psevdo::before {
  opacity: 1;
}

.checkbox-psevdo {
  width: 30px;
  height: 30px;
  top: 10px;
  left: 10px;
  background-color: #fff;
  border: 1px solid #d96826;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.checkbox-psevdo::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: #d96826;
  opacity: 0;
}

.radio-label {
  display: block;
  position: relative;
  cursor: pointer;
}

.radio-btn:checked ~ .radio-psevdo::before {
  opacity: 1;
}

.radio-psevdo {
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border: 2px solid #d96826;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}

.radio-psevdo::before {
  content: '';
  display: block;
  background-color: #d96826;
  border-radius: inherit;
  width: 20px;
  height: 20px;
  opacity: 0;
}

@-webkit-keyframes progres {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 60px 30px;
  }
}

.qwiz .btn {
  margin-top: 0px;
  font-size: 16px;
  background: #d96826;
  border: 1px solid #d96826;
  color: #FFF;
  border-radius: 30px;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.qwiz .btn svg {
  margin-left: 10px;
}

.qwiz .btn:disabled {
  opacity: .8;
}

.qwiz-final {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.qwiz-final-item {
  margin-top: 2rem;
  position: relative;
}

.qwiz-final-item .c-form__input {
  width: 100%;
  border-radius: 1rem;
}

.qwiz-send {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qwiz-send .c-message__wrap-img {
  margin-right: 0px;
  margin-bottom: 20px;
}
/*# sourceMappingURL=qwiz.css.map */