/* * {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
} */

.ba-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ba-slider img {
    width: 100%;
    display: block;
}

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


.handle {
    /* Thin line seperator */
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    margin-left: -0.75px;
    border-left: 1.5px dashed white;
    cursor: ew-resize;
}

.handle::after {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
    background-image: url('/img/icons/slider.png');
    background-size: 54px 54px;
    content: '';
    text-align: center;
    border-radius: 50%;
    transition: all 0.1s ease-in-out;
}

.handle::before {
    position: absolute;
    top: 50%;
    width: 300px;
    margin: 50px 0 0 -150px;
    font-size: 0.8rem;
    content: 'Schieben um zu vergleichen';
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.handle:hover::after {
    transform: scale(0.9);
}

.handle:active::before {
    content: '';
}