HTML, BODY {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  overflow: hidden;
}

HTML,BODY,DIV,INPUT,TEXTAREA,SELECT,CANVAS {
  box-sizing: border-box;
}

BODY {
  pointer-events: none;
  opacity: 0.5;
}

SELECT {
  min-height: 2em;
  font-size: inherit;
  background-color: inherit;
}

INPUT,TEXTAREA {
  font: inherit;
  background-color: inherit;
  border: solid 1px gray;
}

H1,H2,H3,P {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

IFRAME {
  border: none;
}

*:focus,*:focus-visible {
  outline: none;
}

::-moz-focus-inner { border: 0; }

::placeholder {
  color: #E0E0E0;
  font-style: italic;
  opacity: 1;
}

/*UL, OL {
  padding-left: 2em;
  margin-bottom: 0;
}

P:first-child,UL:first-child,OL:first-child {
  margin-top: 0;
}*/

.gw-unselectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.gw-hidden {
  display: none !important;
}

.gw-button {
  display: flex;
  position: relative;
  flex-flow: row;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  font: inherit;
  padding: 0.25em;
  height: 2em;
  border: solid 1px gray;
  cursor: default;
  background-color: #F0F0F0;
  user-select: none;
}

.gw-button-default {
  border-width: 2px;
}

.gw-button:active {
  background-color: #E0E0E0;
}

.gw-button.gw-noborder {
  border: solid 1px transparent;
  background: none;
}

.gw-button.gw-noborder:hover {
  border: solid 1px #C0C0C0;
}

.gw-button-image {
  margin-left: 0.5em;
  margin-right: 0.5em;
  object-fit: contain;
}

.gw-button-text {
  margin-right: 0.5em;
  white-space: pre;
}

.gw-button-image:last-child {
  margin: 0;
  flex-grow: 1;
}

.gw-button-text {
  align-self: center;
}

.gw-button-text:first-child {
  margin-left: 0.5em;
}

.gw-button-arrow {
  display: inline-block;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAI0lEQVQYlWNgoAZoYGBg+I8DN+BT1MCABhrwSSIrwilJHgAAbCcP9dwIQGIAAAAASUVORK5CYII=');
  background-position: left;
  background-repeat: no-repeat;
  height: 100%;
  width: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  border: none;
  overflow: hidden;
}

.gw-tab-header {
  margin-bottom: -1px;
  z-index: 1;
  line-height: 2em;
}

.gw-tab-header.gw-noborder {
  margin-bottom: 0;
}

.gw-tab {
  color: gray;
  padding: 0 0.5em;
  cursor: pointer;
  border-top: solid transparent 1px;
  border-right: solid transparent 1px;
  border-left: solid transparent 1px;
}

.gw-tab:hover {
  color: black;
}

.gw-tab-selected {
  padding: 0 0.5em;
  border-left: solid #C0C0C0 1px;
  border-top: solid #C0C0C0 1px;
  border-right: solid #C0C0C0 1px;
  /*border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;*/
  background: white;
}

.gw-tab-header.gw-noborder > div {
  border: none;
}

.gw-tab-contents {
  border: solid #C0C0C0 1px;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
}

.gw-tab-contents > DIV {
  flex-grow: 1;
}

.gw-tab-contents.gw-noborder {
  border: none;
}

.gw-checkbox,.gw-radiobutton {
  position: relative;
  display: flex;
  flex-flow: row;
  min-height: 2em;
}

.gw-checkbox-label,.gw-radiobutton-label {
  display: flex;
  flex-flow: row;
  align-items: center;
}

.gw-disabled {
  pointer-events: none;
  filter: grayscale(50%);
  opacity: 0.5;
}

/*.gw-checkbox.gw-disabled > .gw-checkbox-label {
  opacity: 0.5;
}

.gw-radiobutton.gw-disabled > .gw-checkbox-label {
  opacity: 0.5;
}*/

.gw-checkbox-toggle,.gw-radiobutton-toggle {
  margin: 0;
  margin-right: 0.5em;
}

.gw-textbox {
  display: inline-block;
  position: relative;
  min-height: 2em;
}

.gw-textbox.gw-noborder {
  border: none;
}

.gw-textbox INPUT {
  width: 100%;
  min-height: 2em;
  box-sizing: border-box;
  padding: 0 0.25em;
  vertical-align: middle;
}

.gw-textbox-clear {
  position: absolute;
  right: 0;
  display: inline-block;
  z-index: 2;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAQ0lEQVQYlWNmYGCwY2BgiGdgYDjIgArqGBgY/iMz6rBI1mETwKYBRRGKJBO6KlwArxV4HckMZTxgYGBoQlJwECp+AADQjhqXl5Xe2AAAAABJRU5ErkJggg==');
  background-position: center;
  background-repeat: no-repeat;
  height: 2rem;
  width: 2rem;
  /*margin-left: -2rem;*/
  /*pointer-events: none;*/
  vertical-align: middle;
  border: none;
  /*overflow: hidden;*/
}

.gw-combobox {
  display: inline-flex;
  position: relative;
  min-height: 2em;
}

.gw-combobox SELECT {
  z-index: 1;
  opacity: 0;
  float: right;
}

.gw-combobox INPUT {
  width: 100%;
  box-sizing: border-box;
  padding: 0 2.25em 0 0.25em;
  vertical-align: middle;
}

.gw-combobox.gw-noborder INPUT {
  border: none;
}

.gw-combobox-arrow {
  display: inline-block;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAI0lEQVQYlWNgoAZoYGBg+I8DN+BT1MCABhrwSSIrwilJHgAAbCcP9dwIQGIAAAAASUVORK5CYII=');
  background-position: center;
  background-repeat: no-repeat;
  height: 2rem;
  width: 2rem;
  margin-left: -2rem;
  /*pointer-events: none;*/
  vertical-align: middle;
  border: none;
  overflow: hidden;
}

.gw-selectbox {
  display: inline-block;
  position: relative;
  min-height: 2em;
}

.gw-selectbox SELECT {
  width: 100%;
  height: 100%;
}

.gw-selectbox.gw-noborder SELECT {
  border: none;
}

.gw-window-container {
}

.gw-window {
  position: fixed;
  top: 0;
  left: 0;
  border: solid 1px gray;
  padding: 1px;
  box-shadow: 0 0 0.5em gray;
  background: white;
  z-index: 10;
  overflow: hidden;
}

.gw-popup {
  position: absolute !important;
  border-radius: 0;
  box-shadow: none;
}

.gw-window-titlebar {
  display: flex;
  flex-flow: row;
  align-items: center;
  background: #2980B9;
  font-weight: bold;
  /*border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;*/
  padding: 0.25em;
}

.gw-window-titlebar.gw-deactivated {
  background: white;
}

.gw-window-title {
  flex-grow: 1;
  color: white;
  padding: 0 1em;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gw-window-titlebar.gw-deactivated > DIV.gw-window-title {
  color: gray;
}

.gw-window-button {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  border: none;
}

.gw-window-button > IMG {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
}

.gw-window-close-button {
  /*border-top-left-radius: 0.3em;*/
}

.gw-window-max-button {
  /*border-top-right-radius: 0.3em;*/
}

/*@-moz-document url-prefix() {
  .gw-window-button {
    display: inline-flex;
  };
}*/

.gw-form-contents {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
}

.gw-popup > .gw-window-contents {
  padding: 0;
}

.gw-label {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  border: solid 1px gray;
  padding: 0 0.25rem;
}

.gw-label.gw-noborder {
  border: none;
  padding: 0;
}

#gw-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
}

#gw-focus {
  display: none;
  position: absolute;
  /*border: solid 2px rgba(0,127,255,0.5);*/
  box-shadow: 0 0 0.25rem rgba(0,127,255,1) inset;
  pointer-events: none;
}

#gw-lock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAFUlEQVQYlWNkYGAwYMADmPBJDh8FADoIAECNjQSqAAAAAElFTkSuQmCC');
  opacity: 0;
}

#gw-lock-animation {
  position: absolute;
  width: 13.5em;
  height: 3em;
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}

.gw-lock-circle {
  background-color:#CCC;
  float: left;
  height: 3em;
  width: 3em;
  border-radius: 3em;
  margin-left: 0.75em;
  margin-right: 0.75em;
  animation-name: bounce_circle;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: linear;
  opacity: 0.3;
}

#gw-lock-1 {
  animation-delay: .3s;
}
#gw-lock-2 {
  animation-delay: .7s;
}
#gw-lock-3 {
  animation-delay: .9s;
}
@-webkit-keyframes bounce_circle {
  0% { opacity: 0.3; }
  50% { opacity: 1; background-color: #888; }
  100% { opacity: 0.3; }
}

.gw-textarea {
  font: inherit;
  resize: none;
}

.gw-textarea.gw-noborder {
  border: none;
}

.gw-menubar {
  display: flex;
  user-select: none;
}

.gw-menubar > DIV {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  cursor: default;
}

.gw-menubar > DIV:not(.gw-disabled):hover {
  background-color: #A7CAE0;
}

.gw-menubar > DIV:not(.gw-disabled):active {
  background-color: #2980B9;
  color: white;
}

.gw-menubar > DIV:not(.gw-disabled).gw-active {
  background-color: #2980B9;
  color: white;
}

.gw-menuitem {
  position: relative;
  display: flex;
  flex-flow: row;
  align-items: center;
  cursor: default;
  user-select: none;
  height: 2em;
  padding: 0 2em 0 0.5em;
}

.gw-menuitem:hover {
  background-color: #2980B9;
  color: white;
}

.gw-menuitem.gw-active {
  background-color: #2980B9;
  color: white;
}

.gw-menuitem-text {
  flex-grow: 1;
  white-space: nowrap;
}

.gw-menuitem-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}

.gw-menuitem-shortcut {
  text-align: right;
  padding: 0.25em 0.25em 0.25em 1em;
  min-width: 8em;
}

.gw-menuitem-arrow {
  position: absolute;
  background-image: url('/cgi-bin/patportal/gw-arrow-right.png');
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: left;
  top: 0;
  right: 0;
  width: 1.5em;
  height: 100%;
}

.gw-separator {
  position: relative;
  padding: 0 !important;
  pointer-events: none;
}

.gw-separator-hline {
  position: absolute;
  display: flex;
  flex-flow: row;
  align-items: center;
  height: inherit;
  width: 100%;
}

.gw-separator-hline > div {
  height: 1px;
  width: 100%;
  background: #C0C0C0;
}

.gw-separator-vline {
  position: absolute;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 100%;
  width: inherit;
}

.gw-separator-vline > div {
  width: 1px;
  height: 100%;
  background: #C0C0C0;
}

.gw-submenu > div {
  display: flex !important;
  cursor: default;
  padding: 0.25em 1em;
  margin: 0;
}

.gw-submenu > .gw-menuitem {
  display: table-row !important;
  table-layout: fixed;
  cursor: default;
  padding: 0;
  margin: 0;
}

.gw-submenu > .gw-separator {
  display: table-row !important;
  cursor: default;
  margin: 0;
  width: auto;
  height: 1em;
}

.gw-menuitem > .gw-menu {
  display: table-cell !important;
  position: relative;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAJElEQVQYlWNgQIAGBgLgPyFF/wkp+o9NERMhe0m2AqckAy5JALuADHot/KmNAAAAAElFTkSuQmCC');
  background-position: center;
  background-repeat: no-repeat;
  width: 1em;
}

.gw-spinbox {
  min-height: 2em;
  padding: 0 0.25em;
}

.gw-spinbox.gw-noborder {
  border: none;
}

.gw-expander-header + DIV {
  margin-top: 0.5em;
}

.gw-expander-header > IMG {
  vertical-align: middle;
}

.gw-expander-header > DIV {
  display: inline-table;
  vertical-align: middle;
}

.gw-expander-border {
  border: solid 1px #C0C0C0;
  padding: 0.5em;
}

.gw-table {
  position: relative;
  min-height: 4em;
  border: solid 1px #C0C0C0;
  cursor: default;
}

.gw-table.gw-noborder {
  border: none;
}

/*.gw-table-header {
  height: 1.5em;
  background-color: yellow;
}*/

.gw-table-contents {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}

.gw-table > DIV > TABLE {
  /*border-collapse: collapse;*/
}

.gw-table > DIV > TABLE > THEAD > TR > TH {
  text-align: left;
  background-color: #E0E0E0;
  padding: 0.25em 0.5em;
  vertical-align: top;
  border-bottom: solid 1px #C0C0C0;
  position: sticky;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
}

.gw-table > DIV > TABLE > THEAD > TR > TH.gw-table-check {
  padding: 0 0.5em;
  vertical-align: middle;
  width: 1px;
}

.gw-table > DIV > TABLE > THEAD > TR > TH:last-child {
  border-right: none;
}

.gw-table > DIV > TABLE > TBODY > TR > TD {
  /*border-right: solid 1px #C0C0C0;*/
  padding: 0.1em 0.5em;
  vertical-align: top;
  border-bottom: solid 1px #F0F0F0;
}

.gw-table > DIV > TABLE > TBODY > TR > TD.gw-table-check {
  padding: 0 0.5em;
  vertical-align: middle;
}

.gw-table > DIV > TABLE > TBODY > TR:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAFUlEQVQYlWNkYGDgYcADmPBJDh8FABV4ABwe4TuyAAAAAElFTkSuQmCC');
}

.gw-table-index {
  text-align: right;
  border-right: solid 1px #C0C0C0;
  font-size: smaller;
  font-weight: bold;
  background-color: #E0E0E0;
  color: initial;
  padding: 0.25em 0.5em;
  position: sticky;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 1px;
}

TH.gw-table-index {
  z-index: 2 !important;
}

/*.gw-table > DIV > TABLE > TBODY > TR > TD:last-child {
  border-right: none;
}

.gw-table > DIV > TABLE > TBODY > TR:last-child > TD {
  border-bottom: solid 1px #C0C0C0;
}*/

/*.gw-table > DIV > TABLE > TBODY > TR:nth-child(even) {
  background-color: #F8F8F8;
}*/

.gw-table-more {
  position: absolute;
  padding-left: 4px;
}

.gw-table-sort-ascent {
  position: absolute;
  right: 0.25em;
  top: 0;
  height: 100%;
  width: 1em;
  background: center no-repeat url('/cgi-bin/patportal/gw-arrow-down.png');
  background-size: contain;
}

.gw-table-sort-descent {
  position: absolute;
  right: 0.25em;
  top: 0;
  height: 100%;
  width: 1em;
  background: center no-repeat url('/cgi-bin/patportal/gw-arrow-up.png');
  background-size: contain;
}

TH.gw-table-sortable {
  position: relative;
  cursor: pointer;
}

TH.gw-table-sortable > DIV {
  /*margin-right: 2em;*/
}

TH.gw-table-sortable:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAFUlEQVQYlWNkYGDgYcADmPBJDh8FABV4ABwe4TuyAAAAAElFTkSuQmCC');
}

.gw-waiting {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/cgi-bin/patportal/gw-waiting.gif');
  background-position: center;
  background-repeat: no-repeat;
}

.gw-scrollview {
  position: relative;
}

.gw-scrollview > DIV {
  position: absolute !important;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gw-datebox {
  position: relative;
  display: inline-block;
  min-height: 2em;
}

.gw-datebox > INPUT {
  width: 100%;
  min-height: 2em;
  box-sizing: border-box;
  padding: 0 2.25em 0 0.25em;
  vertical-align: middle;
}

.gw-datebox > INPUT.gw-datebox-time {
  
}

.gw-datebox.gw-noborder > INPUT {
  border: none;
}

TABLE.gw-calendar {
  width: 100%;
}

TABLE.gw-calendar > TBODY > TR > TH {
  padding: 0.25em 0.5em;
  background: #E0E0E0;
}

TABLE.gw-calendar > TBODY > TR > TD {
  padding: 0.25em 0.5em;
  text-align: center;
  cursor: pointer;
  border: solid 1px transparent;
}

TABLE.gw-calendar > TBODY > TR > TD:hover {
  outline: solid 1px #C0C0C0;
}

TABLE.gw-calendar > TBODY > TR > TD.gw-date-disabled {
  color: #C0C0C0;
}

TABLE.gw-calendar > TBODY > TR > TD.gw-date-today {
  font-weight: bold;
  border: solid 1px black;
}

TABLE.gw-calendar > TBODY > TR > TD.gw-date-current {
  background-color: #2980B9;
  color: white;
}

.gw-progressbar {
  position: relative;
  border: solid 1px #C0C0C0;
  min-height: 0.5em;
}

.gw-progressbar.gw-noborder {
  border: solid 1px transparent;
}

.gw-progressbar-bar {
  position: absolute;
  height: 100%;
  background: #C0C0C0;
  border: solid 1px white;
  z-index: -1;
}

.gw-progressbar-label {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gw-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gw-image {
  border: solid 1px #C0C0C0;
  box-sizing: border-box;
}

.gw-image.gw-noborder {
  border: none;
}

.gw-selected {
  background-color: #2980B9 !important;
  color: white !important;
}

.gw-table-row-selected > TD {
  color: white !important;
}

.gw-ac-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #C0C0C0;
  border-top: 0;
  background: white;
  /*box-shadow: -1px 1px 3px rgba(0,0,0,.1);*/

  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 12em;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.gw-ac-suggestion {
  position: relative;
  padding: 0 0.5em;
  line-height: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gw-ac-suggestion b {
  font-weight: normal;
  color: #2980B9;
}

.gw-ac-suggestion.selected {
  background: #E0E0E0;
}

.gw-mandatory {
  position: absolute;
  box-shadow: inset 0 0 0.5rem rgba(255,127,127,1);
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.gw-menu-shadow {
  box-shadow: 0 0 0.5em gray;
}

.gw-upload {
  position: absolute;
  overflow: hidden;
}

.gw-filebutton {
  overflow: hidden;
}

.gw-filebutton > INPUT {
  position: absolute;
  left: -2000px;
}

.gw-listbox {
  display: flex;
  flex-direction: column;
  border: solid 1px #C0C0C0;
  user-select: none;
  cursor: pointer;
  overflow: auto;
  position: relative;
}

.gw-listbox.gw-noborder {
  border: none;
}

.gw-listbox > DIV {
  padding: 0.25em 0.5em;
}

.gw-tree {
  position: relative;
  min-height: 4em;
  border: solid 1px #C0C0C0;
  cursor: default;
}

.gw-tree.gw-noborder {
  border: none;
}

.gw-tree-contents {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}

.gw-tree-item > DIV {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.gw-tree-header {
  display: inline;
  vertical-align: top;
}

.gw-tree-arrow {
  width: 1em;
  height: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: 0.25em;
  margin-right: 0.25em;
}

.gw-tree-image {
  height: 1em;
  margin-right: 0.25em;
}

.gw-tree-expanded {
  background-image: url('/cgi-bin/patportal/gw-arrow-down.png');
}

.gw-tree-collapsed {
  background-image: url('/cgi-bin/patportal/gw-arrow-right.png');
}

.gw-tree > DIV > TABLE {
  /*border-collapse: collapse;*/
}

.gw-tree > DIV > TABLE > THEAD > TR > TH {
  text-align: left;
  background-color: #E0E0E0;
  padding: 0.25em 0.5em;
  vertical-align: top;
  border-bottom: solid 1px #C0C0C0;
  position: sticky;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
}

.gw-tree > DIV > TABLE > THEAD > TR > TH:last-child {
  border-right: none;
}

.gw-tree > DIV > TABLE > TBODY > TR > TD {
  padding: 0.1em 0.5em;
  vertical-align: top;
  /*border-bottom: solid 1px #F0F0F0;*/
}

TD.gw-table-check {
  padding: 0 0.5em;
  vertical-align: middle;
}

.gw-tree > DIV > TABLE > TBODY > TR:hover {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAFUlEQVQYlWNkYGDgYcADmPBJDh8FABV4ABwe4TuyAAAAAElFTkSuQmCC');
}

.gw-tree-check {
  margin: 0;
  margin-right: 0.25em;
}

.gw-drawingarea {
  position: relative;
  border: solid 1px #C0C0C0;
}

.gw-drawingarea.gw-noborder {
  border: none;
}

.gw-drawingarea > CANVAS {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

TR.gw-selected > TD {
  background-color: inherit !important;
}

TR.gw-selected > TD.gw-table-index {
  color: white;
}
/*
 * Toastify js 1.9.2
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
*/

.toastify {
  padding: 12px 20px;
  color: #ffffff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

/*
 *  Select2
 * https://select2.org/
 *
*/

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle;width: 100% !important}
.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}
.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}
.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}
.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}
.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}
.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}
.select2-results{display:block}
.select2-results__options{list-style:none;margin:0;padding:0}
.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}
.select2-results__option--selectable{cursor:pointer}
.select2-container--open .select2-dropdown{left:0}
.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
.select2-search--dropdown{display:block;padding:4px}
.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}
.select2-search--dropdown.select2-search--hide{display:none}
.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}
.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}
.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}
.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}
.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}
.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}
.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}
.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}
.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}
.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}
.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}
.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}
.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}
.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}
.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}
.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}
.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}
.select2-container--default .select2-results__option--group{padding:0}
.select2-container--default .select2-results__option--disabled{color:#999}
.select2-container--default .select2-results__option--selected{background-color:#ddd}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}
.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}
.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}
.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}
.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}
.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}
.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}
.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}
.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}
.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}
.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}
.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}
.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}
.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}
.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}
.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}
.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}
.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}
.select2-container--classic .select2-dropdown--above{border-bottom:none}
.select2-container--classic .select2-dropdown--below{border-top:none}
.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}
.select2-container--classic .select2-results__option--group{padding:0}
.select2-container--classic .select2-results__option--disabled{color:grey}
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}
.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}
.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

/*
* tribute-autocomplete
*/
.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-height: 200px;
  max-width: 500px;
  overflow: auto;
  display: block;
  z-index: 999999;
}
.tribute-container ul {
  margin: 0;
  margin-top: 2px;
  padding: 0;
  list-style: none;
  background: #efefef;
}
.tribute-container li {
  padding: 5px 5px;
  cursor: pointer;
}
.tribute-container li.highlight {
  background: #ddd;
}
.tribute-container li span {
  font-weight: bold;
}
.tribute-container li.no-match {
  cursor: default;
}
.tribute-container .menu-highlighted {
  font-weight: bold;
}

.test-autocomplete-textarea-container {
  position: relative;
}

.test-autocomplete-container {
  position: relative;
}

/* .. CUSTOM CSS FROM HERE .... */
/* .. small width media .... */
@media only screen and (max-width: 200mm) {
  .toastify-right, .toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }

  .boundary {
    width:0%;
  }

  .hide-tablet-spacing {
    display: none !important;
  }

  .hide-tablet {
    display: none !important;
  }
  
  .hide-tablet-less {
    display: none !important;
  }

  .hide-control {
    display: none !important;
  }

  /* .. width of control percentage .... */
  .size-tablet-spacing {
    width:calc(100% - 0.6rem);
  }

  .size-tablet {
    width:100%;
  }

  .size-tritablet-spacing {
    width:calc(100% - 0.6rem);
  }

  .size-tritablet {
    width:100%;
  }

  .show-tablet-spacing {
    width:calc(100% - 0.6rem);
  }

  .show-tablet {
    width:100%;
  }

  .show-tablet-more-spacing {
    width:calc(100% - 0.6rem);
  }

  .show-tablet-more {
    width:100%;
  }

  .show-widertablet-spacing {
    width:calc(100% - 0.6rem);
  }

  .show-widertablet {
    width:100%;
  }

  .show-widertablet-less {
    width:100%;
  }

  /* .. width of control absolute .... */
  .size-popupform {
    width:90vw;
  }

  .halfsize-popupform {
    width:70vw;
  }

  .widesize-popupform {
    width:95vw;
  }

  /* .. Height of control absolute .... */
  .height-tablet {
    height:90vh;
  }

  .height-tablet-medium {
    height:80vh;
  }

  .height-tablet-high {
    height:180vh;
  }

  .height-tablet-low {
    height:60vh;
  }

  .height-tablet-verylow {
    height:40vh;
  }

  .height-tablet-full {
    height:200vh;
  }

  .height-tablet-full-less {
    height:200vh;
  }

  .height-tablet-long {
    height:200vh;
  }

  .height-tablet-prefull {
    height:150vh;
  }

  .height-tablet-prefull-less {
    height:150vh;
  }

  .height-tablet-triple {
    height:140vh;
  }

  /* .. Height of control percentage .... */
  .height-innertablet {
    height:50%;
  }

  .height-innertablet-low {
    height:30%;
  }

  .height-innertablet-high {
    height:70%;
  }

  .height-innertablet-left {
    height:80vh;
  }

  .height-innertablet-left-less {
    height:80vh;
  }

  .height-innertablet-right {
    height:100vh;
  }

  .height-innertablet-right-less {
    height:100vh;
  }

}

/* .. large width media .... */
@media screen and (min-width: 200mm) {

  .boundary {
    width:2.5%;
  }

  .hide-tablet-spacing {
    width:calc(30% - 0.6rem);
  }

  .hide-tablet {
    width:30%;
  }

  .hide-tablet-less {
     width:20%;
  }
  
  .hide-control {

  }

  /* .. width of control percentage .... */
  .size-tablet-spacing {
    width:calc(50% - 0.6rem);
  }

  .size-tablet {
    width:50%;
  }

  .size-tritablet-spacing {
    width:calc(33% - 0.6rem);
  }

  .size-tritablet {
    width:33%;
  }

  .show-tablet-spacing {
    width:calc(25% - 0.6rem);
  }

  .show-tablet {
    width:25%;
  }

  .show-tablet-more-spacing {
    width:calc(40% - 0.6rem);
  }

  .show-tablet-more {
    width:40%;
  }

  .show-widertablet-spacing {
    width:calc(75% - 0.6rem);
  }

  .show-widertablet {
    width:75%;
  }

  .show-widertablet-less {
    width:60%;
  }

  /* .. width of control absolute .... */
  .size-popupform {
    width:50vw;
  }

  .halfsize-popupform {
    width:35vw;
  }

  .widesize-popupform {
    width:75vw;
  }

  /* .. Height of control absolute .... */
  .height-tablet {
    height:60vh;
  }

  .height-tablet-medium {
    height:55vh;
  }

  .height-tablet-high {
    height:90vh;
  }

  .height-tablet-low {
    height:45vh;
  }

  .height-tablet-verylow {
    height:20vh;
  }

  .height-tablet-full {
    height:calc(100vh - 9em);
  }

  .height-tablet-full-less {
    height:calc(100vh - 6em);
  }

  .height-tablet-long {
    height:130vh;
  }

  .height-tablet-prefull {
    height:calc(100vh - 9em);
  }

  .height-tablet-prefull-less {
    height:calc(100vh - 7em);
  }

  .height-tablet-triple {
    height:45vh;
  }

  /* .. Height of control percentage .... */
  .height-innertablet {
    height:100%;
  }

  .height-innertablet-low {
    height:100%;
  }

  .height-innertablet-high {
    height:100%;
  }

  .height-innertablet-left {
    height:calc(100vh - 9em);
  }

  .height-innertablet-left-less {
    height:calc(100vh - 7em);
  }

  .height-innertablet-right {
    height:calc(100vh - 9em);
  }

  .height-innertablet-right-less {
    height:calc(100vh - 7em);
  }

}

.less-container-margin {
  padding:0.25rem;
}

.less-container-padding {
  margin:0.25rem;
}

/*
@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: white;
  }
}
*/

/*
variable                Wide size device   Mobile device    Comment

--Horizontal columns chnage to verical columns --------
hide-tablet             show 30% width     hide              hide unnecessary panel
size-tablet             50% width          100% width        For two rows On Arrangement=Row
size-tritablet          33% width          100% width        For three rows On Arrangement=Row

-- Pop up form width changes ------
halfsize-popupform      Width=35vw         Width=70vw        pop up form
size-popupform          Width=50vw         Width=90vw        pop up form
widesize-popupform      Width=75vw         Width=95vw        pop up form

''- Expand Container height on media size change -----------
height-tablet           Height=60vh        Height=90vh     Container expand as controls arranged vertically
height-tablet-low       Height=45vh        Height=60vh     Container expand as controls arranged vertically
height-tablet-verylow   Height=20vh        Height=40vh
height-tablet-medium    Height=55vh        Height=80vh
height-tablet-high      Height=90vh        Height=180vh
height-tablet-full      Height=100vh       Height=200vh
height-tablet-full-less
height-tablet-long      Height=130vh       Height=200vh
height-tablet-prefull   Height=100vh       Height=150vh
height-tablet-prefull-less

--Left and Right Controls change to Top and Bottom controls ---
height-innertablet      Height=100%        Height=50%(T/B)   Resize control ht equally top and bottom

height-innertablet-low  Height=100% Left   Height=30% Top    Resize control ht On Arrangement=Row
height-innertablet-high Height=100% Right  Height=70% Bottom

height-innertablet-left  Height=100vh Left   Height=60vh Top    Resize control ht On Arrangement=Row
height-innertablet-left-less
height-innertablet-right Height=100vh Right  Height=100vh Bottom
height-innertablet-right-less

show-tablet +           25% width Left     100% width top    Resize control wid on Arrangement=Row
show-widertablet        75% width Right    100% width bottom

show-tablet-more +       40% width Left     100% width top    Resize control wid on Arrangement=Row
show-widertablet-less    60% width Right    100% width bottom

*/

.gw-valuebox {
  width: 100%;
  display: inline-block;
  min-height: 2em;
}

.gw-valuebox.gw-noborder {
  border: none;
}

.gw-valuebox INPUT {
  width: 100%;
  min-height: 2em;
  box-sizing: border-box;
  padding: 0 0.25em;
  vertical-align: middle;
}

/* Remove arrow in valuebox: Chrome, Safari, Edge, Opera */
.gw-valuebox input::-webkit-outer-spin-button,
.gw-valuebox input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrow in valuebox: Firefox */
.gw-valuebox input[type=number] {
  -moz-appearance: textfield;
}

.toolButton {
  background-color: transparent;
  border: none;
}

.transparent-control {
  background-color: transparent;
}

.round-control {
  border-radius: 10px;
}

.dotted-control {
  border: 1px dashed gray;
}

.dark{
  background-color: black;
  color: white;
  border-color: white;
}
