
div.header-notification-bar {
    width: 100%;
    background-color: rgba(117, 156, 178, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 96px;
    z-index: 1000;
}

.notification-bar-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 30px 24px;
}

.notification-bar-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 16px;
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    line-height: 20.80px;
    word-wrap: break-word;
}

.notification-bar-content a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    line-height: 21px;
    word-wrap: break-word;
    text-decoration: none;
    color: white;
    background: rgba(0, 21, 74, 1);
    padding: 6px 24px;
    border-radius: 16px;
}

.notification-bar-close {
    cursor: pointer;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background: url(../../../assets/images/icons/close-dark.png) no-repeat center center;
    background-size: contain;
}

@media (max-width: 992px) {
    div.header-notification-bar {
        top: 80px;
    }
    
    .notification-bar-content-wrapper {
        align-items: flex-start;
    }
}

