/*!
* chiefSlider
*   site: https://itchief.ru/javascript/slider
*   github: https://github.com/itchief/ui-components
*
* Copyright 2018-2021 Alexander Maltsev
* Licensed under MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
*/

.slider {
    position: relative
}

.slider__container {
    overflow: hidden
}

.slider__items {
    display: flex;
    transition: transform .5s ease
}

.slider_disable-transition {
    transition: none
}

.slider__item { 
    flex:0 0 25%;
    max-width: 25%;
    user-select: none
}


.slider__indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
    margin-top: 0;
    margin-bottom: 0
}

    .slider__indicators li {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 5px;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: rgba(255,255,255,.5);
        background-clip: padding-box;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent
    }

        .slider__indicators li.active {
            background-color: rgba(255,255,255,.9)
        }
