/*-------------
keen-slider custom styles
-------------*/
.keen-slider--navigation-wrapper,
.keen-slider--navigation-track {
    position: relative;
}
.keen-slider-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.keen-slider-dots {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}
.keen-slider-dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    border-radius: 50%;
    background: #d9d7cf;
    color: rgba(255,255,255,0);
    font-size: 0;
    cursor: pointer;
}
.keen-slider-dot:focus {
    outline: none;
}
.keen-slider-dot--active {
    background: #333333;
    pointer-events: none;
}
.keen-slider-arrow {
    width: 8px;
    height: 8px;
    color: #333333;
    font-size: 0;
    cursor: pointer;
}
.keen-slider-arrow--left {
    left: 5px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}
.keen-slider-arrow--right {
    right: 5px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}
.keen-slider-arrow--disabled.keen-slider-arrow--left {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}
.keen-slider-arrow--disabled.keen-slider-arrow--right {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}
.keen-slider--fade{
    position: relative;
}
.keen-slider--fade__slide{
    opacity: 0;
    z-index: -1;
}
.keen-slider--fade__slide:not(.keen-slider--fade__slide--fade){
    position: absolute;
    top: 0;
    left: 0;
}
.keen-slider--fade__slide--fade{
    opacity: 1;
    z-index: 0;
}
.keen-slider--fade__slide--current{
    z-index: 1;
}
.keen-slider--thumbnail__slide{
    cursor: pointer;
}
.keen-slider--thumbnail__slide img{
    width: 100%;   
    height: auto;
}
