body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

.hint {
    font-size: 14px;
}

.landing {
    width: 100vw;
    height: 35vh;
    position: relative;
}

.landing .header {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: white;
    font-size: 100%;
}

.landing .header h1 {
    margin: 0;
    font-size: 15vh;
    font-weight: bold;
    text-align: center;
    width: 100vw;
}

.landing .header p {
    margin: 0;
    font-size: 4vh;
    text-align: center;
    font-weight: normal;
    margin-left: 0.5vw;
}

.landing > .landing_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.landing > .landing_bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: linear-gradient(6deg, #000000db 0%, #00000098 20%, #00000000 40%);
}

@media screen and (max-width: 900px) {
    .landing .header h1 {
        font-size: 60px;
    }
    .landing .header p {
        font-size: 25px;
    }
}

@media screen and (max-width: 400px) {
    .landing .header h1 {
        font-size: 50px;
    }
    .landing .header p {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .landing {
        background: linear-gradient(4deg, #0000006f 0%, #00000000 30%);
    }
}

/*										// unkommentiere für Animation
#nav_logo_img {
    transition: width 0.2s ease;
    overflow: hidden;
}

#nav_logo_img.unscrolled {
    width: 0px;
}
*/

h2 {
    font-size: 55px;
    text-align: center;
}

h3 {
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
}

.events-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    max-width: 2000px;
    width: 90vw;
    margin: 0 auto;
    margin-top: 15px;
}

.event-card {
    background-color: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
    width: 600px;
    max-width: 45%;
}

.event-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.event-content {
    padding: 16px;
}

.event-date {
    font-size: 17px;
    color: #aaa;
    margin-bottom: 12px;
}

.event-title {
    font-size: 28px;
    margin: 10px 0 6px;
    color: #fff;
}

.event-description {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 12px;
}

.event-ticketbuy {
    font-size: 16px;
    color: white;
    margin-top: 16px;
}

@media screen and (max-width: 900px) {
    .event-card {
        max-width: 100%;
    }
}

#ticketbuy-step1 h5 {
    text-align: center;
    font-size: 21px;
    margin-bottom: 20px;
    margin-top: 35px;
}

.tickets {
    width: 100vw;
    min-height: 50vh;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
}

.tickets-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

.tickets.step2 {
    background-color: #dfdacd;
    margin-top: 0;
    color: black;
}

.tickets.step2 h2 {
    margin-bottom: 30px
}

#ticketbuy-step3 b {
    font-size: 24px;
    margin-top: 16px;
}

#ticketbuy-step3 p {
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
}

#ticketbuy-zf-price {
    border: 1px solid white;
    padding: 4px 8px;
    border-radius: 5px;
}

.step {
    text-align: center;
    margin: 0;
}

#ticketbuy-error {
    text-align: center;
    margin: 0;
    background-color: darkred;
    color: white;
    padding: 4px 8px;
    margin-bottom: 32px;
    border-radius: 8px;
    font-size: 22px;
}

.tickets > p {
    text-align: center;
}

.tickets h2 {
    margin: 0;
    margin-bottom: 40px;
}

.tickets > div {
    width: 50%;
}

.tickets > .map {
    height: 100%;
}

@media screen and (max-width: 600px) {
    .tickets, .ticketbuy-emailconfirm {
        height: auto;
        min-height: auto;
    }
}

.tickets-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    max-width: 2000px;
    width: 90vw;
    margin: 0 auto;
}

.ticket-card {
    background-color: #be7e10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: border 0.2s ease;
    width: 450px;
    max-width: 35%;
    border: 1px solid transparent;
}

.ticket-card:hover {
    border: 1px solid white;
}

.ticket-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.ticket-content {
    padding: 16px;
}

.ticket-title {
    font-size: 28px;
    margin: 10px 0 6px;
    color: #fff;
    font-weight: bold;
}

.ticket-title > span {
    float: right;
    font-weight: bold !important;
    border: 0.5px solid white;
    border-radius: 5px;
    background-color: white;
    color: #be7e10;
    font-size: 24px;
    padding: 0 3.5px;
}

.ticket-date {
    font-size: 17px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #fff9;
}

.ticket-description {
    font-size: 20px;
    color: white;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #fff9;
}

.ticket-ticketbuy {
    font-size: 22px;
    color: white;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #fff9;
    text-align: center;
}

.ticket-ticketbuy * {
    font-weight: bold !important;
}

.ticket-ticketbuy input {
    font-size: 22px;
    text-align: center;
    border-radius: 5px;
    border: none;
    background-color: white;
    color: #be7e10;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    .ticket-card {
        max-width: 100%;
    }
}

.ticket-submit {
    padding: 4px 16px;
    text-decoration: none;
    color: #E8F1F2;
    border: 2px solid #f4a216;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    background-color: #f4a216;
    vertical-align: middle;
    font-weight: bold;
    font-size: 20px;
}

.ticket-submit:hover {
    background-color: #f4a216;
    color: #131B23;
    font-style: normal;
}

.ticket-input {
    width: 300px;
    max-width: 95vw;
    font-size: 22px;
    text-align: center;
    border-radius: 5px;
    border: none;
    background-color: white;
    color: #be7e10;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 20px;
}

.ticket-input-label {
    font-size: 20px;
    text-align: center;
}

.ticketbuy-emailconfirm {
    width: 100vw;
    min-height: 50vh;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
    font-size: 20px;
}

.ticketbuy-emailconfirm p {
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
}

.ticketbuy-emailconfirm h2 {
    margin: 0;
    margin-bottom: 40px;
}

.ticketbuy-emailconfirm form {
    margin: 0;
    margin-top: 20px;
    text-align: center;
}

.ticketbuy-emailconfirm > div {
    width: calc(100% - 10px);
    padding: 0 10px;
}

#ticketbuy-step4 {
    flex-direction: column;
    gap: 0;
}


.helpinfo {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 25px;
    padding: 20px;
}

.helpinfo p {
    font-weight: bold;
}

.helpinfo h2 {
    margin-top: 10px;
}

.helpinfo > .hinfo {
    max-width: 35%;
}

.helpinfo > .image > img {
    max-width: 30vw;
    width: 200px;
    margin: 30px;
    filter: drop-shadow(4px 8px 16px rgba(0, 0, 0, 0.5));
}

.helpinfo a, .tickets-pay-action a {
    color: #be7e10;
    font-weight: bold;
}

#tickets-pay-action-privacy {
    display: none;
}

@media screen and (max-width: 600px) {
    .helpinfo div:first-of-type {
        width: 90%
    }

    .helpinfo {
        padding: 20px 0;
    }

    .helpinfo > .hinfo {
        max-width: 90%;
        text-align: justify;
    }

    .helpinfo .image img {
        max-width: 50vw;
    }
}

.tickets-pay-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 2000px;
    width: 90vw;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.tickets-pay-grid a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.payment-methods {
    display: flex;
    flex-direction: row;
    gap: 2vw;
}

.payment-method {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.payment-method img {
    width: 60px;
    max-width: 20vw;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #fff9;
}

.download_ticket {
    margin-bottom: 10px;
}

.order-status-title {
    font-size: 23px;
    margin-bottom: 0;
}

.order-status {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.order-status .finished {
    background-color: darkgreen;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 19px;
    margin-bottom: 10px;
    max-width: 95vw;
}

.order-status .finished p {
    margin: 0;
}

.order-status .finished a {
    color: #f4a216;
}

.order-status .finished p:not(:last-of-type) {
    margin-bottom: 10px;
}

.payment-status {
    width: 300px;
    max-width: 95vw;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.payment-status div:first-of-type {
    height: 100%;
    width: 80px;
    max-width: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    font-size: 24px;
}

.payment-status div:last-of-type {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    font-size: 20px;
    background-color: white;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.payment-status a {
    color: #f4a216;
}