@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./images/ajax-loader.gif') center center no-repeat;
}

/* Dots */
.slick-dots
{
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 2% 0 0 0;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    vertical-align: middle;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 14px;
    height: 14px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
    background: transparent;
    border-radius: 7px;
    background-color: #222a2e;
    background-color: rgba(34,42,46,0.9);
    border-color: #e50000;
    border-color: rgba(229,0,0,0.9);
}
.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;
}
.slick-dots li button:before
{
    line-height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    content: '';
    text-align: center;
    opacity: 0;
    border-radius: 3px;
    background: #e50000;
    background: rgba(229,0,0,0.9);
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    color: black;
}
