<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ================= */
.msg_header{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
    color: #fff;  
    min-height:3.5rem;
}
.msg_bg{
    position: fixed;
	border:1px solid rgba(0, 0, 0, 0);
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    z-index: 5;
    visibility: hidden;
}
.upwh{
    position: absolute;
    background-color: #fff;
    z-index: 3;
    padding:0;
    min-width: 300px;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    border-radius: 1rem;
}
.msg_bg,.upwh{
	left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.back{
    position: relative;
    height:100%;
    margin: 0 auto;
}

#msg_content{
    text-indent:2em;
    line-height:1.8rem;
    word-wrap: break-word;
}

.back p, #msg_content{
    position: relative;
    padding: 1.7rem;
    padding-top: 2.7rem;
    font-size: 1.5rem;
    z-index: 3;
}
.msg_bt{
	padding:8px 25px !important;
}
.red3d{
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, rgb(250, 169, 171)),
            color-stop(0.49, rgb(248, 90, 88)),
            color-stop(0.5, rgb(245, 36, 36)),
            color-stop(1, rgb(255, 68, 68))
    );
    background-image: -moz-linear-gradient(
            center top,
            rgb(250, 169, 171) 0%,
            rgb(248, 90, 88) 49%,
            rgb(245, 36, 36) 50%,
            rgb(255, 68, 68) 100%
    );
}
.blue3d{
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, rgb(112, 181, 242)),
            color-stop(0.49, rgb(84, 164, 238)),
            color-stop(0.5, rgb(54, 144, 240)),
            color-stop(1, rgb(26, 97, 219))
    );
    background-image: -moz-linear-gradient(
            center top,
            rgb(112, 181, 242) 0%,
            rgb(84, 164, 238) 49%,
            rgb(54, 144, 240) 50%,
            rgb(26, 97, 219) 100%
    );
}
.gray3d{
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, rgb(190, 190, 200)),
            color-stop(0.49, rgb(135, 135, 145)),
            color-stop(0.5, rgb(113, 113, 123)),
            color-stop(1, rgb(132, 132, 142))
    );
    background-image: -moz-linear-gradient(
            center top,
            rgb(190, 190, 200) 0%,
            rgb(135, 135, 145) 49%,
            rgb(113, 113, 123) 50%,
            rgb(132, 132, 142) 100%
    );
}
#cancel:hover{
	cursor:pointer;
}</pre></body></html>