
  .slider {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .slider-handle {
    position: absolute;
    width: 7px;
    min-height: 220px;
    background-color: white;
    border: 1px solid #c2c2c2;
    cursor: pointer;
  }


  .before-after {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }

  .before-after .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .before-after .img.front-img img {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  }
