#notifications {
    background-color: #fff;
    font-size: 20px;
    width: 600px;
    height: 200px;
    position: absolute;
    right: 30px;
    z-index: 100;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.8s;
}

#notifications p {
    padding: 16px 8px;
}

.header {
    border-radius: 6px 6px 0 0;
    padding: 10px 9px;
    background-color: #ff8e01;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    text-align: center;
}

.header i {
    margin-top: 2px;
    margin-right: 8px;
}

.unvisible {
    bottom: -200px;
}

.visible {
    bottom: 15px;
}
