body {
    font-family: 'Raleway', sans-serif;
    color: var(--txt);
    background-color: var(--bgc);
}

table th,
table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    color: var(--txt);
}

a,
button.navbar-toggler,
#navbarNav a {
    color: var(--lnk) !important;
}

#navbarNav a {
    text-decoration: none;
    font-weight: 700;
}
a.navbar-brand {
    max-width: 70%;
}
a.navbar-brand img {
    max-width: 80%;
}
h1,
h2,
h3 {
    color: var(--tit);
}
form.stripe-form p {
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #000000;
}
form.stripe-form {
    width: 200px;
    padding: 20px;
    background: #fff;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}
.main-image {
    text-align: center;
}

.main-image img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.exoptions {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    user-select: none;
}

.exoptions .option {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 220px;
    padding-top: 20px;
    cursor: pointer;
    background: #6060600f;
    border-radius: 10px;
    text-align: center;
}
.exoptions .option label {
    font-size: 1.3rem;
    font-weight: 700;
}

.exoptions .option input[type='radio'] {
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 30px;
}

@media print {
    * {
        color: #000000 !important
    }

    .d-print {
        display: block !important;
    }

    .no-print {
        display: none !important;
    }
}

.form-holder {
    max-width: 600px;
    margin: auto;
}
.form-holder label {
    font-weight: 700;
}

.selflightbox {
    cursor: zoom-in;
}
body.lightbox-open {
    overflow-y: hidden;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    background: #000000cc;
}
.lightbox img {
    max-width: 85%;
    max-height: 85%;
    display: block;
    margin: auto;
}
.lightbox .close {
    position: absolute;
    color: red;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    text-shadow: none;
    z-index: 99999999;
    opacity: 1;
    font-weight: 400;
    cursor: pointer;
    line-height: 32px;
}


@media (max-width: 768px) {
    .tickets {
        justify-content: center !important;
    }
}

.tickets {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 20px 0;
    user-select: none;
    align-content: flex-start;
}
.ticket {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 150px;
    gap: 10px;
    cursor: pointer;
    border-radius: 10px;
    background: #6060600f;
    padding: 10px;
    text-align: center;
}
.ticket input[type='checkbox'],
.ticket input[type='radio'] {
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 20px;
}
.ticket strong {
    display: block;
    margin: 0 auto;
    font-size: 1.2em;
    font-weight: bold;
}
.ticket span {
    display: block;
    margin: 0 auto;
    font-size: 1em;
    color: var(--lnk);
}
table.table-centered th, table.table-centered td {
    text-align: center;
}
table.table-small {
    width: unset;
    margin: auto;
}

.gb-footer {
    background: #ffffff;
    color: #2e3094;
    padding: 20px;
    text-align: center;
    z-index: 999;
    position: relative;
}
.gb-footer.text-center p {
    padding: 0;
    margin: 0;
}
.gb-footer img {
    height: 20px;
    vertical-align: middle;
}
.gb-footer a, .gb-footer a:hover {
    text-decoration: none;
    color: #2e3094 !important;
}
    a.app-badge {
        position: absolute;
        top: 0;
        color: #FFFFFF !important;
        background: #2e3094;
        padding: 10px;
        font-weight: 700;
        text-decoration: underline;
        z-index: 9999999;
    }
@media (min-width: 992px){
    a.app-badge {
        left: 0;

    }
}
@media (max-width: 991px){
    a.app-badge {
        right: 0;
    }
}
.jumbotron {
    background-color: var(--txt);
    color: var(--bgc);
}
.jumbotron h1.display-4 {
    color: var(--bgc) !important;
}
.jumbotron a.btn {
    color: #fff !important;
}