*, *:after, *:before {
    box-sizing: border-box;
}

.wrapper-scrubber {
    max-width: 1080px;
    margin: 0 auto;
}

.purple-section {background-color: white;}


.scrubber {
    cursor: ew-resize;
}

.scrubber .content {
    max-width: 720px;
    margin: 0 auto;
}

.scrubber .scrubber-middle .scrubber-handle {
    position: absolute;
    height: 110%;
    width: 8px;
    left: 50%;
    top: -5%;
    border-radius: 4px;
    background: #74a23c;
    z-index: 100;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.scrubber .scrubber-handle:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 20px;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background: #74a23c url(https://www.rentila.com/img/scrubber-grabber.png) no-repeat center;
    border-radius: 4px
}

.scrubber-stage {
    position: relative;
    margin: 60px 0;
    padding: 0 170px;
}

.scrubber-stage:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    margin-top: -3px;
    height: 4px;
    width: 90%;
    background: #cccccc;
}

.scrubber-stage .scrubber-middle {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    height: 450px;
    margin: 0;
}

.scrubber-stage .scrubber-middle > div {
    position: absolute;
    top: 0;
    overflow: hidden;
    height: 404px;
}

.scrubber-stage .scrubber-middle > div > div {
    position: absolute;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center
}

.scrubber-stage .scrubber-left, .scrubber-stage .scrubber-right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 140px;
}

.scrubber-stage .scrubber-left img, .scrubber-stage .scrubber-right img {
    max-width: 100%;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.scrubber-stage .scrubber-left {left: 0;}
.scrubber-stage .scrubber-left img {top: 48%}
.scrubber-stage .scrubber-right{right: 0;}

.scrubber-stage .scrubber-before {
    right: 0;
    width: 50%;
}

.scrubber-stage .scrubber-before > div {
    right: 0;
    width: 650px;
    background-image: url(https://www.rentila.com/img/scrubber_before.png);
    background-size: 100%
}

.scrubber-stage .scrubber-after {
    left: 0;
    width: 50%;
    background-position: center 55%;
}

.scrubber-stage .scrubber-after > div {
    width: 690px;
    background-image: url(https://www.rentila.com/img/scrubber_after.png);
    background-size: 85%;
}

.scrubber-stage h4 {
    position: relative;
    top: 0;
    margin-bottom: -27px;
    margin-top: 18px;
    white-space: nowrap;
    font-size: 21px;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: 0px;
    margin-left: 35%;
}

/*scrubber mobile styles*/
.scrubber-mobile {
    display: none !important;
    max-width: 720px;
    margin: 10px auto;
}
.scrubber-mobile-item {font-size: 0;}
.scrubber-mobile-item:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.scrubber-mobile-item > img {display: inline-block; vertical-align: middle;}

/*SLICK PLUGIN CUSTOM STYLES*/
.slick-track {display: flex !important; align-items: center;}

.slick-dots {
    display: block;
    text-align: center;
    list-style: none;
    padding: 0;
}

.slick-dots > li {
    display: inline-block;
    vertical-align: top;
    width: 15px;
    height: 15px;
    margin: 0 2px;
    border: 0;
    border: none;
    border-radius: 50%;
    background:#72a333;
    opacity: 0.6;
    cursor: pointer;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.slick-dots > li button {display: none;}
.slick-dots > li.slick-active {opacity: 1;}


/*RESPONSIVE*/
@media (max-width: 1030px) {
    .scrubber {
        display: none !important;
    }

    .scrubber-mobile {
        display: block !important;
    }
}