﻿/* 
// #### ItSlider v0.6.5   03.09.2020 ####
 Author: Itay A
 https://plnkr.co/edit/xT0wjU0QRXkCl7J3pXV3?p=preview 
*/

.SliderWraper {
    display: inline-block;
    text-align: right;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 100%;
}

    .SliderWraper .SliderRow {
        display: inline-block;
        overflow-x: hidden;
        overflow-y: hidden;
        direction: rtl;
        white-space: nowrap;
        overflow: -moz-scrollbars-none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        display: flex;
    }

        .SliderWraper .SliderRow::-webkit-scrollbar {
            display: none;
        }

    .SliderWraper .Direction {
        font-size: 12px;
        height: 0;
        display: none;
        width: 100%;
        position: absolute;
    }

        .SliderWraper .Direction .Arrow {
            z-index: 20;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: none;
            align-items: center;
            background: #fff;
            justify-content: center;
            filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.15));
            position: absolute;
            cursor: pointer;
            display: inline-flex;
        }

            .SliderWraper .Direction .Arrow > img {
                width: 35px;
                height: 35px;
            }

        .SliderWraper .Direction .ArrowLeft {
            visibility: visible;
            left: -35px;
        }

        .SliderWraper .Direction .ArrowRight {
            direction: rtl;
            right: -35px;
        }

            .SliderWraper .Direction .ArrowRight > img {
                transform: scaleX(-1);
            }

    .SliderWraper .SliderRow .SlideNumber {
        display: flex;
        flex-direction: row;
        column-gap: 24px;
    }

@media screen and (max-width: 600px) {
    .SliderWraper .SliderRow {
        width: 100%;
    }

}
