.bap-container {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 100%;
  background: #ddd;
  min-height: 700px;
  user-select: none;
}

.bap-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.bap-wrapper img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.bap-before {
  z-index: 10;
}

.bap-after {
  z-index: 20;
  clip-path: inset(0 50% 0 0); /* Initially hides half */
}

/* .bap-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  background: white;
  cursor: ew-resize;
  z-index: 30;
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
} */

.bap-slider:before,
.bap-slider:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.bap-slider:before,
.bap-slider:after {
  width: 3px;
  height: 9999px;
  left: 50%;
  margin-left: -1.5px;
}

.bap-slider {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.bap-slider:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.bap-slider:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.bap-left-arrow,
.bap-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.bap-left-arrow,
.bap-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.bap-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.bap-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.easyin {
  transition: clip-path 0.5s ease-in-out;
}
