/* You can remove this page div in your website */
/* #page{
width:100%;
height:100%;
position:absolute;
} */

/* Our normalize css */
*{
  margin:0;
  box-sizing: border-box;
}

/* Our wrapper */
.wrapper{
  width: 100%;
  position: relative;
}

/* Our image information */
.before,
.after {
  width:100%;
  height:100%;
  background-repeat:no-repeat;
  background-color: white;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events:none;
  overflow: hidden;
}

.before img {
  max-width: 100%;
}

.after {
  position: absolute;
}

.before {
  position: relative;
}

.content-image{
  height:auto;
  max-height:100%!important;
  user-select: none;
}

.after{
  width: 50%;
  border: 6px solid #fff;
  border-width: 0 6px 0 0;
}

.scroller{
  width: 50px;
  height:50px;
  position: absolute;
  left:100px;
  top:50%;
  transform:translateY(-50%);
  border-radius:50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  pointer-events:auto;
  cursor: pointer;
  margin-left: -3px;
}

.scroller:before {
  content: '';
  position: absolute;
  right: -2px;
  font-family: Font Awesome\ 5 Pro;
  color: #103658;
  /* background-color: #000; */
  fill: #000;
  font-size: 27px;
  top: calc(50% - 5px);
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  border-bottom: solid 10px #103658;
  height: 0;
  width: 0;
  transform: rotate(90deg);
}

.scroller img {
  opacity: 0;
}

.scroller:after {
  content: '';
  position: absolute;
  left: -2px;
  font-family: Font Awesome\ 5 Pro;
  color: #103658;
  /* background-color: #000; */
  fill: #000;
  font-size: 27px;
  top: calc(50% - 5px);
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  border-bottom: solid 10px #103658;
  height: 0;
  width: 0;
  transform: rotate(270deg);
}

.scroller:hover{
  opacity:1;
}

.scrolling{
  pointer-events:none;
  opacity:1;
  // z-index: 1;
}

.scroller__thumb{
  width:100%;
  height:100%;
  padding:5px;
}

/* .scroller:before,
.scroller:after{
content:" ";
display: block;
width: 7px;
height: 9999px;
position: absolute;
left: 50%;
margin-left: -3.5px;
z-index: 30;
transition:0.1s;
} */
/* .scroller:before{
top:100%;
}
.scroller:after{
bottom:100%;
} */

/* If you want to cahnge the colors, make sure you change the fill in the svgs to match */
.scroller{
  border: 5px solid #fff;
}
/* .scroller:before,
.scroller:after{
background: #fff;
} */