.container-alerts {
    width: 100%;
    z-index: 90;
}
.container-alerts.on {
    transform:none;
}

.container-alerts .content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .8em;
}

.cont-alerta strong {
    font-weight: bold;
}

.cont-btn-acao {
    position: absolute;
    height: 100%;
    right: 20px;
    display: flex;
    align-items: center;
}

.cont-barra-progressao {
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 3px;
}



/* EFEITOS */
.alerts-efeito-topo {
    left: 0;
    transition: all .2s ease-out;
    transform: translateY(calc(-100% - 10px));
}
.alerts-efeito-topo .content {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    background-color: #b5b5b5;
    transition: width 0.5s ease;
    animation: progress-bar-animated 1s linear infinite;
}
.alerts-efeito-topo .content.sucesso {
    background-color: #008000;
}
.alerts-efeito-topo .content.alerta {
    background-color: #f7c260;
}
.alerts-efeito-topo .content.erro {
    background-color: #eb745f;
}

.alerts-efeito-topo .cont-alerta {
    text-align: center;
    padding: 1.5em 0;
    color: white;
}
.alerts-efeito-topo .cont-btn-acao a {
    padding: .5em;
    background-color: grey;
    color: white;
    border-radius: 3px;
    font-size: .9em;
}
.alerts-efeito-topo .sucesso .cont-btn-acao a {
    background-color: #1a5516;
}
.alerts-efeito-topo .alerta .cont-btn-acao a {
    background-color: #eea723;
}
.alerts-efeito-topo .erro .cont-btn-acao a {
    background-color: #f03b1b;
}