@CHARSET "ISO-8859-1";


/*************************************************************************
   DOJO CLARO THEME
**************************************************************************/

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  src: local('Lato Regular'), local('Lato-Regular'), url(/static/fonts/LatoRegular.woff2) format('woff2');
}
@font-face {
  font-family: 'Orkney';
  font-style: normal;
  font-weight: normal;
  src: local('Orkney Regular'), local('Orkney-Regular'), url(/static/fonts/OrkneyRegular.woff2) format('woff2');
}

:root {
  --text-color: #456;
  --text-color-lighter: color-mix(in oklab, var(--text-color) 100%, #FFF 40%);
  --text-color-darker: color-mix(in oklab, var(--text-color) 100%, #000 50%);
  --button-blue:       RGBA(93, 173, 231, 0.88);
  --button-blue-hover: RGBA(93, 173, 231, 0.99);
  --hovered-color: #CDE;
  --selected-color: #c8e8ff;
  --header-text: #FFFFFF;
  --header-text-secondary: rgba(255, 255, 255, 0.9);
  
//  --header-primary: #0F766E;        /* soft jade green */
//  --header-secondary: #14B8A6;      /* fresh teal-green */
//  --header-accent: #065F46;         /* slightly darker green for contrast */
//  --header-shadow: 0 4px 20px rgba(15, 118, 110, 0.25);
//  --header-shadow-lg: 0 8px 32px rgba(15, 118, 110, 0.3);
  
//  --header-primary: #064E3B;        /* deep emerald green */
//  --header-secondary: #047857;      /* medium jade green */
//  --header-accent: #003f24;         /* darker accent (same tone as before, still fits) */
//  --header-shadow: 0 4px 20px rgba(6, 78, 59, 0.25);
//  --header-shadow-lg: 0 8px 32px rgba(6, 78, 59, 0.3);
  
  --header-primary: #022C22;        /* deep forest green */
  --header-secondary: #065F46;      /* dark emerald green */
  --header-accent: #003321;         /* even deeper accent tone */
  --header-shadow: 0 4px 20px rgba(2, 44, 34, 0.25);
  --header-shadow-lg: 0 8px 32px rgba(2, 44, 34, 0.3);
  
  --floriaTours-tree-branches: #6a6;
  
  --modalTitleGradient: linear-gradient(#f9fbfd, #acb);
}


.claro {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, Orkney, sans-serif;

    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: var(--text-color);
}

@media only screen and (max-width: 1600px) {
  .claro {
    font-size: 14px;
    line-height: 1.4;
  }
  .claro .titleFont{
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .claro {
    font-size: 10px;
    /*! line-height: 1.2; */
  }
  .claro .titleFont{
    font-size: 12px;
  }
}
@media only screen and (max-width: 800px) {
  .claro {
    font-size: 10px;
    line-height: 1;
  }
  .claro .titleFont{
    font-size: 12px;
  }
}



/***************the below lines are added for the d3 charts **************/
.axis--x path {
  display: none;
}

.line {
  fill: none;
  stroke: steelblue;
  stroke-width: 1.5px;
}

rect {
  fill: transparent;
  shape-rendering: crispEdges;
}

.axis path,
.axis line {
  fill: none;
  stroke-width: 1px;
  stroke: rgba(200, 200, 200, 0.5);
  shape-rendering: crispEdges;
}

.axisLine {
  fill: none;
  shape-rendering: crispEdges;
  stroke: rgba(0, 0, 0, 0.5);
  stroke-width: 2px;
}

.dot {
  fill-opacity: .8;
}

/*********** title line and hightlighting *****************/

.subtitle {
  margin: 0 0 2em 0;
}
.fancy {
  line-height: 0.5;
  text-align: center;
}
.fancy span {
  display: inline-block;
  position: relative;  
}
.fancy span:before,
.fancy span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  top: 0;
  width: 600px;
}
.fancy span:before {
  right: 100%;
  margin-right: 15px;
}
.fancy span:after {
  left: 100%;
  margin-left: 15px;
}

.deemphasized {
  color: var(--text-color-lighter);
  font-size: 80%;
}




/*************************************************************************
   Main layout structures
**************************************************************************/

#CAPSCONTAINER {
  width:100%;
  height:100%;
  background-color: #FFF;
  display: flex;  
  flex-direction: column;
}

#CAPSCONTAINER.loginState, #CAPSCONTAINER.loggedInState {
  background: linear-gradient(135deg, #3e5198 0%, #74c3a9 100%);
}

#CAPSCONTAINER.errorState {
  background: linear-gradient(134deg, #cb6b74 0%, #efae74 100%);
}

#CAPSCONTAINER_HEADER {
  padding: 6px 20px;
  height: 4vh;
  color: var(--header-text);
  z-index: 100;
  overflow: visible;
  box-shadow: var(--header-shadow);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 1vh;
  background: linear-gradient(135deg, var(--header-primary) 0%, var(--header-secondary) 100%);
}

/* Subtle shine effect on header */
#CAPSCONTAINER_HEADER::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4) 50%, transparent);
}

/* Bottom accent line */
#CAPSCONTAINER_HEADER::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.6;
  background: linear-gradient(90deg, var(--header-accent), var(--header-secondary), var(--header-accent));  
}

#CAPSCONTAINER_FOOTER {
  padding: 2px 16px;
/*  color: var(--header-text-secondary); */
  z-index: 100;
  overflow: visible;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.975rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  background-color: rgba(255,255,255,0.4);
}
/*
#CAPSCONTAINER_FOOTER::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.6;
}
*/
  .loginState #CAPSCONTAINER_HEADER, .loginState #CAPSCONTAINER_HEADER::before, .loginState #CAPSCONTAINER_HEADER::after
, .errorState #CAPSCONTAINER_HEADER, .errorState #CAPSCONTAINER_HEADER::before, .errorState #CAPSCONTAINER_HEADER::after
, .loginState #CAPSCONTAINER_FOOTER, .loginState #CAPSCONTAINER_FOOTER::before, .loginState #CAPSCONTAINER_FOOTER::after
, .errorState #CAPSCONTAINER_FOOTER, .errorState #CAPSCONTAINER_FOOTER::before, .errorState #CAPSCONTAINER_FOOTER::after
{
  background: none;
  border: none;
  box-shadow: none;
}

#CAPSCONTAINER_BODY {
  margin: 2px;
  flex: 1;
  bottom: 0px;
}
#CAPSCONTAINER_HEADER IMG {
  height: 3.5vh;
  width: auto;
  cursor: pointer;
  filter: invert(100%) brightness(125%) drop-shadow(2px 3px 1px #000);
  vertical-align: baseline;
}

#HEADER_LOGO {
  width: 1px;
  white-space: nowrap;  
}
#HEADER_LOGO IMG {
  filter: invert(0%) brightness(150%) drop-shadow(2px 3px 1px #000);  
  margin: 0px 0px 0px 2vw;
}
#HEADER_LOGO2 {
  white-space: nowrap;
  width: 1px;
  padding-left: 2vw;
}
#HEADER_LOGO2 A {
  margin: 0px 10px 0px 10px;
}
#HEADER_LOGO2 IMG {
  margin: 0px 0px 0px 2vw;
}

#HEADER_HELP IMG {
  margin: 0px 1.5vw 0px 0vw;  
}
#HEADER_ACCOUNT IMG {
  margin: 0px 0.25vw 0px 0vw;
}



#CAPSCONTAINER_FOOTER {
  height: 2vh;
  font-size: 1.5vh;
}
#CAPSCONTAINER_FOOTER IMG {
  height: 1.5vh;
}
#CAPSCONTAINER_FOOTER_POWERED IMG {
  filter: brightness(100%) saturate(200%);
  vertical-align: top;
  padding: 0rem 0.5rem;
}


#HeaderLogin {
  position: relative;
  padding: 5px;
}

#HeaderLogin DIV {
  display: none;
}
#HeaderLogin:hover, #HeaderLogin2 {
  background-color: #E2EFFF;
  color: #000000;
  padding: 5px;  
}
#HeaderLogin:hover DIV {
  display: initial;
  position: absolute; 
  left: 0px;
  top: 45px; 
  width: 100%;
  background-color: #E2EFFF;
  padding: 5px;
  box-shadow: -5px 5px 5px 0px rgba(0,0,0,0.5);
}

#LogginButton VIDEO {
    height: 500px;
    width: 2000px;
    object-fit: cover;
}

#HEADER_MENU {
  width: 1px;
  cursor: pointer;
  /*! padding: 10px 15px 5px 10px; */
 }
#HEADER_MENU IMG {
  width: 2.5vh;
  height: 2.5vh;
}
#HEADER_MENU_TD, #HEADER_ACCOUNT_TD {
   font-size:80%;
   max-height: 525px;
   max-width: 325px;
   overflow-x: hidden;
   overflow-y: auto;
   scrollbar-width: thin;
   border: outset 1px #999;
   -webkit-border-radius: 0px 0px 10px 10px;
   border-radius: 0px 0px 10px 10px;
   box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
   padding: 5px 5px 30px 5px;
   background-color: #FFF;
}
#HEADER_ACCOUNT_TD {
  width: 200px;  
  max-width: 200px;
  padding: 5px 5px 10px 5px;
}
#HEADER_MENU_TD TD, #HEADER_ACCOUNT_TD TD {
  white-space: nowrap;  
}


#HEADER_TITLE {
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    text-align: center;
    font-size: 3.5vh;
    font-weight: bold;
    letter-spacing: -1px;
    font-variant: small-caps;
    z-index: 1;
    font-family: Lato, arial, sans-serif;
    color: #EEE;
    text-shadow: 2px 3px 0px #000, 3px 4px 3px #000;
    pointer-events: none;
}
#HEADER_TITLE IMG {
  height: 1.5rem;
  vertical-align: super;
  margin-left: 0rem;
  pointer-events: auto;
}

#HEADER_ACCOUNT, #HEADER_HELP {
  white-space: nowrap;
  width: 1px;
  padding-right: 5px;
  font-size: 2vh;
}

#HEADER_ACCOUNT {
  cursor: pointer;
}

@media only screen and (max-width: 1600px) {
}

@media only screen and (max-width: 1200px) {
  #HEADER_MENU {
  }
}

@media only screen and (max-width: 800px) {
  #HEADER_MENU {
  }
}



#CAPSCONTAINER_FOOTER A, #CAPSCONTAINER_FOOTER A:visited {
  color: #FFFFFF;
  text-decoration: underline;
}


.column {
  position: absolute;
  top: 5px;
  bottom: 2px;
  overflow: hidden;
}
.column.left {
  left: 2px; 
  width: 36%;
}
.column.right {
  left: 37%;
  right: 0px;
}

A {
  text-decoration: none;
  color: #1a0dab;
}
A:hover {
  text-decoration: underline;
  cursor: pointer;
}
A[target="_other"]::after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
  margin: 0px 3px 0px 3px;
}



@media all and (max-width: 1175px) {
  .column.left {
    left: 5px; 
    width: 400px;
  }
  .column.right {
    left: 415px;
    right: 5px;
  }
}



.innerFlowedDiv {
  position: absolute;
  bottom: 0px; 
  left: 0px; 
  width: 100%; 
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}


.overflowable {
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  max-height: 250px;
  scrollbar-width: thin;
}

.overfloableTDDIV {
   width: 100%;
   height: 100%; 
   margin: 0; 
   padding: 0;
   overflow: auto;
}



.outline {
  padding: 5px;
}


.section {
    position: relative;
    padding: 0px 0px 3px 5px;
    font-size: 125%;
    font-weight:600;
    color: #567;
    background-color: #FFF;
    border-radius: 3px 3px 0px 0px;
    border-bottom: 1px dotted #cde9ff;
}


.section SPAN {
  position: absolute;
  right: 10px;
}

.section SPAN IMG {
  margin: 0px 0px 2px 12px;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  cursor: pointer;
}

.section SPAN IMG.disabled {
   filter: grayscale(100%) opacity(0.5);
   cursor: default;
}

.DictionaryMatch {
  background-color: #CCFFDD;
}
.DictionaryMatch SUP {
  font-size: 85%;
  font-weight: bold;
}

.dictHighlight {
  color: red;
}
.dictHighlight SPAN {
  position:relative;
  vertical-align: super;
  font-size: 85%;
  margin: 0px 8px 0px 5px;
  padding: 2px;
  font-style: italic;
  font-weight: bold;
  background-color: #f66;
  color: #afa;
  cursor: pointer;
}



@keyframes fadeOutAnim {
  to {
    opacity: 0;
  }
}
.fadeOut {
  opacity: 1;
  animation: fadeOutAnim 400ms ease-in 1 forwards;
}


@keyframes highlightAnim {
   33% { background-color: #fAA; }
   66% { background-color: #FFF; }
  100% { background-color: #fAA; }
}
.highlight{
    animation: highlightAnim 1200ms ease-in infinite;
}


/*************************************************************************
   FORM
**************************************************************************/

input[type="text"], input[type="password"], input[type="date"], input[type="email"], input[type="tel"], input[type="number"], textarea {
  color: #567;
  border: 0px;
  width: 90%;
  font-size: 90%;
  padding: 8px 12px 8px 12px;
  background-color: #FBfCfD;
  border: 1px solid #EEE;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}
textarea {
  border-radius: 20px;
}
input[type="text"]:disabled, input[type="password"]:disabled, input[type="date"]:disabled, input[type="email"]:disabled, input[type="tel"]:disabled, input[type="number"]:disabled, textarea:disabled {
  background-color: #E0E0E0;  
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  color: #000;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23CC6666" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="6" y1="6" x2="18" y2="18"/></svg>') 12 12, not-allowed;
}

input:focus, textarea:focus {
  background-color: #fcfcfc;
}
input[type="date"] {
  font-size: 80%;
}
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, input[type="tel"]::placeholder, input[type="date"]::placeholder, textarea::placeholder {  
   color: #999;
}
input:focus, textarea:focus {
   outline: none !important;
   box-shadow: 0 0 3px #999;
   background-color: #FFF;
}



button {
    border-radius: 5px 5px 5px 5px; 
    border: 2px #555 outset;
    cursor: pointer;
}
button:hover {
    border: 2px #555 inset;
    cursor: pointer;
}
button:disabled {
    border: none;
    cursor: auto;
    color: #AAAAAA;
}

select {
  font-size: 80%;
  border: 0px;
  border-bottom: 1px solid #ccc;
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 6px 10px 2px 10px;
}





.Checkbox_ON, .Checkbox_OFF, .Checkbox_GREY, .Checkbox_ON:link, .Checkbox_OFF:link, .Checkbox_GREY:link, .Checkbox_ON:visited, .Checkbox_OFF:visited, .Checkbox_GREY:visited, .Radio_ON, .Radio_OFF, .Radio_ON:link, .Radio_OFF:link, .Radio_ON:visited, .Radio_OFF:visited {
   background-repeat: no-repeat;
   white-space: nowrap;
   text-decoration: none;
   color: #789;
   border-style: none;
   font-weight: normal;
   margin-left: 3px;
}
.Checkbox_GREY, .Checkbox_GREY:link, .Checkbox_GREY:visited {
   color: #bAbabA;
   background-image: url('/static/img/chkgrey.gif');
   cursor: auto;
}
.Checkbox_ON, .Checkbox_ON:link, .Checkbox_ON:visited, .Checkbox_OFF, .Checkbox_OFF:link, .Checkbox_OFF:visited, .Checkbox_GREY, .Checkbox_GREY:link, .Checkbox_GREY:visited {
   background-position: 0px 6px;
   background-size: 14px;
   padding: 5px 0px 0px 18px;
}
.Checkbox_OFF, .Checkbox_OFF:link, .Checkbox_OFF:visited {
   background-image: url('/static/img/chkoff.gif');
}
.Checkbox_ON, .Checkbox_ON:link, .Checkbox_ON:visited {
   background-image: url('/static/img/chkon.gif');
   font-weight: bolder;
}
.Radio_OFF, .Radio_OFF:link, .Radio_OFF:visited, Radio_ON, .Radio_ON:link, .Radio_ON:visited {
   background-position: 0px 6px;
   background-size: 14px;
   padding: 5px 0px 0px 18px;
}
.Radio_OFF, .Radio_OFF:link, .Radio_OFF:visited {
   background-image: url('/static/img/radoff.gif');
}
.Radio_ON, .Radio_ON:link, .Radio_ON:visited {
   background-image: url('/static/img/radon.gif');
   font-weight: bolder;
}


.outline .Checkbox_OFF, .outline .Checkbox_ON, .outline .Radio_OFF, .outline .Radio_ON {
  line-height: 1.2em;
}

@media only screen and (device-width: 768px) {
.outline .Checkbox_OFF, .outline .Checkbox_ON, .outline .Radio_OFF, .outline .Radio_ON {
  line-height: 1.8em;
}
}


.Ranking {
}
.Ranking img {
  position: relative;
  height: 15px;
  vertical-align: middle;
  padding: 2px 6px 2px 6px;
  top: -1px;
}
.Ranking img.left {
  position: relative;
  left: 4px;
}
.Ranking img.right {
  position: relative;
  left: -2px;
}


.ErrorMessage {
  color: #ff1111;
  border: 1px solid;
  font-weight: bolder;
  font-style: italic;
  font-family: Arial, sans-serif;
  font-size: 100%;
  line-height: 1;
  padding: 0px 0px 10px 0px;
}

.ErrorMessage.simple {
  color: #cc1111;
  border: none;
  font-weight: bold;
}


/*
.ErrorMessage span {
  font-weight: normal;
  font-style: italic;
  display:none;
}
*/

.ErrorField {
  background-color: #ffeeee;
  border-width: 0px 0px 2px 0px;
  border-color: #aa6666;
  border-style: solid;
}

/*************************************************************************
   MISC
**************************************************************************/


@media screen {
  .printonly { display: none;}
}
    
@media print {
  .printonly { display: block;}
}

TD.ellipsis {
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;  
}


.tableLayout, .tableLayoutNoBand {
    width:100%;
    border-spacing: 0;
    border-collapse: collapse;
    color: #1e293b; /* slate-800 */
    border: 2px solid #e2e8f0; /* light gray border */
}
/*
.tableLayout TR {
  vertical-align: top;
}
*/

.tableLayout > TBODY > TR > TD, .tableLayoutNoBand > TBODY > TR > TD  {
  padding: 0.75em .2em;
  border-bottom: 1px solid #f1f5f9; /* light line between rows */
  transition: background-color 0.2s ease;
}

.tableLayout > TBODY > TR > TD:first-child, .tableLayoutNoBand > TBODY > TR > TD:first-child  {
  white-space: nowrap;
}

.tableLayout TH, .tableLayoutNoBand TH  {
  background-color: #f8fafc; /* very light gray/blue */
  color: #334155; /* slate-700 */
  text-align: left;
  padding: 0.5em .25em;
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}

.tableLayout TR.summaryRow TH, .tableLayoutNoBand TR.summaryRow TH {
    background-color: #E1F0FF;
    bottom: -1px;
    font-size: 75%;
    line-height: 1.25rem;
    border-top: 2px solid #DDD;
    color: #777;
    font-weight: bold;
}


.tableLayout.stickyHeader TH {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 2;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;   
  z-index: 2;
}


.tableLayout.rounded TH, .tableLayoutNoBand.rounded TH  {
    border-radius: 30px 30px 0px 0px; 
    -webkit-border-radius: 30px 30px 0px 0px; 
}

.tableLayout TH SPAN, .tableLayoutNoBand TH SPAN {
  position: absolute;
  right: 15px;
}
.tableLayout TH SPAN IMG, .tableLayoutNoBand TH SPAN IMG {
  padding: 0px 0px 3px 12px;
  height: 15px;
  vertical-align: middle;
  cursor: pointer;
}
.tableLayout > TBODY > TR:nth-child(even) {
  background-color: #f8fafc; /* soft light gray-blue tint */
}
.tableLayout > TBODY > TR:nth-child(even) TD.sticky {
  background-color: #F7FAFF;
}
.tableLayout > TBODY > TR:nth-child(odd) {
  background-color: #ffffff;
}

.tableLayout > TBODY > TR:hover:not(.notHighlightable) {
  background-color: #e0f2fe; /* pale blue highlight */
  animation-duration: 1s;
}
.tableLayout > TBODY > TR:hover:not(.notHighlightable) .boldable {
    text-shadow: 0.5px 0.5px 0.5px black;
}


.tableLayout TR .limitedTitleWidth {
   max-width:350px;
   overflow: hidden;
   text-overflow:ellipsis;
   white-space: nowrap;
}


.tableLayout TR:nth-child(odd) TD.sticky {
  background-color: #FFFFFF;
}
.tableLayout > TBODY > TR:last-child {
  border-bottom: 2px #ddd solid;
}

.tableLayout.minimized TH, .tableLayoutNoBand.minimized TH, .tableLayout.rounded.minimized TH, .tableLayoutNoBand.rounded.minimized TH  {
  font-weight: normal;
  background-color: #eaf2f7;
  border-bottom: 2px solid#EEE;
  -webkit-box-shadow: 0px 12px 12px -9px rgba(0,0,0,0.8);
          box-shadow: 0px 12px 12px -9px rgba(0,0,0,0.8);
}

.doubleSpace TD {
  padding: 10px 0px 16px 5px;
}
.doubleSpace TH {
  padding: 5px 0px 20px 5px;
}

.tableLayout .sectionHeader TD {
    background-color: #555;
    color: #FFF;
    font-weight: bold;
    font-size: 80%;
    font-variant: small-caps;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
 }
 
.table_section TD {
    background-color: #a1b3d8;
    color: #2d4e71;
    font-weight: bold;
    font-size: 80%;
    font-variant: small-caps;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    letter-spacing: -1px;
    box-shadow: -2px 2px 5px 0px rgba(0,0,0,0.5);
}

.tableLayout .noBand TR {
  border-bottom: none;
  background-color: transparent;  
}
.tableLayout .noBand TR:hover {
  border-bottom: none;
  background-color: transparent; 
  box-shadow: none;
  
}

.tableLayout.blockDescription BLOCKQUOTE {
   margin: -8px 0px 0px 15px;
   color: #999;
   font-size: 90%;
}



.tableLayout.rowSelectable TBODY TR:hover, .tableLayout .rowSelectable:hover {
  cursor: pointer;
  user-select: none;
}
.tableLayout.cellSelectable TBODY TD:hover, .tableLayout .cellSelectable:hover {
  cursor: pointer;
  user-select: none;
}

.tableLayout.cellSelectable TR:nth-child(even) {
    background-color: none;
}
.tableLayout.cellSelectable TR:nth-child(odd) {
   background-color:none;
}

.tableLayout TR {
   transition-duration: 250ms;
}
.tableLayout .selected {
  cursor: default;
  background-color: var(--selected-color) !important;
  user-select: none;
}
.tableLayout:hover .selected:hover, .tableLayout:hover .selected:hover TD:hover {
  cursor: default;
  user-select: none;
}

.tableLayout.headerSelectable TBODY TH:hover, .tableLayout .cellSelectable TD:hover {
  cursor: pointer;
  background-color: #eef9f1 !important;
  user-select: none;
}


.tableLayout.cellSelectable {
  border-spacing: 8px;
  border-collapse: separate;
}

.tableLayout.rowSelectable .blankRow:hover, .tableLayout.rowSelectable .totalRow:hover {
  cursor: default;
  background-color: #E0E0E0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  
}
.tableLayout.rowSelectable .blankRow {
  border: none;
}
.tableLayout.rowSelectable .totalRow, .tableLayout.rowSelectable .totalRow:hover {
  border-top: 1px solid #666;   
}

.tableLayout.rightAlignedCols td {
   text-align: right;
   letter-spacing: -0.0333em;
}
.tableLayout.rightAlignedCols th DIV {
   margin: 0 auto 0 auto;
}
/* But override for the second column */
.tableLayout.rightAlignedCols td:nth-child(2) {
   text-align: left;
}


.itemLayout LI {
  padding-left: 5px;
  line-height: 2;
}
.itemLayout.selectable LI:hover {
  cursor: pointer;
  background-color: #E9F2F1;
  user-select: none;
}
.itemLayout .selected {
  cursor: default;
  background-color: #bbe4dd !important;
  user-select: none;
}
.itemLayout LI:nth-child(even) {
  border-bottom: 1px #f1f1f1 solid;
}
.itemLayout LI:nth-child(odd) {
  border-bottom: 1px #f1f1f1 solid;
}


.sectionRow TD {
  font-weight: bold;
  border-bottom: 2px solid #BABABA;
}


.fullCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.capsicoFaded {
    background: url("/static/img/peppers-faded.jpg") 50% no-repeat;
    background-size: cover;
}


.fancy, .capsicoLogo, .buttonLogin, .buttonLogoff {
   border-radius: 5px 5px 5px 5px;
   box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
}

#HOME_LOGO {
    max-width: 90%;
}

#HOME_LOGO IMG, #HOME_LOGO VIDEO {
    max-width: 100%;
    position: relative;
    top: 4px;
}

#HOME_LOGO .capsicoLogo {
    position: relative;
    border: 2px ridge RGBA(119, 202, 187, 0.25);
    padding: 1px;
    overflow: none;
    background-color: RGBA(250, 250, 250, 0.1);
}


#HOME_LOGO_OVERLAY_TXT {
  position: absolute;
  z-index: 100;  
}

#HOME_LOGO BUTTON {
  font-size: 200%;
  position: relative;
  top: -15px;
}

#HOME_LOGO_OVERLAY_TXT {
    right: 50px;
    bottom: 50px;
    color: rgb(255, 255, 0);
    font-size: 300%;
    font-family: garamond;
    text-align: right;
    width: 27ch;
    text-shadow: white 1px 1px 2px;
}

#HOME_LOGO > DIV > SPAN SPAN {
  color: #4cff4c;
}

.claro #DLG_POPUPLOGIN .capsicoLogo {
  border: 1px ridge RGBA(231, 93, 93, 0.1);
}


.buttonLogin, .buttonLogoff {
  padding: 10px 40px;
  margin: 0px 50px 0px 50px;
  font-size: 200%;
  color: white;
  background-color: RGBA(231, 93, 93, 0.9);
}
.buttonLogin.inForm {
  font-size: 150%;
  color: white;
  background-color: RGBA(231, 93, 93, 0.75);
}
.buttonLogin.inForm.small {
  font-size: 100%;
  padding: 5px 15px;
}
.buttonLogin.inForm:hover {
  background-color: RGBA(231, 93, 93, 0.99);
  box-shadow: 2px 2px 10px 5px rgba(0,0,0,0.25);
}

.fileUploadButton input {
   display: none;  
}

.buttonLogin.smallerBlue {
   font-size: 125%;
   font-variant: small-caps;
   background-color: var(--button-blue);
   padding: 10px;
   margin: none;
   display: block;
   border-radius: 5px 5px 5px 5px; 
   border: 2px #555 outset;
   cursor: pointer;
}
.buttonLogin.smallerBlue:hover {
  background-color: var(--button-blue-hover);
  box-shadow: 2px 2px 10px 5px rgba(0,0,0,0.25);
  border: 2px #555 inset;
  cursor: pointer;
}


.buttonLogoff {
  background-color: RGBA(255, 255, 255, 0.9);
  color: #E75D5D;
}

.buttonLogoff.inForm:hover {
  background-color: RGBA(231, 93, 93, 0.9);
  color: #FFF;
}

.helpLineItems LI {
  padding-top: 20px;
  line-height: 1.2;
}



/*********************************************************
 FLORIA FORMS
**********************************************************/

.fieldNameSpan {
  font-weight: bold;
  white-space: nowrap;
  padding-right: 3px;
}
.fieldName, .fieldName2 {
  font-weight: bold;
  text-align: right;
  white-space: nowrap;
  width: 1px;
  vertical-align: top;
  padding-right: 3px;
}
.fieldName2 {
  padding-left: 25px;
  font-size: 90%;
}

.fieldName.mandatory, .fieldName2.mandatory {
  background-image: url('/static/img/mandatory.gif');
  background-position: 100% -2px;
  background-size: 14px;
  background-repeat: no-repeat;
  padding-right: 15px;
}


.fieldQuestion {
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}

.fieldQuestion.mandatory {
  background-image: url('/static/img/mandatory.gif');
  background-position: -2px -2px;
  background-size: 14px;
  background-repeat: no-repeat;
  padding-left: 12px;
}


.FormSectionHeader {
  font-weight: bold;
  white-space: nowrap;
  font-size: 150%;
}

.bottomPadded, .bottomPadded TD {
  vertical-align: top;
  padding: 0px 3px 10px 0px;
}
.bottomPadded:hover TD:first-child.fieldName2 {
  text-decoration: dashed underline;
}


.withIndenting .fieldName, .withIndenting .fieldQuestion  {
  padding-left: 10px;
}

.fieldQuestion + TABLE {
  margin-left: 0px;
}


.floriaForms_boolwall {
  position: relative;
  width: 95%;
  text-align: center;
  left: 4%;
}
.floriaForms_boolwall_label TD {
  font-size: 125%;
  font-variant: small-caps;
  font-weight: bold;
  color: #369;
}
.floriaForms_boolwall_img TD {
  padding: 0px 0px 40px 0px;
}
.floriaForms_boolwall_img IMG {
  cursor: pointer;
  filter: drop-shadow(4px 4px 2px #CCC) invert(30%);
}
.floriaForms_boolwall_img IMG.floriaForms_customSelected {
  filter: drop-shadow(5px 5px 3px #bbb) invert(10%);
}
.floriaForms_boolwall_img_2 IMG {
  cursor: pointer;
}
.floriaForms_boolwall_img_2 IMG.floriaForms_customSelected {
  padding-bottom: 10px;  
  border-bottom: 1px solid #AAA;
  filter: drop-shadow(4px 4px 2px #AAA);
}


.tableclean, .tableclean TD, .tableclean TH 
{ 
    font-family:sans-serif; 
    font-size:9pt; 
    color:black;  
    border: thin blue;
    border-spacing: 0 11px;
}

.tableclean TH  {
    position: relative;
    padding: 0px 5px 2px 5px;
    font-size: 90%;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #BABABA;
    background-color: #f8fcfc;
}

.floriaCombo IMG {
  height: 18px;
  vertical-align: text-bottom;
}

.floriaCombo SPAN {
  cursor: pointer;
}


.floriaCombo UL {
  font-size: 90%;
  position: absolute;
  max-height: 250px;
  white-space: nowrap;
  padding: 0px 0px 5px 5px;
  margin-top: 1px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #DDD;
  z-index: 100;
  background-color: #F0F0F0;
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  border-radius: 0px 5px 5px 5px; 
}

.floriaCombo UL LI {
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  list-style-type: none;
  margin:0;
  padding:0;
}

.floriaCombo UL LI:hover {
  background-color: #c8e8ff;
}




/*************************************************************************
   PATIENT BANNER
**************************************************************************/

.patientBanner {
  width: 97.5%;
  margin-left: .5%;
}

.patientBanner TD {
  padding: 5px;
}


.NA, .NA_Clean {
  font-size: 80%;
  color: #BBBBBB;
}
.NA::before {
  content: "N/A";   
}

.greyedOut {
  filter: invert(60%);
}


.lineMenu {
  position: relative;
  padding-left: 1.25em;
}
.lineMenu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1em;
  height: 0.15em;
  background: black;
  box-shadow: 
    0 0.25em 0 0 black,
    0 0.5em 0 0 black;
}



.roundedImg {
    float: left;
    margin-top: 0.0em;
    margin-right: 0.4em;
    position: relative;

    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
     border: 1px white ridge;
}


/*********************************************************
  Tiles
**********************************************************/

.tileLayout {
  overflow: hidden;
  width: 100%;
}
.tileLayoutRow {
  overflow: hidden;
  width: 100%;
  clear: both;
  padding: 10px 0px 20px 0px;
}
.tileLayoutCell, .tileLayoutCell2 {
    position: relative;
    float: left;
    background: white;
    margin: 4px 0.5% 8px 0.5%;
    padding: 5px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
    border-radius: 7px;
}
.w1 {
  width: 98%;
}
.w2 {
  width: 47%;
}
.w3 {
  width: 30.5%;
}
.w4 {
  width: 22.5%;
}

@media all and (max-width: 1175px) {
  .tileLayoutCell {
    width: 99%;
    margin-bottom: 5px;
  }
}

@media all and (max-width: 900px) {
  .tileLayoutCell2 {
    width: 99%;
  }
}

.tileHeader  {
    position: relative;
    padding: 0px 0px 2px 2px;
    margin: 0px 0px 12px 0px;
    background-color: #fff;
    border-bottom: 1px dotted #cde9ff;
    font-size: 120%;
    font-weight:bold;
    color: #678;
    letter-spacing: -1px;
}

.tileHeader IMG, .section SPAN IMG, .specialSectionIconImg {
   filter: invert(30%) sepia(10%) hue-rotate(170deg) saturate(59);
}
.tileHeader .tileTitle IMG, .section > IMG {
    filter: none;
    /*! width: 30px; */
    height: 4vh;
    padding-right: 4px;
    vertical-align: middle;
}


.tileContents {
  padding: 0px 2px 0px 2px;
}

.tileHeader.minimized, .tileHeader.rounded.minimized {
  font-weight: normal;
  background-color: #f8f8f8;
  color: #999999;
  border-bottom: 2px solid#EEE;
  -webkit-box-shadow: 0px 12px 12px -9px rgba(0,0,0,0.8);
          box-shadow: 0px 12px 12px -9px rgba(0,0,0,0.8);
}
.tileHeader .tileTitle {
  padding-left: 0px;
}
.tileHeader .actions {
  position: absolute;
  right: 5px;
  top: 2px;
}
.tileHeader .actions img {
  height: 2.5vh;
  padding-left: 1vw;
}
.tileHeader .minMax, .tileHeader .maxMin {
  background-position: 4px 5px;
  background-size: 13px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.controlColumn {
    margin: 0px 0px 0px 0px;
    padding-bottom: -5px;
}

.controlColumn div:nth-of-type(2) {
  background: #fff;
  font-size: 90%;
  padding-left: 5px;
  border-bottom: 1px solid #CCC;
}
.controlColumn div:nth-of-type(2) input[type="text"] {
  background: none;
}

.controlColumn div:nth-of-type(2) input[type="text"]::placeholder {
  color: #999;
  font-size: 90%;
}
.controlColumn div:nth-of-type(3){
  background: #FFF;
}


@media only screen and (max-width: 1600px) {
  .section SPAN IMG {
    width: 22px;
    height: 22px;
  }
  .section  IMG {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  .section SPAN IMG {
    width: 18px;
    height: 18px;
  }
  .section  IMG {
    width: 22px;
    height: 22px;
  }
}
@media only screen and (max-width: 800px) {
  .section SPAN IMG {
    width: 12px;
    height: 12px;
  }
  .section  IMG {
    width: 16px;
    height: 16px;
  }
}







/*********************************************************
  Risk
**********************************************************/
.lowRisk, .mediumRisk, .highRisk  {
  color: #000000;
  font-weight: bold;
  font-size: 74%;
  white-space: nowrap;
}
.lowRisk {
  background-image: url('/static/img/riskLow.jpg');
}
.mediumRisk {
  background-image: url('/static/img/riskMedium.jpg');
}
.highRisk {
  background-image: url('/static/img/riskHigh.jpg');
  color: #FFFFFF;
}
.lowRisk.last, .mediumRisk.last, .highRisk.last {
  -webkit-border-radius: 0px 8px 8px 0px; 
          border-radius: 0px 8px 8px 0px; 
}


/*********************************************************
  Forms
**********************************************************/


.FormContainer {
 margin: 0px 5% 0px 5%;
}

.FormContainer.FormPrinted {
  margin: 0px;
  font-size: 85%;
  -webkit-transform:translate(0px, -10%) scale(1,0.8);
     -moz-transform:translate(0px, -10%) scale(1,0.8);
      -ms-transform:translate(0px, -10%) scale(1,0.8);
       -o-transform:translate(0px, -10%) scale(1,0.8);
          transform:translate(0px, -10%) scale(1,0.8);
}

.formError .fieldQuestion {
    color: #ff1111;
    font-style: italic;
}
.formHeader {
   position: absolute;
   z-index: 5;
   top: 3em;
   left: 0px;
   width: 100%;
}
.formBody {
  position: absolute;
  top: 4.5em;
  bottom: 2em;
  padding-bottom: 2em;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 125%;
}

.formFooter {
   position: absolute;
   z-index: 5;
   bottom: 0em;
   left: 0px;
   width: 100%;
}

.formFooter b {
  letter-spacing: -0.75px;
}

.formBanner {
  background-color: #bbe4dd;
  font-size: 110%;
  width: 100%;
}
.formBanner span:nth-of-type(1) {
  font-weight: bold;
  letter-spacing: -0.75px;
  padding-left: 5px;
}
.formBanner span:nth-of-type(2) {
  font-size: 60%;
  padding-left: 5px;
}
.formBanner span:nth-of-type(3) {
  position: absolute;
  right: 5px;
  top: -2px;
}
.formBanner span:nth-of-type(3) div {
   display: inline-block;
   margin: 0px 0px 0px 10px;
   padding: 0px 5px 0px 5px;
   font-size: 75%;
   line-height: 1.2em;
   background-color: lightblue;
  cursor: pointer;  
}


.alert {
  display: none;
}
.arrow {
  display: none;
}
.btn:active .alert {
  display: block;
}

.btn::after .arrow-up{
    display: block;
}
.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    
    border-bottom: 5px solid black;
}

.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    
    border-top: 5px solid black;
}

.back-shadow{
    -webkit-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px; 
  -webkit-box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.3);
}

.passwordRules {
    font-size:70%;
}

.passwordRules > .error{
    color: red !important;
}

.passwordRules > .success{
    color: green !important;
}

.sceditor-container{
    width: 100% !important;
}
.sceditor-dropdown{
  top: 100px !important;
  left: 785px !important;
  margin-top: 26px;
}

.filterBox {
     width:22%;
     left:.5%; 
     border-radius:10px;
     background:#FBFCFC;
}

.templateCodesSelectionBox {
    max-height: 100px;
    overflow: auto;
    width: 379px;
    word-wrap: break-word;
    padding-left: 5px;
}

.codesSelectionBox {
    display: inline-block;
    max-height: 65px;
    overflow: auto;
    word-wrap: break-word;
    padding-left: 5px;
    vertical-align: top;
}
.codesSelectionBox span {
  display: inline-block;
  margin: 1px;
  padding: 0px 8px 0px 8px;
  background-color: #F9F9F9;
  border: 1px solid #EEE;
  -webkit-border-radius: 7px; 
  border-radius: 8px; 
  -webkit-box-shadow: 1px 1px 1px #AAA;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}

.codesSelectionBox span img {
}

.formForm {
}

.formForm > table {
   margin-bottom: 20px;
}


.formCollapser {
  position: relative;
  float: right;
  top: -25px;
  width: 30px;
  text-align: center;
  font-weight: bolder;
  cursor: pointer;
}

.formCollapser.collapsed {
  float: none;
  top: 0px;
  width: 100%;
  font-weight: normal;
  box-shadow: 0px 8px 6px -6px rgba(0,0,0,0.25);
}

.formCollapser:hover {
  box-shadow: 1px 6px 6px -6px rgba(0,0,0,0.5);
  text-shadow: 1px 0px 1px #ccc, 0px 1px 1px #eee, 2px 1px 1px #ccc;
}


.formWizzardSelection {
   border-right: 2px solid #DDD;
   background-color: #F9F9F9;
}
.formWizzardSelection  LI {
   line-height: 1.5;
   margin-bottom: 2vh;
}


.formForm .formGroupName, .formForm .formLabelName {
   font-weight: bold; 
   font-size: 120%; 
   border-bottom: 1px solid #EEE;
   border-top: 1px solid #EEE;
   background-color: RGBA(222, 237, 255, 0.25);
   margin: 20px 10px 5px 0px;
   padding: 0px 5px 5px 5px;
 }

.formGroupName, .formLabelName {
   font-weight: bold; 
   font-size: 120%; 
   border-bottom: 2px solid #DDD;
   text-align: left;
   background-color: #FFF;
   margin-top: 10px;
   margin-bottom:5px;
}

.formForm .formLabelDescr {
   font-style: italic; 
   margin: -5px 0px 10px 0px;
   color: #888;
   font-size: 90%;
 }


.formReportSection {
   font-weight: bold; 
   font-size: 120%; 
   border-bottom: 2px solid #999;
   text-align: left;
   background-color: #FFF;
   margin-top: 30px;
   margin-bottom:5px;
}



@media only screen and (max-width: 1600px) {
  .Checkbox_ON, .Checkbox_ON:link, .Checkbox_ON:visited, .Checkbox_OFF, .Checkbox_OFF:link, .Checkbox_OFF:visited, .Checkbox_GREY, .Checkbox_GREY:link, .Checkbox_GREY:visited,
  .Radio_OFF, .Radio_OFF:link, .Radio_OFF:visited, Radio_ON, .Radio_ON:link, .Radio_ON:visited {
     background-position: 3px 5px;
     background-size: 12px;
     /*! padding: 5px 4px 3px 20px; */
  }
}
@media only screen and (max-width: 1200px) {
  .Checkbox_ON, .Checkbox_ON:link, .Checkbox_ON:visited, .Checkbox_OFF, .Checkbox_OFF:link, .Checkbox_OFF:visited, .Checkbox_GREY, .Checkbox_GREY:link, .Checkbox_GREY:visited,
  .Radio_OFF, .Radio_OFF:link, .Radio_OFF:visited, Radio_ON, .Radio_ON:link, .Radio_ON:visited {
     background-position: 0px 4px;
     background-size: 8px;
     padding: 4px 0px 3px 11px;
  }
}
@media only screen and (max-width: 800px) {
  .Checkbox_ON, .Checkbox_ON:link, .Checkbox_ON:visited, .Checkbox_OFF, .Checkbox_OFF:link, .Checkbox_OFF:visited, .Checkbox_GREY, .Checkbox_GREY:link, .Checkbox_GREY:visited, 
  .Radio_OFF, .Radio_OFF:link, .Radio_OFF:visited, Radio_ON, .Radio_ON:link, .Radio_ON:visited {
     background-position: 0px 5px;
     background-size: 6px;
     padding: 4px 0px 3px 7px;
  }
}






.tableSorter-header{
  cursor: pointer;
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
  background-position: center right;
  padding: 4px 10px 4px 4px;
  white-space: normal;
  background-repeat: no-repeat;
}
.sorter-false {
    background-image: none;
    cursor: default;
    padding: 4px;
}
.tableSorter-headerAsc{
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); 
}
.tableSorter-headerDesc{
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}


.claro .lightbox {
   position: fixed;
   z-index: 1000;
   width: 100%;
   height: 100%;
   top: 0px;
   left: 0px;
   cursor: pointer;
}

.claro .lightbox {
    background: #000000;
    opacity: 1;
}
.dj_ie claro .lightbox {
    filter: alpha(opacity=100);
}

.claro .lightbox img {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}



.processStatus img {
    height: 25px;
    margin-right: 8px;
    opacity: 0.9;
}

.riskScale {
  border: 1px #ccc outset;
  width: 50px;
  height: 8px;
  margin-right: 8px;
}



.formButton {
   font-size: 125%;
   border-radius: 30px 30px 30px 30px;
   box-shadow:5px 5px 3px grey;
   border: 2px ridge grey;
   padding: 5px 15px 5px 15px;
}
.formButton:hover {
   border-radius: 10px 10px 10px 10px;
   box-shadow:3px 3px 1px grey;
}
.formButton:disabled {
   border-radius: 10px 10px 10px 10px;
   box-shadow:5px 5px 5px grey;
   background-color: #AAA;
   color: #FFF;
}
.formButtonBusy {
   background-image: url("/static/img/progress.gif");
}
.formButton.formButtonBusy, .formButton:disabled.formButtonBusy {
   border-radius: 10px 10px 10px 10px;
   box-shadow:5px 5px 5px grey;
   background-color: #AAA;
   color: #FFF;
   background-image: url("/static/img/progress.gif");
   text-shadow: 2px 2px #000;
}


.formNavFooter {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background: #ddeeff75;
    padding: 12px 0px 12px 0px;
    text-align: center;
}
.formContainer {
   top: 0px;
   bottom: 60px;
   width: 99%;
   margin-left: 1%;
   font-size: 100%;
}
.popupFormDiv {
   width: 90%;
   margin: auto;
   padding-top: 5px;
}
.formScrollableCustom {
   position: absolute;
   top: 0px;
   left: 0px;
   bottom: 100px;
   right: 0px;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: thin;
   margin: 20px 10px 5px 20px;
   -webkit-box-shadow: 0px 15px 20px -12px #777;
           box-shadow: 0px 15px 20px -12px #777;
}


.workflowButton {
   font-size: 120%;
   background-color: #f7f7f7;
   border: 2px outset black;
   transform: skew(-15deg);
   box-shadow:5px 5px 0 rgba(128,200,200,.5);
   text-decoration:none;
   margin: 0px 12px 2px 12px;
   padding: 5px;
}
.workflowButton:hover {
   background-color: #f7f7f7;
   border: 2px outset #CCC;
   box-shadow:3px 3px 0 #82de67;
}
.workflowButton:disabled {
   background-color: #e9e9e9;
   border: 2px outset #eee;
   box-shadow:2px 2px 0 rgba(128,200,200,.5);
}


IMG.icon {
    border: 2px outset grey;
    padding: 2px;
    border-radius: 100px; 
    box-shadow: 2px 2px 3px #444;
}
IMG.badgeOrange {
    box-shadow: 3px 3px 6px orange;
}
IMG.badgeRed {
    box-shadow: 3px 3px 6px red;
}
IMG.badgeGreen {
    box-shadow: 3px 3px 6px green;
}

IMG.icon.single {
    border-radius: 4px;
    box-shadow: 3px 3px 4px #444;
}

IMG.icon.single.badgeOrange {
    border: 2px outset orange;
    box-shadow: 3px 3px 6px orange;
}
IMG.icon.single.badgeRed {
    border: 2px outset red;
    box-shadow: 3px 3px 6px red;
}


.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ContractLine {
   display:block;
   font-size:100%;
   font-weight:bold;
   margin-left:15px;
   white-space:nowrap;
   text-overflow:ellipsis;  
}


.buttonNav {
  position: relative;
  width: 80%;
  left: 10%;
  margin-left: 10px;
  border-spacing: 20px;
}
.buttonNav TD {
  border: 2px groove #DDD;
  background-color: #eee;
  text-align: center;
  box-shadow: 5px 5px 5px -2px rgba(0,0,0,0.3);
  cursor: pointer;
}
.buttonNav IMG {
   height: 25px;
   vertical-align: middle;
   padding-right: 20px;
}
.buttonNav .current {
  box-shadow: 5px 5px 4px -3px rgba(0,255,0,0.75);
  cursor: default;
}


.gallery {
  width: 92%;
  left: 2%;
}


.gallery TH {
  text-align: left;
  background-color: #ddeeFF;
  padding-top: 20px;
}
.gallery TD img {
  text-align: center;
  padding: 5px;
  border: 4px ridge #DDD;
  box-shadow: 6px 6px 7px -2px rgba(100,100,100,.75);
  cursor: pointer;
}
.galleryPopup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 20;
}

.galleryPopup IMG {
  cursor: pointer;
}



.floatTooltip {
  position: relative;
  color: #036;
  text-decoration: underline dashed;
}
.floatTooltip .floatTooltip-text {
  visibility: hidden;
  width: 400px;
  background-color: #00847b;
  color: #fff;
  border-radius: 6px;
  padding-left: 5px;
  padding-right: 5px;
  position: absolute;
  z-index: 1;
  bottom: -50px;
  left: 40px;
  margin-left: 0px;
  opacity: 0;
  transition: 400ms;
  transform: translate3d(0px, 20px, 0px);
}
.floatTooltip:hover .floatTooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.floatTooltip-text {
  font-size: 75%;
  height: 150px;
  overflow-y: auto;
  scrollbar-width: thin;
}

/***************************************************************************
  OVERLAYS
***************************************************************************/

.floriaOverlays {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 0px;
  padding: 0px;
  z-index: 5020;
  pointer-events: none; /* Allows mouse events to pass through */ 
}
.floriaOverlays DIV {
  position: absolute;
  z-index: 21;
}

.floriaOverlays DIV.floriaTourOverlay {
   border: 1px solid #FFA50075;
   border-radius: 8px; 
   pointer-events: auto; 
}
.floriaOverlays DIV.floriaTourOverlay .badge {
    position: absolute;
    top: -1.25vh;
    right: -1.25vh;
    width: 2vh;
    height: 2vh;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: min(1.25vh, 1.25vw);
    font-weight: bold;
    border-radius: 50%;
    background: radial-gradient(circle, #FFA500 50%, #FF4500 80%);
}

.floriaOverlays DIV.floriaTourOverlay .badge.left {
    right: none;
    left: -1.25vh;
}


/***************************************************************************
  POPPER
***************************************************************************/



.floriaToursPlan {
    position: absolute;
    top: 5.2vh;
    bottom: 2.2vh;
    width: 2.2vw;
    letter-spacing: -0.25px;
    padding: 0px 0px 0px 2px;
    overflow-y: auto;
    border: 0px;
    pointer-events: auto;
    border-right: 4px ridge #686;
    background: linear-gradient(135deg, var(--header-primary) 0%, var(--header-secondary) 100%);
}

.floriaToursPlan.full {
  width: fit-content;
  min-width: 35px;
  letter-spacing: 0px;
  padding-right: 10px;
}

.floriaToursPlan.inline {
   position: relative;
   top: 0px;
   /*! width: fit-content; */  
   border-radius: 0px 0px 0px 20px;
   letter-spacing: revert;
   padding-right: 10px;
   background: transparent;
   border-right: 4px ridge #EEE;
}

.floriaToursPlan IMG {
  height: 26px;
  filter: invert(100%);
  margin-bottom: 8px;
}

.floriaToursPlan DIV {
    position: sticky;
    top: -1vh;
    padding: 1vh 0px 0px 0.5vw;
    text-align: center;
}

.floriaToursPlan BUTTON, BUTTON.floriaToursButton {
    height: 4vh;
    min-height: 40px;
    filter: invert(100%);
    font-weight: normal;
    font-size: 100%;
    padding: 0px 1vw 3px 1vw;
    margin: 1vh 0px 2vh 0px;
    border: 2px ridge #000;
}

.floriaToursPlan DIV #TOUR_PROGRESS {
  position: relative;
  float: right;
  color: #CCC;
}

.floriaToursPlan TABLE {
   border-spacing: 0px;
   color: #DDD;
}
.floriaToursPlan.inline TABLE {
  color: var(--text-color);
}
.floriaToursPlan TR.selected {
   background-color: #286 !important;
}
.floriaToursPlan.inline TR.selected {
   background-color: color-mix(in oklab, #286 25%, #FFF 100%) !important;
}

.floriaToursPlan TR.taken:hover, .floriaToursPlan TR.takenOverride:hover {
  text-decoration: underline;
  cursor: pointer;
}
.floriaToursPlan TR.taken TD:nth-child(1) {
   background: no-repeat url("/static/img/tick_icon.png");
   background-size: 1.25vh;
   background-position: right 0.1vw top -0vh;
}
.floriaToursPlan TD {
     padding-left: 0px;
}
.floriaToursPlan TR TD:nth-child(1) {
     padding-right: 10px;
}
.floriaToursPlan TR TD:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.floriaToursSection TD {
   padding-top: 25px;
   font-weight: bold;
}


.floriaToursOverlay {
   position: absolute;
   border: 4px ridge orange;
   pointer-events: none;
   box-shadow: 4px 4px 5px 2px #aaa;
   border-radius: 8px; 
   z-index: 99996;
}
.popperTooltip {
  position: absolute;
  left: -1000px;
  z-index: -9999;
  transition: opacity 500ms ease-out;
}
.popperTooltipTour {
    background-color: #232;
    color: white;
    padding: 4px 4px;
    border-radius: 4px;
    font-size: 95%;
    border: 2px outset #ACA;
}
.popperTooltip[show-popper] {
  z-index: 99999;
}
.popperTooltip[show-popper] .popperContent {
}
.popperTooltip[show-popper]:hover {
  z-index: 99999;
}
.popperTooltip[show-popper]:hover .popperContent {
  z-index: 99999;
}
.popperTooltip > .popperArrow, .popperTooltip > .popperArrow::before {
  position: absolute;
  width: 15px;
  height: 15px;
  background: inherit;
}
.popperTooltip > .popperArrow {
  visibility: hidden;
}
.popperTooltip > .popperArrow::before {
  visibility: visible;
  content: '';
  transform: rotate(45deg);
}
.popperTooltip[data-popper-placement^='top'] > .popperArrow {
  bottom: -8px;
}

.popperTooltip[data-popper-placement^='bottom'] > .popperArrow {
  top: -8px;
}

.popperTooltip[data-popper-placement^='left'] > .popperArrow {
  right: -8px;
}

.popperTooltip[data-popper-placement^='right'] > .popperArrow {
  left: -8px;
}



.learningWorkflowText {
    position: relative;
    top: -3vh;
    display: flex;
    flex-wrap: wrap;
    column-gap: 4%;
    margin-right: 2vw;
}
.learningWorkflowText DIV {
  flex-grow: 1;
  width: 30%;
}
.learningWorkflowText H3 {
  margin-bottom: 10px;
}
.learningWorkflowText P {
  margin-top: 6px;
  text-align: left;
}
.learningWorkflowText .infoPics IMG {
  width:100%;
  box-shadow: 4px 4px 6px 0px rgba(0,0,0,0.2);
  border: 1px solid #CCC;
}


.popperTooltip.simple {
  padding: 0.25vh 1vw 0.25vh 1vw;
  background-color: #444;
  color: #FFF;
  box-shadow: 4px 6px 6px 2px rgba(0,0,0,0.2);
  border-radius: 5px;
  border: 1px solid #888;
}




/* --- Tour Tree --- */
.tour-tree {
    font-family: sans-serif;
    margin: 1em 1em;
    padding-left: 20px;
    position: relative;
}

.tree-node {
    position: relative;
    padding-bottom: 1em;
    /* The main vertical line is now part of the node */
    border-left: 4px ridge var(--floriaTours-tree-branches);
    padding-left: 25px;
}

/* Remove the main border for the last node to prevent it from extending down */
.tour-tree > .tree-node:last-child {
    padding-bottom: 0em;
}

.tree-node-title {
    font-weight: bold;
    position: relative;
    padding-left: 25px;
}

/* Horizontal line connecting the node title to the main vertical line */
.tree-node-title::before {
    content: '—📂';
    white-space: nowrap; 
    font-weight: normal;
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 0px;
    color: var(--floriaTours-tree-branches);
    background-color: var(--floriaTours-tree-branches);
}

.tree-branch {
    padding-left: 10px;
    position: relative;
}

.tree-leaf {
    position: relative;
    padding-left: 30px; /* Space for the connector */
    line-height: 1.5;
}

/* Vertical line segment for each leaf */
.tree-leaf::before {
    content: '—';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    color: var(--floriaTours-tree-branches);
    background-color: var(--floriaTours-tree-branches);
}

/* Horizontal line connecting the leaf to its vertical line */
.tree-leaf::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--floriaTours-tree-branches);
}

/* Adjust the vertical line for the last leaf to create the corner */
.tree-leaf:last-child::before {
    height: 55%;
    bottom: auto;
}


/*---- Tour Content Layout -----*/

/* DIV_A: Main container using flexbox */
.floriaTourContent-Container {
  display: flex;
  width: 100%;
  position: absolute;
  top: 10px;
  bottom: 10px;
}

/* Side panel taking 25% of the width */
.floriaTourContent-SidePanel {
  padding: 0px 20px;
  box-sizing: border-box;
  overflow-y: auto; /* Add scroll for long content */
  width: 29%;
}

/* Main content area taking the remaining width */
.floriaTourContent-Main {
  width: 70%;
  display: flex;
  flex-direction: column; /* Stack content and footer vertically */
}

/* The main content section that fills available space */
.floriaTourContent-Content {
  flex-grow: 1; /* Allows this div to grow and fill the space */
  padding: 0px 40px;
  box-sizing: border-box;
  overflow-y: auto; /* Add scroll for long content */
}

.floriaTourContent-Content UL {
  margin: 2vh 4vw 4vh 0.5vw;
}
.floriaTourContent-Content LI {
  margin: 0vh 0vw 1.5vh 0vw;
  line-height: 1.25;
  list-style:  outside;
}
.floriaTourContent-Content IMG, .floriaTourContent-Content VIDEO {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  box-shadow: 2px 2px 10px 5px rgba(0,0,0,0.25);
}
.floriaTourContent-Content EMBED {
  position:relative;
  top:0px;
  height: 99%;
  left:0px;
  width: 100%;
}
.floriaTourContent-Content A {
   color: #9CF;
}
.floriaTourContent-Content A:visited {
   color: #BDF;   
}
.floriaTourContent-Content A[target="_other"]::after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
  position: relative;
  right: -2px;
  top: -6px;
  filter: invert(100%);
}
.floriaTourContent-Content BLOCKQUOTE {
    margin: 1.5em 10% 4em 5%;
}
.floriaTourContent-Content TABLE {
  text-align: left;
}
.floriaTourContent-Content TABLE TD {
  vertical-align: top;
}
.floriaTourContent-Content TABLE.firstColNoWrap TR TD:first-child {
   text-wrap: nowrap;
}
.floriaTourContent-Content .sectionTitle {
    margin: 2vh auto 5vh auto;
    text-align: center;
    width: fit-content;
    padding: 0px 10% 1vh 10%;
    font-size: 150%;
    /* border-bottom: 4px solid #777; */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(170, 170, 170, 0) 90%, #808080 100%);
    border-radius: 100% 100% 75% 75%;
    /* filter: drop-shadow(2px 4px 2px #000); */
}

/* Footer with a fixed height */
.floriaTourContent-Footer {
    height: 2vh;
    /* min-height: 30px; */
    background-color: #ffffff;
    padding: 15px 0px 5px 0px;
    box-sizing: content-box;
    text-align: center;
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #999;
    margin-top: 10px;
}

.floriaTourContent-Footer > BUTTON {
    font-size: 125%;
    background-color: var(--button-blue);
    width: 12vw;
    color: white;
}
.floriaTourContent-Footer > BUTTON:hover {
    background-color: var(--button-blue-hover);
    box-shadow: 2px 2px 10px 5px rgba(0,0,0,0.25);
}
.floriaTourContent-Footer > BUTTON:disabled {
   background-color: #FFFFFF25;
   color: #BBB;
}









/***************************************************************************
  MENU
***************************************************************************/

.menuItem {
  font-size: 120%;
  font-weight: bold;
  padding-bottom: 7px !important;
}

.menuItem.selected {
  background-color: #cde9ff;
}
.menuItem.sub {
  font-size: 100%;
  padding-left: 15px;
}

.chartTypeMenu .menuItem {
  font-size: 80% !important;
  font-weight: normal;
}
.chartTypeMenu .menuItem:not(.selected) {
  cursor: pointer;
}

.tourInlineIcon {
  position: relative;
  height: 24px;
  left: 5px;
  top: 5px;
}


.notification {
   position: absolute;
   font-size: 80%;
   font-weight: bold;
   right: 5px;
   top: 5px;
   width: 300px;
   height: 200px;
   min-height: 200px;
   background-color: #EEE;
   border: 2px ridge #DDF;
   box-shadow: -5px 5px 5px 0px rgba(0,0,0,0.5);
   z-index: 999999;
}
.notification.wider {
   width: 400px;
   height: 300px;
   overflow-y: auto;
   scrollbar-width: thin;
}

.notification.wider DIV {
  margin: 10px;
}



/*********************************************************
  JSON
**********************************************************/
.json_key {
  color: red;
  font-weight: bold;    
}
.json_number {
  color: darkorange;
}
.json_string {
  color: green;   
}
.json_boolean {
  color: blue;
}
.json_null {
  color: magenta;
  font-style: italic;
}



/*********************************************************
  timelineFlow
**********************************************************/
.timelineFlow {
  
}
.timelineHead {
  position: relative;
  width: 40%;
  left: 30%;
  border-left: 1px solid black;
  padding-top: 60px;
  padding-left: 20px;
}
.timelineBox {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}
.timelineBox DIV:first-child {
  position: relative;
  left: 0px;
  width: 49%;
  white-space: nowrap;  
  border-radius: 0px 0px 0px 0px;
  box-shadow: 0px 0px 6px #CCC;
}
.timelineBox DIV:last-child {
  position: relative;
  left: 51%;
  width: 49%;
  border-radius: 0px 0px 0px 0px;
  box-shadow: 0px 0px 6px #CCC;
}


.chartBoxTitle {
    font-weight: bold;
    font-size: 100%;
    padding-left: 20px;
    margin: 50px 0px 15px 20px;
}
.chartBox {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 30px 10px 10px;
    background-color: #F9F9F9;
    box-shadow: 0px 0px 4px #ddd;
}

.kpiBox {
  padding: 25px 15px 25px 15px;
  border-radius: 4px;
  box-shadow: 0px 0px 4px #ddd;
  background-color: #F9F9F9;
}

.kpiTable {
  width: 100%;
  border-spacing: 12px 18px;
  border-collapse: separate;
}

.kpiTable TR {
  vertical-align: top;
}

.kpi {
  padding: 4px 2px 4px 2px;
  border-radius: 6px;
  box-shadow: 1px 1px 4px #aaa;
  background-color: #fff;
  text-align: center;
}

.cohortKPIsIn .kpi {
  background-color: rgba(255, 226, 122, 0.25);
}
.cohortKPIsOut .kpi {
  background-color: rgba(0, 100, 200, 0.1);
}

.kpi span:nth-child(1) {
  font-size: 80%;
  color: #999;
  display: block;
  white-space: nowrap;  
}
.kpi span:nth-child(2) {
  display: block;
  font-size: 90%;
  font-weight: bold;
  color: #789;
}
.kpi span:nth-child(3) {
  display: block;
  font-size: 75%;
  color: #89a;
}




.imageLabel {
    position: relative;
    top: -10px;
    font-size: 60%;
    text-align: center;
    display: block;
    height: 0px;
}


.chart2DivContainer {
  position: relative;
  width:96%;
  left:1%;
  height:88%;
  background-color: #F8FBFF;
  box-shadow: 0px 0px 2px #CCC;
}

.chartContainer {
    background-color: #F7F7F7;
    box-shadow: 0px 0px 6px 1px #BBB;
    margin: 10px;
}

.chartContainer .chartControls {
    position: absolute;
    top: 10px;
    right: 15px;
    height: 2em;
    width: 300px;
    z-index: 10;
    text-align: right;
}

.chartContainer .chartActions {
    position: absolute;
    top: 13px;
    left: 15px;
}

.chartContainer .chartActions IMG {
   height: 20px;
   margin-right: 15px;
   cursor: pointer;  
}


.chartTooltip {
   position: absolute;
   color: #666;
   border: 1px solid #789;
   background-color: #dee;
   padding: 2px 2px 10px 2px;
   font-size:80%;
   box-shadow: 3px 3px 4px 0px #aaa;
   opacity: 1;
   border-radius: 5px 5px 5px 5px; 
   pointer-events: none;
   transform: translate(-50%, 0);
   transition: all .1s ease;
   z-index: 9999;   
}
.chartTooltip > TABLE {
  border-spacing: 6px 0px;
  border-collapse: separate;
  line-height: 1;
}
.chartTooltip > TABLE TR TH {
  line-height: 2;
  font-size:120%;
}

.chartTooltipColorBlock {
    border-width: 2px;
    border-color: #CCC;
    margin-right: 10px;
    height: 16px;
    width: 16px;
    display: inline-block;
}


/*********************************************************
  Tours
**********************************************************/
.activeTourItemHighlight {
    border: 1px dashed #00847b;
}
.activeTourItem {
    width: 400px;
    background-color: #00847b;
    color: #fff;
    border-radius: 6px;
    padding-left: 5px;
    padding-right: 5px;
    position: absolute !important;
    z-index: 10000;
    bottom: -155px;
    left: 100px;
    margin-left: 0px;
    font-size: 75%;
    height: 150px;
    overflow-y: auto;
    scrollbar-width: thin;
    float: right;
}


/*********************************************************
  Modal Dialog
**********************************************************/
.modalBackground {
    position: fixed;
    left: -110%;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.55,.06,.68,.19);
    z-index: 2500;
}
.modalDialog {
   position: absolute;
   background-color: white;
   border-radius: 24px 24px 18px 18px;
   opacity: 0;
   transition: top 0.4s cubic-bezier(.55,.06,.68,.19)
             , opacity 0.5s cubic-bezier(.55,.06,.68,.19)
             , transform 0.25s ease;
}
.modalTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--modalTitleGradient);
  border-bottom: 1px solid #dce3ea;
  color: #203040;
  font-weight: 600;
  font-size: 1.75rem;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  border-radius: 24px 24px 0px 0px;
}

.modalTitle > span:nth-child(2),
.modalTitle .modalClose {
  width: 28px;
  height: 28px;
  background: url('/static/img/cross_icon.png') center/18px no-repeat;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.modalTitle > span:nth-child(2):hover,
.modalTitle .modalClose:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modalContent {
    position: absolute;
    top: 3.5em;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #FFFFFF;
    padding: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    transform: translateZ(0px);
    border-radius: 0px 0px 18px 18px;
}

@media only screen and (max-width: 1200px) {
  .modalTitle > span:nth-child(2) {
     width: 20px;
     height: 20px;
     margin-top: -10px;
  }
}
@media only screen and (max-width: 800px) {
  .modalTitle > span:nth-child(2) {
      background-size: 10px;
      width: 12px;
      height: 12px;
      top: 4px;
      right: 4px;
  }
}




#DLG_POPUPLOGIN .modalTitle, #DLG_POPUP_ACCOUNT .modalTitle {
  background: linear-gradient( RGBA(252, 200, 200, 0.8), RGBA(240, 110, 110, 0.8)); /*RGBA(231, 93, 93, 0.8);*/
  color: #000000;
  font-weight: bolder;
  border-bottom: 1px #EEE solid !important;  
}
#DLG_POPUPLOGIN .modalContent, #DLG_POPUP_ACCOUNT  .modalContent {
   top: 60px;
}




.chatPrePrompt {
    position: relative;
    left: 8px;
    width: 93%;
    margin-top: 60px;
    padding: 20px;
    background-color: #6b98c8;
    border-radius: 5px;
    box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.2);
    text-align: justify;
}

.chatPrePrompt INPUT{
    padding: 7px;
    width: 99%;
}

.chatPrePrompt INPUT::placeholder{
   color: #888;
   font-style: italic
}


.chatPostPrompt {
    position: relative;
    left: 10px;
    width: 93%;
    margin: 25px 0px 15px 0px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
    text-align: justify;
}

.chatPostPrompt.thinking {
    background-image: url("/static/img/progress.gif");
    background-position: bottom 5px right 5px;
    background-repeat: no-repeat;
    background-size: 20px;
}


.chatResponse {
    position: relative;
    left: 20px;
    width: 93%;
    padding: 10px 10px 10px 10px;
    margin-top: 4px;
    background-color: #F0F8FF;
    border-radius: 10px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.5);
    text-align: justify;
    line-height: 1.5;
}




.workArea {
  background-color:#F0F0F0;
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
}

.workArea2 {
    background-color: #F9F9F9;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
    margin: 10px;
    width: 98%;
}



.semanticCheckboxNone {
   color: #DDD;
   font-size: 120%;
}
.semanticCheckboxYes {
   color: #38aff1;
   font-size: 120%;
}
.semanticCheckboxNo {
   color: #38aff1;
   font-size: 120%;
}






/*********************************************************
  Tab Container
**********************************************************/

.tabContainer {
  position: relative;
  left: 0px;
  width: 99%;
  top: 0px;
  height: 99%;
  /* border: 1px solid black;   */
}

.tabContainer .tabHeader {
  border-bottom: 1px solid #EEE;
  box-shadow: 0 4px 2px -0px #EEE;
  margin: 2px 0px 0px -20px;
}

.tabContainer .tabHeader SPAN {
  border: 1px solid #BBB;
  margin-left: 0px;
  border-radius: 6px 6px 0 0;         /* slightly rounded top edges */
  padding: 3px 20px 3px 10px;
  cursor: pointer;
  transition-duration: 350ms;
  user-select: none;
}
.tabContainer .tabHeader SPAN:first-child {
  margin-left: 20px;
}

.tabContainer .tabHeader span.selected {
  background-color: #e8f4ff;          /* softer blue for a lighter modern look */
  color: #1a3d5d;                     /* deeper blue for good contrast */
  font-weight: 600;                   /* semi-bold instead of bold */
  text-decoration: none;              /* remove underline for a cleaner feel */
  border-radius: 20px 100px 0px 0px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08); /* subtle shadow for depth */
  border-bottom: 2px solid #1a3d5d;   /* active indicator instead of underline */
  transition: all 0.2s ease-in-out;   /* smooth hover/selection transitions */
  padding: 3px 50px 3px 10px;
}

/* Optional: hover state for unselected tabs */
.tabContainer .tabHeader span:not(.selected):hover {
  background-color: #f4faff;
  color: #1a3d5d;
  cursor: pointer;
}

.tabContainer .tabBody {
  position: absolute;
  top: 2em;
  bottom: 0px; 
  left: 0px; 
  width: 100%; 
  overflow: hidden;
}

.tabContainer .tabBody > DIV {
  position: relative;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  scrollbar-width: thin;
  display: none;
}

.tabContainer .tabBody DIV.selected {
  display: block;
  padding: 0px 1vw 0px 1vw;
}


/*********************************************************
  Context Menu
**********************************************************/

.contextMenu, .contextMenu_tabs {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  filter: drop-shadow(0px 0px 2px #666);
  padding: 5px 15px 15px 15px;
  z-index: 1000;
}
contextMenu li, .contextMenu_tabs li {
  cursor: pointer;
  padding: 3px 5px 3px 5px;
}
.contextMenu li:hover, .contextMenu_tabs li:hover {
  background-color: #eee;
}








/*********************************************************
  Geo Maps
**********************************************************/

.geoMap {
   width: 100%;
   height: 100%;
   margin: 5px;
   box-shadow: rgba(0, 0, 0, 0.11) 0px 2px 12px, rgba(0, 0, 0, 0.04) 0px 1px 4px; 
}

path.leaflet-interactive:focus {
    outline: none;
}

.leaflet-control-attribution {
  display: none !important;
}


.geoMap .legend {
    line-height: 13px;
    color: #555;
    font-size: 80%;
}
.geoMap .legend i {
    width: 12px;
    height: 12px;
    float: left;
    margin-right: 4px;
    opacity: 0.7;
}

.geoMap.leaflet-touch .leaflet-bar a {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 150%;
    color: #666;
}

.leaflet-control-resetview a {
     cursor: pointer;
}
.geoMap .leaflet-control-resetview a .leaflet-control-resetview-icon {
     display: inline-block;
     width: 10px;
     height: 10px;
     margin: 6px;
     background-color: #666;
     mask-image: url('/static/img/redo-solid.svg');
     mask-repeat: no-repeat;
     mask-position: center;
}





.progressFancy {
   border-radius: 500px 500px 500px 500px;
   mix-blend-mode: multiply;
   filter: drop-shadow(8px 8px 8px #ccc) saturate(125%) saturate(1);
}

/*
.progressFancy.animated-circle {
   animation: animation_circle 3s infinite ease; 
}
@keyframes animation_circle { 
      0% { transform: rotate(0deg); 
         } 
    100% { transform: rotate(360deg);
         }
}
*/





.iconBoard {
    border-spacing: 0;
    border-collapse: collapse;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
}
.iconBoard TD {
  text-align: center;
}
.iconBoard TD {
   padding: 10px 30px 20px 30px;
}
.iconBoard TD DIV {
   text-align: center;
   cursor: pointer;
   width: 250px;
   margin: auto; 
   padding: 10px 0px 10px 0px;
   border-radius: 5px;
   box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);  
}
.iconBoard TD DIV:hover {
   box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.5); 
   text-decoration: underline;  
}

.iconBoard TD DIV IMG {
   filter: drop-shadow(2px 2px 2px #ccc) saturate(125%) saturate(1);
}
.iconBoard TD DIV:hover IMG {
   filter: drop-shadow(0px 0px 2px #bbb) saturate(125%) saturate(1);
}



.specialSectionIconImg {
    position: relative;
    top: -0.25vh;
    height: 4vh;
    padding-right: 1vw;
    vertical-align: middle;
}


.accountToolbar IMG {
    height: 3.5vh;
    min-height: 24px;
}
.accountToolbar A {
    margin-left: 1vw;
}
.accountToolbar A:first-child {
    margin-left: 0px;
}


/*************************************************************************************************************
 ** App dashboard
 *************************************************************************************************************/
/*
.capsicoAppDashboard {
  position: relative;
  top: 5vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  gap: 0vh 5vw;
  width: 75%;
  height: 80vh;
  margin: 0px auto 0px auto;
  overflow-y: auto;
//  background: #FFFFFF10;
  border-radius: 2vh;
  box-shadow: inset 0 0 10px 3px rgba(0, 0, 0, 0.20);
  backdrop-filter: brightness(125%) saturate(125%) blur(100px);
}
.capsicoAppDashboard DIV {
   display: flex;
   text-align: center;
   width: 12vw;
}
.capsicoAppDashboard DIV A {
   color: var(--text-color);
   margin-bottom: 4vh;
   font-size: 100%;
   font-weight: bold;
}

.capsicoAppDashboard DIV A IMG {
   width: 18vh;
   height: 18vh !important;
   margin: 3vh auto 1.5vh auto;
   border: 2px solid #477;
   border-radius: 2vh;
   box-shadow: 0px 0px 8px 1px #444;
   display: block;
   transition: all 400ms ease-in-out;
}

.capsicoAppDashboard DIV A:hover IMG {
   position: relative;
   box-shadow: -2px 6px 10px 1px #444;
   transform: rotate(1deg) translate(10px, -6px);
}
*/



/*************************************************************************************************************
 ** Plans layout
 *************************************************************************************************************/

.planLayout {
   position: relative;
   top: 1vh;
   width: 96%;
   margin: 0px auto 0px auto;
   border-collapse: separate;
   border-spacing: 0;
   border-radius: 18px;
   box-shadow: 0px 0px 8px 4px #eee;
   overflow: hidden; /* ensures corners clip child backgrounds */
}

.planLayout TR {
   vertical-align: top;
}


.planLayout .planLabel {
  text-align: center;
  font-size: 175%;
  font-weight: bold;
  backdrop-filter: brightness(95%) saturate(200%) hue-rotate(-10deg);
  padding: 2vh 0vh 0vh 0vh;
}

.planLayout .planFeatures > UL, .planLayout .planPricing > UL {
  margin: 1vh 0.5vw 1vh -0.5vw;
}

.planLayout .planFeatures > UL LI, .planLayout .planPricing > UL LI {
  margin: 0vh 0vw 1.5vh 0vw;
  line-height: 1.25;
  list-style:  outside;
}

.planLayout .planFeatures > DIV:first-child, .planLayout .planPricing > DIV:first-child {
  display: block;
  width: 90%;
  margin: 2vh auto 2vh auto;
  text-align: center;
  border-radius: 1vh;
  box-shadow: 0px 0px 8px 2px #fff;
  backdrop-filter: brightness(125%) saturate(125%) blur(100px);
  font-weight: bold;
}

.planLayout .planPricing > DIV DIV {
  position: relative;
  float: right;
  right: 0.5vw;
  width: 7vw;
}

.planLayout .planPricing input[type="text"] {
  width: 6vw;
  font-size: 75%;
  background-color: transparent;
  border: 0px;
}

.planLayout .planPricing .floriaCombo {
  font-size: 70%;
  text-align: left;
}
.planLayout .planPricing .floriaCombo > SPAN {
  width: 5vw;
}

.planLayout .planPricing A {
  text-decoration: underline;
}

.planLayout .planDiscount > DIV {
  position: relative;
  width: fit-content;
  margin: 0px auto 0px auto;
  padding: 1vh 0vh 1vh 3vh;
  background-image: url('/static/img/star_icon.png');
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 24px;
  filter: drop-shadow(1px 1px 1px #000);
}


.blue         { background: linear-gradient(180deg, #4da6ff, #1e88e5); }
.blue-light   { background: linear-gradient(180deg, #f5faff, #e8f4ff); }
.purple       { background: linear-gradient(180deg, #9a67ea, #6a1b9a); }
.purple-light { background: linear-gradient(180deg, #f8f3ff, #efe6ff); }
.pink         { background: linear-gradient(180deg, #f06292, #ec407a); }
.pink-light   { background: linear-gradient(180deg, #fff5f9, #ffe6ef); }
.orange       { background: linear-gradient(180deg, #ffb74d, #fb8c00); }
.orange-light { background: linear-gradient(180deg, #fff9f0, #ffefdb); }
.green        { background: linear-gradient(180deg, #4dd0a1, #26a69a); }
.green-light  { background: linear-gradient(180deg, #f3fcf8, #e4f8f0); }
.grey         { background: linear-gradient(180deg, #e0e0e0, #f0f0f0); }  
.grey-light   { background: linear-gradient(180deg, #fafafa, #f2f2f2); }


