@charset 'UTF-8';
/* 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 {
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}
.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    font-size: 4rem;
    line-height: 1;
    font-weight: 300;
    color: #C20E1A;
    opacity: 1;
    -webkit-transition: opacity 0.25s ease;
    -ms-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.slick-prev {
    left: 0;
    bottom: calc(50% - 40px);
    /*left: calc(50% - 70px);
    bottom: -40px;*/
}
[dir='rtl'] .slick-prev {
    right: 0px;
    left: auto;
}
.slick-prev:before {
    content: '\f104';
}
[dir='rtl'] .slick-prev:before {
    background-image: url('../../style/img/arrow-right.svg');
}
.slick-next {
    right: 0;
    bottom: calc(50% - 40px);
    /*right: calc(50% - 70px);
    bottom: -40px;*/
}
[dir='rtl'] .slick-next {
    right: auto;
    left: 0px;
}
.slick-next:before {
    content: '\f105';
}
[dir='rtl'] .slick-next:before {
    background-image: url('../../style/img/arrow-left.svg');
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    box-shadow: 0 0 0 2px #000;
    background: rgba(255,255,255,0.3);
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}
.slick-dots li.slick-active button,
.slick-dots li:hover button {
    background-color: #ffffff;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.slick-dots li.slick-active button {
    width: 36px;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    
}