/* ALL SCORES TABLE */
.table-container {
    display: block;
    width: 100%;
    max-height: 716px;
    /* Recommend having 'height' and 'width' settings leave clean breaks between rows and columns */
    overflow: scroll;
    /* Show scrollbars */
    /* -ms-overflow-style: none; */
    /* Hide scrollbar for IE and Edge */
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.table-container::-webkit-scrollbar {
    /* display: none; */
    /* Hide scrollbar for Chrome, Safari and Opera */
    width: .4375rem;
    height: .4375rem;
}

.table-container::-webkit-scrollbar-track {
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: rgb(127,127,127);
    border-radius: 10px;
    transition: all .3s ease;
}

.allScoresTable table {
    border-collapse: separate !important;
    border-spacing: 0;
}

.allScoresTable table th img {
    width: 1.5rem;
    display: block;
    margin: auto;
    padding-top: .75rem;
}

.allScoresTable table th:first-child img {
    margin: 0;
}

.allScoresTable thead tr {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}

.allScoresTable thead tr th,
.allScoresTable tbody tr td {
    font-size: .875rem;
    text-align: center;
    vertical-align: center;
    cursor: pointer;
    user-select: none;
    background-color: var(--white);
}

.allScoresTable thead tr th {
    font-weight: 600;
    vertical-align: bottom;
    border-bottom: 3px solid var(--lightgray);
    padding: 1.5rem 1rem .75rem 1rem;
}

.allScoresTable thead tr th:hover {
    user-select: none;
    background-color: var(--ef-background-gray-light);
}

.allScoresTable tbody tr td {
    font-weight: 400;
    border-bottom: 1px solid var(--lightgray);
    padding: .5rem 2.625rem;
}

.allScoresTable tbody td:hover {
    user-select: none;
    background-color: var(--ef-background-gray-light);
}

.allScoresTable thead tr th:nth-child(1),
.allScoresTable tbody tr td:nth-child(1) {
    text-align: left;
    padding: .5rem 1rem;
}

.allScoresTable tbody td:nth-child(1),
.allScoresTable tbody td:nth-child(3) {
    font-weight: 500;
}

.allScoresTable thead tr th:nth-child(1),
.allScoresTable tbody tr td:nth-child(1) {
    min-width: 270px;
    border-right: 2px solid var(--lightgray);
}

.allScoresTable thead tr> :nth-child(1),
.allScoresTable tbody tr> :nth-child(1) {
    position: -webkit-sticky;
    position: sticky;
    left: 0px;
    background-color: var(--white);
}

.allScoresTable tbody tr td>a {
    color: var(--cyan-web);
    text-decoration: none;
    transition: color .3s ease;
}

.allScoresTable tbody tr td>a:active,
.allScoresTable tbody tr td>a:hover {
    color: #007eb3;
    text-decoration: none;
}

#allScoresSearchResults {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--mediumgray);
}

#allScoresSearchResults span#rowCount {
    font-family: var(--font-family-serif);
    font-weight: 600;
    font-size: 2rem;
    color: var(--darkgray);
    border-bottom: 2px solid var(--cyan-web);
}

@media all and (max-width: 1200px) {

    .table-container {
        max-height: 716px;
    }

    .allScoresTable tbody tr td {
        padding: .5rem 2.125rem;
    }

}

@media all and (max-width: 1024px) {}

@media all and (max-width: 992px) {}

@media all and (max-width: 767px) {

    .table-container {
        max-height: 574px;
    }

    .allScoresTable thead tr th,
    .allScoresTable tbody tr td {
        line-height: 1.2;
    }

    .allScoresTable tbody tr td {
        padding: .5rem 1.625rem;
    }

    .allScoresTable thead tr th:nth-child(1),
    .allScoresTable tbody tr td:nth-child(1) {
        min-width: 80px;
    }

}

@media all and (max-width: 576px) {

    .table-container {
        max-height: 574px;
    }

    .allScoresTable thead tr th,
    .allScoresTable tbody tr td {
        line-height: 1.2;
    }

    .allScoresTable tbody tr td {
        padding: .5rem 1.625rem;
    }

    .allScoresTable thead tr th:nth-child(1),
    .allScoresTable tbody tr td:nth-child(1) {
        min-width: 80px;
    }

}

@media all and (max-width: 365px) {}