/* <a href="https://www.jqueryscript.net/slider/">Slider</a> */

.container_row {
    margin-top: 50px;
    margin-bottom: 100px;
    text-align: center;
}

/* Slider */

.slider {
    user-select: none;
    display: inline-block;
    position: relative;
}

.slider_first {
    // width: 459px;
}


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

.animate {
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.slider_item {
    float: left;
}

.slider_item img {
    display: block;
    max-width: 100%;
    height: auto;
    background-size: cover;
}

.slider_nav.is-disabled {
    display: none;
}

.slider_control-nav {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: -50px;
    text-align: center;
}

/*--- DOTS --*/
.slider_control-nav-item {
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: solid 1px #a20530;
}

.slider_control-nav-item:hover {
    opacity: 0.3;
}

.slider_control-nav-item.is-active {
    background: #a20530;
    //cursor: default;
}

.slider_arrow {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 26px;
    height: 49px;
    z-index: 999;
    cursor: pointer;
}

.slider_arrow.is-disabled {
    cursor: default;
    opacity: 0.5;
}

.slider_arrow:hover {
    opacity: 0.5;
}

.slider_arrow__right {
    right: -40px;
    background: url(../images/arrow_right.png) no-repeat 0 0;
}

.slider_arrow__left {
    left: -40px;
    background: url(../images/arrow_left.png) no-repeat 0 0;
}

.slider__fullwidth .slider_viewport::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/dot.png) repeat 0 0;
}

.slider__carousel {
    overflow: hidden;
}

.slider__carousel::before,
.slider__carousel::after {
    content: "";
    width: 150px;
    position: absolute;
    top: -5px;
    bottom: -5px;
    z-index: 200;
}

.slider__carousel::before {
    left: -5px;
    background: -webkit-linear-gradient(left, #fff 10%, transparent);
    background: linear-gradient(to right, #fff 10%, transparent);
}

.slider__carousel::after {
    right: -5px;
    background: -webkit-linear-gradient(right, #fff 10%, transparent);
    background: linear-gradient(to left, #fff 10%, transparent);
}

.slider__carousel .slider_viewport {
    overflow: visible;
    width: 250px;
    margin: 0 auto;
}

.slider__carousel .slider_arrow__left {
    left: 70px;
}

.slider__carousel .slider_arrow__right {
    right: 70px;
}


/*----------  MOBILE 480px STYLES  ------------------------------------------------------------*/


@media only screen and (min-device-width : 375px) and (max-device-width : 480px) {

    .slider {
        display: flex;
    }

    .slider_arrow {
        display: none;

    }


}