.changestatus_btn{
    display:inline-block;
    vertical-align:top;
    color:#fff;
    font-size:15px;
    line-height:18px;
    padding:7px 10px;
    border-radius:3px;
    cursor:pointer;
    transition:all ease .15s;
    margin:0 5px 5px 0!important;
}
.changestatus_off,
.changestatus_restore{
    background:#d00000;
}
.changestatus_off:hover,
.changestatus_restore:hover{
    background:#e50000;
}
.changestatus_confirm{
    background:#ff9900;
}
.changestatus_confirm:hover{
    background:#ff5300;
}
.changestatus_modal .changestatus_btns{
    margin-top:10px;
    display:inline-block;
    vertical-align:top;
}
.changestatus_continue{
    background:#d00000;
    margin-right:10px;
}
.changestatus_continue:hover{
    background:#e50000;
}
.changestatus_cancel{
    background:#b4a8ac;
}
.changestatus_cancel:hover{
    background:#a89da0;
}
.changestatus_btn.error_btn{
    cursor:text!important;
    background:transparent!important;
    color:#e50000!important;
    padding:7px 0;
}
.changestatus_modal{
    width:100%;
    height:100%;
    position:fixed;
    z-index:100;
    background:rgba(0,0,0,.7);
    animation:changestatus_show ease-out .3s 1;
}
.changestatus_modal_body{
    width:540px;
    max-width:calc(100% - 40px);
    padding:35px 30px;
    border-radius:3px;
    position:absolute;
    background:#fff;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
}
.changestatus_modal .changestatus_label{
    margin:0;
    line-height:115%;
    font-weight:bold;
}
.changestatus_modal h3{
    margin-bottom:20px;
    line-height:115%;
}
.changestatus_modal select{
    width:100%;
    height:36px;
    border:1px solid #a1a1a1;
    border-radius:3px;
    margin-bottom:15px;
}
.changestatus_off_text{
    display:inline-block;
    vertical-align:top;
    color:#fff;
    font-size:15px;
    line-height:18px;
    padding:7px 10px;
    background:#a89da0;
    border-radius:3px;
    cursor:help;
    margin:0 5px 5px 0;
}
.changestatus_off_text.changestatus_not_reason{
    cursor:default;
}
@keyframes changestatus_show{
    from{opacity:0;}
    to{opacity:1;}
}
.tooltip{
    position:absolute;
    z-index:999;
    left:-9999px;
    background:rgba(0,0,0,.9);
    color:#f0f0f0;
    padding:5px 7px;
    border-radius:3px;
    width:200px;
    font-size:13px;
}