/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 100%;
    background: transparent;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    height: 4px;
    background: transparent;
}

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    border-radius: 50px;
    background: rgba(46, 41, 37, .8);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #2E2925;
}

.jspDrag {
    background: #ad9b7a;
    position: relative;
    top: 0;
    left: 4px;
    cursor: pointer;
    border-radius: 50px;
    width: 7px;
    background: rgba(173, 155, 122, 1);
    background: -moz-linear-gradient(top, rgba(173, 155, 122, 1) 0%, rgba(153, 143, 127, 1) 52%, rgba(140, 131, 115, 1) 53%, rgba(55, 43, 29, 1) 99%, rgba(55, 43, 29, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(173, 155, 122, 1)), color-stop(52%, rgba(153, 143, 127, 1)), color-stop(53%, rgba(140, 131, 115, 1)), color-stop(99%, rgba(55, 43, 29, 1)), color-stop(100%, rgba(55, 43, 29, 1)));
    background: -webkit-linear-gradient(top, rgba(173, 155, 122, 1) 0%, rgba(153, 143, 127, 1) 52%, rgba(140, 131, 115, 1) 53%, rgba(55, 43, 29, 1) 99%, rgba(55, 43, 29, 1) 100%);
    background: -o-linear-gradient(top, rgba(173, 155, 122, 1) 0%, rgba(153, 143, 127, 1) 52%, rgba(140, 131, 115, 1) 53%, rgba(55, 43, 29, 1) 99%, rgba(55, 43, 29, 1) 100%);
    background: -ms-linear-gradient(top, rgba(173, 155, 122, 1) 0%, rgba(153, 143, 127, 1) 52%, rgba(140, 131, 115, 1) 53%, rgba(55, 43, 29, 1) 99%, rgba(55, 43, 29, 1) 100%);
    background: linear-gradient(to bottom, rgba(173, 155, 122, 1) 0%, rgba(153, 143, 127, 1) 52%, rgba(140, 131, 115, 1) 53%, rgba(55, 43, 29, 1) 99%, rgba(55, 43, 29, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ad9b7a', endColorstr='#372b1d', GradientType=0);
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 100%;
}

.jspArrow {
    background: #be9e81;
    text-indent: -20000px;
    display: block;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.jspArrow.jspDisabled {
    cursor: default;
    background: #231b11;
}

.jspVerticalBar .jspArrow {
    height: 16px;
}

.jspHorizontalBar .jspArrow {
    width: 16px;
    float: left;
    height: 100%;
    display: none;
}

.jspVerticalBar .jspArrow:focus {
    outline: none;
}

.jspCorner {
    background: #eeeef4;
    float: left;
    height: 100%;
}


/* Yuk! CSS Hack for IE6 3 pixel bug :( */

* html .jspCorner {
    margin: 0 -3px 0 0;
}

@media (min-width: 765px) {
    .jspHorizontalBar {
        bottom: 10%;
        height: 8px;
    }
    .jspTrack {
        overflow: hidden;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .jspHorizontalBar .jspArrow {
        position: absolute;
        top: -90vh;
        height: 100vh;
        width: 200px;
        background-color: transparent;
        display: block;
        background-repeat: no-repeat;
        background-position: 6% 60%;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 5px #222);
        animation-duration: 1.5s;
        animation-name: featrue_arrow;
        animation-iteration-count: infinite;
    }
    .jspHorizontalBar .jspArrowLeft {
        left: 0;
        background-image: url('https://cdn.volia.biz/tXopi_6wauPUrJbGmxjVQ.png');
    }
    .jspHorizontalBar .jspArrowRight {
        animation-delay: .5s;
        background-position: 94% 60%;
        right: 0;
        background-image: url('https://cdn.volia.biz/8ZPOHfMgGIy741jWi0aRk.png');
    }
}

@media (min-width: 1400px) {
    .jspHorizontalBar .jspArrow {
        width: 250px;
    }
}

@keyframes featrue_arrow {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}
