/* The default notification styles. Replace these within your theme: assets/scss/components/_notification.scss */
:root {
    --em-notifications-background: #222;
    --em-notifications-background-2nd: #1c524f;
    --em-notifications-text: #fff;
}

#site-notifications {
    position: relative;
}

#site-notifications .notification-banner {
    z-index: 90;
    padding: 1rem;
	position: relative;
    background-color: var(--em-notifications-background);
}

#site-notifications .notification-banner:nth-child(odd) {
    background-color: var(--em-notifications-background);
}

#site-notifications .notification-banner:nth-child(even) {
    background-color: var(--em-notifications-background-2nd);
}

#site-notifications .notification-banner__container {
    position: relative;
}

#site-notifications .notification-banner__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#site-notifications .notification-banner.is-dismissable .notification-banner__content {
    padding-right: 2rem;
}

#site-notifications .notification-banner__text {
    margin: 0;
    text-align: left;
    color: var(--em-notifications-text);
}

#site-notifications .notification-banner__link {
    color: inherit;
    text-decoration: underline;
}

#site-notifications .notification-banner__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    appearance: none;
    outline: none;
    border: 0;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#site-notifications .notification-banner__close::before {
    content: "";
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 0.1rem;
    background-size: cover;
    background-position: center;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 32 32" width="32" height="32" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" d="M.086 1.5L1.5.086l29.608 29.607-1.415 1.415z"/><path fill="%23fff" d="M29.693.086L31.108 1.5 1.5 31.108.086 29.693z"/></svg>');
}


/* The default notification styles. Replace these within your theme: assets/scss/components/_notification.scss */
/*:root {
    --em-notifications-background: #222;
    --em-notifications-background-2nd: #1c524f;
    --em-notifications-text: #fff;
}

#site-notifications {
    position: relative;
}

#site-notifications .notification-banner {
    z-index: 90;
    padding: 1rem;
	position: relative;
    background-color: var(--em-notifications-background);
}

#site-notifications .notification-banner:not(.is-hidden):nth-child(odd) {
    background-color: var(--em-notifications-background);
}

#site-notifications .notification-banner:not(.is-hidden):nth-child(even) {
    background-color: var(--em-notifications-background-2nd);
}

#site-notifications .notification-banner.is-hidden {
    display: none;
}

#site-notifications .notification-banner__container {
    position: relative;
}

#site-notifications .notification-banner__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#site-notifications .notification-banner.is-dismissable .notification-banner__content {
    padding-right: 2rem;
}

#site-notifications .notification-banner__text {
    margin: 0;
    text-align: left;
    color: var(--em-notifications-text);
}

#site-notifications .notification-banner__link {
    color: inherit;
    text-decoration: underline;
}

#site-notifications .notification-banner__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    appearance: none;
    outline: none;
    border: 0;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#site-notifications .notification-banner__close::before {
    content: "";
    width: 20px;
    height: 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 0.1rem;
    background-size: cover;
    background-position: center;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 32 32" width="32" height="32" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" d="M.086 1.5L1.5.086l29.608 29.607-1.415 1.415z"/><path fill="%23fff" d="M29.693.086L31.108 1.5 1.5 31.108.086 29.693z"/></svg>');
}
*/
