.status_header {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 510;
}
.profiles h1 {
    margin-bottom: 12px;
}

.profiles h4 {
    font-size: 12pt;
    margin-bottom: 12px;
}

.dropdowns {
    position: absolute;
    top: 56px;
    bottom: 0;
    left: 15px;
    right: 15px;
    z-index: 400;
    pointer-events: none;
}
.dropdowns .dropdown {
    width: 100%;
    max-width: 800px;
    height: 100%;
    position: relative;
    margin: auto;
    pointer-events: all;
}
.dropdown .selector_content {
    width: 100%;
    max-width: 480px;
    max-height: 100%;
    position: absolute;
    overflow-y: auto;
    background-color: #dfdfdf;
    padding: 4px;
    box-sizing: border-box;
    border: dotted 1px #3f3f3f;
}
.profile_selector .selector_content {
    top: 62px;
    right: 8px;
}
.service_selector .selector_content {
    top: 32px;
    right: 8px;
}
.dropdown .selector_entry:hover {
    background-color: #bfbfff;
    cursor: pointer;
    cursor: hand;
}
.dropdown .selector_entry.disabled {
    color: #afafaf;
}

.profile {
    display: none;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.profile.selected {
    display: block;
}

.profile_header>.selector {
    background-color: #cfcfcf;
    color: #00001f;
}

.profiles_color .profile_header>.selector {
    background-color: #0f0fbf;
    color: #ffffff;
}

.profile_top>div {
    width: 100%;
    max-width: 800px;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.profile .profile_top {
    background-color: #f8f8f8;
    z-index: 400;
    height: 112px;
    padding-top: 8px;
}

.profile form {
    margin: 0;
}

.profile_block {
}

.profiles_color .profile_block {
    background-color: #ffefdf;
}

.profiles_color .ready .profile_block {
    background-color: #dfefff;
}

.profiles label {
    font-size: 12pt;
    display: block;
    width: 100%;
    text-align: left;
    margin: 4px auto 4px auto;
    box-sizing: border-box;
}

.profiles label>span {
    font-size: 12pt;
    display: inline-block;
    width: 30%;
    text-align: left;
    box-sizing: border-box;
    min-width: 160px;
    white-space: nowrap;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profiles .profile_section label>span {
    padding-left: 5%;
}

.profiles label input, .profiles label select.input {
    font-size: 12pt;
    width: 70%;
    height: 2em;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 4px 8px 4px 8px;
    vertical-align: middle;
}

.profile_header .selector {
    display: block;
    height: 28px;
    width: 100%;
    margin: 2px auto 0 auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12pt;
    position: relative;
}
.profile_header .selector .selector_input {
    position: absolute;
    left: 120px;
    right: 0;
    top: 0;
    box-sizing: border-box;
    display: block;
    padding: 4px 4px 2px 12px;
}
.profile .profile_header .selector .selector_input input {
    width: 100%;
    font-size: 12pt;
    padding: 2px 8px 1px 8px;
    border: solid 1px #7f7f7f;
}
.profile_header .selector input::placeholder {
    font-style: italic;
    color: #3f7f7f;
}
.profile_header .selector .alerts {
    position: absolute;
    top: 4px;
    right: 24px;
    left: auto;
    pointer-events: none;
}
.profile_header .selector .selector_button {
    right: 8px;
    top: 6px;
    left: 0;
    bottom: 0;
    position: absolute;
    display: block;
    cursor: hand;
    cursor: pointer;
    font-size: 20pt;
    text-align: right;
}
.profile:not(.readonly) .profile_header .selector:has(.editable) .selector_button {
    left: auto;
}
.profile_header .selector .selector_title {
    left: 8px;
    top: 4px;
    position: absolute;
    display: block;
}

.proxy {
    padding: 0;
    width: 100%;
    max-width: 800px;
    margin: auto auto 2px auto;
    position: relative;
}

.profiles_color .proxy {
    background-color: #ffefdf;
}

.profiles_color .proxy.proxy_accepted {
    background-color: #dfffdf;
}

.processing {
    opacity: 0.5;
    pointer-events: none;
}

.proxy.processing::after, .profile.srv_checking .srv_error::after, .ve_keyset_view:not(.ready)::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.75;
    background-image: url('/assets/loading.gif');
    background-repeat: no-repeat;
    background-position: center center;
    content: "\00a0";
}

.proxy.proxy_rejected {
    background-color: #f0f0f0;
    color: #bfbfbf;
    pointer-events: none;
}

.proxy.proxy_rejected::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #9f9f9f;
    opacity: 0.75;
    content: "DELETED";
    color: #ffffff;
    font-size: 48pt;
    padding-top: 12px;
    text-align: center;
}

.proxy .proxy_header {
    background-color: #cfcfcf;
    color: #00001f;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: border-box;
    position: relative;
}
.proxy .proxy_header .proxy_status::after {
    display: block;
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 12pt;
    font-weight: 700;
}
.proxy.online .proxy_header .proxy_status::after {
    content: 'online';
    color: #00bf00;
}
.proxy.offline .proxy_header .proxy_status::after {
    content: 'offline';
    color: #ff0000;
}

.profiles_color .proxy .proxy_header {
    background-color: #ffaf3f;
    color: #ffffff;
}

.profiles_color .proxy.proxy_accepted .proxy_header {
    background-color: #0fbf0f;
}

.profiles_color .proxy.proxy_rejected .proxy_header {
    background-color: #bfbfbf;
}

.proxy_info {
    padding: 8px;
    position: relative;
    display: none;
}
.proxy.expanded .proxy_info {
    display: block;
}
.proxy .proxy_info textarea {
    width: 100%;
    height: 80px;
    text-wrap: nowrap;
    font-size: 9pt;
    border: solid 1px #bfbfbf;
}
.proxy_info .proxy_info_row {
    font-size: 12pt;
    position: relative;
}
.proxy_info .proxy_info_row>span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 10em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.proxy_info .actions {
    position: absolute;
    top: 4px;
    bottom: 4px;
    right: 4px;
    width: 88px;
}

.actions {
    text-align: center;
}

.profile button, .keyset button {
    max-width: 100%;
    width: 6em;
    font-size: 12pt;
    background: transparent;
    display: inline-block;
    margin: auto;
    border: none;
    padding: 4px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0000bf;
}

.profile button:hover {
    text-decoration: underline;
    border: none;
    background: transparent;
}

.profile.readonly input.editable, .profile .readonly input, .profile.readonly select.editable, .profile textarea, .profile input.readonly,
.keyset_key input.readonly {
    border: none;
    background: transparent;
    color: inherit;
    border-radius: 6px;
    opacity: 1;
}
.profile.readonly select.input {
    appearance: none;
}
/*.profile:not(.readonly) .profile_conf_ctlbar a.ctlbar_up, .profile.bulk .profile_conf_ctlbar a:not(.ctlbar_up) {
    opacity: 0.25;
    pointer-events: none;
}*/

.profile input, .profile select.input {
    background-color: #ffffff;
    border: solid 1px #3f3f3f;
    border-radius: 6px;
}

.proxy_accepted .proxy_accept, .proxy_accepted .proxy_reject, .proxy .proxy_remove,
.profile .profile_edit, .readonly .profile_save, .profile .profile_cancel, .profile.ready.readonly .profile_cancel, .ready .profile_reject,
.profile .profile_remove, .profile_new .profile_reject {
    display: none;
}

.proxy_accepted .proxy_remove, .readonly .profile_edit, .ready.readonly .profile_remove, .profile.ready .profile_cancel,
.profile.profile_new .profile_cancel {
    display: inline-block;
}

.profile_error .profile_save, .profile:not(.ready) .proxy_accept, .profile:not(.empty) .profile_remove, .actions button:disabled,
.profile:not(.srv_valid) .profile_save, .profile_error .enc_save, .profile:not(.enc_changed) .enc_save, .profile:not(.enc_changed) .enc_cancel,
.proxy.key_disabled .host_remove, .keyset_proxies:not(.keyset_proxies_manage) .host_remove {
    opacity: 0.25;
    pointer-events: none;
}

.profile .srv_error {
    width: 100%;
    min-height: 3em;
    padding: 12pt 0 12pt 0;
    color: #ff0000;
    font-size: 10pt;
    position: relative;
}
.profile .srv_error .warning {
    color: #7f3f00;
}
.profile.srv_checking .profile_block .srv_error::after {
    background-size: contain;
    background-position: left center;
}

.alerts {
    background-color: #ff3f00;
    padding: 0 4px 0 4px;
    border-radius: 16px;
    font-weight: 400;
    font-size: 8pt;
    color: #ffffff;
    display: inline-block;
    position: relative;
    top: -6px;
    left: 8px;
    min-width: 6px;
    text-align: center;
}

#global_alerts {
    z-index: 100;
    pointer-events: none;
}

#global_alerts>div {
    text-align: right;
    padding: 16px 24px 0 0;
}

.proxy_accepted .host_alert, .proxy_rejected .host_alert {
    display: none;
}

.top_control {
    position: fixed;
    right: 8px;
    top: 64px;
    z-index: 410;
}

.profile_conf {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.tabs>div:not(.selected) {
    display: none;
}
.annotated_edit {
    position: relative;
    width: 100%;
    height: 100%;
}
.annotated_edit>* {
    position: absolute;
    padding: 4px;
    box-sizing: border-box;
    border: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: monospace;
    font-size: 12pt;
}
.annotated_edit .error {
    color: #ff7f7f;
}
.annotated_edit .warning {
    color: #ffbf7f;
}
.annotated_edit .prompt {
    color: #7f7f9f;
}
.annotated_edit .optional {
    color: #7fafaf;
}
.annotated_edit .annotxt {
    font-size: 9pt;
}
.annotated_edit .annosel {
    color: #7fffbf;
    text-decoration: underline;
}

.ve-page pre {
    background-color: #1f1f1f;
    color: #bfbfbf;
    padding: 8px;
    box-sizing: border-box;
    overflow: auto;
}

.ve-page div.warning {
    background-color: #ffdfbf;
}
.ve-page div.notice {
    background-color: #ffffdf;
}
.ve-page div.warning, .ve-page div.notice {
    padding: 8px;
    font-size: 10pt;
    margin: 8px auto 8px auto;
}
.ve-page div.notice b {
    color: #9f0000;
}

.ve-deployblk {
    text-align: center;
}

.ve-deploysel {
    display: inline-block;
    margin: 16px;
    mx-width: 480px;
    border: solid 1px #7f7fbf;
    border-radius: 16px;
    padding: 24px;
}
.ve-deploysel button {
    margin: 4px auto 4px auto;
}
.ve-deploy-try .ve-deploysel-try, .ve-deploy-docker .ve-deploysel-docker {
    background-color: #1f1f9f;
    border-color: #0000ff;
    color: #ffffdf;
}
.ve-if-deploy-try, .ve-if-deploy-docker, .ve-if-deploy, body.loggedin .ve-if-loggedout, body:not(.loggedin) .ve-if-loggedin {
    display: none;
}
.ve-deploy-try .ve-if-deploy-try, .ve-deploy-docker .ve-if-deploy-docker, .ve-deploy .ve-if-deploy, .loggedin .ve-if-loggedin {
    display: block;
}
.ve-deploy-try span.ve-if-deploy-try, .ve-deploy-docker span.ve-if-deploy-docker, .ve-deploy span.ve-if-deploy {
    display: inline;
}

.ve-serviceblk {
    text-align: center;
}
.ve-serviceblk select {
    font-size: 18pt;
    display: inline;
}

pre .cred-title {
    color: #9f9f9f;
}
pre .svc-host {
    color: #7fffff;
}
pre .svc-port {
    color: #ffff7f;
}
pre .dst-host {
    color: #7f7fff;
}
pre .dst-port {
    color: #ffbf7f;
}
pre .dst-user {
    color: #ff7fff;
}
pre .dst-passwd {
    color: #ff7f7f;
}
pre .svc-user {
    color: #7fff7f;
}
.svc-host {
    color: #00bfbf;
}
.svc-port {
    color: #bfbf00;
}
.svc-user {
    color: #00bf00;
}
.dst-host {
    color: #0000bf;
}
.dst-port {
    color: #bf5f00;
}
.dst-user {
    color: #bf00bf;
}

.vv_header>a.ve_login {
    font-weight: 400;
    font-style: italic;
}
.vv_header a.vv_action .alerts {
    position: absolute;
    top: 4px;
    left: auto;
    right: 4px;
}

.ve-bill {
    display: table;
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.ve-bill-row {
    display: table-row;
}
.ve-bill-name {
    display: table-cell;
    text-align: left;
    padding: 4px;
}
.ve-bill-amount {
    display: table-cell;
    text-align: right;
    padding: 4px;
}
.bill_estimate>*, .bill_month>*, .bill_total>* {
    font-size: 14pt;
    font-weight: 700;
    padding-bottom: 16px;
}
.bill_total>* {
    padding-top: 16px;
}
.bill_estimate>.ve-bill-name, .bill_month>.ve-bill-name, .show_trial .ve-bill-offset>.ve-bill-name, .show_prepaid .ve-bill-offset>.ve-bill-name {
    padding-left: 32px;
}
.bill_prepaid>*, .bill_credit>*, .bill_forward>* {
    color: #0000bf;
}
#ve-bill:not(.show_trial) .bill_if_trial,
#ve-bill:not(.show_prepaid) .bill_if_prepaid,
#ve-bill:not(.show_due) .bill_if_due,
#ve-bill:not(.show_trial_close) .trial_close,
#ve-bill:not(.show_trial_open) .trial_open,
#ve-bill:not(.show_trial_month) .trial_month,
#ve-bill:not(.show_trial_forward) .trial_forward {
    display: none;
}
.ve-bill-subsection>* {
    font-weight: 700;
    padding-top: 16px;
}
#ve-bill:not(.show_trial,.show_prepaid) .ve-bill-subsection {
    display: none;
}
.bill_prepaid>* {
    padding-top: 24px;
}
.ve-bill-footnote {
    font-size: 11pt;
}

.ve-payment {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 4px;
    box-sizing: border-box;
}
.ve-payment-list label {
    display: block;
    text-align: left;
    font-size: 14pt;
}
.ve-payment-list label input {
    width: 10pt;
    height: 10pt;
    margin-right: 32px;
}
.ve-payment a, .ve-payment button {
    font-size: 14pt;
    color: #32818e;
    font-weight: 500;
}
.ve-payment a:hover {
    text-decoration: underline;
}
.ve-payment-list h3 {
    position: relative;
    margin-right: 0;
}
.ve-payment-list h3 a {
    position: absolute;
    top: 0;
    right: 0;
}
.ve-payment-list .ve-payment-manage {
    padding-left: 48px;
}
.ve-payment-summary {
    text-align: center;
    font-size: 14pt;
    min-height: 24pt;
}
.ve-payment-summary a {
    display: inline-block;
    margin-left: 24px;
    margin-right: 24px;
}
.ve-payment-onetime, .ve-payment-onetime>* {
    font-size: 14pt;
    text-align: center;
    vertical-align: middle;
}
.ve-payment-onetime input, .ve-payment-onetime select, .ve-payment-onetime button {
    height: 24pt;
    text-align: left;
    max-width: 100%;
}
.ve-payment-onetime input.ve-payment-amount {
    width: 96px;
    text-align: left;
}
.ve-payment-onetime button {
    background: none;
    display: inline;
    width: auto;
    padding: 2px 16px 2px 16px;
}
.ve-payment-onetime button:hover {
    color: #f8f8f8;
}

.expandable.expand .if-not-expanded, .expandable:not(.expand) .if-expanded, .loadable.loading .if-loaded, .loadable:not(.loading) .if-loading {
    display: none;
}

.ve-docs {
    display: none;
    font-weight: 400;
    font-size: 10pt;
}

.ve-pricing-img {
    width: 100%;
    overflow: hidden;
}
.ve-pricing-img img {
    width: 100%;
    box-sizing: border-box;
}
.ve-pricing-img.ve-pricing-img1 img {
    margin: -12% auto -8% auto;
}
.ve-pricing-img.ve-pricing-img2 img {
    margin: -10% auto -8% auto;
}
.ve-pricing-img.ve-pricing-img3 img {
    margin: -10% auto -22% auto;
}
.ve-pricing-img.ve-pricing-img4 img {
    margin: -10% auto -8% auto;
}
.ve-pricing h2 {
    margin-top: 64px;
}

.profile_conf_ctlbar {
    display: inline-block;
    vertical-align: top;
    margin: 0 16px auto auto;
    font-size: 12pt;
}
.profile_conf_ctlbar a {
    min-width: 4em;
    border: dotted 1px #69bcca;
    display: inline-block;
    text-align: center;
    padding: 0 8px 0 8px;
}
.profile_conf_ctlbar a.selected {
    background-color: #69bcca;
    color: #ffffef;
}

.profile_conf_intro, .profile_conf_optns, .profile_conf_dbintro {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}
.profile_conf_json {
    position: absolute;
    width: 100%;
    height: 100%;
    border: solid 1px #bfbfbf;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
}
.profile_conf_json>div {
    width: 100%;
    height: 100%;
}

.profile_conf_dbui {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 100%;
}
.profile_conf_dbui>.dbui_overlay {
    display: none;
}
.profile_conf_dbui:not(.ready)>.dbui_overlay {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -8px;
    right: -8px;
    background-color: rgba(192,192,224,0.9);
    z-index: 100;
    color: #003f3f;
    padding: 40px 16px 40px 16px;
    text-align: center;
    font-weight: 400;
}
.profile_conf_dbui>.dbui_overlay.error {
    color: #bf0000;
}
.profile_conf_dbui>.dbui_overlay .error_info {
    display: block;
    font-size: 11pt;
}

.profile_conf_dbui>.dbui_sels, .profile_conf_update>.profile_bgstart {
    position: absolute;
    width: 50%;
    height: 100%;
    left: -4px;
    border: solid 1px #bfbfbf;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
    overflow-y: auto;
}
.profile_conf_dbui>.dbui_sels .dbui_sel {
    width: 100%;
    max-width: 320px;
}
.profile_conf_dbui>.dbui_sels .dbui_sel select  {
    width: 100%;
    padding: 4px;
    border-radius: 6px;
    font-size: 12pt;
}
.profile_conf_dbui>.dbui_sels .dbui_sel select option.encd {
    background-color: #cfffef;
    color: #00007f;
    font-weight: 700;
}

.profile_conf_dbui>.dbui_edit {
    visibility: hidden;
}
.profile_conf_dbui>.dbui_edit, .profile_conf_update>.profile_bg {
    position: absolute;
    width: 50%;
    height: 100%;
    right: -4px;
    font-size: 12pt;
    overflow-y: auto;
    border: solid 1px #bfbfbf;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
}
.profile_conf_dbui>.dbui_edit.show {
    visibility: visible;
}
h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 12pt;
}
.profiles .profile_conf_dbui label input, .profiles .profile_conf_dbupdate label input {
    width: auto;
    height: auto;
    padding: 0 4px 0 4px;
}
.profiles .profile_conf_dbui label input.int {
    width: 40px;
    height: 20px;
    box-sizing: border-box;
}
.profiles .profile_conf_dbui label.radio {
    display: inline-block;
    width: 6em;
    text-align: center;
}
.profile_conf_dbui>.dbui_edit:not(.encrypt) .if-encrypt, .profile_conf_dbui>.dbui_edit:not(.adv) .if-adv, .profile_conf_dbui>.dbui_edit.adv .if-not-adv,
.profile_conf_dbui>.dbui_edit.cinfo-encrypt .cinfo-if-not-encrypt, .profile_conf_dbui>.dbui_edit:not(.cinfo-width) .cinfo-if-width,
.profile_conf_dbui>.dbui_sels:not(.cinfo-width) .cinfo-if-width, .profile_conf_dbui>.dbui_edit:not(.cinfo-encrypt) .cinfo-if-encrypt,
.profile_conf_dbui>.dbui_edit:not(.cinfo-zero) .cinfo-if-zero, .profile_conf_dbui>.dbui_edit.cinfo-zero .cinfo-if-not-zero,
.profile_conf_dbui>.dbui_edit:not(.cinfo-alterwidth) .cinfo-if-alterwidth, .profile_conf_dbui>.dbui_edit.cinfo-alterwidth .cinfo-if-not-alterwidth,
.profile_conf_dbui>.dbui_edit.cinfo-checked .cinfo-if-not-checked, .profile_conf_dbui>.dbui_edit:not(.cinfo-checked) .cinfo-if-checked,
.profile_conf_dbui>.dbui_edit:not(.cinfo-checking) .cinfo-if-checking, .profile_conf_dbui>.dbui_edit.cinfo-checking .cinfo-if-not-checking,
.profile_conf_dbui>.dbui_edit:not(.cinfo-indexed) .cinfo-if-indexed, .profile_conf_dbui>.dbui_edit.cinfo-indexed .cinfo-if-not-indexed,
.profile_conf_dbui>.dbui_edit:not(.cinfo-encrypted) .cinfo-if-encrypted, .profile_conf_dbui>.dbui_edit.cinfo-encrypted .cinfo-if-not-encrypted,
.profile_conf_dbui>.dbui_edit:not(.cinfo-corrupted) .cinfo-if-corrupted, .profile_conf_dbui>.dbui_edit.cinfo-corrupted .cinfo-if-not-corrupted,
.profile.proxy_instructions .if-not-proxy_instructions, .profile:not(.proxy_instructions) .if-proxy_instructions,
.profile:not(.proxy_hosted) .if-proxy_hosted, .profile:not(.proxy_docker) .if-proxy_docker,
.profile:not(.profile_sandbox) .if-profile_sandbox, .profile.profile_sandbox .if-not-profile_sandbox,
.profile:not(.profile_new) .if-profile_new, .profile.profile_new .if-not-profile_new,
.profile:not(.bulk_complete) .if-bulk_complete, .profile.bulk_complete .if-not-bulk_complete,
.profile:not(.profile_new_sandbox) .if-profile_new_sandbox, .profile.profile_new_sandbox .if-not-profile_new_sandbox,
.webpush:not(.webpush-on) .if-webpush-on, .webpush:not(.webpush-off) .if-webpush-off, .webpush:not(.webpush-unset) .if-webpush-unset,
.webpush:not(.webpush-denied) .if-webpush-denied, .webpush:not(.webpush-error) .if-webpush-error {
    display: none;
}
.profile_conf_dbui>.dbui_edit:not(.encrypt) .enable-if-encrypt {
    opacity: 0.5;
    pointer-events: none;
    color: #bfbfbf;
}
.dbui_edit pre.dbui_ctext {
    margin: 8px auto 8px auto;
    width: 100%;
    height: 40px;
    font-size: 11pt;
    color: #5fdf7f;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
    background-color: #1f1f1f;
    padding: 4px;
}
.dbui_edit .dbui_lead, .dbui_edit .dbui_trail {
    color: #ff7f7f;
}
.dbui_edit .dbui_seed {
    color: #9f9fff;
}
.dbui_edit .dbui_pad {
    color: #9f9f9f;
}
.dbui_edit .dbui_mac {
    color: #dfdf7f;
}

.profile_conf_update {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 100%;
}
.profile_conf_update .profile_update_rows {
    display: table;
}
.profile_conf_update .profile_update_rows .profile_update_row {
    display: table-row;
}
.profile_conf_update .profile_update_rows .profile_update_row>span {
    display: table-cell;
}
.profile_conf_update .profile_update_rows .profile_update_row .up_enc {
    padding-left: 8px;
    padding-right: 8px;
    color: #7f7f7f;
    text-transform: lowercase;
}
.profile_conf_update .profile_update_rows .profile_update_row .profile_update_count {
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}
.profile_conf_update .profile_update_rows .profile_update_row .profile_update_col {
}

.vsections {
    display: table;
    width: 100%;
    height: 100%;
    max-width: 800px;
    min-height: 480px;
}
.vsection {
    display: table-row;
}
.vsection-cell {
    display: table-cell;
    position: relative;
    overflow: hidden;
    height: 30px;
}
.vsection-cell>h2 {
    display: block;
    width: 100%;
    height: 28px;
    margin: 2px auto auto auto;
    font-size: 12pt;
    text-align: left;
    padding: 3px;
    background-color: #5f5f5f;
    color: #efefdf;
    font-weight: 400;
    box-sizing: border-box;
    cursor: hand;
    cursor: pointer;
}
.profile:not(.readonly) .vsection-if-readonly .vsection-cell>h2, .profile.enc_changed .vsection-if-enc-saved .vsection-cell>h2,
.profile:not(.enc_enabled) .vsection-if-enc .vsection-cell>h2 {
    cursor: not-allowed;
}
.profile a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.profile a.disabled.loading {
    cursor: wait;
}
.vsection-cell>h2::before {
    display: inline-block;
    width: 24px;
    text-align: center;
    content: '+';
}
.vsection.selected .vsection-cell {
    height: auto;
}
.vsection.selected .vsection-cell>h2 {
    color: #ffffef;
    cursor: default;
}
.vsection.selected .vsection-cell>h2::before {
    content: '-';
}
.vsection-cell>.vsection-body {
    position: absolute;
    top: 32px;
    bottom: 4px;
    left: 0;
    right: 0;
    overflow-y: auto;
    font-size: 12pt;
}
.vsection-cell>.vsection-body p {
    font-size: 12pt;
}
.vsection-cell>.actions {
    position: absolute;
    right: 4px;
    top: 6px;
    width: auto;
    height: 28px;
    text-align: right;
    display: none;
}
.profiles .actions button, .ve_keyset .actions button {
    width: auto;
    padding: 2px 8px 2px 8px;
    font-size: 12px;
    border: solid 1px #1f1f1f;
    border-radius: 16px;
    background-color: #dfdfdf;
    font-weight: 700;
    color: #1f1f3f;
    vertical-align: top;
}
.vsection.selected .vsection-cell>.actions {
    display: block;
}
.profiles .actions button:hover, .ve_keyset .actions button:hover {
    background-color: #efefef;
    text-decoration: none;
}
.vsection-box {
    border: solid 1px #bfbfbf;
    border-radius: 8px;
    padding: 8px;
}

.proxy_block {
    display: table;
    width: 100%;
}
.proxy_block .proxy_header {
    display: table-row;
}
.proxy_block .proxy_header>* {
    display: table-cell;
    position: relative;
    height: 24px;
}
.proxy_header>.proxy_expand {
    width: 24px;
    text-align: center;
    cursor: hand;
    cursor: pointer;
    font-size: 12pt;
    padding-top: 2px;
}
.proxy.expanded .proxy_header>.proxy_expand::after {
    content: "-";
}
.proxy:not(.expanded) .proxy_header>.proxy_expand::after {
    content: "+";
}
.proxy_header>.proxy_hostname>span {
    position: absolute;
    width: 100%;
    top: 2px;
    bottom: 0;
    white-space: nowrap;
}
.proxy_header .proxyhost {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12pt;
}
.proxy_header>.proxy_status {
    width: 3.5em;
    text-align: center;
}
.proxy_header>.actions {
    width: 144px;
    text-align: right;
    padding: 3px;
    font-size: 10pt;
    vertical-align: top;
}
.proxies_warning {
    position: relative;
    font-size: 12pt;
}
.profile.enc_enabled .proxies_warning .proxies_warning_chk {
    visibility: hidden;
}
.proxies_warning input:checked {
    pointer-events: none;
}

@keyframes flash {
  from {
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  to {
    opacity: 0;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }
}
@keyframes action {
  from {
    background-color: #00bf00;
  }
  to {
    background-color: #bfffbf;
  }
}
@keyframes alert {
  from {
    background-color: #ffbfbf;
  }
  to {
    background-color: #ff0000;
  }
}
@keyframes progress {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 64px 0;
  }
}
@keyframes setup {
    from {
	background-color: #ffbf00;
	color: #000000;
    }
    to {
	background-color: #f7ffbf;
	color: #00003f;
    }
}
@keyframes copied {
    from {
	opacity: 1;
    }
    to {
	opacity: 0;
	translate: 80px -22px;
    }
}
@keyframes dismiss {
    from {
	opacity: 1;
    }
    to {
	opacity: 0;
    }
}
.flash::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffbf00;
    opacity: 0;
    animation-name: flash;
    animation-duration: 1s;
    animation-iteration-count: 1;
    content: '\00a0';
    pointer-events: none;
}

.profile.srv_valid.console_done:not(.ready) .profile_save {
    animation-name: action;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.profile.srv_valid .srv_error:empty::before {
    content: 'Connected to the Server';
    color: #007f00;
}
.srv_error .valid {
    color: #007f00;
}

.profile.ready.readonly .vsection_proxies:not(.selected) .vsection-cell>h2 .alerts,
.profile.ready.enc_enabled .vsection_enc:not(.selected) .vsection-cell>h2 .alerts,
.profile.ready.enc_bulk .vsection_update:not(.selected) .vsection-cell>h2 .alerts {
    animation-name: alert;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
.profile .vsection.selected h2 .alerts, .profile:not(.enc_enabled) h2 .enc_alerts, .profile:not(.readonly) h2 .proxy_alerts,
.profile:not(.enc_bulk) .bulk_alerts {
    display: none;
}

.warning_cinfo_width {
    min-height: 16em;
}
.cinfo_chkwidth {
    height: 92px;
    overflow: hidden;
    margin: -8px auto -64px auto;
}
.cinfo_chkwidth a {
    display: block;
    width: fit-content;
    margin: 64px auto auto auto;
    padding: 4pt 12pt 4pt 12pt;
    border-radius: 16px;
    background-color: #69bcca;
    color: #ffffef;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}
.cinfo_chkwidth a:hover {
    background-color: #89dcea;
    color: #32818e;
}
.cinfo_width, .cinfo_currwidth, .warning_cinfo_zero {
    font-weight: 700;
    color: #9f0000;
}
.warning_cinfo_zero, .warning_cinfo_not_zero {
    padding: 4px;
    box-sizing: border-box;
}
.warning_cinfo_not_zero {
    font-weight: 700;
    color: #009f00;
}
.warning_cinfo_width .cinfo_row {
    text-align: left;
    white-space: nowrap;
}
.warning_cinfo_width .cinfo_row .cinfo_label {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 100px 2px 16px;
    margin: 0 -100px 0 0;
    white-space: normal;
    vertical-align: bottom;
}
.warning_cinfo_width .cinfo_row .cinfo_value {
    display: inline-block;
    max-width: 96px;
    box-sizing: border-box;
    padding: 0 4px 2px 4px;
    margin: 0;
    white-space: normal;
    vertical-align: bottom;
}
.warning_cinfo_width .cinfo_row .cinfo_value::before {
    content: '= ';
}
.warning_cinfo_width .cinfo_row .cinfo_value_width {
    outline: solid 2px #7f7f9f;
}
.cinfo-zero .warning_cinfo_width .cinfo_row .cinfo_value_width {
    outline: solid 2px #9f0000;
}

.proxy.proxy-snif .proxy_info_tls::after {
    content: ' (not on public DNS)';
    color: #7f5f00;
    font-size: 9pt;
}
.proxy.proxy-snif .proxy_info_tls:empty::after {
    content: 'accept to initialize';
}
.profile_update_progress {
    position: relative;
    width: 90%;
    margin: 12px auto 12px auto;
    height: 12px;
    text-align: center;
    font-size: 10pt;
    color: #3f0000;
    border: solid 1px #bfbfbf;
    background: linear-gradient(90deg, transparent, #bfdfff, transparent);
    background-size: 64px 100%;
    background-repeat: repeat-x;
}
.bulk_running .profile_update_progress, .cinfo_chkwidth .profile_update_progress {
    animation-name: progress;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
.profile_update_progress .profile_update_bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: #7fbfff;
}

.profile_creds {
    margin: 2px auto 2px auto;
    position: relative;
    white-space: nowrap;
    font-size: 12pt;
    padding: 0 8px 0 108px;
    box-sizing: border-box;
}
.profile_creds>.creds_title {
    display: block;
    position: absolute;
    width: 96px;
    left: 8px;
    white-space: nowrap;
}
.profile_creds>.creds_srv, .profile_creds>.creds_proxy {
    display: inline-block;
    width: 50%;
    font-size: 12pt;
    box-sizing: border-box;
}
.profile_creds h4 {
    position: absolute;
    width: 100%;
    top: -32px;
    left: 0;
    margin: 0;
    text-align: center;
    padding-left: 8px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
}
.profile_creds>.creds_head {
    white-space: normal;
    text-align: left;
    overflow: visible;
    vertical-align: top;
    font-size: 10pt;
    padding: 8px;
    position: relative;
    margin: 72px auto 0 auto;
    height: 6em;
}
.profile_creds>.creds_head .creds_note {
    width: 100%;
    height: 100%;
    overflow: auto;
}
.profile .profile_creds input, .profile .profile_creds select.input {
    border-radius: 6px;
    padding: 0 8px 0 8px;
    height: 24px;
}
.profile .profile_creds input.creds_proxy::placeholder {
    font-style: italic;
    font-size: 10pt;
    color: #7f7f7f;
}
.profile .profile_creds:has(.copied)::after, .keyset_key .keyset_key_row:has(.copied)::after {
    position: absolute;
    bottom: 2px;
    opacity: 0;
    content: 'copied';
    font-size: 10pt;
    font-weight: 700;
    color: #0000ff;
    background-color: #ffffbf;
    border: solid 1px #bfbfff;
    border-radius: 12px;
    padding: 4px;
    animation-name: copied;
    animation-duration: 1s;
    animation-iteration-count: 1;
}
.profile .profile_creds:has(.copied.creds_srv)::after {
    left: 128px;
}
.profile .profile_creds:has(.copied.creds_proxy)::after {
    left: 60%;
}
.profile .vsection_profile .profile_creds .creds_srv, .profile .vsection_profile .profile_creds .creds_proxy {
    border-radius: 6px;
    border: solid 1px #bfbfbf;
}
.profile_selector .selector_entry_new {
    font-style: italic;
    color: #3f7f7f;
}
.profile .profile_deployment {
    font-size: 12pt;
}
.profile .profile_deployment label {
    display: inline;
    width: auto;
}
.profile .profile_deployment label input {
    width: auto;
    height: auto;
    vertical-align: baseline;
}
.profile .profile_deployment a {
    font-size: 12pt;
    white-space: nowrap;
}
.profile .profile_deployment select {
    padding: 2px 8px 2px 8px;
    border: solid 1px #3f3f3f;
    border-radius: 6px;
    font-size: 12pt;
    margin: 0 16px 0 16px;
}
.profile .profile_creds>.creds_head h4 .alerts {
    visibility: hidden;
}
.profile.profile_new:not(.srv_proxy) .profile_creds>.creds_head.creds_srv h4 .alerts,
.profile.profile_new.srv_proxy .profile_creds>.creds_head.creds_proxy h4 .alerts {
    visibility: visible;
}
.profile_blank .selector .selector_input {
    font-style: italic;
}
.profile .deploy_null {
    font-style: italic;
}

.profile.profile_blank .profile_top {
    height: 84px;
}
.profile_blank .vsection_new .vsection-box {
    position: absolute;
    top: 2px;
    bottom: 4px;
    left: 0;
    right: 0;
}
.warning_cinfo_indexed {
    color: #9f0000;
    font-weight: 700;
}
.profile_conf_json>div.warning_conf_json {
    position: absolute;
    top: -8px;
    left: 0;
    height: auto;
    padding: 4px 24px 8px 8px;
    box-sizing: border-box;
    color: #9f0000;
    font-weight: 700;
}
.profile_conf_json>div.warning_conf_json a {
    position: absolute;
    top: 0;
    right: 4px;
    font-size: 16pt;
    color: #9f0000;
}
.json_adv .warning_conf_json {
    display: none;
}

.ve_keyset_view {
    width: 100%;
    height: 192px;
    padding: 8px;
    border: solid 1px #bfbfbf;
    border-radius: 8px;
    box-sizing: border-box;
}
.ve_keyset_view textarea {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background: transparent;
}

.profile_sandbox_create {
    display: block;
    width: fit-content;
    color: #9040a4;
}
.profile_sandbox_create:hover {
    color: #703080;
}
.host_desc {
    font-size: 10pt;
    color: #009f00;
    font-weight: 700;
    font-style: italic;
}
.host_desc::before {
    content: ' (';
}
.host_desc::after {
    content: ')';
}
.proxy_info .proxy_info_row>span:empty::before {
    content: '(not provided)';
    font-style: italic;
    font-size: 10pt;
    color: #9f9f9f;
}
.proxy_info .proxy_info_row .proxy_info_relayed:empty {
    display: none;
}
.proxy_info .proxy_info_row .proxy_info_relayed::after {
    content: ' via ';
    font-style: italic;
    font-size: 10pt;
    color: #9f9f9f;
}
.profile_console {
    position: fixed;
    left: 15px;
    top: 48px;
    z-index: 450;
    background-color: #f8f8f8;
    padding-right: 4px;
}
.profile_console>a {
    border: none;
    text-align: center;
    font-size: 11pt;
    display: block;
    color: #002f5f;
    text-align: left;
}
.profile_console>a::before {
    content: "\29c9\00a0";
}
.profile_console>a.disabled {
    visibility: hidden;
}
.sandbox_info h4 {
    text-transform: uppercase;
}
.selector_entry.release_shortly .srvname::after {
    content: ' (coming soon) ';
    color: #00009f;
    font-style: italic;
}
.selector_entry.release_beta .srvname::after {
    content: ' (beta) ';
    color: #bf0000;
    font-style: italic;
}
.selector_entry.release_alpha .srvname::after {
    content: ' (alpha) ';
    color: #df4000;
    font-style: italic;
}

.profiles .profile_conf_optns label input {
    width: auto;
    height: auto;
    vertical-align: baseline;
}
.profile_fail_level {
    position: relative;
}

pre.sql {
    font-size: 10pt;
    background-color: #2f2f2f;
    padding: 8px;
}
.sql-cln_ve {
    color: #00dfff;
}
.sql-ve_srv {
    color: #bf00ff;
}
.profile.profile_sandbox.srv_valid:not(.profile_sandbox_finish) .srv_error, .profile_sandbox_continue {
    display: none;
}
.profile.profile_sandbox.srv_valid:not(.profile_sandbox_finish) .profile_sandbox_continue {
    display: block;
    width: fit-content;
    margin: auto;
    border-radius: 16px;
    padding: 4px 12px 4px 12px;
    animation-name: action;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.webpush-sub {
    position: fixed;
    right: 15px;
    top: 48px;
    font-size: 12pt;
    z-index: 460;
    background-color: #f8f8f8;
}
.webpush-switch {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    border: solid 1px #7f7f7f;
    background-color: #efefef;
    cursor: pointer;
    cursor: hand;
    vertical-align: -10%;
}
.webpush-switch::before {
    display: block;
    position: absolute;
    content: "\a0";
    height: 20px;
    width: 20px;
    top: -1px;
    left: -1px;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #bfbfbf;
    border: solid 1px #7f7f7f;
}
.webpush-on .webpush-switch {
    background-color: #bfffdf;
}
.webpush-on .webpush-switch::before {
    background-color: #00bf7f;
}
.webpush-on .webpush-switch::before, .webpush-pending .webpush-switch::before {
    left: 19px;
}
.webpush-denied .webpush-switch::before, .webpush-error .webpush-switch::before {
    background-color: #bf0000;
}

.status-dismiss {
    opacity: 0;
    animation-name: dismiss;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
}

.profile_db_bg {
    width: 100%;
    margin: 16px auto 0 auto;
}
.profile_db_bg .bg_instance_header {
    position: relative;
    padding-right: 80px;
}
.profile_db_bg .bg_instance {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.profile_db_bg .bg_instance_header .actions {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
}
.profile_db_bg .bg_instance_header button {
    width: 32px;
}
.profile_db_bg.running .bg_instance_header button.bg_instance_stop, .profile_db_bg.aborted .bg_instance_header button.bg_instance_resume {
}
.profile_db_bg .bg_instance::after {
    content: ":";
}
.profile_db_bg .bg_proc {
    width: 100%;
    margin: 4px 0;
    padding: 2px 0;
    box-sizing: border-box;
}
.profile_db_bg .bg_header {
    width: 100%;
    height: 18px;
    position: relative;
}
.profile_db_bg .bg_header>* {
    position: absolute;
    top: 0;
    bottom: 0;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.profile_db_bg .bg_header .bg_proc_expand {
    left: 0;
    width: 18px;
    cursor: pointer;
}
.profile_db_bg .bg_header .bg_proc_expand::after {
    font-size: 10pt;
    font-weight: 700;
    content: "+";
}
.profile_db_bg .bg_proc.expanded .bg_header .bg_proc_expand::after {
    content: "-";
}
.profile_db_bg .bg_header .bg_proc_progress, .profile_db_bg .bg_header .bg_proc_table {
    left: 18px;
    right: 0;
}
.profile_db_bg .bg_header .bg_proc_progress {
    border: 1px solid #bfbfbf;
    z-index: 10;
    background-color: #efefef;
}
.profile_db_bg .bg_header .bg_proc_table {
    z-index: 20;
    font-size: 10pt;
}
.profile_db_bg .bg_header .bg_proc_progress>div {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: #7fbfff;
}
.profile_db_bg .bg_proc.pending .bg_header .bg_proc_progress, .profile_db_bg .bg_proc.running .bg_header .bg_proc_progress {
    background: linear-gradient(90deg, transparent, #bfdfff, transparent);
    background-size: 64px 100%;
    background-repeat: repeat-x;
}
.profile_db_bg .bg_proc.running .bg_header .bg_proc_progress {
    animation-name: progress;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
.profile_db_bg .bg_proc.error .bg_header .bg_proc_progress, .profile_db_bg .bg_proc.aborted .bg_header .bg_proc_progress {
    border: 1px solid #bf0000;
}
.profile_db_bg .bg_details {
    display: none;
    padding: 12px 8px 8px 8px;
    margin: -8px auto 8px 18px;
    border: 1px solid #bfbfbf;
    border-radius: 8px;
    border-top: none;
}
.profile_db_bg .bg_proc.expanded .bg_details {
    display: block;
}
.profile_db_bg .bg_details::before {
    font-size: 10pt;
    font-weight: 700;
    content: "Job Details:";
}
.profile_db_bg .bg_details>ul, .profile_db_bgstart>ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.profile_db_bg .bg_details>ul>li, .profile_db_bgstart>ul>li {
    font-size: 11pt;
}
.profile_db_bg .bg_details>ul>li:empty::after {
    content: "N/A";
    color: #bfbfbf;
}
.profile_db_bg .bg_proc.aborted .bg_details>ul>li.bg_proc_finished:empty::after {
    content: "aborted";
    color: #bf0000;
    font-weight: 700;
}
.profile_db_bg .bg_details>ul>li::before {
    display: inline-block;
    width: 160px;
}
.profile_db_bg .bg_proc_numrows::before {
    content: "Rows Processed:";
}
.profile_db_bg .bg_proc_created::before {
    content: "Created:";
}
.profile_db_bg .bg_proc_started::before {
    content: "Started:";
}
.profile_db_bg .bg_proc_finished::before {
    content: "Finished:";
}
.profile_db_bg .bg_proc.aborted .bg_proc_processed {
    color: #bf0000;
}
.profile_db_bg .bg_proc_total::before {
    content: " / ";
}
.profile_db_bg .bg_proc_total:empty::after {
    content: "?";
}
.profile_db_bg .bg_proc_cols {
    margin: 8px auto 0 auto;
}
.profile_db_bg .bg_proc_cols::before {
    font-size: 10pt;
    font-weight: 700;
    content: "Columns Updated:";
    margin-bottom: 2px;
}
.profile_db_bg .bg_details::before {
    font-size: 10pt;
    font-weight: 700;
    content: "Job Details:";
}
.profile_db_bg .bg_proc_col {
    font-size: 11pt;
}
.profile_db_bg .bg_proc_col:hover {
    background-color: #ffffdf;
}
.profile_db_bg .bg_proc_col>* {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: bottom;
}
.profile_db_bg .bg_proc_col .bg_proc_colname {
    width: 192px;
    text-align: left;
}
.profile_db_bg .bg_proc_col .bg_proc_matched::before {
    content: " / ";
}
.profile_bgstart {
}
.profile_bgstart .bgstart_col .bgstart_colname {
    display: inline;
    font-size: 11pt;
}
.profile_bgstart .bgstart_proxy {
    width: 100%;
    margin: 16px auto 8px auto;
}
.profile_bgstart .bgstart_proxy::before {
    display: block;
    font-size: 10pt;
    font-weight: 700;
    content: "Run the Update Job on:";
}
.profile_bgstart .bgstart_proxy>select {
    width: 100%;
    font-size: 11pt;
    padding: 2px;
    margin: 2px auto;
}
.profile_db_bgstart {
    margin: 16px auto 0 auto;
}
.profile_db_bgstart>ul>li label {
    margin: 0;
}
.profile_bg_list:empty::after, .profile_bgstart_list:empty::after {
    font-style: italic;
    color: #7f7f7f;
    font-size: 11pt;
}
.profile_bg_list:empty::after {
    content: "No running, pending or recently finished Update Jobs on the Proxy Instances for this profile";
}
.profile_bgstart_list:empty::after {
    content: "No columns are configured";
}

.vv_page.ve_keyset {
    max-width: 800px;
}
.ve_keyset .keyset_top {
    padding-top: 8px;
    height: 64px;
}

@media (max-width: 640px){
    .vv_header a.vv_user {
        left: 64px;
    }
    .vv_header-logo a {
        color: rgba(255, 255, 255, 0);
        background-image: url('/assets/ve-logo-128.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left center;
    }
    .profiles h1 {
        margin-top: 48px;
    }
    .vsection.selected .vsection-cell>h2 {
        font-size: 8pt;
        padding-top: 0;
    }
    .vsection.selected .vsection-cell>.actions {
        top: 13px;
        height: 15px;
    }
    .vsection.selected .vsection-cell>.actions .profile_conf_ctlbar {
        font-size: 8pt;
        margin: 0 12px auto auto;
        vertical-align: top;
    }
    .vsection.selected .vsection-cell>.actions button {
        font-size: 8pt;
        padding: 1px 8px;
        vertical-align: top;
    }
}
.hosts .proxy {
    display: none;
}
.hosts .proxy.key_enabled, .hosts .proxy.key_disabled {
    display: block;
}
.hosts .proxy.host_bad .proxy_hostname {
    color: #9f0000;
}
.hosts .proxy.key_disabled .proxy_hostname .proxyhost {
    text-decoration: line-through;
}
.proxy .host_key .kid::before, .keyset_profile .profile_key .kid::before {
    content: ' #';
}
.keyset_profile .profile_key.deleted {
    display: none;
}
.proxy .host_key.key_disabled {
    text-decoration: line-through;
    color: #9f5f00;
}
.keyset_profile_list {
    display: table;
    width: 100%;
}
.keyset_profile {
    display: table-row;
}
.keyset_profile>* {
    display: table-cell;
    vertical-align: top;
}
.keyset_profile .profile_keys {
    width: 128px;
}
.keyset_profile .profile_keys:not(:has(.profile_key:not(.deleted)))::after {
    content: 'N/A';
    font-style: italic;
    font-size: 10pt;
    color: #9f9f9f;
}
.keyset_profile .externalId {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.keyset_keys .keyset_key {
    background-color: #e8e8e8;
    margin: 4px auto;
    padding: 8px 16px;
    border-radius: 8px;
}
.keyset_keys .keyset_key.keyset_key_latest {
    background-color: #d8e8ff;
}
.keyset_keys .keyset_key.keyset_key_latest .kid::after {
    content: ' (latest)';
    color: #00005f;
}
.keyset_key .keyset_key_row {
    position: relative;
    font-size: 11pt;
}
.keyset_key .keyset_key_header {
    font-weight: 700;
}
.keyset_key .keyset_key_row .key_value {
    width: 100%;
    max-width: 480px;
    font-family: monospace;
}
.keyset_keys .if-key-unclean {
    display: none;
}
.keyset_keys:has(.keyset_key_latest.keyset_key_enabled) .if-key-unclean, .keyset_keys:has(.keyset_key_latest.keyset_key_disabled) .if-key-unclean {
    display: block;
}
.keyset_account .keyset_account_row {
    font-size: 11pt;
}
.keyset_account .keyset_account_row .externalId {
    font-weight: 700;
}
.outbound_ips_loading .proxy_info .proxy_info_row>span.outbound_ip:empty::before {
    content: '(loading)';
}
.keyset_account .keyset_account_admins {
    font-size: 11pt;
}
.keyset_account .keyset_account_admins ul {
    margin: 0;
}
.keyset_account .keyset_account_admin:not(:has(.admin_externalId:not(:empty))) {
    display: none;
}
.keyset_account .keyset_account_admins:not(:has(.admin_externalId:not(:empty)))::after {
    content: '(no data)';
    font-style: italic;
    color: #7f7f7f;
}
.keyset_account .keyset_account_admin .admin_externalId {
    font-weight: 700;
}
.keyset_account .keyset_account_admin .admin_domain {
    color: #9f0000;
    font-weight: 700;
}
.keyset_account .keyset_account_admin .admin_domain:empty {
    display: none;
}
.keyset_account .keyset_account_admin .admin_domain::before {
    content: ' (app: ';
    font-weight: 400;
}
.keyset_account .keyset_account_admin .admin_domain::after {
    content: ')';
    font-weight: 400;
}
.keyset_account .keyset_account_admin .admin_role {
    color: #5f009f;
}
.keyset_account .keyset_account_admin .admin_role:empty {
    display: none;
}
.keyset_account .keyset_account_admin .admin_role::before {
    content: ' (';
}
.keyset_account .keyset_account_admin .admin_role::after {
    content: ')';
}
