.shadowFullPage {
    position: relative;
}
.shadowFullPage>div {
  padding: 0 !important;
}
.shadowFullPage:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  top: 0px;
  left: 0px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 8px 0px inset;
}


.funnel-integrated:not(.full-page) .shadowFullPage:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  left: 0;
  bottom: 0px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -8px 8px 0px inset;
}
.funnel-integrated.full-page .containerFunnel {
    width: 100%;
    position: relative;
    overflow-y: auto;
    display: flex;
}
.funnel-integrated:not(.full-page) .containerFunnel.deployed {
    height: 700px;
}

.funnel-integrated:not(.full-page) .containerFunnel {
    width: 100%;
    height: 500px;
    position: relative;
    overflow-y: auto;
    transition: height 0.5s ease;
    display: flex;
}
.containerFunnel.deployed {
    height: 700px;
}

.containerFunnel .containerBar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: sticky;
    top: 0;
    gap: 10px;
    background-color: var(--white);
    z-index: 1;
    width: 35%;
}
.containerFunnel .containerBar .containerLabels {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    height: 100%;
}
.containerFunnel .containerBar .containerLabels .segmentBar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: end;
    position: relative;
    width: 100%;
}
.containerFunnel .containerBar .containerLabels .segmentBar:not(:last-child)::after {
  background-color: white;
  bottom: -5px;
  content: "";
  position: absolute;
  right: -18px;
  width: 10px;
  height: 10px;
}
.containerFunnel .containerBar .bar {
  width: 8px;
  height: 100%;
  background-color: rgba(255, 0, 51, 0.1);
  border-radius: 30px;
}
.containerFunnel .containerBar .bar .bar_fill {
    width: 100%;
    max-width: 100%;
    height: 0%;
    background-color: var(--red);
    transition: height 0.5s ease-in-out;
    border-radius: inherit;
}
.containerFunnel .containerBar .time-bar-count {
    position: absolute;
    bottom: 20px;
    right: 38px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}
.containerFunnel .questions-wrapper {
    overflow-y: auto;
    padding: 0 10px;
    flex: 1;
}
.funnel-integrated:not(.full-page) .articleQuestion:first-child {
  padding-top: 50px;
}
.articleQuestion.showed.answered h2.questionTitle {
    font-size: 16px;
    line-height: 19px;
}
.articleQuestion.showed.answered {
  padding-bottom: 30px !important;
}

.articleQuestion.showed {
    opacity: 1;
}

.articleQuestion {
    padding-bottom: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 20px;
}

.full-page .articleQuestion:first-child {
    padding-top: 50px;
    transition: none;
}

.articleQuestion .funnel-question-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.funnel-question-main form {
  max-width: 400px;
  width: 100%;
}

.funnel-question-main h2.questionTitle {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.funnel-question-main .label-radio {
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    margin: 0;
    text-transform: unset;
    font-weight: 600;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 5px 45px 5px 20px;
    color: #333333;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .25);
    border-radius: 16px;
    position: relative;
    max-width: 400px;
}

.funnel-question-main .label-radio:before {
    content: '';
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #313131;
}
.label-radio.selected:before {
    border-color: var(--main-color);
    background: var(--white);
}

.funnel-question-main .label-radio:after {
    content: '';
    position: absolute;
    right: 25px;
    top: calc(50% - 5px);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: none;
    background-color: var(--main-color);
    opacity: 0;
}

.label-radio.selected:after {
    opacity: 1;
}

.funnel-question-tips {
    opacity: 0;
    transition: all .5s ease;
}
.funnel-question-tips .funnel-question-tips-content {
    max-width: 400px;
    margin-top: 10px;
    background-color: var(--success);
    color: white;
    padding: 10px;
    border-radius: 16px;
    font-weight: 500;
}
.tips-visible {
  opacity: 1;
}

.containerSubmitForm {
  background-color: #f5f5f5;
  border: none;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 40px;
}

.input-inline {
  width: 100%;
  padding: 0 15px;
  border-radius: inherit;
  border: none;
  height: 100%;
  background-color: inherit;
}

.input-inline:focus,
.input-inline:active {
  outline: none;
  background: transparent;
}

.btn-inline {
  margin: 0 !important;
  height: 100%;
  padding: 0 15px !important;
}

.legal-conf {
  max-width: 400px;
  font-size: 12px;
}

@media (min-width: 767px) {
    .segmentBar p {
        position: relative;
    }
    .segmentBar p.step-completed:before {
    content: " ";
    background: var(--main-color);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    order: 1;
    margin-right: 10px;
    top: 2px;
    position: relative;
  }

  .segmentBar p.step-completed:after {
    content: " ";
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    width: 10px;
    height: 5px;
    display: inline-block;
    position: absolute;
    left: 3px;
    top: 7px;
    z-index: 1;
    transform: rotate(315deg);
  }
}

@media (max-width: 767px) {
    .containerFunnel {
        flex-direction: column;
    }
    .containerFunnel .containerBar {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .containerFunnel .containerBar .containerLabels {
        flex-direction: row;
    }
    .containerFunnel .containerBar .containerLabels .segmentBar {
        align-items: center;
    }

    .containerFunnel .containerBar .containerLabels .segmentBar:not(:last-child)::after {
        bottom: -20px;
        right: -5px;
    }
   .containerFunnel .containerBar .bar {
        width: 90%;
        height: 8px;
    }
    .containerFunnel .containerBar .bar .bar_fill {
        width: 0%;
        max-width: 100%;
        height: 100%;
        transition: width 0.5s ease-in-out;
    }
    .containerFunnel .containerBar .time-bar-count {
        bottom: 15px;
        right: 3%;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
    }
    .articleQuestion {
        margin: 0;
    }
    .articleQuestion .funnel-question-main {
        padding: 0px 10px;
    }
    .label-radio, .funnel-question-tips-content, .questions-wrapper .message {
        font-size: 14px !important;
    }
    .funnel-question-tips-content {
        margin: auto;
        margin-top: 10px;
    }
    .funnel-integrated h2 {
        font-size: 20px;
        line-height: 18px;
    }

    .funnel-integrated h4 {
        font-size: 20px;
    }
}

@media all and (max-width: 340px) {
  .segmentBar {
    font-size: 12px;
  }
}