body.cms4-notification-opened .notifcation-badge {
    display: none;
}

.notifcation-badge {
    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: 85px;
    cursor: pointer;
    z-index: 999999;
}

.notification-area #cms4-notification.notification {
    background: rgb(240, 240, 240);
    color: #2c2c2c;
    width: calc(100% - 48px);
    max-width: 1000px;
  
}

@media (min-width: 770px) {
    .notification-area #cms4-notification.notification .note-content {
        width: calc(100% - 48px);
    }

}

@media (min-width: 1000px) {
    .notification-area #cms4-notification.notification .note-content {
        width: calc(112% - 57px);
    }

}


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

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

}

.notification-area #cms4-notification.notification .note-content img {
    max-width: 1700px;
    object-fit: cover;
    display: none;
}

@media (min-width: 770px) {
    .notification-area #cms4-notification.notification .note-content img {
        display: block;
    }
}

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

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

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

.notification-area #cms4-notification.notification .content .btn {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

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

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

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

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


.notification-area #cms4-notification.notification .content .h1 {
    margin-bottom: 1rem;
    font-size: 25px;    

}

@media (min-width: 992px) {
    .notification-area #cms4-notification.notification .content .h1 {
        font-size: 30px;
    }
}




