.grid-eventos {
    background: #FFF;
    border-radius: 15px;
    padding: 20px;

}

.cabecalho-eventos {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cabecalho-eventos>div {
    background: #103b96;
    padding: 15px 10px;
    color:#FFF;
    font-weight:bold;
    font-size: 12px;
}

.t-clube {
    width: 360px;
    font-weight:bold;
}

.t-data {
    width: 100px;
}

.t-cidade {
    width: 200px;
}

.t-circular, .t-horario, .t-inscricao, .t-resultados {
    width: 95px;
    text-align:center;
    
}

.cabecalho-eventos {
    gap:10px;
}

.the-evento {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.the-evento>div {
    background: #ccc;
    padding: 5px 10px;
    font-size:14px;
}

.the-evento .t-circular, .the-evento .t-horario, .the-evento .t-inscricao, .the-evento .t-resultados {

padding: 0!important;
display:flex;
    align-items:center;
    justify-content:center;
}

.the-evento>div svg {
    width: 20px;
    height: 20px;
    margin-top: 6px;
    border-bottom: 1px solid var(--e-global-color-accent);
}

.the-evento>div svg * {
    fill: var(--e-global-color-accent);
}

@media only screen and (max-width:767px) {
.cabecalho-eventos, .sub-grid-eventos {
    width: 1100px;
}

.grid-eventos {
    overflow: scroll;
}
}