.filaSeleccionRol {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.filaSeleccionRol > * {
    flex: 1 1 calc(100% / 3 - 10px);
    margin: 5px;
    max-width: calc(100% / 3 - 10px);
}

.seleccionRol, .seleccionRol:focus {
    border: 1px solid #CB0017;
    color: #CB0017;
    background-color: white;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 15px 0;

    transition: all 0.15s linear;
}

.seleccionRol:hover {
    border-color: white;
    color: white;
    background-color: #CB0017;
}

.seleccionRol i {
    font-size: 2.25rem;
    line-height: 2.25rem !important;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    .filaSeleccionRol > * {
        flex: 1 1 calc(100% / 2 - 10px);
        max-width: calc(100% / 2 - 10px);
    }
}