.box-lista-resumo{
    border: solid 2px var(--bordo-color) !important;
    border-radius: 1.5em !important;
    max-width: 400px !important;
    margin-bottom: 10px !important;
    background-color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: left !important;
    align-items: start !important;
    padding: 10px !important;
}

.box-lista-resumo:hover{
    transition: border .2s !important;
    border: solid 2px var(--Azul-color) !important;
}

.titulo-label {
    color: var(--bordo-color); 
    font-size: 1rem;
    text-align: left;
    font-weight: 900;
    margin: 10px 0 0 0;
}

.descricao-label {
    color: var(--bordo-color); 
    font-size: 0.8rem;
    text-align: left;
    margin: 5px 0;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .box-lista-resumo{
        width: 70% !important;
    }
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px){

    .box-lista-resumo{
        width: 70% !important;
    }
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .box-lista-resumo{
        width: 40% !important;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .box-lista-resumo{
        width: 40% !important;
    }
      
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .box-lista-resumo{
        width: 40% !important;
    }
      
}