.notification-era-container{
    position: fixed;
    max-width: 500px;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out, top 0.8s;
    transition: opacity 0.3s ease-in-out, top 0.8s;
    z-index: 100;
}

.notification-era-container.-show {
    top: 90px;
    visibility: visible;
    opacity: 1;
}

.notification-era-box {
    margin: 0 10px;
    padding: 20px;
    background-color: white;
    border-radius: 1px;
    border: solid #c2c2c2 1px;
}

.notification-era-box > div.title{
    margin-bottom: 20px;
}

.notification-era-box > div.title:before {
    content: "\f0f3";
    font-family: FontAwesome;
    margin-right: 10px;
}