@charset 'UTF-8';
/* Arrows */

.slick-prev:hover,
.slick-next:hover{ background: rgba(22,95,187,1);transition: all 0.3s ease 0s;}

.slick-prev,
.slick-next
{
    font-size: 18px;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 100%;

    cursor: pointer;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);

    color: #fff;
    border: none;
    outline: none;
    background-repeat: no-repeat;
    background-position: center;
	background:rgba(0,0,0,0.5);
	transition: all 0.3s ease 0s;
}
.slick-prev
{
    left: 10px;
    z-index: 80;
}
[dir='rtl'] .slick-prev
{
    right: 10px;
    left: auto;
}
.slick-next
{
    right: 10px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 10px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 8px;

    cursor: pointer;
}
.slick-dots li button
{
    display: none;
}
