﻿.msg-wnd {
    width: auto;
    max-width: 500px;
    min-width: 230px;
    margin: auto;
    /*font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;*/
    position: fixed;
    display: none;
    overflow: hidden;
    /*z-index: 9000;*/
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

    .msg-wnd .msg-canvas {
        width: 100%;
        height: 100%;
        background:#000;
        overflow: hidden;
        position: absolute;
        display: block;
        filter: alpha(opacity=75);
        -moz-opacity: 0.75;
        opacity: 0.75;
    }

    .msg-wnd .inner {
        padding:28px 42px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        position: relative;
        word-break: break-all;
        z-index: 5001;
    }
        .msg-wnd .inner .icon-con {
            width: 42px;
            height: 42px;
            line-height: 42px;
            margin:auto;
            font-size: 42px;
        }

        .msg-wnd .inner .loading {
            margin: 20px auto;
        }



        .msg-wnd .inner .icon-info, .msg-wnd .inner .icon-err {
            width: 40px;
            height: 40px;
            color: #0000ff;
            background: #fff;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
            position: relative;
            display: inline-block;
        }
            .msg-wnd .inner .icon-info:before, .msg-wnd .inner .icon-warn:before, .msg-wnd .inner .icon-err:before {
                left: 50%;
                top: 50%;
                line-height: 42px;
                margin:-21px 0 0 -21px;
                position: absolute;
                display: inline-block;
            }

        .msg-wnd .inner .icon-err {
            color: #ff0000;
        }

        .msg-wnd .inner .icon-warn {
            width: 40px;
            height: 40px;
            color: #ffd800;
            position: relative;
            z-index: 100;
            display: inline-block;
            /*background: #fff;*/
        }


            .msg-wnd .inner .icon-warn:before {
                line-height: 42px;
                position: absolute;
                margin-left: -21px;
            }

            .msg-wnd .inner p {
                margin-top: 20px;
            }