.notification-container {
    position: fixed;
    top: 65px;
    right: 0;
    width: 415px;
    max-height: 100%;
    overflow-y: auto;
    z-index: 800;
}
.notification {
    width: 400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-shadow: 8px 11px 21px -10px #000000;
    box-shadow: 8px 11px 21px -10px #000000;
    background-color: white;
    margin-bottom: 15px;
    margin-right: 15px;
}

.notification-title {
    background-color: #C5962E;
    line-height: 30px;
    color: white;
    height: 30px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.notification-title .fa-remove {
    font-size: 15px;
    margin-top: 7px;
    cursor: pointer;
}

.notification-content {
    width: 100%;
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.notification-message {
    width: 100%;
    height: auto;
    word-break: break-word;
}

.notification-firm {
    width: 100%;
    color: #1a499b;
    font-weight: bold;
}

.notification-button {
    width: 100%;
    text-align: center;
    height: 60px;
    line-height: 60px;
}

.notification-button > a {
    background-color: #FFBA21;
    padding: 10px 10px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}