.NotificationBanner {
    border: none;
    height: 70px;
    left: 0;
    padding: 0;
    position: absolute;
    width: 100%;

    &-content {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding: 20px 0;
        width: 1175px;
    }

    &-message-container {
        display: flex;
    }

    &-hidden {
        height: 0;
        transition: all 700ms;

        .NotificationBanner-content {
            display: none;
        }
    }

    .Icons-attention {
        align-self: center;
        flex-shrink: 0;
        height: 25px;
        margin-right: 25px;
        width: 25px;
    }

    .Icons-close {
        fill: $parrot;
        flex-shrink: 0;
        height: 12px;
        margin-right: 25px;
        width: 12px;
    }
}

.NotificationBannerWrapper {
    height: 70px;

    &-hidden {
        height: 0;
        transition: all 700ms;
    }
}
