/* basic structure */

.notification-contain {
    display: flex;
    margin: 8px 8px 0;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    min-height: 60px;
}

/* basic link behavior */

.notification-contain > * {
    display: flex;
    align-items: center;
    padding: 0px 1%;
}
.notification-contain a {
    text-decoration:none;
    color: #000;
}

/* messages */

.notification-header, .notification-message {
    font-weight: 700;
    font-size: 1em;
    line-height: 1.3em;
}
.notification-message {
    flex: 1;
    text-align: left;
    padding: 1.2em;
    display: block;
    height: 100%;
}
.notification-message a {
    display:inline-block;
    padding-bottom: .1em;
    border-bottom: 1px solid transparent;
}
.notification-message a:hover {
    border-bottom: 1px solid #000;
}
.notification-message a:after {
    font-family: 'armyicons';
    content: "\e90a";
    display: inline-block;
    margin-left:.3em;
}

/* icons message type and close btn */

.notification-header {  
    box-sizing: border-box;
}

.notification-header i {
    font-size:2.8em;
}
.notification-close i { 
    font-size:1.7em;
    padding: .2em;
    border: .5px solid;
}
.notification-close a {
    padding-bottom:0px;
}
.notification-close a i { 
    opacity: .7;
    background-color: transparent;
    transition:all .5s ease-in-out;

}
.notification-close a:hover i { 
    background-color: rgba(255,255,255,.5);
    opacity: 1;
}


/* COLOR SCHEMES */ 

/* normal */ 

.notification-contain {
    background-color: var(--core-lightgold);
}
.notification-header {  
    background-color: var(--armygold);
}

/* updates, breaking news */

.notification-contain.updates {
    background-color: var(--armygold);
}
.notification-contain.updates .notification-header {  
    background-color: var(--core-lightgold);
}

/* information */

.notification-contain.info {
    background-color: var(--armyaccenttan);
}
.notification-contain.info .notification-header {  
    background-color: var(--armyaccentfield02);
}
.notification-contain.info .notification-header i {
    color: #FFF;
}

/* warning */

.notification-contain.warning {
    background-color: var(--armyaccenttan);
}
.notification-contain.warning .notification-header {  
    background-color: red;
}
.notification-contain.warning .notification-header i {
    color: #FFF;
}
