/*!
 * # Semantic UI 2.0.0 - Message
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Copyright 2015 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */


/*******************************
            Message
*******************************/

.ui.message {
    position: relative;
    min-height: 1em;
    margin: 1em 0em;
    background: #f8f8f9;
    padding: 1em 1.5em;
    line-height: 1.4285em;
    color: rgba(0, 0, 0, 0.87);
    -webkit-transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
    transition: opacity 0.1s ease, color 0.1s ease, background 0.1s ease, box-shadow 0.1s ease;
    border-radius: 0.28571429rem;
    box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
    font-size: 1em;
}

    .ui.message:first-child {
        margin-top: 0em;
    }

    .ui.message:last-child {
        margin-bottom: 0em;
    }

    /*--------------
     Content
---------------*/


    /* Header */
    .ui.message .header {
        display: block;
        font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
        font-weight: bold;
        margin: -0.14285em 0em 0rem 0em;
    }

        /* Default font size */
        .ui.message .header:not(.ui) {
            font-size: 1.14285714em;
        }

    /* Paragraph */
    .ui.message p {
        opacity: 0.85;
        margin: 0.75em 0em;
    }

        .ui.message p:first-child {
            margin-top: 0em;
        }

        .ui.message p:last-child {
            margin-bottom: 0em;
        }

    .ui.message .header + p {
        margin-top: 0.25em;
    }

    /* List */
    .ui.message ul.list {
        text-align: left;
        padding: 0em;
        opacity: 0.85;
        list-style-position: inside;
        margin: 0.5em 0em 0em;
    }

        .ui.message ul.list:first-child {
            margin-top: 0em;
        }

        .ui.message ul.list:last-child {
            margin-bottom: 0em;
        }

        .ui.message ul.list li {
            position: relative;
            list-style-type: none;
            margin: 0em 0em 0.3em 1em;
            padding: 0em;
        }

            .ui.message ul.list li:before {
                position: absolute;
                content: '•';
                left: -1em;
                height: 100%;
                vertical-align: baseline;
            }

            .ui.message ul.list li:last-child {
                margin-bottom: 0em;
            }

    /*.semantic-icon */
    .ui.message > .semantic-icon {
        margin-right: 0.6em;
    }

    /* Close.semantic-icon */
    .ui.message > .close.semantic-icon {
        cursor: pointer;
        position: absolute;
        margin: 0em;
        top: 0.78575em;
        right: 0.5em;
        opacity: 0.7;
        -webkit-transition: opacity 0.1s ease;
        transition: opacity 0.1s ease;
    }

        .ui.message > .close.semantic-icon:hover {
            opacity: 1;
        }

    /* First / Last Element */
    .ui.message > :first-child {
        margin-top: 0em;
    }

    .ui.message > :last-child {
        margin-bottom: 0em;
    }


/*******************************
            Coupling
*******************************/

.ui.dropdown .menu > .message {
    margin: 0px -1px;
}


/*******************************
            States
*******************************/


/*--------------
    Visible
---------------*/

.ui.visible.visible.visible.visible.message {
    display: block;
}

.ui.semantic-icon.visible.visible.visible.visible.message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/*--------------
     Hidden
---------------*/

.ui.hidden.hidden.hidden.hidden.message {
    display: none;
}


/*******************************
            Variations
*******************************/


/*--------------
    Compact
---------------*/

.ui.compact.message {
    display: inline-block;
}

/*--------------
    Attached
---------------*/

.ui.attached.message {
    margin-bottom: -1px;
    border-radius: 0.28571429rem 0.28571429rem 0em 0em;
    box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset;
    margin-left: -1px;
    margin-right: -1px;
}

.ui.attached + .ui.attached.message:not(.top):not(.bottom) {
    margin-top: -1px;
    border-radius: 0em;
}

.ui.bottom.attached.message {
    margin-top: -1px;
    border-radius: 0em 0em 0.28571429rem 0.28571429rem;
    box-shadow: 0em 0em 0em 1px rgba(34, 36, 38, 0.15) inset, 0px 1px 2px 0 rgba(34, 36, 38, 0.15);
}

    .ui.bottom.attached.message:not(:last-child) {
        margin-bottom: 1em;
    }

.ui.attached.semantic-icon.message {
    display: block;
    width: auto;
}

/*--------------
     .semantic-icon
---------------*/

.ui.semantic-icon.message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .ui.semantic-icon.message > .semantic-icon:not(.close) {
        display: block;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: auto;
        line-height: 1;
        vertical-align: middle;
        font-size: 3em;
        opacity: 0.8;
    }

    .ui.semantic-icon.message > .content {
        display: block;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        vertical-align: middle;
    }

    .ui.semantic-icon.message .semantic-icon:not(.close) + .content {
        padding-left: 0rem;
    }

    .ui.semantic-icon.message .circular.semantic-icon {
        width: 1em;
    }

/*--------------
    Floating
---------------*/

.ui.floating.message {
    box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.22) inset, 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.08);
}

/*--------------
     Colors
---------------*/

.ui.black.message {
    background-color: #1b1c1d;
    color: rgba(255, 255, 255, 0.9);
}

/*--------------
     Types
---------------*/


/* Positive */
.ui.positive.message {
    background-color: #fcfff5;
    color: #2c662d;
}

.ui.positive.message,
.ui.attached.positive.message {
    box-shadow: 0px 0px 0px 1px #a3c293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

    .ui.positive.message .header {
        color: #1a531b;
    }

/* Negative */
.ui.negative.message {
    background-color: #fff6f6;
    color: #9f3a38;
}

.ui.negative.message,
.ui.attached.negative.message {
    box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

    .ui.negative.message .header {
        color: #912d2b;
    }

/* Info */
.ui.info.message {
    background-color: #f8ffff;
    color: #276f86;
}

.ui.info.message,
.ui.attached.info.message {
    box-shadow: 0px 0px 0px 1px #a9d5de inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

    .ui.info.message .header {
        color: #0e566c;
    }

/* Warning */
.ui.warning.message {
    background-color: #fffaf3;
    color: #573a08;
}

.ui.warning.message,
.ui.attached.warning.message {
    box-shadow: 0px 0px 0px 1px #c9ba9b inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

    .ui.warning.message .header {
        color: #794b02;
    }

/* Error */
.ui.error.message {
    background-color: #fff6f6;
    color: #9f3a38;
}

.ui.error.message,
.ui.attached.error.message {
    box-shadow: 0px 0px 0px 1px #e0b4b4 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

    .ui.error.message .header {
        color: #912d2b;
    }

/* Success */
.ui.success.message {
    background-color: #fcfff5;
    color: #2c662d;
}

.ui.success.message,
.ui.attached.success.message {
    box-shadow: 0px 0px 0px 1px #a3c293 inset, 0px 0px 0px 0px rgba(0, 0, 0, 0);
}

    .ui.success.message .header {
        color: #1a531b;
    }

/* Colors */
.ui.inverted.message,
.ui.black.message {
    background-color: #1b1c1d;
    color: rgba(255, 255, 255, 0.9);
}

.ui.red.message {
    background-color: #ffe8e6;
    color: #db2828;
}

    .ui.red.message .header {
        color: #c82121;
    }

.ui.orange.message {
    background-color: #ffedde;
    color: #f2711c;
}

    .ui.orange.message .header {
        color: #e7640d;
    }

.ui.yellow.message {
    background-color: #fff8db;
    color: #b58105;
}

    .ui.yellow.message .header {
        color: #9c6f04;
    }

.ui.olive.message {
    background-color: #fbfdef;
    color: #8abc1e;
}

    .ui.olive.message .header {
        color: #7aa61a;
    }

.ui.green.message {
    background-color: #e5f9e7;
    color: #1ebc30;
}

    .ui.green.message .header {
        color: #1aa62a;
    }

.ui.teal.message {
    background-color: #e1f7f7;
    color: #10a3a3;
}

    .ui.teal.message .header {
        color: #0e8c8c;
    }

.ui.blue.message {
    background-color: #dff0ff;
    color: #2185d0;
}

    .ui.blue.message .header {
        color: #1e77ba;
    }

.ui.violet.message {
    background-color: #eae7ff;
    color: #6435c9;
}

    .ui.violet.message .header {
        color: #5a30b5;
    }

.ui.purple.message {
    background-color: #f6e7ff;
    color: #a333c8;
}

    .ui.purple.message .header {
        color: #922eb4;
    }

.ui.pink.message {
    background-color: #ffe3fb;
    color: #e03997;
}

    .ui.pink.message .header {
        color: #dd238b;
    }

.ui.brown.message {
    background-color: #f1e2d3;
    color: #a5673f;
}

    .ui.brown.message .header {
        color: #935b38;
    }

/*--------------
     Sizes
---------------*/
.ui.tiny.message,
.ui.tiny.message p,
.ui.tiny.message div {
    font-size: 0.75857143em !important;
}

.ui.small.message {
    padding: 0.2857143em 1.5em;
}

    .ui.small.message,
    .ui.small.message p,
    .ui.small.message div {
        font-size: 0.92857143em !important;
    }

.ui.large.message,
.ui.large.message p,
.ui.large.message div {
    font-size: 1.14285714em !important;
}

.ui.huge.message,
.ui.huge.message p,
.ui.huge.message div {
    font-size: 1.42857143em !important;
}

.ui.massive.message,
.ui.massive.message p,
.ui.massive.message div {
    font-size: 1.71428571em !important;
}


/*******************************
         Theme Overrides
*******************************/



/*******************************
    User Variable Overrides
*******************************/
@media only screen and (max-width: 767px) {
    .ui.message {
        padding: 0.5em 1em;
    }
}
