/* You can remove this page div in your website */
/* #page{
    width:100%;
    height:100%;
    position:absolute;
    background:#eee;
  }
  /* Our normalize css */
/* * {
    margin: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

/* Our wrapper */
.qm-tripple-slider.wrapper{
    position: relative;
    width: 100%;
    height: 600px;
    overflow:hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }


/* Our image information */
.qm-tripple-slider.bottom,
.qm-tripple-slider.middle,
.qm-tripple-slider.top {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}
.qm-tripple-slider.top img {
    height: 100%;
}

.qm-tripple-slider.bottom {
    background: #2196f3;
}

.qm-tripple-slider.middle {
    background: #bbdefb;
}

.qm-tripple-slider.top {
    background: #ffffff;
}

.qm-tripple-slider.top {
    width: 125px;
}

.qm-tripple-slider.scroller {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.9;
    transition: opacity 0.12s ease-in-out;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
}

.qm-tripple-slider.scroller-middle {
    margin-top: 25px;
}

.qm-tripple-slider.scroller-top {
    margin-top: -25px;
}


.qm-tripple-slider.scroller:hover {
    opacity: 1;
}

.qm-tripple-slider.scrolling {
    pointer-events: none;
    opacity: 1;
    /* z-index: 1; */
}

.qm-tripple-slider.scroller__thumb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 7px;
}

.qm-tripple-slider.scroller:before,
.qm-tripple-slider.scroller:after {
    content: " ";
    display: block;
    width: 7px;
    height: 9999px;
    position: absolute;
    left: 50%;
    margin-left: -3.5px;
    z-index: 30;
    transition: 0.1s;
    box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
}

.qm-tripple-slider.scroller:before {
    top: 49px;
}

.qm-tripple-slider.scroller:after {
    bottom: 49px;
}

/* If you want to cahnge the colors, make sure you change the fill in the svgs to match */
.qm-tripple-slider.scroller-middle>.scroller__thumb {
    border: 5px solid #595959;
}

.qm-tripple-slider.scroller-middle:before,
.qm-tripple-slider.scroller-middle:after {
    background: #595959;
}

.qm-tripple-slider.scroller-top>.scroller__thumb {
    border: 5px solid #8F8878;
}

.qm-tripple-slider.scroller-top:before,
.qm-tripple-slider.scroller-top:after {
    background: #8F8878;
}