body.cms4NotificationOpened .notifcationBadge {
    display: none;
}

.notifcationBadge {
    position: fixed;
    font-size: 12px;
    background: white;
    border: solid 1px #2c2c2c;
    padding: 6px 6px 0 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    bottom: 200px;
    cursor: pointer;
}

.notification-area #cms4Notification.notification {
    background: rgb(240, 240, 240);
    color: #2c2c2c;
    width: 100%;
    max-width: 800px;
}

.notification-area #cms4Notification.notification .note-content {
    padding: 0;
}

@media (max-width: 760px) {
    .notification-area #cms4Notification.notification .note-content {
        max-width: 337px;
    }

}

.notification-area #cms4Notification.notification .note-content img {
    max-width: 337px;
    object-fit: cover;
}

.notification-area #cms4Notification.notification .note-content>div {
    display: flex;
}

@media (max-width: 760px) {
    .notification-area #cms4Notification.notification .note-content>div {
        flex-direction: column;
    }
}

.notification-area #cms4Notification.notification .content {
    padding: 20px 40px;
}

.notification-area #cms4Notification.notification .content .btn {
    margin-top: 10px;
}

@media (min-width: 1000px) {
    .notification-area #cms4Notification.notification .content {
        padding: 40px 60px;
    }
}

.notification-area #cms4Notification.notification close {
    color: black;
    width: 48px;
    height: 48px;
    background: black;
    top: 0px;
    right: 0px;
}

.notification-area #cms4Notification.notification close:before,
.notification-area #cms4Notification.notification close:after {
    content: "";
    width: 20px;
    height: 2px;
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
    /* transform-origin: 50%, 50%; */
}

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

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