  
  /* Our wrapper */
  .bafg-method-3-wrapper{
    width: 100%;
    height: auto;
    max-height:100vh;
    transform:translate3d(0%,0%,0);
    overflow:hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }
  
  
  /* Our image information */
  .bafg-method-3-wrapper .bottom,
  .bafg-method-3-wrapper .middle,
  .bafg-method-3-wrapper .top {
    width:100%;
    height:100%;
    background-repeat:no-repeat;
    background-color: white;
    background-size: cover;
    background-position: center;
    position: absolute;
    top:0;
    left:0;
    pointer-events:none;
    overflow: hidden;
  }
  .bafg-method-3-wrapper .top img,.bafg-method-3-wrapper .middle img, .bafg-method-3-wrapper .bottom img {
    height:auto;
    max-width: unset;
    object-fit: contain;
  }  
  .bafg-method-3-wrapper .top{
    width:125px;
  }
  
  .bafg-method-3-wrapper .scroller{
    width: 50px;
    height:50px;
    position: absolute;
    left:100px;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background-color: transparent;
    opacity:0.9;
    transition: opacity 0.12s ease-in-out;
    pointer-events:auto;
    cursor: pointer;
    box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
    z-index: 2;
  }
  .bafg-method-3-wrapper .scroller-middle{
    margin-top:25px;
  }
  .bafg-method-3-wrapper .scroller-top{
    margin-top:-25px;
  }
  
  
  .scroller:hover{
    opacity:1;
  }
  
  .scrolling{
    pointer-events:none;
    opacity:1;
    /*z-index: 1;*/
  }
  
  .scroller__thumb{
    width:100%;
    height:100%;
    border-radius:50%;
    padding: 7px;
  }
  
  .scroller:before,
  .scroller:after{
    content:" ";
    display: block;
    width: 3px;
    height: 9999px;
    position: absolute;
    left: 50%;
    margin-left: -1.5px;
    z-index: 30;
    transition:0.1s;
    box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
  }
  .scroller:before{
    top:49px;
  }
  .scroller:after{
    bottom:49px;
  }
  
  /* If you want to change the colors, make sure you change the fill in the svgs to match */
  .scroller-middle>.scroller__thumb{
    border: 3px solid #bcbcbc;
  }
  .scroller-middle:before,
  .scroller-middle:after{
    background: #FFFFFF;
  }
  
  .scroller-top>.scroller__thumb{
    border: 3px solid #bcbcbc;
  }
  .scroller-top:before,
  .scroller-top:after{
    background: #fff;
  }
  
/*Three images slider css*/
.bafg-first-label {
  position: absolute;
  left: 0;
  color: white;
  background: rgba(255,255,255,.2);
  bottom: 0;
  z-index: 999;
  padding: 5px 20px;
	display: none;
  transition: all 0.8s;
}
.bafg-mid-label {
  position: absolute;
  left: 50%;
  color: white;
  background: rgba(255,255,255,.2);
  bottom: 0;
  z-index: 999;
  padding: 5px 20px;
  display: none;
  transition: all 0.8s;
}
.bafg-third-label {
  position: absolute;
  right: 0;
  color: white;
  background: rgba(255,255,255,.2);
  bottom: 0;
  z-index: 999;
  padding: 5px 20px;
  display: none;
  transition: all 0.8s;
}
.bafg-m3-overlay {
  background: rgb(12 12 12 / 48%);
  height: 100%;
  position: absolute;
  width: 100%;
  display: none;
  transition: all 0.8s;
}
.bafg-method-3-wrapper:hover .bafg-m3-overlay,.bafg-method-3-wrapper:hover .bafg-first-label,.bafg-method-3-wrapper:hover .bafg-mid-label,.bafg-method-3-wrapper:hover .bafg-third-label{
	display: block;
	transition: all 0.8s;
}