.mainContainer .list table.table {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 16px;
    margin-bottom: 0;
}

.list .tblContainer {
    max-height: 55vh !important;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.3);
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.list .tblContainer::-webkit-scrollbar {
    display: none;
}
.list .clickable {
    cursor: pointer;
}
.list .table.margin-bottom {
    margin-bottom: 20px !important;
}
.list .table th {
    font-family: "Metropolis Semi Bold";
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0.18px;
    color: rgba(255, 255, 255, 0.87);
    border-top: none;
    background-color: #0d4962;
}
.list .table th:nth-child(1) {
    border-top-left-radius: 8px;
    padding-left: 24px;
}
.list .table th:nth-last-child(1) {
    text-align: end;
    border-top-right-radius: 8px;
    padding-right: 28px;
}
.list .table td {
    font-size: 14px;
    text-align: left;
    color: #0d4962;
    vertical-align: middle;
    border-color: rgba(196, 196, 196, 0.3);
}
.list .tableRow {
    background-color: white;
}
.list .tableRow.header {
    position: sticky;
    top: 0;
}
.list .tableRow.highlight {
    background-color: #eff7fb;
}
.list .tableRow.highlight .rank,
.list .tableRow.highlight .teamNameContainer .teamName,
.list .tableRow.highlight .metric {
    font-family: "Metropolis Semi Bold";
    color: #0d4962;
}
.list table {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 8px;
    border-right: 1px solid rgba(196, 196, 196, 0.3);
    border-left: 1px solid rgba(196, 196, 196, 0.3);
    margin-bottom: 0;
}
.list .table:nth-child(2) {
    border-top: none;
}
tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.list .actions {
    width: 100px;
}
.list .searchContainer {
    border: 1px solid #0d4962;
    outline: none;
    border-radius: 8px;
    height: 36px;
    padding: 0 20px;
    align-items: center;
    margin-bottom: 20px;
}
.list .searchIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/bo/search_icon_light.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 24px;
    width: 28px;
    margin-right: 5px;
}
.list .searchInput::placeholder {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.list .filterIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/filter_icon_blue_BO_v1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 24px;
    width: 28px;
    margin-right: 5px;
    cursor: pointer;
}
.list .searchInput {
    width: 100%;
    font-size: 14px;
    font-family: "Metropolis Semi Bold";
    letter-spacing: 0.14px;
    text-align: left;
    border: none;
    background-color: transparent;
    outline: none;
}
.list ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #0d4962;
    opacity: 1; /* Firefox */
}
.list :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #0d4962;
}
.list ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #0d4962;
}
/* The container */
.checkboxContainer {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default checkbox */
.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 7px;
    height: 25px;
    width: 25px;
    background-color: white;
}
/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
    background-color: #2196f3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.list .thumbnail {
    width: 50px;
    height: 50px;
    font-size: 25px;
}
.list .messageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 400px);
    background-color: #cae4ef;
    border-radius: 8px;
}
.list .messageContainer.hide {
    display: none;
}
.list .message {
    color: #0d4962;
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.3px;
    text-align: center;
}
.list .subMessage {
    color: #0d4962;
    font-family: "Metropolis Regular";
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.18px;
    text-align: center;
    width: 550px;
}
.list .selectedItemsContainer {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
}
.list .selectedItemsContainer .item-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #b3cdd8;
    border-radius: 5px;
    padding: 5px;
    margin: 0 5px 5px 0;
    max-height: 30px;
}
.list .selectedItemsContainer .item-container .item {
    font-family: "Metropolis Medium";
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.12px;
    color: #0d4962;
    margin-inline: 10px;
    max-width: 100px;
    overflow: hidden;
    max-height: 15px;
    text-overflow: ellipsis;
}
.list .selectedItemsContainer .item-container .delete-item {
    font-size: 15px;
    color: #0d4962;
}
/* Mobile */
@media (max-width: 768px) {
    .list td,
    .list th {
        display: none;
    }
    .showCols td,
    .showCols th {
        display: block;
    }
    td.key,
    th.key {
        display: table-cell;
    }
    .table td,
    .table th {
        padding: 0.25rem;
    }
    .list .table td {
        font-size: 12px;
    }
    .list .thumbnail {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}
/* iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .list td,
    .list th {
        display: none;
    }
    .showCols td,
    .showCols th {
        display: block;
    }
    td.key,
    th.key {
        display: table-cell;
    }
    .table td,
    .table th {
        padding: 0.25rem;
    }
    .list .searchContainer {
        width: 90%;
    }
    .list .message {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: 0.22px;
    }
    .list .subMessage {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.2px;
    }
    .list .searchContainer {
        width: 100%;
    }
}
/* DARK MODE */
.dark .list .tableRow {
    background-color: #042533;
}
.dark .list .tableRow.highlight {
    background-color: #cae4ef;
}
.dark .list .tableRow.highlight .rank,
.dark .list .tableRow.highlight .teamNameContainer .teamName,
.dark .list .tableRow.highlight .metric {
    font-family: "Metropolis Semi Bold";
    color: #0d4962;
}
.dark .list .message,
.dark .list .subMessage,
.dark .list .table td,
.dark .list .table th,
.dark .list .searchInput,
.dark .list .searchInput::placeholder {
    color: rgba(255, 255, 255, 0.87);
}
.dark .list .searchContainer {
    border-color: rgba(255, 255, 255, 0.87);
}
.dark .list .searchIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/v2/bo/search_icon_dark.png);
}
.dark .list .filterIcon {
    background-image: url(http://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/filter_icon_white_BO_v1.svg);
}
.dark .list tr:nth-child(2) td {
    border-top: #0d4962;
}
.dark .list .selectedItemsContainer .item-container {
    background-color: #b3cdd8;
}
.dark .list .selectedItemsContainer .item-container .item,
.dark .list .selectedItemsContainer .item-container .delete-item {
    color: #031821;
}
