.dialogbox-back {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* padding: 10px; */
    /* background-color: rgba(0,0,0,0.5); */
    text-align: center;
    display: none;
    z-index: 99999;
}
.dialogbox-main {
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    font-weight: normal;
    max-width: 320px;
    min-width: 170px;
    padding: 15px;
    position: relative;
    margin: 20% auto;
    /* background-color: rgb(255,255,255); */
    border: solid 0 rgb(90,90,90);
    overflow: auto;
    display: none;
    border-radius: 2px;
}
.dialogbox-close {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.8em;
    /* font-weight: bold; */
    text-align: center;
    width: 24px;
    height: 24px;
    padding-left: 1px;
    position: absolute;
    top: 0;
    cursor: pointer;
    transition: 400ms;
    color: #fff;
    right: 0px;
    /* background-color: rgb(240,240,240); */
}
.dialogbox-close:hover {
    background-color: rgba(192,57,43,0.7);
}
.dialogbox-title {
    font-family: Arial, Gadget, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: justify;
    color: rgb(255, 255, 255);
    /* padding-bottom: 2px; */
    overflow: auto;
    position: inherit;
    margin-top: 10px;
    /* border-bottom: solid 1px rgb(230,230,230); */
}
.close{
    background: #000;
    opacity: .7;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}
.dialogbox-message {
    color: rgb(255, 255, 255);
    padding: 10px 0;
    text-align: justify;
    position: inherit;
    margin-top: 10px;
}
.dialogbox-prompt {
    padding: 5px 0;
    display: none;
}
.dialogbox-prompt input,select {
    color: rgb(60,60,60);
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 12px;
    font-weight: normal;
    padding: 5px 3%;
    width: 93%;
    border: solid 1px rgb(210,210,210);
}
.dialogbox-button-bar {
    margin-top: 10px;
    text-align: center;
    direction: ltr;
    position: inherit;
}
.dialogbox-btn {
    width: 134px;
    height: 44px;
    line-height: 44px;
    background: #fff;
    border-radius: 2px;
    color: #4f5670;
    font-size: 15px;
    text-align: center;
    display: inline-block;
    margin: 0 2px 3px;
    cursor: pointer;
    transition: 300ms;
}
.dialogbox-btn:nth-of-type(2){
    background: #eb8757;
    color: #fff;
}
.max-close{
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    width: 100%;
    height: 100%;
}
/* .dialogbox-btn:hover {
    background-color: rgb(240,240,240);
} */