
/* ClubesComponent */

.cbpq_api_clubes_container {
    font-family: roboto;
}


/* ClubeComponent */

.cbpq_api_clube_container {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #DDDDDD;
}

.cbpq_api_clube_header {
    display: flex;
    justify-content: space-between;
}

.cbpq_api_clube_nome {
    color: #666666;
    font-weight: 700;
}

.cbpq_api_clube_button {
    padding: 0 15px;
    cursor: pointer;
}

.cbpq_api_clube_button i {
    font-size: 22px;
    color: #FAB702;
}

.cbpq_api_clube_button i:hover {
    color: #026997;
}

.cbpq_api_clube_body {
    padding: 20px 0;
}

.cbpq_api_clube_campo {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.cbpq_api_clube_label {
    display: inline-block;
	font-weight: 400;
	margin-bottom: 0;
    color: #FAB702;
    text-transform: uppercase;
    font-size: 12px;
    width: 120px;
    min-width: 120px;
}

.cbpq_api_clube_valor {
    color: #999999;
}

@media(max-width: 767px) {

    .cbpq_api_clube_body {
        flex-direction: column;
        align-items: center;
    }
    
    .cbpq_api_clube_campo {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .cbpq_api_clube_label {
        width: 100%;
        min-width: 0;
        text-align: left;
    }

    .cbpq_api_clube_valor {
        text-align: left;
    }
}


/* ClubesFiltro */

.cbpq_api_clubes_filtro {
    font-family: roboto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.cbpq_api_clubes_filtro_formulario {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 10px;
}

.cbpq_api_clubes_filtro_seleciona {
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    color: #0c2d62;
    cursor: pointer;
    font-size: 15px;
}

.cbpq_api_clubes_filtro_botao {
    border: 1px solid #FAB702;
    border-radius: 0px;
    color: #FFFFFF;
    background-color: #FAB702;
    font-size: 17px;
}

.cbpq_api_clubes_filtro_botao:hover {
    border-color:#0c2d62;
    background-color: #0c2d62;
}

.cbpq_api_clubes_filtro_botao:active {
    border-color:#0c2d62;
    background-color: #0c2d62;
}

@media(max-width: 767px) {
    .cbpq_api_clubes_filtro_formulario {
        display: flex;
        flex-direction: column;
    } 
}