/*--- Notification css  ---*/
.mynotification{
    position:fixed;
    bottom:-100px;
    width:100%; z-index:99999; 
    padding-bottom:10px;
    opacity:0;
    z-index: 10;
    transition: all 0.5s ease;
}
#image_error{color:#f00;font-size:15px;text-align:center;}
.show_my_notification{
    bottom:50px;
    opacity:1;
    transition: all 0.5s ease;
}
.checkyes{font-size: 25px;color: #ffffff;margin-right: 15px;}
.notyes{font-size: 25px;color: #f00; margin-right: 15px;}
.inner_notification{
        width: 100%;
    height: 50px;
    background: #098413;
    border-radius: 5px;
    color: #ffffff;
    text-align: center;
    line-height: 43px;
    font-size: 18px;
    font-weight: bold;
}

/*Confirm Notification*/
.conformpopup {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    background-size: cover;
    position: fixed;
    top: 0px;
    z-index: 99999999999;
    transition: all 0.5s ease-out;
    display: none;
}
.innerconfrompopup h3 {
        font-size: 16px;
    color: #272525;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 100;
}
.closeconformpopup{
    font-size: 20px;
    position: absolute;
    right: 17px;
    top: 5px;
    color: #272525;
}

.innerconfrompopup {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 1px 1px #fff;
    margin-top: 13%;
}
.innerconfromopupfooter {
    border-top: 1px dotted #ccc1c1;
    width: 100%;
    height: 45px;
}
#yesdelete {
    width: 65px;
    height: 30px;
    line-height: 30px;
    margin-top: 08px;
    float: left;
    text-align: center;
    margin-right: 12px;
    background: #00b18e;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
#nodelete {
    width: 65px;
    height: 30px;
    line-height: 30px;
    margin-top: 08px;
    float: left;
    background-color: #d73c4d;
    color: #fff;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
/*Confirm Notification*/