.compare-img {
    margin-top: 30px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    border: 2px solid white;

    .img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 900px 100%;
    }

    .background-img {
        background-image: url('../images/resources/plastic-cup.webp');
    }

    .foreground-img {
        background-image: url('../images/resources/plastic-free-cup.webp');
        width: 51%;
    }

    .slider {
        position: absolute;
        left: 1%;
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 100%;
        background: transparent;
        outline: none;
        margin: 0;
        transition: all .2s;
        @include center;

        &:hover {
            background: rgba(#f2f2f2, .1);
        }

        &::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 6px;
            height: 600px;
            background: #dfb637;
            cursor: pointer;
        }

        &::-moz-range-thumb {
            width: 16px;
            height: 600px;
            background: #dfb637;
            cursor: pointer;
        }
    }

    .slider-button {
        pointer-events: none;
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #dfb637;
        left: calc(50% - 14px);
        top: calc(50% - 14px);
        @include center;
        font-size: 20px;
        line-height: 40px;
        color: #fff;

        &:after {
            content: '\f054';
            font-family: 'FontAwesome';
        }

        &:before {
            content: '\f053';
            font-family: 'FontAwesome';

        }
    }
}