.container_alert{
    user-select: none;
    position: fixed;
    top: 0;
    right: 0;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 10px;
    overflow: auto;
    z-index: 9999;
}

.alert{
    cursor: pointer;
    display: inline-block;
    padding: 20px;
    font-weight: bold;
}

.success{
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 255, 0, 0.2), 0 6px 20px 0 rgba(0, 255, 0, 0.19);
}

.danger{
    background-color: #f44336;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(255, 0, 0, 0.2), 0 6px 20px 0 rgba(255, 0, 0, 0.19);
}

.warning{
    background-color: #ff9800;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(255, 255, 0, 0.2), 0 6px 20px 0 rgba(255, 255, 0, 0.19);
}