.fileUploadProgress {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.fileUploadProgress span {
    background-color: #FAFAFA;
    padding: 20px;
    -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.75);
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
    position: fixed;
    top: 50%;
    height: 20px;
    width: 350px;
    margin-top: -10px;
    margin-left: -175px;
    z-index: 10000;
    display: none;
}

.container-fluid {
    align-items: first baseline;
    display: flex;
    margin-left: 3rem;
    /* padding: 1em 4em !important; */
    width: 80%;
}

.boxAssuntos {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.boxAssuntos>div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s linear;
}

.boxAssuntos>div:hover {
    transition: 0.3s linear;
    transform: translateY(-5px);
}

.divTitleAssunto {
    width: 250px;
    height: 75px;
    font-size: 17px !important;
    color: #fff;
    background: rgb(2, 112, 183);
    background: linear-gradient(90deg, rgba(2, 112, 183, 1) 19%, rgba(20, 152, 199, 1) 100%);
    text-align: center;
    border-radius: 0 0 12px 12px;
    padding: 15px;
    bottom: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divTitleAssunto p {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.assunto {
    width: 250px;
    height: 150px;
    background: #eeeeee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0px 0px;
    position: relative;
    flex-wrap: wrap;
}

.assunto img {
    width: 60px;
    height: 60px;
}

.cards {
    margin-top: 3rem;
}