/* --- swslang: slideshow_thumbnail --- */

/* common
---------------------------------------------------- */
.swSlideshow {
    position: relative;
    display: inline-block;
    width: 100%;
}
.swSlideshow .sliderContainer {
    overflow: hidden;
    position: relative;
    /* box-shadow: 1px 3px 5px rgba(0,0,0,0.5); */
}


/* item
---------------------------------------------------- */
.swSlideshow .item {
    width: 100% !important;
    height: auto;
    background-size: cover !important;
    background-position: center center;
    position: relative;
    float: left;
    cursor: grab;
}
.swSlideshow .item img {
    width: 100% !important;
    max-width: none;
    height: auto;
}
.swSlideshow .teaser {
    color: #ffffff;
    position: absolute;
    bottom: 0px;
    padding: 10px 10px 10px 10px;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


/* prev/next
---------------------------------------------------- */
.swSlideshow .sliderArrow {
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 1;
    opacity: 0.5;

}
.swSlideshow .next, .swSlideshow .prev {
    margin-top: -15px; /* -> minus height/2 */
    opacity: 1;
    position: absolute;
    display: table;
    width: 30px;
    font-weight: 100;
    font-size: 50px;
    line-height: 20px; /* center */
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}
.swSlideshow:hover .sliderArrow {
    opacity: 1;
}
.swSlideshow .next::before, .swSlideshow .prev::before {
    display: table-cell;
    opacity: 0.5;
}
.swSlideshow .next::before {
    content: "\203A";
}
.swSlideshow .prev::before {
    content: "\2039";
}
.swSlideshow .next:hover::before, .swSlideshow .prev:hover::before {
    opacity: 1;
}
.swSlideshow .next {
    right: 0px;
}
.swSlideshow .prev {}



/* thumbitem
---------------------------------------------------- */
.swSlideshow .thumb {
    margin: 5px 0px 0px 0px;
    font-size: 0px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
}
.swSlideshow .thumb .swiper-pagination-bullet {
    aspect-ratio: 100/100;
    margin: 0px 0px 0px 0px !important;
    width: 100%;
    height: auto;
    background-size: cover !important;
    background-position: center;
    border-radius: 0px;
    opacity: 1;
}
.swSlideshow .thumb .swiper-pagination-bullet-active {
    opacity: 0.5;
}

/* pagination
---------------------------------------------------- */
.swSlideshow .pagination {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
    display: table;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
}
.swSlideshow .pagination .swiper-pagination-bullet {
    display: table-cell;
    padding: 2px 2px 2px 2px;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    border-radius: 0px;
}
.swSlideshow .pagination .swiper-pagination-bullet:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 100%;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.8);
}
.swSlideshow .pagination .swiper-pagination-bullet:hover:before, .swSlideshow .pagination .swiper-pagination-bullet-active:before {
    background-color: #ffffff;
}
