div.notification
{
    border: 1px solid #dfdddd;
    /* background-color: rgb(240 247 255 / 88%); */
    position: fixed;
    bottom: 0;
    left: 5.7%;
    padding: 15px 20px;
    border-radius: 11px;
    width: 500px;
    padding-top: 55px;
    z-index: 99;
    font-size: 16px;
    background-color: rgb(243 184 33);
    color: black;
}
div.notification button.close {
    right: 6px;
    top: 9px;
    position: absolute;
    border-radius: 6px;
    border: 1px solid darkgray;
    padding: 2px 8px;
    color: #f44336;
    background-color: #e91e63;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 100;
    opacity: .7;
}
div.notification .noti_head {
    /* background: chartreuse; */
    /* color: #0a649b; */
    position: absolute;
    top: 2px;
    width: 100%;
    left: 0;
    padding-left: 20px;
    padding: 5px 21px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    font-size: 22px;
    border-bottom: 2px solid #edecec;
    background-color: white;
}
div.notification .noti_head i.fa-bell {
    color: chocolate;
}
div.notification .noti_body span {
    font-size: 21px;
    font-weight: bold;
}
@-webkit-keyframes anim {
    0% {transform: scale(0,0);}
    100% {transform: scale(1,1) ;}
}
@-webkit-keyframes animRev {
    0% {transform: scale(1,1) ;}
    100% {transform: scale(0,0);}
}
div.notification.translateAnimationClass {
    animation-name: anim;
    animation-duration: 1s;
}
div.notification.translareRev {
    animation-name: animRev;
    animation-duration: 1s;
}
@media all and (max-width: 979px) {
    div.notification
    {
        left: 0;
    }
}
@media all and (max-width: 530px) {
    div.notification
    {
        width: 98%;
        margin: 1%;
        font-size: 20px;
        padding-top: 60px;
    }
    div.notification .noti_head {
        font-size: 24px;
    }
}