#main_center{
    width:100%;
    margin: auto;
}

#main_bottom{
    margin: auto;
    width:60%;
}

.table_matches{
    width:100%;
    font: 24px tahoma;
}

.table_matches_add{
    width:100%;
    font: 14px tahoma;
}

.td_club {
    font-weight: bold;
}
.td_big_num {
    font-size: 150%;
}
.td_dt {
    width: 100px;
}
.td_gr {
    font-size: 150%;
}

tr:hover td.td_light{
    background-color: white;
    border-radius: 10px;
}

.res_cl_2 {
    background-color: #CD0074;
}

.res_cl_3 {
    background-color: #E6399B;
}

.res_cl_5 {
    background-color: #E667AF;
}

.table_clubs{
    width:100%;
    font: 18px tahoma;
    text-align: center;
}

.table_clubs td {
    border: #ccc 1px solid;
}

.td_num {
    width: 50px;
}

.td_white{
    background-color: white;
    border-radius: 5px;
}

.flag-size {
    width: 80px;
    height: 60px;
    border-radius: 5px;
}




.pulse {
	display: inline-flex;
	border-radius: 50%;
}

.pulse:after {
    content: " ";
    border: 5px solid white;
    border-radius: 50%;
    animation: animate 1s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.pulse:after{
    animation-delay: 1s;
}

@keyframes animate
{
    0%
    {
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    0%
    {
        opacity: 0;
    }
}