.notification {
    position: fixed;
    width: 300px;
    top: -1px;
    right: 20px;
    z-index: 9999;
}

.notification .card {
    width: 100%;
    height: 150px;
    border-radius: 0;
    border: 0;
}

.notification .card {
    background: white;
    color: black;
    font-weight: 400;
    display: block;
    padding: 15px 15px;
    box-shadow: 4px 4px 9px -1px rgba(0, 0, 0, 0.75);
}

.notification .card .title {
    color: black;
    position: relative;
    font-weight: 700;
}

.notification .card::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

.notification .card::after {
    border-bottom: 6px solid var(--primary);
    bottom: -1px;
}

.notification .card.danger::after {
    border-bottom: 6px solid red;
}

.notification .card.success::after {
    border-bottom: 6px solid #1CCC42;
}
