*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper{
    width : 840px;
    margin: 0 auto;
    background-color: aqua;
}
@media(max-width : 991px) {
    .wrapper{
        width: 100%;
    }
}

.qubely-block-image-comparison {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.qubely-block-image-comparison img {
    display: block;
    width: 100%;
    user-select: none;
}

.comparison-image-text {
    position: absolute;
    opacity: 1;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 20px 60px 50px 60px;
    font-size: 30px;
    display: flex;
}

.qubely-block-image-comparison > .comparison-image-text {
    right: 0;
    justify-content: flex-end;
    align-items: flex-end;
}

.comparison-resize-img .comparison-image-text {
    /* right: auto; */
    left: 0;
    justify-content: flex-start;
    align-items: flex-end;
}

.comparison-resize-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.comparison-resize-img img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
}

.comparison-scrollCircle {
    position: absolute;
    height: 44px;
    width: 44px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    cursor: move;
    /* background: #dc717d;
    background-position: center center;
    background-repeat: no-repeat; */
    background: #dc717d url("cd-arrows.svg") no-repeat center center;
    transform: translate(-50%, -50%);
}