/* CARDS PRINCIPAIS */
.my-card {
    align-items: center;
    width: 100%;
    height: 380px;
}

.my-card img {
    max-width: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
}

.my-card .card-body {
    width: 100%;
    padding: 5px;
    text-align: center;
}

.my-card .card-body .card-text-top {
    border-bottom: 1px solid rgb(227, 227, 227);
    margin-bottom: 8px;
}

.my-card .card-body .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-align: center;
    -webkit-box-orient: vertical;

    /*
    width: 100%;
    height: 92px;    
    background-color: cyan;
    overflow: hidden;
    text-overflow: ellipsis;
    */
}

.card-rodape {
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
}

/* CARDS SECUNDÁRIOS */
.my-card-conteudo {
    align-items: center;
    width: 100%;
    height: 286px;
}

.my-card-conteudo img {
    max-height: 150px;
}

.div-checks {
    margin-top: 8px;
}

.div-checks div input {
    font-size: 20px; /* var(--font-size-aumentada); */
    font-weight: bold;
    cursor: pointer;
}

.div-checks div label {
    font-size: 20px; /* var(--font-size-aumentada); */
    font-weight: bold;
    cursor: pointer;
    margin-left: -5px;
}

.card-rodape-conteudo {
    width: 100%;
    padding: 0;
    margin: 0px;
    position: absolute;
    bottom: 0;
    border-top: 1px solid gainsboro;
}


/* CRUZADAS */

#div-cruzadas {
    margin-bottom: 80px;
}

#table-cruzadas {
    margin-top: 0px;
    width: 100%;
}

#table-cruzadas tr td:nth-child(2) {
    width: 26px;    
}

#table-cruzadas tr td:nth-child(2) input {
    width: 26px;
    text-align: center;    
}

#table-cruzadas tr td:nth-child(3) {
    width: 26px;
    text-align: center;
    font-weight: bold;
    padding-top: 11px;
}

.div-panel-resultado {
    background-color: #ffffd4;
    padding: 12px;
    height: 100px;
    border: 2px solid #ebeb02;
}
/* CRUZADAS */

@media (max-width: 480px) {
    .my-card-conteudo {   
        height: 220px;
    }

    #div-cruzadas {
        padding: 4px;
    }

    #table-cruzadas {
        font-size: 12px;
    }

    #table-cruzadas tr td {
        padding: 4px;
    }

    #table-cruzadas tr td:nth-child(3) {
        padding-top: 5px;
    }
}

}