/* Write your custom CSS here */
#msform {
    width: 100%;
    margin: 20px auto;
    
    position: relative;
  }
  #msform fieldset {
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 20px 0px #ff87908f;
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    /* margin: 0 0%; */
    border-radius: 5px;
    position: absolute;
    text-align: center;
    min-height: 325px;
  }
  /*Hide all except first fieldset*/
  #msform fieldset:not(:first-of-type) {
    display: none;
  }

  /*buttons*/
  #msform .action-button {
    width: 100px;
    background: #FF8790;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    font-weight: 700;
    padding: 9px 24px;
    border-radius: 7px;
    line-height: 22px;
    border: none;
    font-size: 13px;
  }
  #msform .action-button:hover,
  #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #FF8790;
  }

  .fs-subtitle {
    color: #FF8790;
    margin: 20px 0px;
    font-size: 25px;
  }
  /*progressbar*/
  #progressbar {
    margin-bottom: 30px;
    padding: 0px;
    overflow: hidden;
    text-align: center;
    /*CSS counters to number the steps*/
    counter-reset: step;
  }
  #progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 11%;
    float: left;
    position: relative;
  }
  #progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
  }
  /*progressbar connectors*/
  #progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
  }
  #progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
  }
  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = green*/
  #progressbar li.active:before,
  #progressbar li.active:after {
    background: #FF8790;
    color: white;
  }
  .help-block {
    font-size: 0.8em;
    color: #7c7c7c;
    text-align: left;
    margin-bottom: 0.5em;
  }
  .block{
      display: block !important;
  }
  .basic-form{
      padding: 15px !important;
      margin-top: 100px;
  }
  .custom-control-label::before {
    width: 17px;
    height: 17px;
}
  .custom-control-label::after {
    top: 3px;
    left: -21px;
    width: 17px;
    height: 17px;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #FF8790;
  border-color: #FF8790;
}
.trimester-icon{
  padding: 0px !important;
  overflow: hidden;
}
.trimester-icon img{
  width: 100%;
}
.icon-lock{
    position: absolute;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0deg 100% 50% / 37%);
    color: #fff;
    border-radius: 50%;
    right: 6px;
    top: 6px;
    font-size: 12px;
    border: 1px solid rgb(143 143 143 / 33%);
}
.q_options{
  list-style: none;
  padding: 0px;
}
.report_form h5{
  font-size: 15px;  
}
.trimester-items{
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.diet-profile .page-container:before {
  width: calc(100% - 20px);
  height: 350px;
  top: 30px;
  left: 10px;
  position: absolute;
  content: '';
  background: url(../images/diet-banner.jpg) no-repeat;
  background-size: cover;
  z-index: -3;
  border-radius: 10px;
}
.yoga-profile .page-container:before {
  width: calc(100% - 20px);
  height: 350px;
  top: 30px;
  left: 10px;
  position: absolute;
  content: '';
  background: url(../images/yoga-banner.jpg) no-repeat;
  background-size: cover;
  z-index: -3;
  border-radius: 10px;
}
.assesment-profile .page-container:before {
  width: calc(100% - 20px);
  height: 350px;
  top: 30px;
  left: 10px;
  position: absolute;
  content: '';
  background: url(../images/assesment-banner.jpg) no-repeat;
  background-size: cover;
  z-index: -3;
  border-radius: 10px;
}
.home-feed .page-container:before {
  width: calc(100% - 20px);
  height: 350px;
  top: 30px;
  left: 10px;
  position: absolute;
  content: '';
  background: url(../images/home-feed.jpg) no-repeat;
  background-size: cover;
  z-index: -3;
  border-radius: 10px;
}
.home-feed  .page-container:after {
  width: calc(100% - 20px);
  height: 350px;
  top: 30px;
  left: 10px;
  position: absolute;
  content: '';
  background: rgb(255 135 144 / 50%);
  z-index: -2;
  border-radius: 10px;
}
.home-feed .page-content {
  padding-top: 70px;
}
.page-header .navbar ul.navbar-nav>li>a:hover {
  color: #717BA2;
}
.exp-desc{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.consultModal .modal-header{
  padding: 10px;
}
.consultModal .card,.assetsModal .card{
  height: 100%;;
}

.consultModal .modal-content{
  background: transparent;
}

.consultModal .modal-body,.assetsModal .modal-body {
  padding: 0px 15px;
}
.assetsModal .modal-body {
    overflow:hidden;
}
.assetsModal .modal-body img{
    width:100%;
}
.consultModal .modal-footer,.assetsModal .modal-footer {
  padding: 10px;
}
.consultModal .modal-header .close{
  opacity: 1;
}

.consultModal .modal-header .close i {
  color: #fff;
}
.prega-d-flex {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.exprt-card-body{
  padding: 10px !important;
}
.exprt-card-body p{ 
  font-size: 12px;
}
.assets-card-info{
  cursor: pointer;
}
.exp-image-header{
    height: 110px;
    width: 110px;
    margin: 5px auto 0px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ff8790;
}
.exp-image-header img{
    height:100%;
    border-radius: 50%;
}
.assets-img-banner{
    background-size: cover !important;height:140px
}
.comment-frame{
  width:100%;border:0px;min-height:270px;
}
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  .page-content {
    padding: 0 15px;
  }
  .assets-img-banner{
    height:110px
}
  .exprt-card-body p{ 
  font-size: 11px;
  margin-bottom:8px;
}
  .card .card-body {
    padding: 10px;
  }
  .report_form ol{
    padding-left: 20px;
  }
  .assessment-title{
    font-size: 18px;
  }
}