/*@charset 'UTF-8';*/

/* Slider */
.slick-loading .slick-list {
    /*background: #fff url('./ajax-loader.gif') center center no-repeat;*/
}

/* Arrows */

.slick-arrow {
    position: absolute;
    cursor: pointer;
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/*slick-next*/

.slick-next.slick-disabled {
    cursor: default;
    opacity: 0.7
}

.slick-next {
    right: 20px;
}

.slick-next img,
.slick-next svg {
    transform: rotate(180deg);
}

/*slick-prev*/

.slick-prev.slick-disabled {
    cursor: default;
    opacity: 0.7
}

.slick-prev {
    left: 20px;
}

/* Dots */
.slick-dotted.slick-slider {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.slick-dots {
    position: absolute;
    bottom: -37px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 22px;
    height: 22px;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    /*background: url(../img/dotted.png) no-repeat;*/
    background: rgba(0,0,0,0);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover {
    /*background: url(../img/dotted-a.png) no-repeat;*/
    background: rgba(0,0,0,0);
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 1px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: transparent;
    text-indent: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: transparent;
    /*background: url(../img/dotted-a.png) no-repeat;*/
    background: rgba(0,0,0,0);
}
