#nb_content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-x: scroll;
    font-size: 24px;
}
.nb_check_container, .nb_check_container_left {
    position: relative;
    cursor: pointer;
    padding-right: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nb_check_container input, .nb_check_container_left input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.nb_checkmark, .nb_checkmark_left {
    position: absolute;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #AAAAAA;
}
.nb_check_container:hover input ~ .nb_checkmark,
.nb_check_container_left:hover input ~ .nb_checkmark_left {
    background-color: #CCCCCC;
}
.nb_check_container input:checked ~ .nb_checkmark,
.nb_check_container_left input:checked ~ .nb_checkmark_left {
    background-color: #008A00;
}
.nb_checkmark:after,
.nb_checkmark_left:after {
    content: "";
    position: absolute;
    display: none;
}
.nb_check_container input:checked ~ .nb_checkmark:after,
.nb_check_container_left input:checked ~ .nb_checkmark_left:after {
    display: block;
}
.nb_check_container .nb_checkmark:after,
.nb_check_container_left .nb_checkmark_left:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nb_check_container {
    padding-right: 35px;
}
.nb_check_container_left {
    padding-left: 35px;
}
.nb_checkmark {
    right: 0;
}
.nb_checkmark_left {
    left: 0;
}
#nb_confirm {
    display: none;
    background-color: rgba(255,255,255,0.75);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
#nb_confirm button {
    font-size: 17px;
    font-weight: bold;
    width: 5rem;
    padding: 0.75rem;
    margin: 0.75rem;
}
#nb_confirm > div:last-of-type {
    padding: 10px 20px;
    background: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3) !important;
}
#nb_confirm > div:last-of-type div:first-of-type {
    min-width: 150px;
    padding: 10px;
}
#nb_confirm > div:last-of-type div:last-of-type {
    text-align: center;
}
#nb_message_box {
    display: none;
    background-color: rgba(255,255,255,0.75);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
#nb_message_box button {
    font-size: 17px;
    font-weight: bold;
    width: 5rem;
    padding: 0.75rem;
    margin: 0.75rem;
}
#nb_message_box > div:last-of-type {
    padding: 10px 20px;
    background: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3) !important;
}
#nb_message_box > div:last-of-type div:first-of-type {
    min-width: 150px;
    padding: 10px;
}
#nb_message_box > div:last-of-type div:last-of-type {
    text-align: center;
}
#nb_alerts {
    position: fixed;
    bottom: 1em;
    right: 1em;
    margin-bottom: 0.5rem;
    z-index: 9999;
}
#nb_alert {
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 3px;
    padding: 0 1rem 1rem 1rem;
    margin-bottom: 0.5rem;
}
#nb_alert > .nb_alert_img {
    margin: 0;
    position: absolute;
    top: 10%;
    right: 0.25rem;
    width: 45px; height: 45px;
}
#nb_alert > .nb_alert_msg {
    font-size: 16px;
    padding-right: 2rem;
    margin-right: 1.75rem;
}
.nb_success {
    border: 2px solid #98CF7D;
    background-color: #D9F9CA;
}
.nb_success , .nb_success h3 {
    color: #337717;
}
.nb_error {
    border: 2px solid #CF7D7D;
    background-color: #F9CACA;
}
.nb_error, .nb_error h3 {
    color: #771717;
}
.nb_upper {
    text-transform: uppercase;
}
.nb_lower {
    text-transform: lowercase;
}
.nb_sortable {
    cursor: pointer;
}
.nb_none {
    display: none;
}
.va-mid {
    vertical-align: middle !important;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.bold {
    font-weight: bold;
}
.nb_dark_mode {}
#nb_processing_screen {
    display: none;
    background-color: rgba(255,255,255,0.5);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: url('/ui/img/wait.gif');
    background-repeat: no-repeat;
    background-position: center;
}
#nb_process_text {
    position: absolute;
    top: 49.3%;
    width: 100%;
    font-size: 9.5px;
    text-align: center;
}
#nb_confirm {
    display: none;
    background-color: rgba(255,255,255,0.75);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
#nb_confirm button {
    font-size: 17px;
    font-weight: bold;
    width: 5rem;
    padding: 0.75rem;
    margin: 0.75rem;
}
#nb_confirm > div:last-of-type {
    padding: 10px 20px;
    background: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3) !important;
}
#nb_confirm > div:last-of-type div:first-of-type {
    min-width: 150px;
    padding: 10px;
}
#nb_confirm > div:last-of-type div:last-of-type {
    text-align: center;
}
#nb_message_box {
    display: none;
    background-color: rgba(255,255,255,0.75);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
#nb_message_box button {
    font-size: 17px;
    font-weight: bold;
    width: 5rem;
    padding: 0.75rem;
    margin: 0.75rem;
}
#nb_message_box > div:last-of-type {
    padding: 10px 20px;
    background: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3) !important;
}
#nb_message_box > div:last-of-type div:first-of-type {
    min-width: 150px;
    padding: 10px;
}
#nb_message_box > div:last-of-type div:last-of-type {
    text-align: center;
}
#nb_user_notice {
    display: none;
    background-color: rgba(255,255,255,0.75);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.nb_user_notice_inner {
    position: absolute;
    top: 35%;
    bottom: 35%;
    left: 35%;
    right: 35%;
    padding: 1rem;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    box-shadow: 1px 1px rgba(0,0,0,0.5);
}
#nb_user_popup, #nb_user_action {
    display: none;
    cursor: pointer;
    background-color: rgba(255,255,255,0.75);
    z-index: 255;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.nb_user_popup_inner, .nb_user_action_inner {
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    overflow: scroll;
    text-align: center;
    left: 35%;
    right: 35%;
    padding: 1rem;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    box-shadow: 1px 1px rgba(0,0,0,0.5);
}
#nb_user_action {
    cursor: inherit;
}
#nb_processing_screen, #nb_user_notice, #nb_user_popup, #nb_user_action, #nb_confirm, #nb_message_box,.nb_cancel_save {
    background-color: rgba(128,128,128,0.5);
}
#nb_confirm > div:last-of-type,
#nb_message_box > div:last-of-type
{
    background: #252525;
    color: white;
}
pre {
    color: #E7E7E7;
}
.nb_menu_head_dark {
    background-color: #102D4F;
}
body, #nb_foot, #nb_head, .header-topnav {
    font-family: Verdana !important;
    background-color: #111111 !important;
    color: #DFDFDF !important;
}
textarea {
    background-color: #252525 !important;
    color: white !important;
}
.menu li svg {
    color : white !important;
}
a, .card-title, .text-title, h1, h2, h3, h4, h5, h6 {
    color : #DFDFDF !important;
}
hr {
    border-top: 1px solid rgba(128, 128, 128, 0.5);
}
.nb_success h3 {
    color: #337717 !important;
}
.nb_error h3 {
    color: #771717 !important;
}
.form-group label {
    color: #DFDFDF !important;
}
.form-control-plaintext {
    color: #DFDFDF;
}
.form-control {
    background: #323232;
    border: 1px solid #999999;
    color: #DFDFDF;
}
.form-control:disabled,
.form-control[readonly]
{
    background: #272727;
}
.form-control:focus {
    background-color: #142f50;
    color: #fff;
}
.form-control {
    display: inline-block !important;
}
.btn, .btn-primary {
    background-color: rgba(0, 255, 0, 0.25) !important;
    border-color: rgba(0, 128, 0, 0.25) !important;
}

#nb_management {
    border-bottom: 2px solid rgba(40, 200, 104, 0.25);
    height: 4rem;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    padding: 1rem;
    text-align: center;
}
a {
    color: #0CC066 !important;
}
#nb_mgt_mkt {
    right: 0.5rem;
    bottom: 1rem;
    position: absolute;
    font-size: 0.75rem;
    font-style: italic;
}
#nb_info {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    overflow-x: scroll;
}
.turn_on {
    background: green !important;
    border-color: green !important;
}
.turn_off {
    background: red !important;
    border-color: red !important;
}
#nb_loading
{
    font-size: 5rem;
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center;
}
#nb_load_txt {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
#nb_load_bar {
    height: 0.25rem;
    width: 50%;
    background-color: green;
    position: relative;
    left: 25%;
}
#nb_chat
{
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 12.5rem;
    overflow: scroll;
}
#nb_chat_ask
{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-align: right;
    position: absolute;
    right: 1rem;
    left: 1rem;
    bottom: 0;
}
#nb_chat_prompt
{
    font-size: 1.5rem;
    width: 100%;
    border: 1px solid rgba(0, 255, 0, 0.15) !important;
}
#nb_prompt_send
{
    margin-top: 0.5rem;
    font-size: 1.25rem;
}
#nb_alert
{
    position: absolute;
    bottom: 0;
    font-size: 0.75rem;
    padding: 0.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.5);
    background-color: rgba(128,128,128,0.25);
}
#nb_no_alerts
{
    position: absolute;
    bottom: 0;
    font-size: 0.75rem;
    font-weight: bold;
    display: none;
}
#nb_open_quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 24px;
    color: rgba(128,128,128,0.75);
}
#nb_chat_options {
    font-size: 14px;
    z-index: 255;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 14px;
    margin-top: 20px;
}
#nb_chat_options button {
    font-size: 10px;
}
span {
    vertical-align: top;
    display: block;
}
span > b {
    vertical-align: top;
}
.code {
    font-size: 1rem;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 0.25rem;
    padding: 0.5rem;
    background-color: rgba(128,128,128,0.25);
}
.il-pre {
    font-size: 22px;
    display: inline;
    font-family: monospace;
    word-wrap: break-word;
}

.ad {
    font-size: 30px;
    border: 2px solid;
    border-radius: 6px;
    padding: 1rem;
    background-color: rgba(128,128,128,0.5);
}
.ad1 { animation: b1 2s linear infinite; }
.ad2 { animation: b2 2s linear infinite; }
.ad3 { animation: b3 2s linear infinite; }
.ad4 { animation: b4 2s linear infinite; }
.ad5 { animation: b5 2s linear infinite; }
@keyframes b1 { 50% { color: #AD310B; background-color: black; }}
@keyframes b2 { 50% { color: #45A80C; background-color: black; }}
@keyframes b3 { 50% { color: #0B95AD; background-color: black; }}
@keyframes b4 { 50% { color: #9040FF; background-color: black; }}
@keyframes b5 { 50% { color: #F200FF; background-color: black; }}
.remove-ad { cursor: pointer; }