@charset 'UTF-8';

/* Arrows */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top:50%;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    transform: translateY(-50%);
    z-index: 2;
}
.slick-prev.slick-disabled, .slick-next.slick-disabled {
    display: none !important;
}
.slick-prev {
    left:32px;
    background:url(../images/arrow-left.svg) no-repeat center center;
    background-size:32px 32px;
    transition: all .3s ease;
}
.slick-next {
    right:32px;
    background:url(../images/arrow-right.svg) no-repeat center center;
    background-size:32px 32px;
    transition: all .3s ease;
}
.sbi-testi .slick-prev {
    left:0;
}
.sbi-testi .slick-next {
    right:0;
}
.sbi-icar .slick-prev, .sbi-icar .slick-next {
    top:calc(100% + 32px);
    transform: none;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 48px;
    display: block;
    width: 100%;
    padding: 0 78px 0 0 !important;
    margin: 0 !important;
    list-style: none;
    text-align: right;
}
.scount-1 .slick-dots {
    display: none;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: transparent;
    border: 1px solid #E30613;
    outline: none;
    background:#fff;
    position: relative;
    border-radius: 50%;
}
.slick-dots li.slick-active button:after {
    content:"";
    position: absolute;
    top:5px;
    left:5px;
    width:12px;
    height:12px;
    background:#E30613;
    border-radius: 50%;
}

@media only screen and (max-width:1440px) {
    .slick-dots {
        bottom: 32px;
        padding: 0 32px 0 0 !important;
    }
    .slick-dots li {
        width: 20px;
        height: 20px;
        margin: 0 4px;
    }
    .slick-dots li button {
        width: 20px;
        height: 20px;
    }
    .slick-dots li.slick-active button:after {
        width:8px;
        height:8px;
    }
}
@media only screen and (max-width:1210px) {
    .sbi-testi .slick-prev, .sbi-testi .slick-next {
        top:calc(100% + 32px);
        transform: none;
    }
}
@media only screen and (max-width:480px) {
    .slick-dots {
        bottom: 16px;
        padding: 0 16px 0 0 !important;
    }
    .slick-dots li, .slick-dots li button {
        width: 16px;
        height: 16px;
    }
    .slick-dots li.slick-active button:after {
        top:3px;
        left:3px;
        width:8px;
        height:8px;
    }
}