
.carousel-container {
  display: flex;
      position: absolute;
      width: 100%;
      top: 0;
      overflow: hidden;
  }
  
  .carousel {
    /* background: #FAFAFA; */
    margin-bottom: 0px;
    flex-grow: 1;
  }
  
  .carousel-cell {
    width: 100%;
    height: auto;
    margin-right: 0px;
    /* background: #8C8; */
    border-radius: 30px;
    height: 500px;
    object-fit: cover;
    counter-increment: carousel-cell;
    text-align: center;
    
  }
  
  /* cell number */
  /* .carousel-cell:before {
    display: block;
    text-align: center;
    content: counter(carousel-cell);
    line-height: 300px;
    font-size: 80px;
    color: white;
  } */
  
  .carousel-nav {
    width: 33.33333333%;
    margin-right: 0px;
    max-height: 500px;
    margin-left: 0rem;
    /* overflow-y: scroll; */
    position: absolute;
    border-radius: 30px;
    /* background-color: rgb(255, 255, 255); */
    /* padding: 1.5rem; */
  }
  
  .carousel-nav .carousel-cell {
    height: auto;
    /* width: 100px; */
    margin: 0 0 0rem 0;
    cursor: pointer;
    opacity: 0.4;
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
    counter-increment: carousel-cell;
    text-align: center;
  }
  .carousel-cell {
    border-bottom: 0px solid #707070;
  }
  .carousel-cell:last-child {
    border-bottom: 0px solid #707070;
    margin: 0 0 0 0;
  }
  .carousel-nav .carousel-cell:before {
    font-size: 50px;
    line-height: 80px;
  }
  
  .carousel-nav .carousel-cell.is-nav-selected {
    /* background: #ED2; */
    opacity: 1;
  }

  .menu-item-healthstack.carousel-cell-brd.active {
    color: #fff;
  }
  .carousel-cell-brd {
    border-bottom: 1px solid #707070;
    color: #707070;
  }
  .carousel-cell-brd:last-child {
    border-bottom: 0px solid #707070;
  }
  
  .flickity-page-dots {
    display: none;
  }
  
  .flickity-prev-next-button {
    top: 94%;
    display: none;
  }
  
  .flickity-prev-next-button.next {
    right: 70%;
  }
  
  .flickity-prev-next-button.previous {
    left: 17%;
  }
  
  /*owl carousel styles*/
  .owl-prev {
    position:absolute;
    top:200px;
    left: 33px;
    border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  left:34px;
  top:200px;
  position: absolute;
  border-right-color: #B7852C;
  border-width: 18px;
  margin-top: -16px;
  }
  .owl-next {
    position:absolute;
    top:200px;
    right: -20px;
    top: 200px;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
  /*   border-color: rgba(194, 225, 245, 0); */
    border-left-color: #B7852C;
    right:35px;
    border-width: 18px;
    margin-top: -16px;
  }
  .owl-carousel.owl-loaded {
    display: block;
  }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    -webkit-transform: translate3d(0px, 0, 0);
  }
  .owl-stage-outer {
    top: 36px;
  }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
  }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .owl-carousel .owl-item img {
    display: inline;
    width: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
  }
  


  .carousel-cell {
    transition: opacity 0.5s ease;
    opacity: 0;
  }
  
  .carousel-cell.is-selected {
    opacity: 1;
  }