<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.mw_hellobar_box{
    position: relative;
    box-shadow: 0 0 8px #000;
}

.mw_hellobar_close{
    position: absolute;
    right: 10px;
    top: 10px;
    color: red;
    cursor: pointer;
}

.mw_hellobar_close:hover{
    color: #000;
}

.mw_hellobar_box_content{
    padding: 40px 20px 20px 20px;
    text-align: center;
    position: relative;
}

.mw_hellobar_box_content p{
    font-weight: bold;
    font-size: 0.9em;
    color: #22526A;
}


.mw_hellobar_box_content_btn {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
}

.mw_hellobar_center{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 98;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw_hellobar_center .mw_hellobar_box{
    display: block;
    background: #fff;
    width: 500px;
    max-width: 90%;
    opacity: 0;
}

.mw_hellobar_right_bottom{
    position: fixed;
    right: -360px;
    bottom: 20px;
    z-index: 99;
    width: 360px;
    max-width: calc(100% - 40px);
    opacity: 0;
    display: none;
}

.mw_hellobar_right_bottom .mw_hellobar_box{
    background: #FFF;
}

.mw_hellobar_right_top{
    position: fixed;
    right: -360px;
    top: 20px;
    z-index: 99;
    width: 360px;
    max-width: calc(100% - 40px);
    opacity: 0;
    display: none;
}

.mw_hellobar_right_top .mw_hellobar_box{
    background: #FFF;
}</pre></body></html>