.notification {
    font-family: 'Museo Sans Cyrl', Helvetica, sans-serif;
    border-radius: 8px;
    padding: 10px 20px 0px 10px;
    display: block;
    z-index: 1060;
    background-color: #fff;
    width: 420px;
    height: auto;
    opacity:0;
    position:fixed;
    top: 100%;
    left: 50%;
    margin-left: -210px;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.24), 0px 2px 4px rgba(0,0,0,0.24);
    -webkit-transition: opacity 1s, top 1s;
    transition: opacity .5s ease-in-out, top .5s ease-in-out;
}

@media screen and (max-width:480px) {
    .notification {
        width: 94%;
        margin-left:-47%;
    }
}

#notification{
    z-index: 9000 !important;
}

#notification.shown {
    position:fixed;
    display: block;
    opacity:1;
    top: calc(100% - 140px);
}

#notification .icon {
    float: left;
    width: 50px;
    height: 50px;
}

#notification .notification-text {
    float:left;
    width: calc(100% - 50px);
    font-size: 16px;
    color: #000;
    padding: 8px 0 10px 0;
}

#notification .description {
    padding-left: 50px;
    color: rgba(0,0,0,0.6);
    font-size: 14px;

}

#notification .buttons {
    text-align: right;
    height: auto;
    padding-bottom: 10px;
    padding-top: 10px;
    display:none;
}

#notification .notification-link {
    float: right;
    text-decoration: underline;
    color: #1CA0D9;
    cursor:pointer;
    display:none;
}

#notification .undo-button {
    display: none;
    cursor: pointer;
}