.notification {
    position: fixed;
    /*top: 40px;*/
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    /*background: #5cb85c;*/
    background: rgb(61, 181, 110);
    color: #fff;
    padding: 8px 8px;
    border-radius: 10px;
    display: none;
    width: fit-content;
    /*box-shadow: 0px 10px 46px -21px rgba(0,0,0,0.75);*/
    -webkit-box-shadow: 0px 0px 105px 45px rgba(0, 0, 0, 0.9);
    -moz-box-shadow: 0px 0px 105px 45px rgba(0, 0, 0, 0.9);
    box-shadow: 0px 0px 105px 45px rgba(0, 0, 0, 0.9);
    min-width: 80px;
    text-align: center;
    font-size: 12px;
}

.notification-warning {
    /*background: rgba(255, 140, 0, 0.8);*/
    /*background: indianred;*/
    background: rgb(200, 67, 70);
}


.notification-error {
    /*background: rgba(255, 0, 0, 0.78);*/
    /*background: indianred;*/
    background: rgb(200, 67, 70);
}


.notification-yellow {
    background: #FFBD59;
    color: #333333;
}


.notification-default {
    background: var(--theme-color);
}