﻿/* MSGBox Area */
.MSGBox {visibility:hidden;position:fixed;z-index:20000;top:0%;left:0%;width:100%;height:100%;padding:0px 16px;box-sizing:border-box}

/* MSGBox Position */
.cls_MSGBox_Position {z-index:1;position:relative;top:0;bottom:0;height:100%;width:100%}

/* 顯示 - 提示訊息區域 */
.MSGBox_Show {visibility:visible}

/* 提示訊息內容 */
.MSGBox_Content{position:relative;margin:0 auto 115px auto;width:100%;max-width:400px;-webkit-transform:scale(0.6);-moz-transform:scale(0.6);-ms-transform:scale(0.6);transform:scale(0.6);opacity:0;-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s;transition-timing-function:ease-in-out;padding:24px 24px 32px 24px;box-sizing:border-box;border-radius:3px;color:#fff;background-image:url(../../Images/dw/BG_Pop.svg);background-size:100%;background-repeat:no-repeat;background-color:#1e1e1e}

/* 顯示後 - 提示訊息內容 */
.MSGBox_Show .MSGBox_Content {-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}

/* 圓角區域 */
.MSGBox_Content table {border-collapse:collapse;border:0;word-break:break-all;margin:0px auto}
.MSGBox_Content table td {border-collapse:collapse;border:0;text-align:center;padding:0px 5px;box-sizing:border-box}

/* 訊息圖示 */
.MSGBox_ICON {width:100%;text-align:center;margin-bottom:20px;box-sizing:border-box}
.MSGBox_ICON img {width:54px}

/* 訊息 */
.MSGBox_Message {font-size:20px;font-weight:bold;width:100%}

/* 按鈕樣式 */
.MSGBox_Content table.MSGBox_BottomArea {margin-top:35px}

/* 關閉按鈕 */
.MSGBox_Close{position:absolute;top:13px;right:10px;margin:0;padding:0;width:20px;height:20px;opacity:1;font-size:inherit;line-height:1.5;cursor:pointer}
.MSGBox_Close:before {content:"";display:inline-block;width:20px;height:20px;background-image:url(../../Images/dw/ICON_Close.svg)}

/* 遮罩層 */
.MSGBox_Overlay {display:none;opacity:0;position:fixed;width:100%;height:100%;top:0;left:0;z-index:1000;background:rgba(0, 0, 0, 0.7);-webkit-transition:all .3s;-moz-transition:all .3s;transition:all .3s}
.MSGBox_Show ~ .MSGBox_Overlay {display:block;opacity:1}