/* Notification Banner  */

.notificationBanner {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 24px 16px;
    gap: 32px;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: none !important;
}

.notificationBanner_TextContainer {
    max-width: 800px;
}

    .notificationBanner_TextContainer > * {
        line-height: 28px;
        margin-bottom: 6px;
    }

    .notificationBanner_TextContainer > p {
        font-size: 18px;
    }

.notificationBanner_Icon {
    height: 40px;
    width: 30px;
}

@media(max-width:520px) {
    .notificationBanner_Icon {
        width: 80px;
    }

    .notificationBanner_TextContainer {
        padding-right: 24px !important;
    }
}

.notificationBanner_CloseButton {
    position: absolute;
    top: 12px;
    right: 12px;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.alert-primary.notificationBanner {
    background-color: #3D1A52 !important;
}

.alert-secondary.notificationBanner {
    background-color: #DCD7DF !important;
}

.alert-danger.notificationBanner {
    background-color: #DC0000 !important;
}

.alert-info.notificationBanner {
    background-color: #0D3050 !important;
}

.forceToTop {
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
}



