.sb-scores {
    font-size: 13px;
    margin-bottom: 20px;
}

.sb-scores__league {
    margin-bottom: 8px;
}

.sb-scores__league-header {
    font-weight: bold;
    border: 1px solid #dddddd;
    padding: 6px 12px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sb-scores__league-header-name {
    display: flex;
}

.sb-scores__league-header svg {
    margin-right: 8px;
    margin-top: 1px;
}

.sb-scores__count {
    display: flex;
}

.sb-scores__arrow {
    display: flex;
    margin-left: 8px
}

.sb-scores__league.js-sb-accordion--open .sb-scores__arrow {
    transform: rotate(180deg);
}

.js-sb-accordion-content {
    display: none;
    padding: 4px 0;
}

.sb-scores__league.js-sb-accordion--open .js-sb-accordion-content {
    display: block;
}


.sb-match {
    border-bottom: 1px solid #eee;
    padding: 4px 0;
}

.sb-match__info {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
}

.sb-match__datetime {
    color: #777;
    width: 100px;
}

.sb-match__teams {
    display: flex;
    flex-direction: column;
}

.sb-match__team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


.sb-match__team--winner {
    font-weight: bold;
    color: #ff3535;
}

.sb-team__logo {
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sb-team__name {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100px;
}

.sb-team__score {
    min-width: 30px;
    text-align: right;
}

.sb-quarter {
    font-size: 0.85em;
    color: #444;
    min-width: 22px;
    text-align: center;
    font-weight: 400;
}

@media (min-width: 991px) {
    .sb-match__info {
        flex-direction: row;
        align-items: center;
    }

    .sb-team__name {
        width: 180px;
    }
}