/* Arrows */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 0px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 11;
    top:50%;
	transform:translateY(-50%);
    opacity: 1;
    transition: all 0.3s linear;
}
.slick-prev:hover, .slick-prev:active, .slick-prev:focus, .slick-next:hover, .slick-next:active, .slick-next:focus {
    opacity: 1;
}
.slick-prev:hover:before, .slick-prev:active:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:active:before, .slick-next:focus:before {
    background:red;
}
.slick-prev {
    left: -30px;
}
.slick-next {
    right: 15px;
}
.slick-prev:before {
    content: "";
    mask:url("../images/arrow-left.png");
    background:white;
    width:50px;
    height:50px;
    position: absolute;
    transition: all 0.3s linear;
}
.slick-next:before {
    content: "";
    mask:url("../images/arrow-right.png");
    background:white;
    width:50px;
    height:50px;
    position: absolute;
    transition: all 0.3s linear;
}
/* Dots */
.slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    margin: 0;
    list-style: none;
    text-align: left;
    padding: 0 0.5em;
}
@media (min-width: 769px) {
    .slick-dots {
        padding: 0 1.5em;
    }
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    cursor: pointer;
    color: transparent;
    border-radius: 50%;
    border: 0;
    background-color: transparent;
}
.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    content: "";
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50%;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
.slick-dots li.slick-active button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    content: "";
    background-color: white;
    border: 1px solid white;
    border-radius: 50%;
}