@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
  --navbar-height: 70px;
  --step-no-height: 26px;
  --step-no-bottom-margin: 8px;
  --step-no-text-line-hgt: 20px;
}

body {
  background: #fff6ea !important;
  /* font-family: "Poppins", sans-serif; */
  font-family: 'Lato', sans-serif !important;
  font-weight: normal;
}

/* .cd-faq.services {
  margin-top: 6.625rem;
  margin-bottom: 1.25rem;
} */
/* new layout modification */

.story-img {
  padding: 0;
}

.chat-author {
  font-weight: bold;
  line-height: 24px;
  color: #999;
  margin-bottom: 5px;
  margin-left: 70px;
}

.chat-list {
  list-style-type: circle;
  padding-left: 40px;
}

.description .chat-list li {
  line-height: 33px !important;
}

#chat-sections {
  position: relative;
}

.main-section.active,
.main-section.active>.sub-section.active {
  display: inherit;
  z-index: 25;
  position: relative;
}

.main-section,
.sub-section {
  display: none;
}

.progress {
  width: 100%;
  height: 8px;
  font-size: 0.75rem;
  background-color: #e9ecf0;
  border-radius: 10px;
}

@media screen and (max-width: 800px) {
  .progress {
    margin: 0 25px;
    width: calc(100% - 50px);
  }

  .cd-faq {
    box-shadow: none;
  }
}

.bar {
  height: 8px;
  width: 20%;
  background: #3c4876;
  border-radius: 10px;
}

.question.accent {
  position: relative;
  padding: 0.75rem 1.25rem;
  /*margin-bottom: 1.5rem;*/
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  border-radius: 0;
  color: black;
  background-color: #f0effb;
  border: 1px solid #3c4876;
}

.question {
  border-radius: 5px;
  background-color: #fff;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  /*line-height: normal;*/
  line-height: 25px;
  letter-spacing: normal;
  color: black;
  width: 100%;
  /*margin-bottom: 1.5rem;*/
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
}

/* .question.mb-1 b {
    color: #3c4876;
    font-size: 1.125rem;
} */

/* .question.mb-2 b {
    color: #FF0000;
    font-size: 1.125rem;
} */

.answer {
  margin-bottom: 1.2rem;
}

.answers .answer {
  display: block;
}

input[type="text"],
textarea {
  display: block;
  width: 100%;
  padding: 0.875rem 1.375rem;
  line-height: 1;
  color: #495057;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 0.125rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

  border: 1px solid #e9e8ef;
  font-weight: 400;
}

input[type="text"]:focus {
  border: 1px solid #e9e8ef;
}

::placeholder {
  color: #9a9a9a;
}

a:focus,
input:focus {
  border-color: inherit;
}

.description {
  margin: 2.5rem 0 1.5rem;
  padding: 0 7px;
  font-weight: 400;
  font-size: 0.875rem;
}

/* .description > .d-header {
    color: #1b1b1b;
} */

.description>ul {
  font-style: italic;
}

.answer+.description {
  margin-top: -25px;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #d3d3d3;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 10px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #189dd5;
  cursor: pointer;
  border-radius: 50%;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #189dd5;
  cursor: pointer;
  border-radius: 50%;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  margin: 0 5px 10px;
}

.slider-label {
  position: relative;
  /*width: 16px;*/
  text-align: center;
}

.slider-label:after {
  position: absolute;
  content: "";
  display: block;
  height: 7px;
  width: 1px;
  background: #ccc;
  left: 9px;
}

.checkbox {
  position: relative;
  padding-left: 30px;
  min-height: 18px;
  display: block;
  margin-left: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  border-radius: 2px;
  border: 2px solid #3c4876;
}

/* On mouse-over, add a grey background color
.checkbox:hover input ~ .checkmark {
    background-color: #ccc;
} */
/* When the checkbox is checked, add a blue background */
.checkbox input:checked~.checkmark {
  background-color: #3c4876;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 5px;
  top: 0;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.action {
  margin-top: 0.5rem;
}

@media screen and (max-width: 800px) {
  .action {
    padding-left: 80px;
  }
}

button {
  /*
    border-radius: 4px;
    background-color: #1cb5e0;
    background-image: linear-gradient(100deg,#1CB5E0,#1488cc);
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    width: 100%;
    outline: none;
    */
  width: 120px;
}

.text-right {
  text-align: right;
}

/* .progress-wrap {
    width: 90%;
    max-width: 970px;
    margin: 0 auto;
} */

/* .cd-faq {
  max-width: 970px;
} */
/* new layout modification */

#run-second-session,
#run-first-session {
  margin-top: 0;
}

/* .progress-bar-wrap {
    margin-top: 1rem;
} */

/* .progress-bar {
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    counter-reset: li;
    background-color: #f7f7fa !important;
    max-width: 1140px;
    flex-direction: inherit !important;

    list-style: none;
    padding: 0;
    margin: 0 -0.5em;
} */

.progress-bar__steps {
  /* width: 20%;
    float: left; */
  text-align: center;
  display: block;
  padding: 0;
}

/* .progress-bar__steps .progress-bar__steps--numbers {
    display: none;
} */

.progress-bar__steps .progress-bar__steps--text {
  /* display: block; */
  width: auto;
  margin: 0 0.5em 0.5em;
  padding: 0.3em 0.1em;
  text-decoration: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #f7f7fa;
  border: 1px solid #3c4876;
  color: #3c4876;
  cursor: pointer;
}

.progress-bar__steps.current .progress-bar__steps--text {
  background: #3c4876;
  color: white;
  border: 1px solid #3c4876;
  cursor: default;
}

.answer .form-check .form-check-label {
  margin-left: 15px;
}

.table .form-check .form-check-label input[type="radio"]+.input-helper::before {
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

.table .form-check .form-check-label input[type="radio"]+.input-helper::after {
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
}

.main-section .table {
  margin-bottom: 1.5rem;
}

.question+.img-fluid {
  margin-bottom: 1.5rem;
}

#run-second-session {
  margin-bottom: 1.5rem;
}

.custom-arrow img {
  width: 17px;
  height: 17px;
  /* float: right;     */
}

.img-div {
  /* float: right; */
  border: 1px solid #a6a7a9;
  border-radius: 2px;
}

#storyGroup a {
  text-decoration: none;
}

.question.mb-1 .custom-font {
  color: #080808;
  font-size: 0.85rem;
}

.chat-list.pt-15 {
  padding-top: 15px;
}

/* 🔽 added for new ui, sahil 🔽 */
.question {
  background-color: transparent;
}

/* #top-navbar.navbar {
   justify-content: flex-start;
}
#top-navbar {
   padding: 0 !important;
   position: fixed;
   transition: 0.2s linear;
} */
/* new layout modification */
.no-gutter {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.no-gutter>.col,
.no-gutter>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.top-navbar-action-btns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-navbar-action-btns {
  margin-right: 5px;
}

.top-navbar-action-btns a i.fa {
  margin-left: 8px;
}

.content {
  margin-bottom: 0 !important;
}

.primary-content-clr {
  color: #3c4977 !important;
}

.link-txt-clr {
  color: #668cf6 !important;
}

.secondary-bg-clr {
  background-color: #ffbd66 !important;
}

/* #top-navbar {
   align-content: center;
   height: var(--navbar-height);
   background: #fff;
   padding: 12px;
   padding-right: 15px;
} */
/* new layout modification */
.top-navbar-action-btns a {
  color: #3c4876;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.top-navbar-action-btns a:hover {
  text-decoration: none;
}

.hamburger {
  display: flex;
  align-items: center;
  margin-right: 0.8125rem;
  margin-bottom: 12px;
  background: transparent;
  border: none;
  outline: none;
  color: #3c4977;
  cursor: pointer;
  width: auto;
}

li.progress-bar__steps:not(:last-child)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 0;
  background-color: #ffbd66;
  top: 100%;
  left: 12px;
}

li.progress-bar__steps.completed:not(:last-child)::after {
  height: 20px;
}

.progress-bar {
  counter-reset: progressStepNo;
}

.progress-bar .progress-bar__steps .progress-bar__steps--numbers::before {
  counter-increment: progressStepNo;
  content: counter(progressStepNo);
  display: none;
}

.progress-bar-toggle-mobile {
  margin-right: 0.5rem;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  /* width: intrinsic;
      width: -moz-fit-content;
        width: fit-content; */
  width: 45.2px;
}

.progress-bar-toggle-text,
.progress-bar-toggle-step-number,
.progress-bar__steps .progress-bar__steps--numbers {
  font-size: 14px;
  font-weight: 700;
}

/* .sidebar_wrap .progress-bar__steps.not-current .progress-bar__steps--text{
    color:#3c4876;
} */
.progress-bar-toggle-text,
.progress-bar-toggle-step-number,
.sidebar_wrap .progress-bar__steps.completed .progress-bar__steps--text {
  color: #ffbd66;
}

.progress-bar__steps--text {
  display: none;
  text-transform: uppercase;
}

/* .progress-bar__steps--numbers {
    width: 40px;
    height: var( --step-no-height );
    border-radius: 20px;
    line-height: 40px;
    margin-bottom: var( --step-no-bottom-margin );
} */

.progress-bar__steps.current .progress-bar__steps--text {
  display: block;
}

.progress-bar__steps.current .progress-bar__steps--numbers,
.progress-bar__steps.completed .progress-bar__steps--numbers,
.progress-bar-toggle-step-number {
  background: #ffbd66;
  color: #fff;
}

.progress-bar__steps .progress-bar__steps--numbers {
  display: inline-block;
  background: #3c4876;
  color: #fff;
  margin-right: 4px;
}

.sidebar_wrap .progress-bar__steps .progress-bar__steps--text:last-child {
  border-bottom: none !important;
}

.sidebar_wrap .progress-bar__steps.current .progress-bar__steps--text {
  color: #ffbd66;
}

.progress-bar__steps--numbers,
.progress-bar-toggle-step-number {
  width: 26px;
  height: var(--step-no-height);
  border-radius: 13px;
  line-height: 26px;
  margin-bottom: 0;
}

.shown {
  display: block;
}

.sidebar_wrap {
  display: block;
}

.hidden {
  display: none;
}

/* .sidebar_wrap .progress-bar {
  position: fixed;
  top: 80px;
  left: 126px;
  display: block;
  width: 210px;
  height: 226px;
  margin: 0 !important;
  padding: 20px;
  background-color: #fff;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 10%);
  transition: none;
} */
/* new layout modification */
.sidebar_wrap .progress-bar {
  position: relative;
  display: flex;
  width: 114%;
  height: auto;
  padding: 0;
  top: unset;
  left: unset;
  border-radius: unset;
  box-shadow: none;
  background-color: #d5d5d5;
  flex-direction: row;
}

/* .sidebar_wrap .progress-bar:after {
  content: "";
  position: absolute;
  width: 2px;
  background: #3c4876;
  top: 20px;
  bottom: 20px;
  left: 32px;
} */
/* new layout modification */
.sidebar_wrap .progress-bar:after {
  content: "";
  position: absolute;
  width: 99%;
  height: 1px;
  background: #3c4876;
  top: 20px;
  bottom: unset;
  left: unset;
}

/* .sidebar_wrap .progress-bar__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 99;
  /* margin-bottom: 14px; */
/* new layout modification */
/* cursor: pointer;
}  */
/* new layout modification */
.sidebar_wrap .progress-bar__steps .progress-bar__steps--text {
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none;
  background: transparent;
  transition: 0.3s all ease;
  font-size: 14px !important;
}

/* .sidebar_wrap .progress-bar__steps .progress-bar__steps--text {
    margin:0!important;
    padding:0!important;
    border-radius:0!important; */
/* text-transform:capitalize!important; */
/* padding: 16px 0 16px 60px!important; */
/* font-size: 15px!important;
    border-top:none;
    border-left:none;
    border-right:none; */
/* border-bottom:1px solid #3c4876!important; */
/* display:block; */
/* width:100%; */
/* background:transparent;
    line-height: var( --step-no-text-line-hgt );
    transition:0.3s all ease; */
/* } */
.stretch-card>.card {
  max-width: 650px !important;
  min-width: unset !important;
  margin: auto;
  border: 2px solid #ffbd66;
  border-radius: 10px;
}

.stretch-card>.card.styles-removed {
  width: 100%;
  max-width: unset !important;
  border: none;
  border-radius: 0;
  background: transparent;
}

.cd-faq .card.styles-removed .card-body {
  padding: 0;
}

/* 
previous next buttons & their container
*/
.actions--container {
  width: 100%;
  max-width: 650px;
  margin-top: 20px;
}

.profile--actions {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}

/*.profile--actions .btn.prev-step,
.profile--actions .btn.next-step,*/
/* new layout modification */
.profile--actions #end-chat-session {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 20px;
  background: #ffbd66;
  color: #fff;
  box-shadow: none;
}

.profile--actions #end-chat-session {
  width: auto !important;
  height: 50px;
  padding: 0 1.75rem;
  font-size: 1rem;
}

#end-chat-session i {
  font-size: 0.875rem;
}

.profile--actions .btn.prev-step {
  margin-right: 10px;
  background: #a8aabc;
}

.profile--actions .btn.prev-step .fa {
  margin-left: -2px;
}

.profile--actions .btn.next-step .fa {
  margin-right: -4px;
}

.profile--actions .btn-primary:not(:disabled):not(.disabled):active,
.profile--actions .btn-secondary:not(:disabled):not(.disabled):active {
  background: #ffbd66;
  color: #fff;
  box-shadow: none;
}

.profile--actions .btn-secondary:not(:disabled):not(.disabled):active {
  background: #a8aabc;
}

/* 1️⃣ first slide contents */
.divider-1 {
  padding: 0.5rem !important;
}

.divider-2 {
  padding: 1rem !important;
}

.cd-faq .card .card-body {
  padding: 2.75rem 1.75rem;
}

#chat-sections .question,
#chat-sections .answer {
  margin-top: 0;
  margin-bottom: 1.325rem;
  color: #3c4977;
  font-size: 0.875rem;
}

#chat-sections .question h4 {
  line-height: 24px;
}

#chat-sections .question.noui-slider-label {
  margin-bottom: 4.2rem;
}

.question .note {
  border-radius: 10px;
  background: #f7f8ff;
}

.question .note-body {
  padding: 20px 15px;
}

.question .note .bar {
  width: 110px;
  height: 2px;
  border-radius: 0;
  margin-bottom: 15px;
}

.session-page-answer-fld,
input[type="text"].session-page-answer-fld {
  height: 100px;
  padding: 15px;
  border: 2px solid #3c4977;
  border-radius: 10px;
}

.answer-fld-xl {
  height: 170px;
}

@media (max-width: 575.98px) {
  .answer-fld-large {
    height: 130px;
  }

}

.session-page-answer-fld::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
}

.session-page-answer-fld:-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
}

.session-page-answer-fld::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
}

.session-page-answer-fld::placeholder {
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
}

#chat-sections .noui-slider-container {
  padding: 20px;
}

#chat-sections .step-slider-container {
  padding-right: 320px;
  padding-left: 20px;
  padding-top: 6px;
}

#chat-sections .hr-line {
  margin-top: 20px;
  margin-bottom: 0;
  background-color: #91878791;
  margin-right: 300px;
}

#chat-sections .slider-primary .noUi-base .noUi-origin .noUi-handle .noUi-tooltip {
  height: 26px;
  padding: 0 0.96875rem;
  border-radius: 13px;
  background: #ffbd66;
  color: #ffffff;
  line-height: 26px;
}

#chat-sections .noUi-target .noUi-base .noUi-origin .noUi-handle:after,
#chat-sections .noUi-target .noUi-base .noUi-origin .noUi-handle:before {
  background: transparent;
  width: auto;
  height: auto;
}

#chat-sections .noUi-target .noUi-base .noUi-origin .noUi-handle {
  top: -9px;
  width: 20px;
  height: 20px;
  border: none;
  background: #668cf6;
  box-shadow: none;
}

#chat-sections .noUi-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border: 6px solid #333;
  border-color: #ffbd66 transparent transparent transparent;
  transform: translateX(-50%);
}

#chat-sections .noUi-connects {
  height: 4px;
  border-radius: 0;
  background: #3c4876;
}

#chat-sections .noUi-target .noUi-pips .noUi-marker-horizontal {
  background: #3c4876;
  height: 10px;
  width: 2px;
  top: -7px;
}

#chat-sections .noUi-target .noUi-pips .noUi-value {
  color: #3c4876;
}

/* .btn-recommendation {
    padding: 5px 20px;
    margin: auto;
    display: block;
    background: #ffbd66;
    border-radius: 30px;
    font-size: 14px;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    width: intrinsic;
      width: -moz-fit-content;
        width: fit-content;
}
.btn-recommendation:hover,
.btn-recommendation:active,
.btn-recommendation:focus  {
    background: #ffbd66;
    color: #FFF;    
    text-align: center;
    text-decoration: none;
} */
#chat-sections [class*="recommendation-text-"] {
  position: absolute;
  transform: translateY(-50%);
}

.recommendation-text-25-min,
.recommendation-text-30-min,
.recommendation-text-35-min {
  top: -40px;
}

.recommendation-text-25-min {
  left: 39%;
  margin-left: 29px;
}

.recommendation-text-30-min {
  left: 53%;
  margin-left: 28px;
}

.recommendation-text-35-min {
  right: 46%;
  margin-right: 34px;
  text-align: right;
}

.recommendation-text-40-min {
  top: -40px;
  right: 30%;
  margin-right: 39px;
  text-align: right;
}

.recommendation-text-20-min {
  top: -40px;
  /* transform: translateY(-50%); */
  left: 25%;
  margin-left: 30px;
  text-align: left;
}

@media (min-width: 480px) {
  .recommendation-text-25-min {
    left: 39%;
    margin-left: 20px;
  }
}

@media (min-width: 530px) {
  .recommendation-text-30-min {
    left: 53%;
    margin-left: 18px;
  }
}

@media (min-width: 576px) {
  .recommendation-text-25-min {
    left: 39%;
    margin-left: 13px;
  }
}

@media (min-width: 625px) {
  .recommendation-text-25-min {
    left: 39%;
    margin-left: 8px;
  }

  .recommendation-text-30-min {
    left: 53%;
    margin-left: 10px;
  }
}

@media (min-width: 540px)
/* and (max-width: 601px) */
  {
  .recommendation-text-20-min {
    margin-left: 14px;
  }
}

@media (min-width: 601px) {
  .recommendation-text-20-min {
    margin-left: 7px;
  }

  .recommendation-text-40-min {
    margin-right: 44px;
  }
}

@media (min-width: 768px) {
  .recommendation-text-20-min {
    margin-left: 0;
  }

  .recommendation-text-25-min {
    left: 39%;
    margin-left: 0;
  }

  .recommendation-text-30-min {
    left: 53%;
    margin-left: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: intrinsic;
    width: max-content;
  }

  .recommendation-text-35-min {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: intrinsic;
    width: max-content;
  }
}

#chat-sections [class*="recommendation-text-"]

/*.recommendation-text-20-min,
#chat-sections .recommendation-text-40-min*/
  {
  color: #ffbd66;
  font-weight: 600;
}

.note-text a[href*="profile/dashboard"],
.tsel_gotonext_screen,
.tsel_gotonext_screen:focus,
.session_page-link,
.session_page-link:focus {
  text-decoration: none;
  border-bottom: 1px solid #668cf6;
  color: #668cf6;
  font-size: 0.875rem;
}

.tsel_gotonext_screen:hover,
.session_page-link:hover {
  color: #668cf6;
  text-decoration: none;
}

a#relaunch-back,
a#relaunch-back0 {
  letter-spacing: normal;
  border-radius: unset !important;
  text-transform: none;
  font-weight: normal;
}

/* 2️⃣ preparation second slide contents */

#chat-sections .problem-selection-question {
  margin-bottom: 12px;
}

.problem-selection-question b {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

#chat-sections .instruction-txt {
  margin-bottom: 25px;
  color: #3c4977;
  font-size: 0.875rem;
  font-weight: 500;
}

.answer .form-check .form-check-label {
  margin-left: 15px;
  font-weight: 500;
}

#chat-sections .form-check .form-check-label input[type="checkbox"]:checked+.input-helper:before {
  background: #3c4977;
}

#chat-sections .form-check .form-check-label input[type="checkbox"]+.input-helper:before {
  width: 24px;
  height: 24px;
  border: 2px solid #3c4977;
  border-radius: 4px;
}

#chat-sections .form-check .form-check-label input[type="checkbox"]+.input-helper:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  /* font-size: 0.875rem; */
  font-size: 19px;
  font-weight: 400;
  content: "\f00c";
  padding-left: 3px;
  padding-top: 3px;
}

#chat-sections .problems-checklist .answer {
  margin-bottom: 18px;
}

/* 3️⃣ preparation second slide contents */
#chat-sections .select_protocol .question {
  margin-bottom: 15px;
}

#chat-sections .all-protocols {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  margin-bottom: -1.25rem;
}

#chat-sections .all-protocols .protocol {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  /* width: 280px; */
  /* flex: 0 0 100%; */
  height: 150px;
  margin-bottom: 20px;
  padding-top: 6px;
  border: 2px solid #3c4876;
  border-radius: 10px;
  background: #f7f8ff;
  text-decoration: none;
  font-weight: 700;
}

#chat-sections .all-protocols .protocol .icon {
  display: block;
}

#chat-sections .all-protocols .protocol .icon-selected {
  display: none;
}

#chat-sections .all-protocols .protocol.selected .icon {
  display: none;
}

#chat-sections .all-protocols .protocol.selected .icon-selected {
  display: block;
  /* filter: drop-shadow(0px 5px 12px rgba(0,0,0,0.5)); */
}

#chat-sections .all-protocols .protocol.selected {
  background: #ffbd66;
}

#chat-sections .all-protocols .protocol p {
  color: #3c4977;
  text-align: center;
}

#chat-sections .all-protocols .protocol.selected p {
  color: #fff;
}

#chat-sections .all-protocols .protocol-icon-wrapper {
  margin-bottom: 10px;
}

.btn-start-selected-protocol,
#chat-sections .btn-session-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 6px;
  margin: auto;
  padding: 14px 25px;
  border: none;
  border-radius: 30px;
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
}

#chat-sections .btn-session-primary {
  padding: 14px 20px;
  letter-spacing: initial;
}

.btn-start-selected-protocol,
#chat-sections .btn-session-primary,
.btn-start-selected-protocol:hover,
.btn-start-selected-protocol:focus {
  background: #ffbd66;
  color: #fff;
  text-decoration: none;
}

/* 1️⃣ Target Selection - first slide contents */
#chat-sections p {
  margin-bottom: 0;
}

.margin-large {
  margin-bottom: 1.875rem !important;
}

#chat-sections .question.margin-small {
  margin-bottom: 0.75rem;
}

#chat-sections .info-box {
  position: relative;
  margin-top: 1.5625rem;
  border-radius: 0.625rem;
}

#chat-sections .info-box:not(.no-icon)::after {
  display: inline-block;
  position: absolute;
  margin-top: -2.5px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  content: "\f06a";
  top: -7px;
  right: -7px;
  font-size: 1.5rem;
  color: #3c4977;
}

/* #chat-sections .info-box li,
#chat-sections .info-box p {
    font-weight: 500;
} */
#chat-sections .info-box .title-text {
  margin-bottom: 0.625rem;
  color: #3c4977;
  font-weight: 700;
}

/* #chat-sections .info-box .target-list {
    margin: 0;
    padding: 0;
} */
#chat-sections .target-list {
  margin: 0;
  padding: 0;
}

#chat-sections .target-list li,
#chat-sections .session-list li {
  display: flex;
  margin-bottom: 0.5rem;
  color: #3c4977;
  font-style: normal;
  font-size: 0.875rem;
}

#chat-sections .story_group .target-list li {
  font-style: italic;
}

#chat-sections .list-italic li {
  font-style: italic;
}

#chat-sections .target-list li:last-child,
#chat-sections .session-list li:last-child {
  margin-bottom: 0;
}

#chat-sections .target-list li::before {
  display: inline-block;
  margin-top: -2.5px;
  margin-right: 0.4375rem;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  content: "\f138";
  font-size: 1rem;
  color: #ffbd66;
}

#chat-sections .video-guide-box {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  /* background-color: #f7f8ff; */
}

#chat-sections .video-guide-box .text,
#chat-sections .video-guide-box .video-wrapper {
  display: flex;
  flex: 0 0 100%;
}

#chat-sections .video-guide-box .text {
  justify-content: center;
  align-items: center;
  /* height: 200px; */
  padding: 1.5625rem 0;
}

#chat-sections .video-guide-box .text p {
  color: #3c4977;
}

#chat-sections .video-guide-box .video-wrapper img {
  width: 100%;
}

/* 2️⃣ Target Selection - first slide contents */
#chat-sections .tsel-inner-card {
  position: relative;
  max-width: 650px;
  min-height: 81px;
  margin: auto;
  margin-bottom: 1.25rem;
  padding: 1.875rem 1.75rem;
  border: 2px solid #ffbd66;
  border-radius: 10px;
  background: #fff;
}

/* .tsel-inner-card .btn-collapse + .collapsed-text {
    display: none;
}
.tsel-inner-card .btn-collapse.collapsed + .collapsed-text {
    display: block;
}
.tsel-inner-card .btn-collapse.collapsed + .question {
    margin-bottom: 0;
} */
.target-selection-screen-two .down-arrow-button,
.target_selection-multi_card-section .down-arrow-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 1.25rem;
  border: 2px solid #ffbd66;
  border-radius: 20px;
  background: #fff;
  color: #ffbd66;
  cursor: pointer;
}

.tsel-inner-card-header {
  padding-right: 1.5625rem;
}

.tsel-inner-card-header .collapse-open-text {
  display: none;
}

#chat-sections .tsel-inner-card .btn-collapse:not(.alt) {
  position: absolute;
  right: 28px;
  top: 26px;
  z-index: 99;
  color: #3c4977;
  font-size: 1.3125rem;
}

#chat-sections .tsel-inner-card .tsel-inner-card-header .btn-collapse:not(.alt) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.target-selection-screen-two .collapsed-text,
.target_selection-multi_card-section .collapsed-text {
  font-weight: 700;
}

[href="#tsel-collapse_1"]+.question,
.target-selection-screen-two .collapsed-text,
.target_selection-multi_card-section .collapsed-text,
[id*="tsel-collapse"]>.question:first-child {
  padding-right: 2.1875rem;
}

.tsel-inner-card-header [href="#tsel-collapse_1"]+.question,
.target_selection-multi_card-section .tsel-inner-card-header .collapsed-text {
  padding-right: 0;
}

.target-selection-screen-two .collapsed-text,
.target_selection-multi_card-section .collapsed-text {
  display: none;
}

.target-selection-screen-two .collapsed-text.collapsed,
.target_selection-multi_card-section .collapsed-text.collapsed {
  display: block;
}

.description .d-header,
#storyGroup .collapse-inside .d-header {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: #3c4977;
}

#chat-sections .description .d-header b {
  color: #3c4977;
  font-weight: 700;
}

.target-selection-screen-two .description,
.target_selection-multi_card-section .description {
  margin-top: 1.5rem;
}

#chat-sections .target-selection-screen-two .question.margin-small,
#chat-sections .target_selection-multi_card-section .question.margin-small,
.target-selection-screen-two .instruction-text,
.target_selection-multi_card-section .instruction-text {
  margin-bottom: 1.3rem;
}

#chat-sections .target-selection-screen-two .btn-collapse.collapsed+.question.margin-small,
#chat-sections .target_selection-multi_card-section .btn-collapse.collapsed+.question.margin-small {
  margin-bottom: 0;
}

#chat-sections .card-four {
  margin-bottom: 0;
}

#chat-sections .target-selection-screen-two [href="#tsel-collapse_1"]+.question.collapsed,
#chat-sections .target_selection-multi_card-section [href="#tsel-collapse_1"]+.question.collapsed {
  margin-bottom: 0;
}

#chat-sections .text-decorated {
  border-bottom: 1px solid #3c4977;
  color: #3c4977;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

#chat-sections .target-selection-screen-two .description:last-child,
#chat-sections .target-selection-screen-two .answer:last-child,
#chat-sections .target-selection-screen-two .instruction-text:last-child,
#chat-sections .target_selection-multi_card-section .description:last-child,
#chat-sections .target_selection-multi_card-section .answer:last-child,
#chat-sections .target_selection-multi_card-section .instruction-text:last-child,
#chat-sections .answer.answer:last-child,
#chat-sections .question:last-child {
  margin-bottom: 0;
}

.target-selection-screen-two .description,
.target_selection-multi_card-section .description {
  padding: 0;
}

#chat-sections .card-three .info-box p:last-child {
  margin-top: 1.5625rem;
}

#chat-sections .description-collapsible {
  position: relative;
  margin-top: 1.875rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: #f7f8ff;
}

.description-collapsible .btn-collapse-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #3c4977;
}

.description-collapsible .btn-collapse.collapsed .fa::before,
.tsel-inner-card .card-collapse-btn.collapsed .fa::before {
  content: "\f055";
}

.description-collapsible .btn-collapse .fa::before,
.tsel-inner-card .card-collapse-btn .fa::before {
  content: "\f056";
  font-size: 1.16875rem;
}

#chat-sections .answer:last-child,
.description-collapsible:last-child,
.description-collapsible .btn-collapse.collapsed

/*.description-collapsible .btn-collapse-icon.collapsed.collapsed > .d-header*/
  {
  margin-bottom: 0;
}

.description-collapsible .btn-collapse-icon+.d-header {
  margin-bottom: 0.625rem;
}

/*.description-collapsible [href*="-image-collapse"].btn-collapse-icon > .d-header*/
.description-collapsible .btn-collapse {
  margin-bottom: 1.25rem;
}

.description-collapsible .btn-collapse {
  text-decoration: none;
}

#chat-sections #experienced_user .answer.accent {
  margin-bottom: 0.625rem;
}

#chat-sections .description-collapsible .d-header b {
  color: #668cf6;
}

#chat-sections .sub-section #answer3.answer {
  margin-bottom: 1.875rem;
}

/* Target Selection 4th slide */
.txt-session-info #chat-sections .question.accent {
  background: #f7f8ff;
  border: none;
  border-radius: 10px;
  padding: 1.5625rem !important;
}

.no-margin {
  margin-bottom: 0 !important;
}

.slider-min-value-label-right,
.slider-min-value-label-left {
  position: absolute;
  text-align: center;
  top: 50px;
  /* font-size: 0.6875rem;
    font-weight: 500; */
}

.slider-min-value-label-left {
  left: 5px;
  transform: translateX(-50%);
}

/* #myRange5 .slider-min-value-label-left {
  left: 13px;
} */
.slider-min-value-label-right {
  right: 20px;
  transform: translateX(50%);
}

.multi-line-label .slider-min-value-label-left {
  left: 0;
}

.multi-line-label .slider-min-value-label-right {
  right: 0;
  transform: translateX(50%);
}

.ul-slider:not(#session_time) .noUi-handle::after,
.ul-slider:not(#session_time) .noUi-handle::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  font-size: 1.25rem;
  font-weight: 400;
  color: #668cf6;
  top: 1.5px;
}

.ul-slider:not(#session_time) .noUi-handle:not([aria-valuenow="10.0"])::after {
  content: "\f054";
  right: -16px;
  left: unset;
  bottom: unset;
}

.ul-slider:not(#session_time) .noUi-handle:not([aria-valuenow="1.0"])::before {
  content: "\f053";
  left: unset;
  bottom: unset;
  left: -16px;
}

/* Target Selection slide 5 */
#target_selection #storyGroup {
  text-align: center;
}

.story_group [data-toggle="collapse"] .img-thumbnail {
  border: none;
}

#target_selection #storyGroup .collapse-inside {
  position: relative;
  margin-top: 1rem;
  padding: 20px 0;
  border: 2px solid #668cf6;
  border-radius: 10px;
  background: #f7f8ff;
  text-align: left;
}

.collpse-with-bgc .collapse-inside {
  background-color: #f7f8ff;
}

#target_selection #storyGroup .collapse-inside::before {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #f7f8ff;
  border: 2px solid #668cf6;
  border-bottom-color: transparent;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotateZ(45deg);
  border-right-color: transparent;
}

#target_selection #storyGroup .collapse-inside-alt {
  border: 2px solid #3c4977;
}

#target_selection #storyGroup .collapse-inside-alt::before {
  top: -11px;
  width: 0;
  height: 0;
  border: 9px solid #668cf6;
  border-bottom-color: transparent;
  border-right-color: transparent;
  background: transparent;
}

#storyGroup .collapse-inside .question {
  background: transparent;
}

#storyGroup .story-img:not(:first-child) {
  margin-top: 1.25rem;
}

#chat-sections #storyGroup .collapse-inside .target-list li::before {
  /* content: "\f054";
    font-size: 10px; */
  color: #668cf6;
  /* width: 15px;
    text-align: center;
    height: 15px;
    border-radius: 11px;
    line-height: 16px;
    background: #ffbd66;
    padding-left: 0.75px; */
}

#chat-sections #storyGroup .collapse-inside .target-list li {
  align-items: center;
}

.tsel_story_collapse_img_wrapper.selected {
  border: 2px solid #668cf6;
}

.tsel_story_collapse_img_wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: none;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tsel_story_collapse_img_wrapper .tsel_story_collapse_img {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  /* -webkit-transform: translate(-50%, -50%) scale(1.08);
  -moz-transform: translate(-50%, -50%) scale(1.08);
  -ms-transform: translate(-50%, -50%) scale(1.08);
  transform: translate(-50%, -50%) scale(1.08); */
  opacity: 0.5;
}

.tsel_story_collapse_img_wrapper.selected .tsel_story_collapse_img {
  opacity: 1;
}

.btn-story-collapse {
  position: relative;
}

.btn-story-collapse.collapsed::after {
  position: absolute;
  display: inline-block;
  left: 50%;
  border: 6px solid;
  border-color: #3c4977 transparent transparent transparent;
  bottom: -176px;
  content: "";
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.btn-story-collapse::after {
  display: none;
}

/* Desensitization slides */
.txt-session-info #chat-sections .question.answer-box {
  border: 2px solid #3c4876;
}

.wlcm-note-img {
  border: 2px solid #d9dce5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* closing 1st slide */
.caution-message {
  position: relative;
  padding-left: 30px;
  color: #ff0000;
}

.caution-box {
  width: 90%;
  margin: auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  column-gap: 16px;
  padding: 10px 16px;
  border: 2px solid #f00;
  border-radius: 10px;
}

.caution-box .caution-icon {
  width: 40px;
}

#closing .caution-message,
#closing .caution-box {
  margin-bottom: 1.625rem;
}

.caution-message::before {
  display: inline-block;
  position: absolute;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "FontAwesome";
  font-size: 26px;
  font-weight: 400;
  content: "\f06a";
  top: 0;
  left: 0;
}

#chat-sections .caution-message p,
#chat-sections .caution-box p {
  color: #ff0000;
}

.ordered-list {
  margin: 0;
  padding: 0;
  counter-reset: numList;
}

.ordered-list>li::before {
  position: absolute;
  left: 0;
  top: 0.125rem;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  border-radius: 10px;
  counter-increment: numList;
  content: counter(numList);
  background: #ffbd66;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

#chat-sections .session-list li {
  position: relative;
  display: block;
  padding-left: 1.8125rem;
}

.edr-initial-value {
  color: #668cf6;
  font-weight: bold;
  font-size: large;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -11px;
}

/* session video popup */
.session-page-video_wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  border: 3px solid #a8aabc;
  border-radius: 40px;
  background: #fff;
}

.session-page-video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
}

.session-page-video_wrapper .close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: intrinsic;
  width: max-content;
  opacity: 1;
  z-index: 9;
}

.session-page-video_wrapper .close:hover {
  opacity: 1;
}

@media (min-width: 349px) {
  .session-page-video_wrapper {
    height: 195px;
  }
}

@media (min-width: 380px) {
  .session-page-video_wrapper {
    height: 210px;
  }
}

@media (min-width: 400px) {
  .session-page-video_wrapper {
    height: 225px;
  }
}

@media (min-width: 425px) {
  .session-page-video_wrapper {
    height: 245px;
  }
}

@media (min-width: 470px) {
  .session-page-video_wrapper {
    height: 260px;
  }

  .answer-fld-xl {
    height: 140px;
  }
}

@media (min-width: 490px) {
  .session-page-video_wrapper {
    height: 280px;
  }
}

@media (min-width: 525px) {
  .session-page-video_wrapper {
    height: 300px;
  }
}

@media (min-width: 575px) {
  .session-page-video_wrapper {
    height: 290px;
  }

  .session_page_video-modal .modal-dialog {
    max-width: 500px;
  }

  .answer-fld-xl {
    height: 120px;
  }
}

@media (min-width: 768px) {
  .session-page-video_wrapper {
    height: 410px;
  }
}

@media (min-width: 992px) {
  .session-page-video_wrapper {
    height: 540px;
  }
}

@media (max-width: 767.98px) {
  .progress-bar__steps.completed .progress-bar__steps--text {
    display: block;
  }
}

/* @media (min-width: 374.98px) and (max-width: 446px) {
    .btn-recommendation {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 15px;
        width: -webkit-max-content;
         width: -moz-max-content;
          width: intrinsic;
           width: max-content;
    }
    .btn-recommendation-margin-bottom {
        margin-bottom: 1.75rem;
    }
} */

@media (min-width: 344px) and (max-width: 446px) {
  #chat-sections .btn-session-primary {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    width: unset !important;
    /* min-width: -webkit-max-content;
         min-width: -moz-max-content;
          min-width: intrinsic;
           min-width: max-content; */
    min-width: 270px;
  }

  #chat-sections .btn-session-primary {
    padding: 14px 20px;
  }

  .text-below-btn-margin {
    margin-top: 6.25rem;
  }
}

@media (min-width: 394.99px) {
  .btn-start-selected-protocol {
    width: 310px;
  }
}

@media (min-width: 394.99px) and (max-width: 446px) {
  .session-btns-margin-bottom {
    margin-bottom: 2.75rem;
  }

  .btn-start-selected-protocol {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* @media (max-width: 359.98px) {
  .sidebar_wrap .progress-bar {
    left: 50%;
    transform: translateX(-50%);
  }
} */
/* new layout modification */

@media (min-width: 465px) and (max-width: 767.98px) {
  /* .hamburger {
        margin-right: 1.8125rem;
    } */
  /* .sidebar_wrap .progress-bar {
        left: 142px;
    } */
}

/*@media (min-width: 475px) {
 .profile--actions .btn.next-step,
  .profile--actions .btn.prev-step {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  .profile--actions .btn.next-step {
    right: 0;
  }
  .profile--actions .btn.prev-step {
    left: 0;
  }
}*/
/* new layout modification */

@media (max-width: 767.98px) {
  .session-page-emdr-logo {
    margin-right: 1.25rem;
  }
}

/* @media (min-width: 576px) {
    #chat-sections .noui-slider-container {
        padding-left: 45px;
        padding-right: 45px;
    }
} */

@media (min-width: 768px) {
  :root {
    --step-no-height: 40px;
  }

  /* #top-navbar {
      padding-right: 25px;
      --height: 80px;
      --position: static;
      padding: 0 !important;
   } */
  /* new layout modification */
  /* .hamburger{
        margin-right: 1.875rem;
    } */
  .sidebar_wrap {
    height: calc(var(--step-no-height) + var(--step-no-bottom-margin) + var(--step-no-text-line-hgt));
    /* transition:0.6s all ease; */
    z-index: 1040;
    /* margin-top: calc( var(--navbar-height) + 28px ); */
    /* margin-top: 1.875rem; */
    margin-bottom: 28px;
    position: absolute;
    /* left: 57%; */
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hidden {
    display: block;
  }

  .sidebar_wrap .progress-wrap {
    width: 500px;
    margin: auto;
  }

  .sidebar_wrap .progress-bar:after {
    content: "";
    position: absolute;
    width: 99%;
    height: 1px;
    background: #3c4876;
    top: 10px;
    bottom: unset;
    left: unset;
  }

  .sidebar_wrap .progress-bar {
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    padding: 0;
    top: unset;
    left: unset;
    border-radius: unset;
    box-shadow: none;
  }

  li.progress-bar__steps:not(:last-child)::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #ffbd66;
    top: 20px;
    left: 82px;
  }

  li.progress-bar__steps.completed:not(:last-child)::after {
    width: 118px;
    height: 1px;
    width: 0;
    height: 0;
  }

  .progress-bar__steps.completed:not(.current) .progress-bar__steps--numbers {
    background: #3c4876;
  }

  /* .sidebar_wrap .progress-bar__steps {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 20%;
    position: absolute;
    top: 50%;
    text-align: center;
    cursor: pointer;
  } */
  /* new layout modification */
  .sidebar_wrap [data-section="target_selection"].progress-bar__steps {
    min-width: 138px;
  }

  .sidebar_wrap [data-section="desensitization"].progress-bar__steps {
    min-width: 135px;
  }

  .sidebar_wrap [data-section="installation"].progress-bar__steps {
    min-width: 110px;
  }

  .sidebar_wrap .progress-bar__steps--numbers {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    line-height: 40px;
    margin-bottom: var(--step-no-bottom-margin);
  }

  .progress-bar__steps:first-child {
    left: -45px;
  }

  .progress-bar__steps:nth-child(2) {
    left: 58.5px;
  }

  .progress-bar__steps:nth-child(3) {
    left: 184px;
  }

  .progress-bar__steps:nth-child(4) {
    left: 323px;
  }

  .progress-bar__steps:last-child {
    right: -45px;
  }

  .sidebar_wrap .progress-bar__steps--text {
    border-radius: 0 !important;
    font-size: 15px;
    line-height: var(--step-no-text-line-hgt);
  }

  /* .cd-faq.services {
    margin-top: 60px;
    margin-top: 147px;
    margin-top: 65px;
    padding-left: 0;
  } */
  /* new layout modification */
  #chat-sections .question,
  #chat-sections .answer {
    /* margin-bottom: 1.875rem; */
    margin-bottom: 1.5rem;
  }

  #chat-sections .instruction-txt {
    margin-bottom: 20px;
  }

  #chat-sections .problem-selection-question {
    margin-bottom: 12px;
  }

  #chat-sections .all-protocols {
    justify-content: flex-start;
  }

  #chat-sections .all-protocols:not(.sub-protocols) .protocol:first-child {
    flex: 0 0 100%;
    height: 120px;
  }

  #chat-sections .all-protocols .protocol {
    /* flex: 0 0 30.55%; */
    /* height: 150px; */
  }

  #chat-sections .all-protocols .protocol-selector-mr {
    margin-right: 1.5625rem;
  }

  #chat-sections .select_protocol .question {
    margin-bottom: 20px;
  }

  #chat-sections .video-guide-box .text,
  #chat-sections .video-guide-box .video-wrapper {
    flex: 0 0 50%;
  }

  #chat-sections .video-guide-box .text {
    height: 200px;
    padding: 0;
  }

  /* #chat-sections .noui-slider-container {
    padding: 0 30px;
  } */
  #storyGroup .story-img:not(:first-child) {
    margin-top: 0;
  }

  #target_selection #collapseMaria .collapse-inside::before,
  #target_selection #storyGroup .story-collapse-one .collapse-inside::before {
    left: 92px;
    transform: rotateZ(45deg);
  }

  #target_selection #collapseLee .collapse-inside::before,
  #target_selection #storyGroup .story-collapse-three .collapse-inside::before {
    left: unset;
    right: 92px;
    transform: rotateZ(45deg);
  }

  #target_selection #storyGroup .story-collapse-one .collapse-inside-alt::before {
    left: 87px;
  }

  #target_selection #storyGroup .story-collapse-three .collapse-inside-alt::before {
    right: 87px;
  }

  #target_selection #collapseMaria .collapse-inside-alt::before {
    left: 90px;
  }

  #target_selection #collapseLee .collapse-inside-alt::before {
    right: 85px;
  }

  #target_selection #storyGroup.two-story .story-collapse-one .collapse-inside::before {
    left: 33%;
  }

  #target_selection #storyGroup.two-story .story-collapse-two .collapse-inside::before {
    left: 67%;
  }

  #chat-sections .video-guide-box .video-wrapper iframe {
    max-height: 200px;
  }

  .slider-min-value-label-left {
    left: 0;
  }

  /* #myRange5 .slider-min-value-label-left {
    left: 3px;
  } */
  .slider-min-value-label-right {
    right: 7px;
  }

  .session_page_video-modal .modal-dialog {
    max-width: 730px;
  }

  /*.profile--actions .btn.next-step,
    .profile--actions .btn.prev-step {
        position: fixed;
        top: 50%;        
        transform: translateY(-50%);
    }*/
  /* .profile--actions .btn.next-step {
    right: 5px;
  }
  .profile--actions .btn.prev-step {
    left: 5px;
  } */
  /* new layout modification */
  .wlcm-note-img {
    width: 150px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: unset;
  }

  .answer-fld-xl {
    height: 100px;
  }
}

@media (min-width: 878px) {
  .sidebar_wrap {
    /* left: 53%; */
    left: 50%;
  }

  /* .profile--actions .btn.next-step {
    right: 1rem;
  }
  .profile--actions .btn.prev-step {
    left: 1rem;
  } */
  /* new layout modification */
}

@media (min-width: 992px) {

  /* .progress-bar__steps:first-child {
        left: -45px;
    } */
  .progress-bar__steps:nth-child(2) {
    left: 107.5px;
  }

  .progress-bar__steps:nth-child(3) {
    left: 260px;
  }

  .progress-bar__steps:nth-child(4) {
    left: 412px;
  }

  /* .progress-bar__steps:last-child {
        right: -45px;
    } */
  .sidebar_wrap .progress-wrap {
    width: 100%;
    margin: auto;
    padding-top: 20px;
  }

  .sidebar_wrap {
    left: 50%;
  }

  .session_page_video-modal .modal-dialog {
    max-width: 950px;
  }

  .modal.session_page_video-modal .modal-dialog {
    margin-top: 65px;
  }
}

@media screen and (min-width: 1200px) {
  section.cd-faq.seson-pg-min-height {
    min-height: unset;
  }
}

/*////////////// start navbar css by soumen \\\\\\\\\\\\\\\\*/

.session-page-emdr-logo-mn {
  display: flex;
  align-items: center;
}

/* #top-navbar {
  height: 80px;
} */
/* new layout modification */
.nav-rght {
  padding: 0 25px;
}

.nav-rght-dropdown {
  position: relative;
}

.nav-rght-dropdown .rght-drpdwn-toggle-btn img {
  width: 33px;
}

.nav-rght-dropdown .toggle-dropdown {
  position: absolute;
  top: 52px;
  right: 0;
  background-color: white;
  box-shadow: 0 0 10px #d8d8d8;
  border-radius: 5px;
  min-width: 162px;
  display: none;
}

.nav-rght-dropdown.active .toggle-dropdown {
  display: block;
}

.rght-drpdwn-toggle-btn i {
  margin-left: 5px;
  font-weight: 600;
}

.nav-rght-dropdown .toggle-dropdown ul {
  padding: 8px 0;
  margin: 0;
}

.nav-rght-dropdown .toggle-dropdown ul a {
  padding: 3px 15px;
  display: block;
  width: 100%;
}

.nav-rght-dropdown .toggle-dropdown ul a:hover {
  background-color: #efefef;
  color: #007bff;
}

.nav-rght-dropdown .toggle-dropdown ul a:first-child::after {
  display: none;
}

/*////////////// ednd navbar css by soumen \\\\\\\\\\\\\\\\*/

/*///////////// start sidebar css is here \\\\\\\\\\\\\\*/

body#body {
  background-color: #fff5eb;
  font-family: "Poppins", sans-serif;
}

body.active-sidebar {
  height: 100%;
  background-color: #9d9db0 !important;
  transition: 0.5s;
}

.content {
  overflow: hidden !important;
}

/* .seson-pg-main-content {
    padding-top: 78px;
} */
.seson-pg-main-content.active-sidebar {
  opacity: 0.5;
}

.sidebar-toggle-btn {
  padding: 30px 25px;
  font-size: 20px !important;
  transition: 0.5s;
}

.sidebar-toggle-btn .when-actv-side-br {
  display: none;
}

.sidebar-toggle-btn.active .when-deactv-side-br {
  display: none;
}

.sidebar-toggle-btn.active .when-actv-side-br {
  display: inline-block;
  -webkit-text-stroke: 1px #3c447c;
}

.sidebar-main {
  background-color: #3c457c;
  position: fixed;
  left: 0;
  top: 80px;
  height: 100%;
  min-width: 120px;
  margin-left: -400px;
  transition: 0.5s;
  z-index: 9;
  padding-bottom: 40px;
}

.sidebar-main.active-sidebar {
  margin-left: 0;
  transition: 0.5s;
  overflow-x: scroll;
}

.sidebar-main.active-sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar-main.active-sidebar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent;
}

.sidebar-main.active-sidebar::-webkit-scrollbar-thumb {
  background: transparent;
}

.sidebar-toggle-btn.active {
  background-color: #3c447c;
  color: #fff;
  transition: 0.5s;
}

.sidebar-toggle-btn.active:hover {
  color: #fff;
}

.sidebr-cntnt-mn {
  display: flex;
  background-color: white;
  border-radius: 6px;
  padding: 20px;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.sidebar-main ul {
  padding: 18px;
}

.sidebr-cntnt-mn .sidebar-cntnt h4 {
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 2px;
  color: #3c447c;
}

.sidebr-cntnt-mn .sidebar-cntnt p {
  margin: 0;
  color: #3c447c;
}

.sidebr-cntnt-mn .sidebar-img {
  margin-right: 10px;
  max-width: 35px;
}

.sidebr-cntnt-mn .sidebar-img img {
  max-width: 100%;
}

.sidebr-cntnt-mn:hover {
  background-color: #658cf6;
}

.sidebr-cntnt-mn:hover .sidebar-img img {
  filter: brightness(20);
}

.sidebr-cntnt-mn:hover .sidebar-cntnt h4 {
  color: #fff;
}

.sidebr-cntnt-mn:hover .sidebar-cntnt p {
  color: #fff;
}

/*///////////// end sidebar css is here \\\\\\\\\\\\\\*/

/*///////////// start soumen responsive is here \\\\\\\\\\\\\\*/

@media screen and (max-width: 991px) {
  .sidebar-toggle-btn {
    margin-right: 10px;
    padding: 31px 10px;
  }

  /* .sidebar_wrap .progress-bar {
        width: 90%;
    }
    .progress-bar__steps:nth-child(2) {
        left: 42.5px;
    }
    .progress-bar__steps:nth-child(3) {
        left: 160px;
    }
    .progress-bar__steps:nth-child(4) {
        left: 285px;
    } */
}

/* @media screen and (min-width: 768px) {
  #top-navbar {
    top: unset !important;
  }
} */
/* new layout modification */

@media screen and (max-width: 767.98px) {

  /* body.active-sidebar #top-navbar,
  body.progress_menu_shown #top-navbar {
    top: unset !important;
  } */
  /* new layout modification */
  button.progress-bar-toggle-mobile {
    padding: 15px 0 0 20px;
  }
}

@media screen and (max-width: 575px) {
  #chat-sections .hr-line {
    margin-right: 0;
  }

  #chat-sections .step-slider-container {
    padding-right: 0;
  }
}

/*///////////// end soumen responsive is here \\\\\\\\\\\\\\*/