:root{
    --swiper-navigation-sides-offset: -80px;
}
.swiper-container {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
}
  
.angebot {
    width: 80%;
    transform: translateX(-200px);
    padding-left: 200px;
    overflow: visible;
}
  
.angebot .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.35;
}
.angebot .swiper-slide-visible {
    opacity: 1 !important;
}
.angebot .swiper-button-prev, .angebot .swiper-button-next {
    background-repeat: no-repeat;
    background-size: contain;
}
.angebot .swiper-button-prev::after, .angebot .swiper-button-next::after {
    content: '';
}
.angebot .swiper-button-next {
    background-image: url("/wp-content/uploads/2023/07/circle-right-arrow.svg");
    width: 40px;
    height: 40px;
}
.angebot .swiper-button-prev {
    background-image: url("/wp-content/uploads/2023/07/circle-left-arrow.svg");
    width: 40px;
    height: 40px;
    left: 50px;
}
.swiper-button-disabled {
    opacity: 0 !important;
}

.angebot-container {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    justify-content: space-between;
}
.angebot-image img {
    height: 100% !important;
    width: 300px !important;
    object-fit: cover !important;
}

.angebot-subtitle {
    font-size: var(--font-size-small);
}
.angebot-subcontainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.angebot-timeframe {
    display: flex;
    flex-direction: column;
    width: auto;
    padding: 0px 10px
}
.angebot-timeframe p {
    margin: 0;
}
/* Calender not visible: Why?*/
.angebot-calender {
    max-width: 20px;
    max-height: 20px;
}
.angebot-calender img {
    object-fit: contain;
}
.angebot-button {
    justify-self: end;
}
@media only screen and (max-width: 767px){
    .angebot {
        width: 100%;
        transform: none;
        padding-left: 0;
    }
    .angebot .swiper-button-prev {
        left: 0px;
    }
    .angebot .swiper-button-next, .angebot .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}