@charset "utf-8";

.before_after_slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

.before_after_slider.custom-width {
    max-width: 630px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

@media screen and (max-width: 768px) {
  .before_after_slider {
    margin-bottom: 20px;
  }

  .before_after_slider.custom-width {
    margin-bottom: 20px;
  }
}
 
  .box_before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    border-right: 5px solid rgba(255, 255, 255, 0.7);
    box-shadow: 10px 0 15px -13px #000;
  }
 
  .box_before img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
 
  .box_before::before {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    width: 45px;
    height: 45px;
    margin: auto 0;
    border: 5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 10px 0 15px -13px #000;
  }
 
  .slider_range {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: col-resize;
  }