:root {
  interpolate-size: allow-keywords;
  --media: if(media(1px <=width < 768px): "mobile"; else: "desktop"; );
  /*
      .box {
          border: if(style(--media: "mobile"): 1px solid black; else: 2px solid black; );
          border: if(style(--theme: "lite"): 1px solid black; else: 2px solid black; );
      }
  */
  --test23: white;
  --dummy1: red;
  --light-bg: ghostwhite;
  --light-color: darkslategray;
  --light-code: tomato;
  --dark-bg: darkslategray;
  --dark-color: ghostwhite;
  --dark-code: gold;
  --mobile-max-width: 767px;
  --desktop-min-width: 768px;
  --outline-color-success: green;
  --outline-color-error: red;
  --outline-color-warning: orange;
  --warning_text_color: red;
  --record_archived_bgcolor: lightcoral;
  --record_future_bgcolor: lightblue;
  --theme: "lite";
}

body.theme_dark {
  --theme: "dark";
  --record_archived_bgcolor: darkred;
  --record_future_bgcolor: darkolivegreen;
}

@property --prop1234 {
  syntax: "<number>";
  initial-value: 1;
  inherits: false;
}
body.theme_lite {
  --required-field-indicator-font-size: large;
  --my-bgcolor: #eee;
  --my-thead-bgcolor: #dbd7d7;
  --my-tr-bgcolor-odd: #ebe7e7;
  --my-tr-bgcolor-even: inherit;
  --my-tr-bgcolor-hover: lightyellow;
  --my-grid-line-color: lightgray;
  --my-error-color: red;
  --sql-statements-pane-bgcolor: #d2e2e2;
}

#trace_info_pane {
  max-width: 96vw;
  background-color: #e2e2e2;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  position: relative;
  scroll-snap-type: y mandatory;
}

html,
body {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.appx_body {
  margin: 0px;
  position: relative;
  background-color: var(--my-bgcolor);
}

.appx_body.iframe_child_page {
  padding: 2px;
}

.maxWidth_100vw {
  max-width: calc(var(--vw100, 1vw) * 100);
}

#appx_body_main {
  padding-top: 1px;
}

.appx_body a {
  text-decoration: none;
}
.appx_body a:hover {
  text-decoration: underline;
}

.appx_body a.disabled {
  pointer-events: none;
  color: gray;
}

details summary {
  cursor: pointer;
}

details summary > * {
  display: inline;
}

.appUserManualLink {
  z-index: 1101;
  position: fixed;
  top: 2px;
  right: 150px;
  border: 1px yellow solid !important;
  border-radius: 40px !important;
  font-size: 1rem !important;
}
.appUserManualLink:disabled {
  opacity: 0.3;
  border: 1px solid #999;
  background-color: #ccc;
  color: #999;
}

#lbBottomLeft {
  font-size: smaller;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tick-mark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.tick-mark::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 50%;
  width: 3px;
  background-color: #336699;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}
.tick-mark::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #336699;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}

#fs-toggle:not(:fullscreen) {
  background-color: #afa;
}

#fs-toggle:fullscreen {
  background-color: #faa;
}

.pageNavigator {
  text-align: center;
  font-size: 1.1em;
}

.pageNavigatorControl {
  display: inline-block;
  margin-left: 10px;
}

.appMenuItemSelected {
  text-decoration: underline;
  font-size: larger;
  color: yellow;
  text-shadow: 1px 2px green;
}

.sql-statements-pane {
  padding: 4px;
  background-color: var(--sql-statements-pane-bgcolor);
}

a.link-external {
  background-image: url(https://en.wikibooks.org/w/skins/Vector/resources/skins.vector.styles.legacy/images/link-external-small-ltr-progressive.svg?fb64d);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 0.857em;
  padding-right: 1rem;
}

.link-to-external::after {
  content: "\f35f";
}

.appx-header-row {
  color: #fff;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  font-size: larger;
  padding: 9px;
}
.appx-header-row a {
  color: inherit;
}
.appx-header-row a:hover {
  text-decoration: none;
  border-bottom: 2px solid lightsalmon;
}
.appx-header-row > * {
  background-color: inherit;
}

.appx-desktop-menu {
  padding-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.appx-desktop-submenu {
  padding-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hamburger-menu-toggler-container {
  margin-bottom: -5px;
  padding-left: 11px;
}

.hamburger-menu-popup-container {
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 1001;
  background-color: inherit;
  overflow: hidden;
  font-size: 1.167rem;
  box-sizing: border-box;
  transition: height 0.3s ease-in-out;
  height: 0px;
  will-change: height;
}

menu.appx-hamburger-menu {
  margin: 0px;
  padding: 2px 10px 1px 10px;
  border: 1px solid #ccc;
}
menu.appx-hamburger-menu li {
  line-height: 1.8rem;
}

.videoContainer {
  margin: auto;
  background-color: lightblue;
  display: block;
  text-align: center;
}

.videoContainer video {
  width: 50vw;
}

.videoContainer button {
  font-size: 1rem;
  zfont-weight: 700;
  margin: 5px;
}

.videoControlPanel {
  background-color: lightcoral;
  margin: auto;
  display: inline-block;
}

iframe.iframe_class1 {
  border: 5px solid green;
}

/*.contentx-before::before {
    content: attr(data-contentx-before);
}

.contentx-after-parens-surrounded::after {
    content: ' (' attr(data-contentx-after) ')';
}*/
.showImageLarge_onClick {
  cursor: pointer;
}

.imageGalleryContainer {
  text-align: center;
}
.imageGalleryContainer figure {
  display: inline-block;
  margin: 20px;
}
.imageGalleryContainer figure figcaption {
  text-align: center;
}
.imageGalleryContainer img {
  min-width: 300px;
  min-height: 100px;
  width: 99%;
  background-image: linear-gradient(rgba(0, 0, 255, 0.5), rgba(255, 255, 0, 0.5)), url("https://www.mccarran.com/FSWeb/assets/Common/images/logos/logo_LAS_Lite.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .imageGalleryContainer img {
    max-width: 400px;
    max-height: 400px;
  }
}

#imageCategoriesDiv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
#imageCategoriesDiv > * {
  flex: 1 1 160px;
}

.record_future_row {
  background-color: var(--record_future_bgcolor) !important;
}

.record_archived_row {
  background-color: var(--record_archived_bgcolor) !important;
}

.full_height_on_hover {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms ease-out;
}
.full_height_on_hover > div {
  overflow: hidden;
}
.full_height_on_hover :hover {
  grid-template-rows: 1fr;
}

.appx_body thead {
  position: sticky;
  top: -1px;
}

.position_sticky_top {
  position: sticky;
  top: 0px;
}

.table-cells-light-border {
  border: 1px solid silver;
}
.table-cells-light-border td, .table-cells-light-border th {
  border: 1px solid silver;
}

.fieldsetx {
  border: 1px solid silver;
}
.fieldsetx legend {
  font-weight: bold;
  padding: 0px 6px;
}

.menu-plain,
.ul-plain,
.ol-plain {
  list-style-type: none;
  margin-block-start: 0px;
  padding-inline-start: 0px;
  margin-block-end: 0px;
  padding-inline-end: 0px;
}

.textAlign_center {
  text-align: center;
}

.textAlign_left {
  text-align: left;
}

.textAlign_right {
  text-align: right;
}

.flexCol_center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.display_flex {
  display: flex;
}

.display_flex_column {
  display: flex;
  flex-direction: column;
}

.flexDirection_row {
  flex-direction: row;
}

.display_grid {
  display: grid;
}

.justifyContent_end {
  justify-content: end;
}

.flexDirection_column {
  flex-direction: column;
}

.margin_auto {
  margin: auto;
}

.width_100pct {
  width: 100%;
}

.text_wrap_mode__nowrap {
  text-wrap-mode: nowrap;
}

.fontWeight_bold {
  font-weight: bold;
}

.fontSize_larger {
  font-size: larger;
}

.highlighted_onHover:hover {
  background-color: var(--my-tr-bgcolor-hover);
}

table.my_default_table_style tr:hover,
table.my_default_table_style tbody > tr:hover {
  background-color: var(--my-tr-bgcolor-hover) !important;
}

.displayNone_ifEmpty:empty {
  display: none;
}

.overscrollBehavior-contain {
  overscroll-behavior-y: contain;
}

.localDev_only {
  display: none;
}
.localDev_only::before {
  content: "(lh:";
}
.localDev_only::after {
  content: ")";
}

:root {
  --hamburger-menu-button-height: 20px;
}

.menu-wrap {
  display: inline-block;
  position: relative;
  width: calc(var(--hamburger-menu-button-height) + 6px);
  height: calc(var(--hamburger-menu-button-height) + 1px);
}

.hamburger-menu-toggler-checkbox {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(var(--hamburger-menu-button-height) + 5px);
  height: calc(var(--hamburger-menu-button-height) + 5px);
  cursor: pointer;
  z-index: 2;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  padding: 0px 3px;
  top: 0;
  left: 0;
  z-index: 1;
  width: var(--hamburger-menu-button-height);
  height: var(--hamburger-menu-button-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(var(--hamburger-menu-button-height) / -4);
  width: 100%;
  height: 2px;
  background: inherit;
}

.menu-wrap .hamburger > div::after {
  top: calc(var(--hamburger-menu-button-height) / 4);
}

.menu-wrap input:checked + .hamburger > div {
  transform: rotate(135deg);
}

.menu-wrap input:checked + .hamburger > div:before,
.menu-wrap input:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

.mainPopupMenu-container {
  position: relative;
}
.mainPopupMenu-container a:link {
  color: inherit;
  text-decoration: none;
}
.mainPopupMenu-container a:visited {
  color: inherit;
}
.mainPopupMenu-container ul {
  list-style-type: none;
  margin-block-start: 0px;
  padding-inline-start: 0px;
  margin-block-end: 0px;
  padding-inline-end: 0px;
}

#mainPopupMenu {
  text-align: left;
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 1001;
  background-color: inherit;
  overflow: hidden;
  box-sizing: border-box;
  transition: height 0.3s ease-in-out;
  height: 0px;
  will-change: height;
}
#mainPopupMenu.mobile-only {
  width: 100%;
}

#mainPopupMenu > * {
  border-top: 1px solid lightblue;
  border-bottom: 1px solid lightblue;
  padding: 7px;
}

#mainPopupMenu ul {
  margin: auto;
  list-style-type: none;
  margin-block-start: 0px;
  padding-inline-start: 0px;
  margin-block-end: 0px;
  padding-inline-end: 0px;
}
#mainPopupMenu ul li {
  padding: 3px;
}

.busy-three-circles {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  zzborder-color: #FFF #FFF transparent transparent;
  border-color: red red transparent transparent;
  box-sizing: border-box;
  animation: busy-three-circles-rotation 1s linear infinite;
}

.busy-three-circles::after,
.busy-three-circles::before {
  width: 40px;
  height: 40px;
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  zzborder-color: transparent transparent #FF3D00 #FF3D00;
  border-color: transparent transparent green green;
  border-radius: 50%;
  box-sizing: border-box;
  animation: busy-three-circles-rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.busy-three-circles::before {
  width: 32px;
  height: 32px;
  zzborder-color: #FFF #FFF transparent transparent;
  border-color: blue blue transparent transparent;
  animation: busy-three-circles-rotation 1.5s linear infinite;
}

@keyframes busy-three-circles-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes busy-three-circles-rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.busy-two-fishes {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid red;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: busy-two-fishes-rotation 1s linear infinite;
}

.busy-two-fishes::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid green;
  border-bottom: 4px solid transparent;
  animation: busy-two-fishes-rotation 0.5s linear infinite reverse;
}

@keyframes busy-two-fishes-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.busy-circle-2-colors {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: busy-circle-2-colors-rotate 1s linear infinite;
}

.busy-circle-2-colors::before,
.busy-circle-2-colors::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid blue;
  animation: busy-circle-2-colors-prixClipFix 2s linear infinite;
}

.busy-circle-2-colors::after {
  transform: rotate3d(90, 90, 0, 180deg);
  border-color: green;
}

@keyframes busy-circle-2-colors-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes busy-circle-2-colors-prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  75%, 100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
}
.busy-progess-bar-continuous {
  top: 0px !important;
  height: 7px;
  overflow: hidden;
}

.busy-progess-bar-continuous::after {
  content: "";
  width: 40%;
  height: 100%;
  background: lightgreen;
  position: absolute;
  top: 0;
  left: 0;
  animation: busy-progess-bar-continuous-kfs 1s linear infinite;
}

@keyframes busy-progess-bar-continuous-kfs {
  0% {
    left: 0;
    transform: translateX(-100%);
  }
  100% {
    left: 100%;
    transform: translateX(0%);
  }
}
.busy-loading-image {
  width: 320px;
  height: 150px;
  display: block;
  margin: auto;
  position: relative;
  background: #FFF;
  box-sizing: border-box;
}

.busy-loading-image::after {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  top: 15px;
  left: 15px;
  position: absolute;
  background-image: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5) 50%, transparent 80%), radial-gradient(circle 28px at 28px 28px, #DDD 99%, transparent 0), linear-gradient(#DDD 24px, transparent 0), linear-gradient(#DDD 18px, transparent 0), linear-gradient(#DDD 66px, transparent 0);
  background-repeat: no-repeat;
  background-size: 75px 130px, 55px 56px, 160px 30px, 260px 20px, 290px 56px;
  background-position: 0% 0, 0 0, 70px 5px, 70px 38px, 0px 66px;
  box-sizing: border-box;
  animation: busy-loading-image-animloader 1s linear infinite;
}

@keyframes busy-loading-image-animloader {
  0% {
    background-position: 0% 0, 0 0, 70px 5px, 70px 38px, 0px 66px;
  }
  100% {
    background-position: 150% 0, 0 0, 70px 5px, 70px 38px, 0px 66px;
  }
}
.ffx-field,
.ffx-field-vert {
  display: flex;
  flex-direction: column;
  margin-block-start: 1rem;
}

.ffx-field-vert-loose {
  display: flex;
  flex-direction: column;
  margin-block-start: 1.5rem;
}

.ffx-field-horz {
  display: flex;
  flex-direction: row;
  margin-block-start: 1rem;
  align-items: center;
  align-content: center;
}

.ffx-label {
  opacity: 0.7;
  padding-inline-end: 5px;
}

.ffx-label:has(input) {
  opacity: 1;
}

.chars-count {
  text-align: right;
  font-style: italic;
  opacity: 0.8;
}

.ffx-vlabel {
  opacity: 0.8;
}

.ffx-vlabel-colon {
  opacity: 0.8;
}
.ffx-vlabel-colon::after {
  content: ": ";
}

.content-label-inline-block label {
  display: inline-block;
}

.content-input-inline-block input {
  display: inline-block;
}

.audit-info {
  margin-block-start: 0.5em;
  font-size: 0.833rem;
  display: inline-block;
  color: #888;
}

.ffx-control {
  width: 100%;
  padding: 6px;
  font-size: 1rem;
  color: #555;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

textarea.ffx-control {
  padding-block-end: 11px;
  resize: both;
}

/*
 default outline for :focus is black on white background, and white on black background
*/
.ffx-control:user-invalid {
  outline: 2px solid red;
}

.ffx-control:focus-visible {
  outline: 1px solid #66afe9;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/*
input:read-only,
textarea:read-only {
  border: 0;
  box-shadow: none;
  background-color: #ddd;
}

textarea:read-write {
  outline: 1px dashed red;
  outline-offset: 2px;
  border-radius: 5px;
}
 :read-only matches anything that :read-write doesn't match, making it equivalent to :not(:read-write).
 :only-child = without any siblings. This is the same as :first-child:last-child or :nth-child(1):nth-last-child(1)
*/
.ffx-required-suffix::after,
.ffx-field-vert:has([required]:not([type=radio])) .ffx-label::after,
.ffx-field-horz:has([required]:not([type=radio])) .ffx-label::after,
.ffx-field-vert:has([required]) .ffx-radio-group-label::after,
.ffx-field-horz:has([required]) .ffx-radio-group-label::after {
  content: " *";
  font-size: var(--required-field-indicator-font-size);
  color: red;
}

.ffx-control:disabled {
  border: 1px solid #ccc;
  background-color: #ddd;
}

.ffx-combobox-popup {
  background-color: white;
  color: initial;
  border: gray 1px solid;
  border-radius: 3px;
  border-bottom: black 2px solid;
}
.ffx-combobox-popup > * {
  border-bottom: lightblue 1px solid;
  padding: 5px;
  min-height: 20pt;
}
.ffx-combobox-popup > *:hover {
  background-color: lightgray;
}

.val-err {
  color: red;
  font-size: 0.9em;
}

.formx {
  max-width: calc(var(--vw100, 1vw) * 100 - 10px);
}
.formx input[type=checkbox] {
  width: fit-content;
  width: 1rem;
  height: 1rem;
}
.formx input[type=radio] {
  width: fit-content;
  width: 1.1rem;
  height: 1.1rem;
}
.formx input[readonly] {
  background-color: #efefef;
}
.formx input:out-of-range {
  border-bottom: 2px solid red;
}
.formx option:checked {
  box-shadow: 0 0 0 3px lime;
  color: darkorchid;
}

.repeatable-containerx .addMoreItemButton {
  margin-block-start: 0.5rem;
}

.repeatable-itemx:nth-child(2n) {
  background-color: #e1e1e1;
}

.repeatable-itemx:nth-child(2n+1) {
  background-color: #d2e2e2;
}

.repeatable-itemx {
  padding: 3px 5px 5px 5px;
}
.repeatable-itemx .removeItemBtn {
  align-self: end;
  width: fit-content;
}

:root {
  --ffx-col-gap: 20px;
}

.grid-row-evenly {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: var(--ffx-col-gap);
}

.desktop-flex-row {
  display: flex;
  flex-direction: column;
}

.desktop-flex-row-control-group {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 1ch;
  column-gap: 1rem;
}

.desktop-flex-column {
  display: flex;
  flex-direction: row;
}

.desktop-grid-row {
  display: grid;
  grid-template-columns: 1fr;
}

@media (768px <= width < 99000px) {
  .desktop-flex-row {
    flex-direction: row;
  }
  .desktop-flex-row-control-group {
    flex-direction: row;
    align-items: center;
  }
  .desktop-flex-column {
    flex-direction: column;
  }
  .desktop-grid-row {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    column-gap: var(--ffx-col-gap);
  }
  .desktop-grid-row__auto-max-content {
    display: grid;
    grid-template-columns: auto max-content;
    column-gap: var(--ffx-col-gap);
  }
  .desktop-grid-row__max-content-auto {
    display: grid;
    grid-template-columns: max-content auto;
    column-gap: var(--ffx-col-gap);
  }
}
/* ============================================================== buttons/bootstrap ===*/
.link-as-btnx {
  display: inline-block;
  border: 1px solid black;
  padding: 5px;
  background-color: gray;
}

.btnx {
  user-select: none;
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.5;
  color: #fff !important;
  font-family: unset !important;
  font-size: larger;
  text-decoration: none !important;
}

.excl-after::after {
  content: " !";
}

/*bootstrap icons*/
i.bi {
  font-size: 1rem;
}

.btnx-primary {
  background-color: #005b8f;
  border-color: #007bff;
}

.btnx-warning {
  background-color: lightsalmon;
  border-color: lightsalmon;
}

.btnx-danger {
  background-color: indianred;
  border-color: indianred;
}

.btnx-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btnx-basic {
  background-color: gray;
  border-color: lightgray;
}

.btnx:hover:not(:disabled):not(.disable) {
  box-shadow: 2px 2px 2px grey;
  border-radius: 5px;
  border-width: 1px;
  border-color: yellow;
  color: lightyellow;
  transition-timing-function: ease-in-out;
  opacity: 1;
}

.btnx:not(:disabled):not(.disable) {
  cursor: pointer;
}

.btnx-disabled {
  color: #aaa;
  background-color: #17a2b8;
  border-color: #17a2b8;
  cursor: text;
  font-size: smaller;
}

input.btnx2[type=file]::file-selector-button {
  background-color: hotpink;
  padding: 0.5rem 1rem;
  border: 2px solid fuchsia;
  margin-block-end: 1rem;
  display: block;
  border-radius: 3px;
}
input.btnx2[type=file]::file-selector-button:hover {
  background-color: aqua;
}

input.btnx23[type=file]::file-selector-button:hover {
  background-color: aqua;
}

#fullpage {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: black;
}

/*
const imgs = document.querySelectorAll('.gallery img');
const fullPage = document.querySelector('#fullpage');

imgs.forEach(img => {
  img.addEventListener('click', function() {
    fullPage.style.backgroundImage = 'url(' + img.src + ')';
    fullPage.style.display = 'block';
  });
});
*/
.my-dialog[open] {
  animation: my-dialog-appear 0.005s cubic-bezier(0, 1.8, 1, 1.8);
}

.my-dialog::backdrop {
  background: linear-gradient(45deg, rgba(104, 104, 104, 0.5), rgba(200, 204, 206, 0.5));
}

@keyframes my-dialog-appear {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.my-dialog {
  border: none;
  padding: 0px;
  border-radius: 3px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.25);
  max-width: calc(100dvw - 2em);
  max-height: calc(100% - 1em - 1px);
  min-width: 300px;
  scroll-behavior: contain;
}

.my-dialog-header {
  background-color: lightgoldenrodyellow;
  border-radius: 3px 3px 0px 0px;
  padding: 3px 6px;
  border: grey 1px solid;
  border-left-width: 0px;
  border-right-width: 0px;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.my-dialog-header-right {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  padding: 0em 0.2rem;
}

.my-dialog-header-right:hover {
  background-color: rgb(218, 73, 73);
  color: black;
}

.my-dialog-footer {
  border-radius: 0px 0px 3px 3px;
  display: flex;
  padding: 0.5rem;
  margin: 5px;
  border-top: #aaa 1px solid;
  justify-content: flex-end;
}

.my-dialog-footer button {
  margin-left: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.my-dialog-main {
  padding: 0.5rem;
}

.my-dialog-busy-wrapper {
  zposition: relative;
  ztop: 50px;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  padding: 0px 30px;
}

.my-dialog-busy-icon {
  position: fixed;
  left: 0px;
  right: 0px;
  margin: auto;
  ztop: calc(50% - 24px - 3em);
}

.my-dialog-busy-text {
  line-height: 1.5rem;
  width: 100%;
}

.my-dialog-busy-cancel-btn {
  text-align: center;
  display: "inline";
  justify-self: center;
  margin-bottom: 2px;
}

.my-dialog-busy-counter {
  position: fixed;
  ztop: calc(50% + 2em);
  zposition: absolute;
  ztop: 10px;
  left: 0px;
  right: 0px;
  text-align: center;
  color: red;
}

.dialogx-button-pane {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 5px 1px 5px;
  padding: 8px 0px 0px 0px;
  border: 1px solid #aaa;
  border-width: 1px 0 0 0;
}

.more-detailed-info {
  border: none;
  cursor: pointer;
  font-size: larger;
  opacity: 0.7;
}

.appx_body [popover] {
  inset: unset;
  top: 100px;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 5px 10px;
}

.appx_body [popover]::backdrop {
  background-color: lightgray;
  opacity: 0.2;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Tooltip */
.tooltipx-info-icon-container {
  position: relative;
  display: inline-block;
}
.tooltipx-info-icon-container:hover .ttx-text {
  visibility: visible;
  display: inline-block;
  opacity: 1;
}
.tooltipx-info-icon-container > .ttx-anchor {
  cursor: pointer;
}
.tooltipx-info-icon-container > .ttx-info-icon {
  font-weight: bold;
  opacity: 0.6;
}
.tooltipx-info-icon-container > .ttx-text {
  background-color: #f9f9f9;
  color: black;
  text-align: left;
  border: 1px solid grey;
  border-radius: 4px;
  box-shadow: 2px 2px 2px grey;
  padding: 2px 5px;
  position: absolute;
  box-sizing: border-box;
  left: -50px;
  bottom: 100%;
  width: max-content;
  visibility: hidden;
  opacity: 0;
  /* Fade in tool tip - takes 1 second to go from 0% to 100% opac: */
  transition: opacity 0.3s;
  /* Tool tip arrow */
}
.tooltipx-info-icon-container > .ttx-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 57px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.tooltipx-info-icon-container > .ttx-text a {
  color: blue;
}

/*
Comments/Feedback: <body class="appx_body app-css-PubSitePages appx-custom-layout iframe_child_page theme_dark">
LSEP: <body class="appx_body app-css-LSEP appx-custom-layout theme_dark">
*/
.appx_body:not(.appx-custom-layout) {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}
.appx_body:not(.appx-custom-layout) > #appx_body_main {
  padding: 1px 5px 35px 5px;
}
.appx_body:not(.appx-custom-layout) > #appx_body_header, .appx_body:not(.appx-custom-layout) > #appx_body_footer {
  position: relative;
  max-width: calc(var(--vw100, 1vw) * 100);
}
.appx_body:not(.appx-custom-layout) > #appx_body_header:empty, .appx_body:not(.appx-custom-layout) > #appx_body_footer:empty {
  display: none;
}
.appx_body:not(.appx-custom-layout) > #appx_body_footer {
  background-color: #c3d3d3;
  padding: 5px;
}

body.app-css-WebCrawler img {
  max-width: 300px;
  height: auto;
  max-height: 200px;
  border: solid lightblue 1px;
}
body.app-css-WebCrawler .hmx-radio-group > section {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}

/*
<blockquote cite="https://web.dev/about/">
  Google believes in an open, accessible, private, and secure web.
</blockquote>
=> Google believes in an open, accessible, private, and secure web. (source: https://web.dev/about/)
*/
.appxz blockquote::after {
  display: block;
  content: " (source: " attr(cite) ") ";
  color: hotpink;
}

.hria-footer {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 5px;
  color: var(--my-textcolor);
}

body.app-css-PubSitePages,
body.app-css-PubForms,
body.app-css-PubImageGallery,
body.app-css-LSEP {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, "Segoe UI", sans-serif;
}
body.app-css-PubSitePages.theme_lite,
body.app-css-PubForms.theme_lite,
body.app-css-PubImageGallery.theme_lite,
body.app-css-LSEP.theme_lite {
  background-color: #f4f5f0;
}
body.app-css-PubSitePages .ffx-label,
body.app-css-PubForms .ffx-label,
body.app-css-PubImageGallery .ffx-label,
body.app-css-LSEP .ffx-label {
  opacity: 1;
}

body.app-css-LSEP .ffx-label {
  opacity: 0.8 !important;
}
body.app-css-LSEP.theme_lite .ffx-label:has(input[type=radio]:checked), body.app-css-LSEP.theme_lite .lsep--ffx-field-checkbox:has(input[type=checkbox]:checked) {
  font-weight: bold;
  border-radius: 0.2rem;
  padding-right: 5px;
  opacity: 1;
  background-color: rgb(205, 216, 231);
}

.statusBar {
  position: fixed;
  visibility: hidden;
  right: 0px;
  top: 5px;
  z-index: 20013;
  font-size: 1.3rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  align-content: flex-end;
}
.statusBar > * {
  display: inline-block;
  align-content: center;
  justify-content: center;
  align-self: stretch;
}
.statusBar .statusBarMesgWrapper .statusBarMesg {
  opacity: 1;
  transition-duration: 5s;
  transition-property: opacity;
  background-color: #ececd7;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  height: 100%;
  padding: 0px 5px;
  padding-top: 4px;
  outline: 1px dashed lightgreen;
}
.statusBar .statusBarMesgWrapper .statusBarMesg::before {
  content: " -- ";
}
.statusBar .statusBarMesgWrapper .statusBarMesg::after {
  content: " -- ";
}
.statusBar .statusBarButtonWrapper {
  text-align: center;
  zbackground-color: red;
}
.statusBar .statusBarButtonWrapper button {
  border-radius: 2px;
  font-size: 1.3rem;
  color: #777;
  cursor: pointer;
}
.statusBar .statusBarButtonWrapper button:hover {
  color: black;
  outline: 1px dotted blue;
}

.sideBarDevLinks {
  background-color: lightskyblue;
  list-style: none;
  font-size: 1rem;
  position: fixed;
  z-index: 1101;
  min-width: fit-content;
  overflow-y: scroll;
  padding-right: 8px;
  bottom: 40px;
  right: 7px;
  max-height: 90vh;
}
.sideBarDevLinks li {
  margin-bottom: 0.3rem;
}
.sideBarDevLinks ul {
  padding-left: 1.5em;
}

details.sideBarDevLinks > summary {
  padding: 2px 6px;
  background-color: #ddd;
  border: none;
  box-shadow: 3px 3px 4px black;
  cursor: pointer;
}

@media screen and (max-width: 1000px) {
  .sideBarDevLinks {
    display: none;
  }
}
@media (1px <= width < 768px) {
  .desktop-only {
    display: none !important;
  }
  [data-mobile-move-content-to] {
    display: none !important;
  }
  body:has(.my-dialog[open]) {
    overflow: hidden;
  }
}
@media (768px <= width < 99000px) {
  .mobile-only {
    display: none !important;
  }
}
body.theme_dark {
  --my-bgcolor: rgb(9, 31, 44);
  --my-thead-bgcolor: rgb(12, 63, 93);
  --my-tr-bgcolor-odd: rgb(6, 38, 56);
  --my-tr-bgcolor-even: rgb(9, 31, 44);
  --my-tr-bgcolor-hover: darkslategray;
  --my-grid-line-color: rgb(50, 50, 50);
  --my-td-border-color: rgb(50, 50, 50);
  --my-th-border-color: rgb(76, 82, 82);
  --my-error-color: hsl(0, 63%, 41%);
  --outline-color-error: hsl(0, 63%, 41%);
  --warning_text_color: hsl(0, 63%, 41%);
  --outline-color-success: green;
  --outline-color-warning: orange;
  --sql-statements-pane-bgcolor: darkslategrey;
  --my-bgcolor-lighter: rgb(29, 51, 74);
  --my-bgcolor-darker: #000;
  --my-textcolor: #bbb;
  --my-link-color: rgb(79, 156, 205);
}
body.theme_dark dialog {
  background-color: var(--my-bgcolor);
}

body.theme_dark .my-dialog-main,
body.theme_dark > main,
.header_as_main {
  color: var(--my-textcolor);
}
body.theme_dark .my-dialog-main th,
body.theme_dark > main th,
.header_as_main th {
  border-color: var(--my-th-border-color) !important;
  padding: 5px !important;
}
body.theme_dark .my-dialog-main td,
body.theme_dark > main td,
.header_as_main td {
  border-color: var(--my-td-border-color) !important;
  padding: 5px !important;
}
body.theme_dark .my-dialog-main a,
body.theme_dark > main a,
.header_as_main a {
  color: var(--my-link-color);
}
body.theme_dark .my-dialog-main a:hover,
body.theme_dark > main a:hover,
.header_as_main a:hover {
  /* this mix both at 50%, resulting in pink */
  color: color-mix(in srgb, red, white);
}
body.theme_dark .my-dialog-main .repeatable-itemx:nth-child(2n),
body.theme_dark > main .repeatable-itemx:nth-child(2n),
.header_as_main .repeatable-itemx:nth-child(2n) {
  background-color: var(--my-bgcolor);
}
body.theme_dark .my-dialog-main .repeatable-itemx:nth-child(2n+1),
body.theme_dark > main .repeatable-itemx:nth-child(2n+1),
.header_as_main .repeatable-itemx:nth-child(2n+1) {
  background-color: color-mix(in srgb, var(--my-bgcolor) 90%, yellow);
}
body.theme_dark .my-dialog-main #trace_info_pane,
body.theme_dark > main #trace_info_pane,
.header_as_main #trace_info_pane {
  background-color: var(--my-bgcolor) !important;
}
body.theme_dark .my-dialog-main #trace_info_pane *,
body.theme_dark > main #trace_info_pane *,
.header_as_main #trace_info_pane * {
  background-color: inherit;
}
body.theme_dark .my-dialog-main pre,
body.theme_dark > main pre,
.header_as_main pre {
  white-space: pre-wrap;
  word-break: break-word;
  scrollbar-color: red var(--my-bgcolor-darker);
}
body.theme_dark .my-dialog-main .grid-data-row:hover,
body.theme_dark > main .grid-data-row:hover,
.header_as_main .grid-data-row:hover {
  background-color: inherit;
  filter: brightness(160%);
}
body.theme_dark .my-dialog-main button:not(.btnx),
body.theme_dark > main button:not(.btnx),
.header_as_main button:not(.btnx) {
  background-color: darkgrey;
}
body.theme_dark .my-dialog-main hr,
body.theme_dark > main hr,
.header_as_main hr {
  border-top: 1px solid darkolivegreen;
}
body.theme_dark .my-dialog-main select > option,
body.theme_dark > main select > option,
.header_as_main select > option {
  color: var(--my-textcolor);
}
body.theme_dark .my-dialog-main select > option:checked,
body.theme_dark > main select > option:checked,
.header_as_main select > option:checked {
  color: black;
  background-color: lightskyblue;
}
body.theme_dark .my-dialog-main input,
body.theme_dark .my-dialog-main select,
body.theme_dark .my-dialog-main textarea,
body.theme_dark > main input,
body.theme_dark > main select,
body.theme_dark > main textarea,
.header_as_main input,
.header_as_main select,
.header_as_main textarea {
  background-color: var(--my-bgcolor-lighter) !important;
  color: var(--my-textcolor) !important;
  caret-color: lightblue !important;
}
body.theme_dark .my-dialog-main input[type=checkbox],
body.theme_dark > main input[type=checkbox],
.header_as_main input[type=checkbox] {
  accent-color: lightblue;
}
body.theme_dark .my-dialog-main input[type=radio],
body.theme_dark > main input[type=radio],
.header_as_main input[type=radio] {
  accent-color: darkblue;
}
body.theme_dark .my-dialog-main input[type=checkbox]:not(:checked):not(:disabled),
body.theme_dark > main input[type=checkbox]:not(:checked):not(:disabled),
.header_as_main input[type=checkbox]:not(:checked):not(:disabled) {
  border-radius: 2px;
  margin-bottom: 0;
  appearance: none;
  background-color: var(--my-bgcolor) !important;
  accent-color: lightblue;
  border-color: lightblue;
  outline: 1px solid lightblue;
}
body.theme_dark .my-dialog-main input[type=radio]:not(:checked):not(:disabled),
body.theme_dark > main input[type=radio]:not(:checked):not(:disabled),
.header_as_main input[type=radio]:not(:checked):not(:disabled) {
  border-radius: 100px;
  appearance: none;
  background-color: black !important;
  accent-color: lightblue;
  margin-bottom: 0;
}
body.theme_dark .my-dialog-main .ffx-combobox-popup,
body.theme_dark > main .ffx-combobox-popup,
.header_as_main .ffx-combobox-popup {
  background-color: var(--my-bgcolor-lighter) !important;
  color: var(--my-textcolor) !important;
  border: gray 1px solid;
  border-radius: 3px;
  border-bottom: black 2px solid;
}
body.theme_dark .my-dialog-main .ffx-combobox-popup > *,
body.theme_dark > main .ffx-combobox-popup > *,
.header_as_main .ffx-combobox-popup > * {
  border-bottom: lightblue 1px solid;
  padding: 5px;
  min-height: 20pt;
}
body.theme_dark .my-dialog-main .ffx-combobox-popup > *:hover,
body.theme_dark > main .ffx-combobox-popup > *:hover,
.header_as_main .ffx-combobox-popup > *:hover {
  background-color: darkcyan;
}

body.app-css-DbMan {
  position: relative;
}
body.app-css-DbMan > header a {
  text-decoration: none;
  color: white;
}
body.app-css-DbMan > header a:hover {
  background-color: unset;
  border-bottom: 1px solid lightsalmon;
}
body.app-css-DbMan > header .ffx-control {
  width: unset;
  padding: 0px;
  font-size: 0.833rem;
  color: #555;
  border-radius: 2px;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
body.app-css-DbMan > header .ffx-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
body.app-css-DbMan > header button {
  border-radius: 1px;
  border: 1px solid transparent;
}
body.app-css-DbMan > header button:disabled {
  color: lightgray;
}

body.app-css-SlidingImagesAdmin .zzdms_field_file_flag1 label span {
  display: none;
}
body.app-css-SlidingImagesAdmin .zzdms_field_file_flag1 label::after {
  content: "Admin Preview Only";
}

body.app-css-EDMS,
body.app-css-ImageGalleryAdmin,
body.app-css-SlidingImagesAdmin {
  /*dms folder listing grid*/
  /*dms file record view page*/
  /*folder icon*/
  /*!file/document icon*/
}
body.app-css-EDMS a:not([href]),
body.app-css-ImageGalleryAdmin a:not([href]),
body.app-css-SlidingImagesAdmin a:not([href]) {
  color: gray;
}
body.app-css-EDMS header,
body.app-css-ImageGalleryAdmin header,
body.app-css-SlidingImagesAdmin header {
  min-height: 30px;
  background-color: darkcyan;
}
body.app-css-EDMS header a,
body.app-css-ImageGalleryAdmin header a,
body.app-css-SlidingImagesAdmin header a {
  text-decoration: none;
  color: white;
}
body.app-css-EDMS header a:hover,
body.app-css-ImageGalleryAdmin header a:hover,
body.app-css-SlidingImagesAdmin header a:hover {
  background-color: unset;
  border-bottom: 1px solid lightsalmon;
}
body.app-css-EDMS .main_content_pane:not(:has(.content_div_plain)),
body.app-css-ImageGalleryAdmin .main_content_pane:not(:has(.content_div_plain)),
body.app-css-SlidingImagesAdmin .main_content_pane:not(:has(.content_div_plain)) {
  max-width: 900px;
  margin: auto;
}
body.app-css-EDMS .grid-data-row:hover,
body.app-css-ImageGalleryAdmin .grid-data-row:hover,
body.app-css-SlidingImagesAdmin .grid-data-row:hover {
  background-color: lightcyan;
}
body.app-css-EDMS .grid-data-header-row,
body.app-css-ImageGalleryAdmin .grid-data-header-row,
body.app-css-SlidingImagesAdmin .grid-data-header-row {
  font-weight: bold;
}
body.app-css-EDMS .dms-grid,
body.app-css-ImageGalleryAdmin .dms-grid,
body.app-css-SlidingImagesAdmin .dms-grid {
  width: min(98vw, 1000px);
  margin: auto;
}
body.app-css-EDMS .dms-grid > *,
body.app-css-ImageGalleryAdmin .dms-grid > *,
body.app-css-SlidingImagesAdmin .dms-grid > * {
  display: grid;
  border-bottom: 1px solid var(--my-grid-line-color);
  padding-top: 5px;
  padding-bottom: 4px;
}
body.app-css-EDMS .dms-folder-grid > *,
body.app-css-ImageGalleryAdmin .dms-folder-grid > *,
body.app-css-SlidingImagesAdmin .dms-folder-grid > * {
  grid-template-columns: 6fr 4fr;
}
@media (768px <= width < 9999px) {
  body.app-css-EDMS,
  body.app-css-ImageGalleryAdmin,
  body.app-css-SlidingImagesAdmin {
    /*dms file listing grid*/
    /*dms file listing grid with ordinal position column*/
  }
  body.app-css-EDMS .dms-file-grid > *,
  body.app-css-ImageGalleryAdmin .dms-file-grid > *,
  body.app-css-SlidingImagesAdmin .dms-file-grid > * {
    grid-template-columns: 0.4fr 5fr 1fr 1.8fr 3fr;
    padding-top: 7px;
  }
  body.app-css-EDMS .dms-file-grid-ordinalPosition > *,
  body.app-css-ImageGalleryAdmin .dms-file-grid-ordinalPosition > *,
  body.app-css-SlidingImagesAdmin .dms-file-grid-ordinalPosition > * {
    grid-template-columns: 1fr 5fr 1fr 2fr 1.5fr 2fr;
    padding-top: 7px;
  }
}
@media (1px <= width < 768px) {
  body.app-css-EDMS .dms-file-ext-col,
  body.app-css-EDMS .dms-file-record-status-col,
  body.app-css-EDMS .dms-file-details-col,
  body.app-css-ImageGalleryAdmin .dms-file-ext-col,
  body.app-css-ImageGalleryAdmin .dms-file-record-status-col,
  body.app-css-ImageGalleryAdmin .dms-file-details-col,
  body.app-css-SlidingImagesAdmin .dms-file-ext-col,
  body.app-css-SlidingImagesAdmin .dms-file-record-status-col,
  body.app-css-SlidingImagesAdmin .dms-file-details-col {
    text-align: right;
    padding-right: 1em;
  }
  body.app-css-EDMS .dms-file-record-status-col,
  body.app-css-ImageGalleryAdmin .dms-file-record-status-col,
  body.app-css-SlidingImagesAdmin .dms-file-record-status-col {
    display: flex;
    flex-direction: row-reverse;
  }
}
body.app-css-EDMS .dms-file-view-field,
body.app-css-ImageGalleryAdmin .dms-file-view-field,
body.app-css-SlidingImagesAdmin .dms-file-view-field {
  display: grid;
  grid-template-columns: 1fr auto 4fr;
  gap: 10px;
  padding-top: 8px;
}
body.app-css-EDMS .dms1 > section,
body.app-css-ImageGalleryAdmin .dms1 > section,
body.app-css-SlidingImagesAdmin .dms1 > section {
  margin-top: 5px;
}
body.app-css-EDMS .dms1 > section.dms-start-section,
body.app-css-ImageGalleryAdmin .dms1 > section.dms-start-section,
body.app-css-SlidingImagesAdmin .dms1 > section.dms-start-section {
  margin-top: 0.6rem;
}
body.app-css-EDMS .dms1 > section > .labelCtn,
body.app-css-ImageGalleryAdmin .dms1 > section > .labelCtn,
body.app-css-SlidingImagesAdmin .dms1 > section > .labelCtn {
  background-color: aqua;
}
body.app-css-EDMS .dms1 > section > .labelCtn::after,
body.app-css-ImageGalleryAdmin .dms1 > section > .labelCtn::after,
body.app-css-SlidingImagesAdmin .dms1 > section > .labelCtn::after {
  content: ": ";
}
body.app-css-EDMS .dms1 > section > div::before,
body.app-css-ImageGalleryAdmin .dms1 > section > div::before,
body.app-css-SlidingImagesAdmin .dms1 > section > div::before {
  vertical-align: top;
}
body.app-css-EDMS .dms1 img,
body.app-css-ImageGalleryAdmin .dms1 img,
body.app-css-SlidingImagesAdmin .dms1 img {
  border: 1px lightgrey solid;
}
body.app-css-EDMS #contentBlobEl img,
body.app-css-ImageGalleryAdmin #contentBlobEl img,
body.app-css-SlidingImagesAdmin #contentBlobEl img {
  max-width: 601px;
  height: auto;
  border: 1px solid #ccc;
}
body.app-css-EDMS #contentBlobEl video,
body.app-css-ImageGalleryAdmin #contentBlobEl video,
body.app-css-SlidingImagesAdmin #contentBlobEl video {
  height: 201px;
  width: auto;
}

.remoteCtrlGrid {
  max-width: 400px;
  margin: auto;
}
.remoteCtrlGrid .desktop-grid-row {
  padding-block-start: 30px;
}
.remoteCtrlGrid button {
  min-block-size: 60px;
}
.remoteCtrlGrid .zzdms_field_file_flag1 label span {
  display: none;
}
.remoteCtrlGrid .zzdms_field_file_flag1 label::after {
  content: "Admin Preview Only";
}
