#alert,
#notice {
position: fixed;
margin-top: 80px;
z-index: 100;
}
#alert .alert-container,
#notice .alert-container {
float: right;
width: 200px;
padding: 15px;
border-radius: 4px;
background: rgba(255,0,0,.9);
border: 2px solid rgba(255,0,0,1);
}
#notice .alert-container {
background: rgba(0,255,0,.9);
border: 2px solid rgba(0,255,0,1);
}
#alert .alert-container .alert-close,
#notice .alert-container .alert-close {
position: absolute;
float: right;
top: 0;
right: 0;
padding: 10px;
font-size: 1.6em;
font-weight: 500;
}
#alert .alert-container .alert-close i,
#notice .alert-container .alert-close i {
cursor: pointer;
}
#alert .alert-container .alert-title,
#notice .alert-container .alert-title {
font-size: 1.1em;
font-weight: 500;
}
#alert .alert-container .alert-text,
#notice .alert-container .alert-text {
font-size: .9em;
font-weight: 300;
}