/*
 * ***********************************************************
 * Custom Styles
 * @copyright sinntun
 * ***********************************************************
 */

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #eee;

    /* Zentriere den Inhalt */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide:first-child img {
    width: 100vw;
}

.swiper-pagination-bullets {
    bottom: 25px;
    position: absolute;
    width: fit-content;
    z-index: 100;
    display: none;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination-bullet {
    height: 20px;
    width: 20px;
    display: block;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: background .25s ease-in-out;
}

.swiper-button-prev {
    top: 50%;
    position: absolute;
    width: fit-content;
    z-index: 100;
    display: none;
    gap: 10px;
    left: calc(50% - 700px);
    cursor: pointer;
    transform: translateY(-50%);
}

.swiper-button-prev:before {
    content: '\f053';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    color: #fff;
    font-size: 50px;
}

.swiper-button-next {
    top: 50%;
    position: absolute;
    width: fit-content;
    z-index: 100;
    display: none;
    gap: 10px;
    right: calc(50% - 700px);
    cursor: pointer;
    transform: translateY(-50%);
}

.swiper-button-next:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro', sans-serif;
    color: #fff;
    font-size: 50px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #5E7461;
}

@media only screen and (max-width: 1600px){
    .swiper-button-prev {
        left: 100px;
    }

    .swiper-button-next {
        right: 100px;
    }
}

@media only screen and (max-width: 1300px){
    .swiper-button-prev {
        left: 50px;
    }

    .swiper-button-next {
        right: 50px;
    }
}

@media only screen and (max-width: 900px){
    .swiper-pagination-bullets {
        gap: 10px;
    }

    .swiper-pagination-bullet {
        height: 12px;
        width: 12px;
    }

    .swiper-button-prev::before {
        font-size: 35px;
    }

    .swiper-button-next::before {
        font-size: 35px;
    }

}

@media only screen and (max-width: 520px) {

    .swiper-pagination-bullets {
        gap: 3px;
    }

    .swiper-button-prev::before {
        font-size: 20px;
    }

    .swiper-pagination-bullet {
        height: 7px;
        width: 7px;
    }

    .swiper-button-next::before {
        font-size: 20px;
    }
}

.leaflet-marker-icon {
    filter: sepia(13%) saturate(60%) hue-rotate(253deg) brightness(114%);
}