.container-fluid{
    background-color: #212529;
}

.blinking-div td{
    animation: blink 2s infinite; /* 2s é a duração da animação, ajustável para fazer piscar mais devagar ou rápido */
}

.info_not_eye_messages_chat{
    background-color: #cc0000;
    line-height: initial;
    border-radius: 50%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
}


.info_not_eye_messages_sidebar{
    background-color: #cc0000;
    line-height: initial;
    border-radius: 50%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
}

.info_not_eye_messages{
    background-color: #cc0000;
    line-height: initial;
    border-radius: 50%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}
.combo-bump{
    position: absolute;
    left: 0px;
    background-color: #7922ff;
    top: -35px;
    padding: 5px 20px 5px 20px;
    border-radius: 25px 25px 25px 0px;
    width: 200px !important;
    max-width: 234px !important;
}

.popular-bump{
    position: absolute;
    right: 9px;
    top: -10px;
    z-index: 1;
    font-size: 12px;
    background-color: #ff6322;
    padding: 1px 18px 1px 18px;
    border-radius: 10px;
    max-width: 83px !important;
}

.icon_trash_galery{
    position: absolute;
    left: 25px;
    top: 10px;
    color: red;
    font-size: 25px;
    cursor: pointer;
}

.loader-images{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: #000000b3;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}

.loader-images i{
    font-size: 100px;
}

.layer-edit-img-creator{
    background-color: #000000ad;
    height: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    font-size: 30px;
    cursor: pointer;

}

@keyframes blink {
    0% {
        background-color: #9000ff70;
    }
    50% {
        background-color: red!important;
    }
    100% {
        background-color: transparent!important;
    }
}