#header_container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: white;
    z-index: 9;
}

#bb_container {
    width: 100%;
    height: 60px;
    padding: 10px;

    box-sizing: border-box;
    display: flex;

    justify-content: center;
    align-items: center;
    background-color: #333;
}

#bb_container img {
    height: 100%;
}





#score_container {
    width: 100%;
    height: 20vh;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw 0px;

    background: linear-gradient(90deg, var(--ot_color) 50%, var(--ct_color) 50%);
}
#team_score_ct {
    color: white;
}

.team_score_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team_score_container img {
    width: 50%;
    max-width: 180px;
}

#team_score_separator {
    width: 1px;
    height: 50%;
    background: #0001;
}

.score_label {
    font-size: 26pt;
    padding-top: 1vh;
    font-weight: 600;
}



.h_separator {
    position: relative;
    height: 1px;
    width: 100%;
    background-color: #eee;
}




#list_container {
    width: 100%;
}

.list_item {
    position: relative;

    height: 10vw;
    background: white;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

.list_player_name,
.list_score_separator,
.list_score {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list_player_name {
    flex: 1;
    text-align: center;
}
.list_score_separator {
    width: 15px;
}
.list_score {
    width: 12vw;
    font-size: 16pt;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.list_score > *:nth-child(2) {
    font-size: 10pt;
}



.list_item.ot_winning {
    background: linear-gradient(90deg, var(--ot_color) 50%, #0000 50%);
}
.list_item.ct_winning {
    background: linear-gradient(90deg, #0000 50%, var(--ct_color) 50%);
}
.list_item.ct_winning .ct_points,
.list_item.ct_winning .ct_points {
    color: white;
}

.list_item.ot_won {
    background: var(--ot_color);
}
.list_item.ct_won {
    background: var(--ct_color);
    color: white;
}
.list_item.tied_won {
    background: linear-gradient(90deg, var(--ot_color) 50%, var(--ct_color) 50%);
}
.list_item.tied_won .ct_points,
.list_item.tied_won .ct {
    color: white;
}






.index_text {
    position: absolute;
    z-index: 8;
    top: 0;
    padding: 5px;
    font-size: 9pt;
}
.index_team {
    left: 0;
}
.index_hole {
    right: 0;
}