.containerValorTotal {
    cursor: pointer;
    background: #229544;
    border: 2px solid #fff;
    box-shadow: 2px 4px 12px 4px rgba(0, 0, 0, 0.541);
    justify-content: center;
    padding: 15px 10px 0 10px;
    width: max-content;
    border-radius: 12px;
    z-index: 999;
    height: 50px;
    text-align: center;
    align-items: center;
    color: #fff;
    display: none;
    position: fixed;
    right: 10px;
    bottom: 20px;
}

/* notificador de lancamentos */
.containerNotificacao {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
    color: #fff;
    background-color: #229544;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50%;
    border: 2px solid #000;
}

.containerIconCount {
    width: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: flex;
    height: 50px;
}

.countNotificacao {
    position: relative;
    top: -20px;
    left: 10px;
    background-color: #fff;
    border: 2px solid #000;
    color: #fff;
    font-weight: bold;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 50%;
}

#sinoNotificacao {
    margin: 0 auto;
    position: relative;
    left: 13px;
    animation: shake 2.5s ease infinite;
}

#closeNotificacao {
    margin: 0 auto;
    display: none;
    position: relative;
    left: 13px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-1.5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(1.5px);
    }
}

.containerDadosNotificacao {
    display: none;
    border-radius: 12px;
    position: fixed;
    top: 30%;
    left: 7%;
    color: #000;
    background-color: #fff;
    width: 85%;
    height: 400px;
    padding: 25px;
    overflow-y: scroll;
}

.containerTableNotificacao {
    margin: 50px auto;
}

.containerDadosNotificacao table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.containerDadosNotificacao td,
.containerDadosNotificacao th {
    text-align: left;
    padding: 8px;
}

.containerDadosNotificacao th {
    background-color: #229544;
    color: #fff;
}

.containerDadosNotificacao th:first-child {
    border-radius: 12px 0 0 0;
}

.containerDadosNotificacao th:last-child {
    border-radius: 0 12px 0 0;
}

.containerDadosNotificacao tr:nth-child(even) {
    background-color: #dddddd;
}

.labelNotificacao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
}

h4 {
    color: #000;
}

.bi-clock-history {
    margin-top: 10px;
}

.bi-cash-coin {
    color: #05a6bb;
}

.bi-box-seam {
    color: #7a5000;
}

.cardsNotificacao {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
}

.cardNotificacao {
    color: #000;
    background-color: #fff;
    width: 320px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-weight: bolder;
}

.cardNotificacaoProcesso:hover,
.cardNotificacaoLiberado:hover,
.cardNotificacaoCadastrado:hover,
.cardNotificacaoTotal:hover {
    scale: 0.98;
    cursor: pointer;
}

.labelCardNotificacao p {
    font-size: 18px;
}

.labelCardNotificacao p:last-child {
    margin-top: 40px;
    margin-bottom: -5px;
}

.labelCardNotificacao p:first-child {
    margin-top: 6px;
}

.bi-hourglass-split {
    color: #e68c17;
}

.bi-box-arrow-in-up {
    color: #229544;
}

@keyframes rotate-center {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-center-revert {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0);
    }
}

.cardNotificacaoTotal {
    width: 250px;
}

#buscarFavorecido {
    width: 500px;
    border: none;
    outline: none;
    padding: 5px 10px;
    background-color: transparent;
}

.containerInputFuturosVencimentos {
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: -10px;
    background-color: #cccccc33;
}

.bi-search{
    margin-bottom: 4px;
    margin-left: 10px;
}