/* Define the styles for the notification box */
.notification-box {
    position: fixed;
    left: 10px;
    bottom: 12px;
    max-width:340px;
    border-radius: 3px;
    padding: 10px 30px 10px 20px;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 400;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    animation: slide-up 0.2s ease-in-out;
    z-index: 1500000;
}

/* Define the styles for the success notification box */
.notification-box.success {
    background-color: #00C02A;
    color: #fff;
}

/* Define the styles for the error notification box */
.notification-box.error {
    background-color: #F50303;
    color: #fff;
}

/* Define the styles for the warning notification box */
.notification-box.warning {
    background-color: #FFA113;
    color: #fff;
}
.notification-box.info {
    background-color: #14B9FF;
    color: #fff;
}

/* Define the animation for sliding up the notification box */
@keyframes slide-up {
    from { opacity: 0; }
    to { opacity: 1; }
}
.dismiss-button {
    color:#fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    background-color: transparent;
    font-weight: normal;
    border: none;
    cursor: pointer;
}