
#notify-block{
    width: 300px;
    height: 62px;
    left: 10px;
    bottom: 65px;
    right: auto;
    position: fixed;
    z-index: 5;
    transition: .6s;
    opacity: 1;
}
.ladi-notify {
    padding: 5px;
    box-shadow: 0 0 1px rgba(64,64,64,.3), 0 8px 50px rgba(64,64,64,.05);
    border-radius: 40px;
    color: rgba(64,64,64,1);
    background: rgba(250,250,250,.9);
    line-height: 1.6;
    width: 100%;
    height: 100%;
    font-size: 13px;
}
.ladi-notify .ladi-notify-image img {
    float: left;
    margin-right: 13px;
    border-radius: 50%;
    width: 53px;
    height: 53px;
    pointer-events: none;
}
.ladi-notify .ladi-notify-title {
    font-size: 100%;
    height: 17px;
    overflow: hidden;
    font-weight: 700;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
}
.ladi-notify .ladi-notify-content {
    font-size: 92.308%;
    height: 17px;
    overflow: hidden;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1;
    padding-top: 2px;
}
.ladi-notify .ladi-notify-time {
    line-height: 1.6;
    font-size: 84.615%;
    display: inline-block;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 155px);
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    #notify-block{
        left: 0;
        top: 65px;
    }
    .hidden-notify{
        left: -30rem !important;
        bottom: unset !important;
    }

}

@media only screen and (min-width: 769px) {
    .hidden-notify{
        opacity: 0 !important;
        bottom: -7rem !important;
    }
}