#alert-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
    margin-bottom: 0;

    width: 20%;
    min-width: 280px;

    overflow-x: hidden;
}

.alert {
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
    animation: transitionOut 5s linear forwards;
}

.alert-title {
    font-weight: 700;
}

.alert p {
    margin: 0;
}

.alert-content-row {
    display: flex;
    align-items: flex-end;
}

.alert-content-col {
    display: flex;
    flex-direction: column;
}

.success-alert {
    border-left: 5px solid #2aff2a;
    background-color: rgb(5 95 5);
    color: #ffffff;
}

.error-alert {
    border-left: 5px solid red;
    background-color: #5d0000;
    color: #ffffff;
}

.notify-alert {
    border-left: 5px solid yellow;
    background-color: #9e9400;
    color: #ffffff;
}

.notification-item-icon {
    width: 25px;
    height: 25px;

    margin-right: 10px;

    background-color: black;
    border: 1px solid white;
}


@keyframes transitionOut {
    0% { right: 0; }
    80% { right: 0; }
    100% { right: -400px; }
}