#nomon-notification-bar {
    width: 100%;
    z-index: 99990;
    padding: 12px 40px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    position: relative;
}

#nomon-notification-bar * {
    box-sizing: border-box;
}

#nomon-notification-bar .notification-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#nomon-notification-bar .notification-text {
    text-align: center;
    flex-grow: 1;
    max-width: 900px;
}

#nomon-notification-bar .notification-text p {
    margin: 0;
    padding: 0;
}

#nomon-notification-bar .close-button {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#nomon-notification-bar .close-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

#nomon-notification-bar .close-icon::before,
#nomon-notification-bar .close-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
}

#nomon-notification-bar .close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#nomon-notification-bar .close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 782px) {
    #nomon-notification-bar {
        padding: 10px 35px 10px 15px;
    }
}
