:root{
    --color-gold: #c9ae14;
}


#panthers-introduction{
    display: block;
    height: 200px;
    background-image: url('/assets/img/introduction/crowd.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    #panthers-introduction{
        display: none;
    }
}

.introduction-label > h1{
    font-size: 3.3em;
    letter-spacing: .1em;
}

.introduction-logo > img{
    width: 120px;
}
.bg-ig{
    /* background-image: url('/assets/img/custom/ig-bg.jpg'); */
    /* background:linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); */
}

/* Saison Tabs */
.nav-tabs-image .nav-tabs {
    border: none;
}

.nav-tabs-image .nav-item {
    flex: 1 1 0px;
}

.nav-tabs-image .nav-tabs li .nav-link,
.nav-tabs-image .nav-tabs li .nav-link:hover {
    background: none;
    border-radius: 0;
}

.nav-tabs-image .nav-item.nav-item-herren {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/img/custom/test/9.jpg');
    background-size: cover;
    background-position: center;
}

.nav-tabs-image .nav-item.nav-item-herren.active {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/img/custom/test/9.jpg');
    background-size: cover;
    background-position: center;
}

.nav-tabs-image .nav-item.nav-item-jugend {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/img/custom/test/12.jpg');
    background-size: cover;
    background-position: center;
}

.nav-tabs-image .nav-item.nav-item-jugend.active {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/img/custom/test/12.jpg');
    background-size: cover;
    background-position: center;
}

.nav-tabs-image .nav-tabs li .nav-link,
.nav-tabs-image .nav-tabs li .nav-link:active,
.nav-tabs-image .nav-tabs li .nav-link:hover,
.nav-tabs-image .nav-tabs li .nav-link:focus,
.nav-tabs-image .nav-tabs li .nav-link:hover,
html body .nav-tabs-image.tabs .nav-tabs .nav-link:hover,
html body .nav-tabs-image.tabs .nav-tabs .nav-link.active {
    border: 1px solid gray;
    border-top-color: gray;
}

/* Spieltabelle */
.scoreboard {
    width: 100%;
}

.scoreboard th {
    padding: 5px 10px;
    border-bottom: 1px solid #E3E3E3;
}

.scoreboard thead {}

.scoreboard td {
    border-top: 1px solid #E3E3E3;
    padding: 5px 10px;
}

.scoreboard tbody {}

/* Schedule */
.schedule {}

.schedule .event {}

.schedule .event .event-body {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
}

.schedule .event .event-body .team {
    display: flex;
    align-items: center;
    gap: 25px;
}

.schedule .event .event-body .team:first-child {
    flex-direction: row-reverse;
}

.schedule .event .event-body .team:last-child {}

.schedule .event .event-body .team .logo {
    order: 1;
    width: 80px;
    text-align: center;
}

.schedule .event .event-body .team .logo img {
    max-height: 80px;
    max-width: 80px;
}

.schedule .event .event-body .team .team-name {
    order: 2;
    font-size: 2em;
}

.schedule .event .event-body .game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.schedule .event .event-body .game .score {
    font-size: 2em;
}

.schedule .event .event-body .game .date {}

.schedule .event .event-body .game .location {}