.ranking_section {
    border-top: none;
    display: flex;
}

.svg-logo {
    fill: #ff0000;
}

.ranking_section .ranking_list {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.ranking_section .ranking_list .row {
    width: 100%;
    display: flex;
}

.ranking_list .item {
    width: 100%;
    display: flex;
    cursor: default;
}

.ranking_list .item .inner {
    margin: 10px 10px 10px 10px;
    border: 2px dotted #fdb713;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    background: black;
    opacity: 0.8;
}

.ranking_list .item:hover .inner {
    background: #000000;
    color: white;
    opacity: 1.0;
}

.ranking_list .item:hover .inner .ranking_title {
    color: #fdb713;
}

.ranking_list .item:hover .inner .ranking_table {
    color: white;
}

.ranking_table {
    width: 100%;
    display: inline-block;
    padding-top: 5px;
}

.ranking_section .ranking_list .ranking_table .row {
    display: block;
    margin-top: 3px;
}

.ranking_table .header {
    color: #000000;
    background: #fdb713;
}

.ranking_table .cell {
    border: 1px #fdb713 solid;
}

.ranking_table .row:hover .cell{
    border: 1px #FFFFFF solid;
    background: #FFFFFF;
    color: #000000;
}

.ranking_table .rank {
    display: inline-block;
    width: 75px;
}

.ranking_table .team_name {
    display: inline-block;
    width: 200px;
}

.ranking_table .date {
    display: inline-block;
    width: 200px;
}

.ranking_table .score {
    display: inline-block;
    width: 200px;
}

.ranking_section .ranking_list .item .ranking_logo {
    height: 100%;
    width: 85px;
}

.ranking_logo img {
    width: 55px;
    height: 55px;
}

.ranking_section .ranking_list .item .ranking_title {
    height: 100%;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
}

.ranking_section .ranking_list .item .ranking_table {
    color: #fdb713;
    text-align: center;
    display: inline-block;
}

.ranking_section .logo {
    display: inline-block;
    height: 100%;
    width: 30%;
    align-items: center;
    text-align: center;
}

.ranking_section .logo img {
    margin-top: 130px;
}

@media screen and (max-width: 1250px) {
    .ranking_section .logo {
        display: none;
    }

    .ranking_section .ranking_list {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .ranking_table {
        font-size: 13px;
    }
}

@media screen and (max-width: 784px) {
    .ranking_table {
        font-size: 12px;
    }

    .ranking_title h3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 679px) {
    .ranking_section .ranking_list .item .ranking_table {
        padding: 10px 10px 10px 10px;
    }

    .ranking_section .ranking_list .item .ranking_logo {
        height: 50%;
        width: 40px;
        margin-top: -5px;
    }

    .ranking_logo img {
        width: 30px;
        height: 30px;
    }

    .ranking_section .ranking_list .row {
        display: block;
    }

    .ranking_list .row .item {
        width: 100%;
        height: 50%;
    }

    .ranking_list .row .item .inner {
        margin: 2px 0px 2px 0px;
    }

    .ranking_list .row .item .inner .row {
        display: flex;
    }
}

@media screen and (max-width: 459px) {
    .ranking_table {
        font-size: 10px;
    }

    .ranking_title h3 {
        font-size: 12px;
    }
}