:root {
    --accent_blue: #00a0dd;
    --accent_green: #c7d88e;
    --accent_orange: #faa961;
    --accomplished_blue: #0d436b;
    --conscientious_green: #6aa342;
    --empathetic_orange: #e08650;
    --extra_light_gray: #f5f6f7;
    --light_gray: #dee0e3;
    --medium_gray: #9fa0a1;
    --gray: #d1d3d4;
    --dark_grey: #767777;
    --near_black: #484949;
    --light_accent_blue: #edf4fc;
    --light_accent_green: #f6f9ed;
    --light_accent_orange: #fcf6ed;
    --light_accent_yellow: #fdf7e4;
    --universal_yellow: #eeb111;
}.notification {
    background-color: var(--accomplished_blue);
    color: white;
    border-radius: 4px;
    padding: 1rem;
    position: relative;
}
.notification.is-success {
    background-color: #00A0DD;
    color: #fff;
}
.notification.is-danger {
    background-color: #f14668;
    color: #fff;
}
.notification>.delete {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10,10,10,.2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: 0;
    /* position: relative; */
    vertical-align: top;
    width: 20px;
}
.notification>.delete::after, .notification>.delete::before {
    background-color: #fff;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}
.notification>.delete::before {
    height: 2px;
    width: 50%;
}
.notification>.delete::after {
    height: 50%;
    width: 2px;
}
.notification p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}