.img-comp-container-cb122a72 {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    cursor: ew-resize;
    --img-comp-pos: 50%;
    --img-comp-speed: 300ms;
}

.img-comp-panel-cb122a72 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-comp-panel-cb122a72 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before Layer clips depending on split percent */
.img-comp-before-cb122a72 {
    clip-path: polygon(0 0, var(--img-comp-pos) 0, var(--img-comp-pos) 100%, 0 100%);
    z-index: 2;
}

.img-comp-after-cb122a72 {
    z-index: 1;
}

/* Splitter & Handle */
.img-comp-line-cb122a72 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--img-comp-pos);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

.img-comp-handle-cb122a72 {
    position: absolute;
    top: 50%;
    left: var(--img-comp-pos);
    z-index: 20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    transform: translate(0, -50%);
    transition: transform var(--img-comp-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.img-comp-container-cb122a72.is-dragging .img-comp-handle-cb122a72 {
    transform: translate(0, -50%) scale(1.15);
}

.img-comp-arrows-cb122a72 {
    width: 50%;
    height: 50%;
}

/* Hover Overlay */
.img-comp-overlay-cb122a72 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--img-comp-speed) ease;
    pointer-events: none;
    z-index: 3;
}

.img-comp-container-cb122a72:hover .img-comp-overlay-cb122a72 {
    opacity: 1;
}

/* Floating labels */
.img-comp-label-cb122a72 {
    position: absolute;
    top: 15px;
    z-index: 5;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
    text-transform: uppercase;
}

.img-comp-label-before-cb122a72 {
    left: 15px;
}

.img-comp-label-after-cb122a72 {
    right: 15px;
}
