﻿/* Msg styling */
.webPlusMsg {
    display: flex;
    border: solid 2px;
    color: white;
    background-color: #222;
    border-color: #222;
}

.webPlusMsg.msg_info > .messageIconContainer i {
    color: deepskyblue;
}

.webPlusMsg.msg_success > .messageIconContainer i {
    color: limegreen;
}

.webPlusMsg.msg_warning > .messageIconContainer i {
    color: orange;
}

.webPlusMsg.msg_error > .messageIconContainer i {
    color: red;
}

.webPlusMsg.msg_notification > .messageIconContainer i {
    color: yellow;
}

.webPlusMsg > .messageIconContainer i {
    margin: 10px 22px;
    font-size: 2em;
    vertical-align: middle;
}

.webPlusMsg > .messageIconContainer {
    padding-top: 12px;
    padding-bottom: 12px;
}

.webPlusMsg > .messageDataContainer {
    padding: 12px;
}

.messageSectionFooter {
    width: 100%;
    height: 10px;
    background-color: #222;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.messageSectionHeader {
    width: 100%;
    height: 10px;
    background-color: #222;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}



/* Validation styling */
.highlightSection {
    border-color: red;
    border-width: thin;
    border-style: dashed;
}

.validationMessage{
    color: red;
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 2px;
}

.validationMessage a{
    color: yellow;
    text-decoration: none;
}

.validationMessage a:hover {
    color: lightyellow;
    text-decoration: underline;
}

.messageIcon {
    float: left;
    margin-top: 0px!important;
    margin-bottom: 0px!important;
    height: auto;
}

.tableSection {
    display: inherit; /* Use     display: table;     to make the message full width */
}

.highlightFormField{
    border-color: red;
    border-width: thin;
    border-style: solid;
}





/* Bubbles, badges and info sections */

.infoBadge, .infoBubble>.message {
    padding: 10px;
    background-color: cadetblue;
    border-radius: 6px;
    color: white;
    font-size: 0.9em;
}

.infoBubble>.message p, .infoBubble>.message label, .infoBadge p, .infoBadge label, .highlight p, .highlight label {
    margin-bottom: 0px;
}

.infoBubble>.arrow-down, .infoBubble>.arrow-up {
    border-color: cadetblue;
}

.infoPrimary > .message {
    padding: 5px 10px 5px 10px;
    border-radius: 6px;
    font-size: 0.9em;
}

.validationMessage>.infoBadge, .validationMessage>.infoBubble>.message, .importantMessage>.infoBubble>.message {
    background-color: red;
}

.validationMessage > .infoBubble > .arrow-down, .importantMessage>.infoBubble>.arrow-down {
    border-color: red;
}

.validationMessage>.messageIcon {
    display: table-cell;
    font-size: 2.0em;
    margin-right: 5px;
}

.validationMessage>.infoBadge, .validationMessage>.infoBubble {
    width: 100%;
    display: table-cell;
    vertical-align: top;
}