#dlg_warning,
#dlg_warning_subtext,
#dlg_confirm {
    width: 500px;
    height: 200px;
    border-radius: 8px;
    background-color: #2A2A2A;
}

#dlg_warning2 {
    height: 200px;
    border-radius: 8px;
    background-color: #2A2A2A;
}

#dlg_warning .box,
#dlg_warning2 .box,
#dlg_warning_subtext .box,
#dlg_confirm .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 26px;
}

#dlg_warning .content,
#dlg_warning2 .content,
#dlg_confirm .content {
    width: 364px;
    height: 88px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: break-spaces;
}

/* #dlg_warning .ok {
    width: 204px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(180deg, #69C9C3 0%, #3F8F8A 100%);
    border: 2px solid #60B2AD;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
} */

/*  */
#dlg_warning_subtext .content_box {
    width: 364px;
    height: 88px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

dialog .ok,
dialog .confirm {
    width: 204px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(180deg, #69C9C3 0%, #3F8F8A 100%);
    border: 2px solid #60B2AD;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    box-sizing: border-box;
}

dialog .ok2 {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(180deg, #69C9C3 0%, #3F8F8A 100%);
    border: 2px solid #60B2AD;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    box-sizing: border-box;
}

dialog .cancel {
    width: 204px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(180deg, #9B9B9B 0%, #514F4F 100%);
    border: 2px solid #828282;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    box-sizing: border-box;
}

#dlg_confirm .action_box {
    display: flex;
    column-gap: 16px;
}