@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    max-height: 350px;
    line-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 5%;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: 0;
    background: transparent;
    z-index: 10;
    font-size: 25px;
    color: #fff;
    opacity: .7;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
}
button.slick-prev:focus,
button.slick-next:focus {
    outline: none!important;
}
.slick-prev:hover,
.slick-next:hover {
    opacity: 1;
}

.slick-prev
{
    left: 0;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}

.slick-next
{
    right: 0;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    margin: 0 4px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    border-radius: 50%;
    width: 9px;
    height: 9px;
    background-color: #4e4d4d;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    cursor: pointer;
    color: transparent;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}
.slick-dots li.slick-active button
{
    background-color: #626161;
    width: 13px;
    height: 13px;
}
