/* SPEISEKARTE */

.speisekarte-header {
    text-align: center;
    font-family: "Domine", serif;
    color: white;
    margin-top: 32px;
    font-size: 32px;
}

.seite {
    max-width: 1000px;
    width: 100%;
    margin: 16px auto 32px auto;
    display: flex;
    flex-wrap: wrap;
    color: white;
}

.gericht {
    width: 50%;
    padding: 16px;
}

.gericht:last-of-type {
    padding-bottom: 0 !important;
}

.gericht-top {
    display: flex;
    align-items: end;
}

.gericht-seperator {
    margin: 0 8px;
    flex-grow: 1;
    display: block;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
}

.gericht-desc {
    margin-top: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.subtext {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 32px auto;
    color: white;
    text-align: center;
    font-family: "Domine", serif;
}

.subtext p {
    font-family: "Domine", serif;
}

.swiper-slide {
    background-color: black;
}

.swiper-pagination-bullet {
    background-color: rgba(255,255,255,0.6) !important;
}

.swiper-pagination-bullet-active {
    background-color: rgba(255,255,255,1) !important;
}

.swiper-slide {
    height: auto !important;
}

.swipe-buttons {
    max-width: 1000px;
    width: 100%;
    left: 50%;
    position: absolute;
    z-index: 9997;
    top: 32px;
    transform: translate(-50%,0);
    display: flex;
    justify-content: space-between;
}

.swipe-prev,
.swipe-next {
    color: white;
    cursor: pointer;
    font-size: 32px !important;
}

@media only screen and (max-width: 400px) {
    .gericht {
        width: 100%;
    }

    .speisekarte-header {
        font-size: 24px;
    }
}