/*
* The following file is temporary
* and will be moved as well as it's content
* to espresso
*/

#Notifications {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    cursor: pointer;
}

#Notifications .Notification {
    font-size: 1em;
    padding: 0.5em 2em;
    overflow: hidden;
    -moz-box-shadow: 0 0 0.3em #000;
    -webkit-box-shadow: 0 0 0.3em #000;
    box-shadow: 0 0 0.3em #000;
}

#Notifications .Notification.notice {
    background: rgb(71, 213, 255);
    color: #fff;
}

#Notifications .Notification.error {
    background: #fcc;
}

#Notifications .Notification.alert {
    background: #82ceef;
    font-size: 1.5em;
    color: #fff;
    padding: 1em;
}

#Notifications .Notification.closed {
    display: none;
}

#Notifications .Notification button.Close {
    float: right;
    margin-right: -1em;
    background: none;
    border: none;
}

#Notifications .Notification a {
    border-bottom: 1px dotted #555;
}

#Notifications .Notification a:hover {
    border-bottom-style: solid;
}

@media screen and (max-width: 768px) {
    #Notifications {
        top: auto;
        bottom: 0;
    }
}