.meusFluxosTitulo {
    text-align: center;
    display: block;
    padding-top: 10px;
}

.fluxo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100px;
    margin-bottom: 2vh;
    border: 1px solid lightgray;
    border-radius: 5px;
    background-color: #e8e8e8;
    color: black;
}

.fluxo:hover {
    border: 1px solid #fd7e14;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.divMeusCards {
    flex-flow: row wrap;
    padding: 1.8rem 0;
}

.tituloFluxo {
    font-family: Montserrat, serif;
    font-size: 0.9rem;
}

.editaFluxo {
    position: absolute;
    top: 0.5rem;
    right: 0;
    opacity: 0.5;
    width: 1rem;
}

.editaFluxo:hover {
    opacity: 1;
}

.addFluxo {
    border: 1px dashed lightgray;
}

.iconeGrande {
    font-size: 2rem;
    color: #fd7e14;
}

.favoritar {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}

label {
    display: inline-block !important;
}

.detalhesCard:hover {
    cursor: pointer;
    font-weight: bold;
    color: var(--laranja-nxrocket);
}

.blocoCard {
    padding: 0.5rem;
    background: white;
    border: 1px solid var(--laranja-nxrocket);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.blocoCard:not(:last-child) {
    margin-bottom: 1rem;
}

.blocoCard span {
    font-size: 0.8rem;
}

.descricaoCard {
    font-size: 0.8rem;
}

#divImpressao {
    display: none;
}

/* Tamanho md bootstrap */
@media screen and (min-width: 768px) {
    .meusFluxosTitulo {
        display: inline;
        padding-top: 50px;
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .listaFluxos {
        padding: 0 3vw;
    }
}

/* Reseta o layout quando for impressão e apresenta somente a divImpressao */
@media print {
    body > *:not(#divImpressao), .modal-dialog {
        all: revert;
        display: none;
    }

    #divImpressao {
        all: initial;
    }

    h2, h4 {
        font-weight: bold;
    }

    td, th {
        padding: 0px 10px;
    }
}