.championship h1.mini{
    font-size: 30px;
    margin: 30px 0;
    padding: 5px 0;
}
.championship .panel{position: relative}
.championship .league-logo{
    width: 150px;
    height: 150px;
    background-size: 100%;
    position: absolute;
    top: -5px;
    left: -5px;
    border: 5px solid;
    border-top-left-radius: 18px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 18px;
    transform: rotate(45deg);
    box-shadow: 10px 10px 10px #000;
    overflow: hidden;
}
.championship .league-logo::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-45deg);
    background-image: inherit;
    background-size: inherit;
}
.championship .league-logo.ch1{border-color: #0f59a9}
.championship .league-logo.ch2{border-color:#a90f1d}
.championship .league-logo.ch3{border-color: #fc5407}
.championship .league-logo.ch4{border-color: #008d3a}
.championship .league-logo.ch5{border-color: #fbc505}

.championship .legend{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.championship .legend-item{
    display: flex;
    align-items: center;
    margin: 5px 26px;
    color: #ccc;
}
.championship .legend-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.championship .legend-dot.champ{background-color: #36895b}
.championship .legend-dot.inter{background-color: #bb740e}
.championship .legend-dot.retro{background-color: #a31818}

.standings{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.standings .column{
    display: flex;
    flex: 1;
    padding: 0 5px;
    align-items: center;
    justify-content: center;
}
.standings .position{
    flex: 0 0 30px;
    font-weight: bold;
    margin: 0 6px 0 4px;
}
.standings .position .pos{
    border-radius: 20px;
    max-width: 28px;
    max-height: 28px;
    padding: 3px 12px 5px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.standings .position .pos.champ{
    background-color: #36895b;
    color: #fff;
}
.standings .position .pos.inter{
    background-color: #bb740e;
    color: #eeeeee;
}
.standings .position .pos.retro{
    background-color: #a31818;
    color: #eeeeee;
}
.standings .rowheader{
    font-weight: bold;
    background-color: #e09e34;
    color: #333;
}
.standings .rowheader, .standings .team{
    display: flex;
    padding: 10px 0;
    text-align: center;
}
.standings .rowheader .team-name{
    justify-content: center;
    font-size: 100%;
}
.standings .team{
    border-bottom: 1px solid #484848;
    background-color: #302f2f;
    color: #ccc;
}
.standings .team:nth-child(odd){
    background-color: #3b3b3b;
}
.standings .team-logo{
    width: 50px;
    height: 50px;
    margin-right: 13px;
    border-radius: 14px;
}
.standings .team-name{
    flex: 3;
    display: flex;
    align-items: center;
    font-size: 130%;
    justify-content: start;
    text-align: left;
}
@media (max-width: 850px){
    .championship .league-logo{
        position: relative;
        margin: 56px auto 32px;
    }
    .standings .column.difference{display: none}
}
@media (max-width: 750px){
    .standings .column.losses{display: none}
}
@media (max-width: 700px){
    .standings .column.draws{display: none}
}
@media (max-width: 600px){
    .championship .legend{display: block}
    .standings .column.wins{display: none}
    .standings .team-name{font-size: 110%}
}
@media (max-width: 450px){
    .standings .column.played{display: none}
}