.notification-container {
    position: fixed;
    top: 124px;
    right: 100px;
    z-index: 99;

    display: block;
    max-width: 300px;
    overflow: hidden;
}
@media (max-width: 576px ) {
    .notification-container {
        width: 100%;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.notification {
    position: relative;
    
    display: none;
}

.notification .container {
    position: relative;

    padding: 10px 25px;

    color: white;
    fill: white;
    background-color: #667489aa;
    backdrop-filter: blur(8px);
    border-radius: 4px;

    line-height: 24px;
    font-size: 18px;
    font-weight: 300;
}

.notification:not(:first-child) {
    margin-top: 8px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.notification-icon .svg {
    float: left;
}