.confirm-box,
.confirm-box .d1 {
    font-family: Roboto, sans-serif
}
.confirm-box {
    max-width: 378px;
	width:80%;
    height: 200px;
    background-color: #fafafa;
    border-radius: 3px;
    /*box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);*/
    position: fixed;
    left: 0;
    right: 0;
    top: 100%;
    bottom: 0;
    margin: auto;
    z-index: 99999999999;
    padding: 23px 30px;
    box-sizing: border-box;
    display: block;
    -webkit-transition:all 0.4s ease-in-out;
    -ms-transition:all 0.4s ease-in-out;
    -o-transition:all 0.4s ease-in-out;
    -moz-transition:all 0.4s ease-in-out;
    transition:all 0.4s ease-in-out;
    -ms-transform: scale(0, 0); /* IE 9 */
    -webkit-transform: scale(0, 0); /* Safari */
    transform: scale(0, 0);
    opacity: 0;
}
.confirm-box.animate{
    -ms-transform: scale(1, 1); /* IE 9 */
    -webkit-transform: scale(1, 1); /* Safari */
    transform: scale(1, 1);
    opacity: 1;
    top:0;
}
.confirm-box h2 {
    margin-top: 0
}
.confirm-box .d1.msg {
    font-size: 14px;
    height: 72px;
    overflow-y: auto;
    overflow-x: visible;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px
}
.confirm-box .d1 {
    color: rgba(0, 0, 0, .87);
    font-size: 20px;
    margin-bottom: 27px;
    position: relative;
}
.confirm-box .d1 i{
    position: absolute;
    left: 3px;
    font-size: 28px;
    top: 0;
}
.confirm-box .d2,
.confirm-box .d3 {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    letter-spacing: .5px;
    cursor: pointer
    margin-left:6px;
}
.confirm-box .d2 {
    color: rgba(0, 0, 0, .54);
    float: left;
    border: 0
}
.confirm-box .d3.d {
    background: #099885;
}
.confirm-box .d3 {
    font-weight: 500;
    float: right;
    height: 40px;
    width: 80px;
    background: rgba(255, 0, 0, 0.58);
    border-radius: 5px;    
    padding-left: 0;
    text-align: center;
    line-height: 35px;
    color: #FFF;
    margin-left: 10px;
    border: 0
}
.confirm-box .d3:active{
	background: #000000;
}
.confirm-box .d1.msg:before {
    position: absolute;
    left: 10px;
    top: -5px;
    content: url(../images/info-icon-orange.png);
    display: block
}
.confirm-box .head {
    height: 32px;
    line-height: 22px;
    color: #FFF;
    background: #000000;
    padding: 5px 10px;
    border-radius: 0;
    margin: -30px -30px 20px
}
.overlay2 {
    z-index: 99999999999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5)
}