/*@charset 'UTF-8';*/

/* --- 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');
}

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

.slick-dots {
    position: absolute;
    bottom: -22px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: block;
    height: 40px;
    z-index: 1;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border-radius: 100%;
    outline: none;
    background: white;
    display: flex;
    justify-content: center;
    align-content: center;
    border: 1px solid #e6e6e6;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    border: 1px solid #e6e6e6 !important;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    content: "";
    opacity: 1;
    background: white;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    top: 5px;
    transition: all 0.5s linear;
}

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