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

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next{
    position: absolute;
    bottom: 25px;
    font-size: 0;
    line-height: 0;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    color: #000;
    z-index: 5;
    background: #fff;
    border-radius: 100%;
    transition: 250ms;
}
.slick-prev:focus,
.slick-next:focus{
    outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
    opacity: 1;
}

.slick-prev:before,
.slick-next:before{
    font-family: 'themify', arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}
.slick-prev{right: 70px}
.slick-prev:before{
    content: "\e64a";
}
.slick-next{right: 25px}
.slick-next:before{
    content: "\e649";
}
.slick-prev:hover,
.slick-next:hover{
    background: #000;
    color: #fff;
}



.slick-dots{
    position: absolute;
    bottom: -20px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    width: 12px!important;
    height: 12px!important;
    border-radius: 100%;
    border: 1px solid #515151;
    margin: 0 5px!important;
    padding: 0!important;
    box-sizing: border-box;
    cursor: pointer;
    transition: 350ms;
}
.slick-dots li:hover{
    border-color: #b3cc30;
}
.slick-dots li.slick-active{
    border-color: #b3cc30;
    background: #b3cc30;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
