﻿/* MSGBox Area */
.MSGBox {visibility:hidden;position:fixed;z-index:20000;top:0%;left:0%;width:100%;height:100%}

/* 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;width:315px;background:#fff;-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}

/* 顯示後 - 提示訊息內容 */
.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 0px 21px 0px}

/* 訊息圖示 */
.MSGBox_ICON {width:100%;text-align:center;padding:32px 0px 21px 0px;box-sizing:border-box}
.MSGBox_ICON img {width:77px}

/* 訊息 */
.MSGBox_Message {font-size:21px;color:#172439;max-width:252px}

/* 按鈕樣式 */
.MSGBox_Button {color:#c43826;letter-spacing:-0.13px;font-size:21px;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:20px 0px;box-sizing:border-box}
.MSGBox_Button a {text-decoration:none;color:#c43826}

/* 遮罩層 */
.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}