.notifications {
    width: fit-content;
    margin-top: 50px;
    height: fit-content;
    z-index: 99;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0%);

    display: flex;
    flex-direction: column-reverse;
}

.notification {
    width: 18vw;
    height: 4vh;
    line-height: 3.8vh;
    font-weight: 900;
    margin-top: 10px;
    display: flex;
    position: relative;
    z-index: 99;
    border-radius: 3px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
    text-align: center;
}

.notification span {
    margin: 0 auto;
    font-weight: 600;

}

.notification.error {
    background-color: rgba(var(--red), 0.2);
    color: rgba(var(--red), 1);
    text-align: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 4px;
}

.notification.success {
    background-color: rgba(var(--green), 0.2);
    color: rgba(var(--green), 1);
    text-align: center;
    border-radius: 0 3px 3px 0;
}

.notification.neutral {
    background-color: #3161a3;
    text-align: center;
}