
/* Slider */

/* Arrows */
.slick-prev,
.slick-next
{
    z-index: 999;
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top: 50%;
    padding: 0;
    margin-top: -10px\9;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
}

.slick-prev
{
    margin: 0;
    left: -80px;
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
}

.slick-next
{
    margin: 0;
    right: -80px;
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
}

/* Dots */
.slick-dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0 15px;
}

.slick-dots li button {
    display: block;
    margin: 0;
    padding: 0;
    background: white;
    width: 15px;
    height: 15px;
    border: 0;
    text-indent: -9999px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.slick-dots li button:hover {
    background: #ddd;
}

.slick-dots li.slick-active button {
    background: #ddd;
}

.slick-dots li button:focus
{
    outline: none;
}