.before-after-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 3px solid white;
    border-radius: var(--border-radius);
    user-select: none;
    margin: 0 auto;
}

.before-after-slider img{
    display: block;
    width: 100%;
}

.after-image,
.before-image{
    background-color: #fff;
}

.before-image {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
}

.resizer {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 5;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: rgba(255,255,255,.5);
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    cursor: ew-resize;
    font-size: 1rem !important;
    line-height: 1rem !important;
}

.resizer:after {
    background: linear-gradient(62deg, #c93072 5%, #3365c0);
    content: '\21D4';
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    margin: 0 0 0 -22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;

}