﻿.jq-confirm-wrapper{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.jq-confirm-fade{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:999;
    background-color:#000;
    opacity:0.7;
}

.jq-confirm-wrapper .jq-confirm-box{
    position:fixed;
    max-width:360px;
    min-width:220px;
    white-space:normal;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background-color:white;
    z-index:1000;
    border-radius:5px;
    /*box-shadow:5px 0 6px 0 #0a0a36,0px 15px 15px 0 #00003b,0px 25px 15px 0 #00001f,0px -5px 6px 0 #000021,-5px 0 6px 0 #000021;*/
    padding:4px 15px;
}
.jq-confirm-p:before {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background:  url('../images/tip.png');
    background-size: 100% 100%;
}
.jq-confirm-content{
    height:110px;
    display:table;
    width:100%;
    text-align:center;
    overflow:hidden;
}
.jq-confirm-p{
    display:table-cell;
    vertical-align:middle;
}
.jq-confirm-btnbox{
    border-top:1px solid #dedede;
    text-align:center;
    padding-top:12px;
}
.jq-confirm-btn{
   margin-left:10px;
   margin-right:10px;
   padding:4px 16px;
   color:white;
   /*letter-spacing:4px;*/
   border:none;
cursor:pointer;
border-radius:5px;
}
.jq-confirm-btn-confirm{
    background-color:#ff0000;
}
.jq-confirm-btn-cancel{
    background-color:#adadad;
}