.panda-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    z-index: 99999;
    font-size: 15px;
    font-family: inherit;
    opacity: 0;
    transform: translateX(120%);
    transition: all .4s cubic-bezier(.68, -.55, .265, 1.55);
}

.panda-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.panda-notification.error {
    background: #f44336;
}

.panda-votes .vote-up.active i,
.panda-votes .vote-down.active i {
    color: #4CAF50;
}

.panda-votes .vote-down.active i {
    color: #f44336;
}