.easy-carousel{
    position: relative;
    direction:ltr;
}
    .easy-carousel .carousel-wrapper {
        overflow: hidden;
    }

    .easy-carousel .carousel-scroll {
        display: flex;
        width: 100%;
        height: 100%;
        -webkit-transition: -webkit-transform 300ms;
        transition: transform 300ms;
    }


    .easy-carousel .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
        display: block;
        float: none;
        margin: 0;
    }
.easy-carousel .carousel-pagination{
    text-align: center;
    margin: 30px 0 0;
    padding: 3px 0;
}
.easy-carousel .pagination-bullet{
    width: 10px;
    height:10px;
    background: #ccc;
    border: 2px solid  #ccc;
    display: inline-block;
    margin: 0px 6px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all ease-in 300ms;
    box-shadow: 0 0 0 2px transparent,0 0 0 5px transparent inset;
    backface-visibility: hidden;
} 
.easy-carousel .pagination-bullet.active{
    background-color: currentColor;
    box-shadow: 0 0 0 2px currentColor,0 0 0 5px currentColor inset;
    width: 25px;
    height: 10px;
    border-radius: 30px;
    color:#e17b20;
    border: none;
}
.easy-carousel .carousel-navigation{
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
}
.easy-carousel .carousel-navigation span {
    width: 15px;
    height: 15px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -4px;
    transform: rotate(-45deg) translate3d(0,0,0);
}
.easy-carousel .carousel-navigation[disabled]{
    opacity: 0.2 !important;
    cursor:auto;
}

.easy-carousel .carousel-prev{
    left: 15px;
}

.easy-carousel .carousel-next{
    right: 15px;
}

.easy-carousel .carousel-next span{
    margin: -8px 0 0 -11px;
    transform: rotate(135deg) translate3d(0,0,0);
}
.easy-carousel.mousemove .drag{
    content: "";
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999999;
}

.easy-carousel.mousemove .carousel-item{
    pointer-events: none;
}

.easy-carousel .carousel-item{
    transition: all ease-in 300ms; 
}


html.html-night .easy-carousel .pagination-bullet.active{
    background-color: var(--accent-color-black);
    border-color: var(--accent-color-black);
    box-shadow: 0 0 0 2px var(--accent-color-black),0 0 0 5px var(--accent-color-black) inset;
}
 .easy-carousel.easy-carousel02 .carousel-wrapper {
    margin: 0 -15px;
}
.easy-carousel.easy-carousel02 .carousel-item {
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.easy-carousel02 .cont {
    z-index: 1;
    position: relative;
    text-align: center;
    border: 1px solid var(--line-color);
    border-top: none;
    padding: 0 35px 25px;
    flex-grow: 1;
    background-color: #fff;
}
/*.easy-carousel02 .title {*/
/*    color: #2e323c;*/
/*    font-size: 1.125rem;*/
/*    background-color: #fff;*/
/*    margin: 0px 0 10px;*/
/*    display: inline-block;*/
/*    width: 210px;*/
/*    padding: 18px 10px;*/
/*    position: relative;*/
/*    top: -30px;*/
/*}*/
/*.easy-carousel02 .title::after {*/
/*    content: "";*/
/*    border-right: 2px solid var(--accent-color);*/
/*    height: 20px;*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 50%;*/
/*    margin: -4px 0 0;*/
/*}*/
.easy-carousel02 .description {
    color: #494e5c;
}
.easy-carousel02 .link {
    font-size: 1.625rem;
    margin-top: 14px;
    display: inline-block;
    line-height: 1;
    color: var(--accent-color);
}
.easy-carousel.easy-carousel02 .carousel-pagination {
    text-align: center;
}
html.html-night .easy-carousel02 .cont, html.html-night .easy-carousel02 .title {
    border-color: #313131;
    background-color: #0a0a0a;
}
html.html-night .easy-carousel02 .title {
    background-color: #0a0a0a;
}
.easy-carousel02.easy-carousel .carousel-prev {
    left: -45px;
}
.easy-carousel02.easy-carousel .carousel-next {
    right: -45px;
}
.easy-carousel02.easy-carousel .full-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.easy-carousel02.easy-carousel .full-link:focus {
    outline-offset: -3px !important;
}



