/* File variable.css begin */
@charset "UTF-8";

:root {

  --color-primary:          #4a90d9;      
  --color-primary-dark:     #2f6faa;      
  --color-primary-light:    #d0e8f8;      
  --color-primary-text:     #ffffff;      

  --color-secondary:        #6c757d;      
  --color-secondary-dark:   #494f54;      
  --color-secondary-light:  #e2e3e5;      
  --color-secondary-text:   #ffffff;      

  --color-accent:           #f0a500;      
  --color-accent-dark:      #c07d00;
  --color-accent-light:     #fef3d0;
  --color-accent-text:      #1a1a1a;

  --color-success:          #28a745;
  --color-success-light:    #d4edda;
  --color-success-text:     #155724;

  --color-warning:          #ffc107;
  --color-warning-light:    #fff3cd;
  --color-warning-text:     #856404;

  --color-danger:           #dc3545;
  --color-danger-light:     #f8d7da;
  --color-danger-text:      #721c24;

  --color-info:             #17a2b8;
  --color-info-light:       #d1ecf1;
  --color-info-text:        #0c5460;

  --color-white:            #ffffff;
  --color-black:            #000000;

  --color-gray-50:          #f8f9fa;      
  --color-gray-100:         #f0f0f0;      
  --color-gray-200:         #e0e0e0;      
  --color-gray-300:         #cccccc;      
  --color-gray-400:         #aaaaaa;      
  --color-gray-500:         #888888;      
  --color-gray-600:         #666666;      
  --color-gray-700:         #444444;      
  --color-gray-800:         #333333;      
  --color-gray-900:         #1a1a1a;      

  --color-header-bg:        var(--color-gray-800);
  --color-header-text:      var(--color-white);
  --color-header-border:    var(--color-gray-700);

  --color-menu-bg:          var(--color-gray-900);
  --color-menu-text:        var(--color-gray-300);
  --color-menu-hover-bg:    var(--color-primary);
  --color-menu-hover-text:  var(--color-primary-text);
  --color-menu-active-bg:   var(--color-primary-dark);
  --color-menu-active-text: var(--color-primary-text);
  --color-menu-border:      var(--color-gray-700);

  --color-footer-bg:        var(--color-gray-800);
  --color-footer-text:      var(--color-gray-400);
  --color-footer-border:    var(--color-gray-700);

  --color-body-bg:          var(--color-gray-50);
  --color-body-text:        var(--color-gray-700);

  --color-surface:          var(--color-white);      
  --color-surface-alt:      var(--color-gray-100);   
  --color-surface-border:   var(--color-gray-200);   
  --color-surface-shadow:   rgba(0, 0, 0, 0.08);     

  --color-input-bg:         var(--color-white);
  --color-input-text:       var(--color-gray-800);
  --color-input-border:     var(--color-gray-300);
  --color-input-border-focus: var(--color-primary);
  --color-input-placeholder: var(--color-gray-400);
  --color-input-disabled-bg: var(--color-gray-100);

  --color-link:             var(--color-primary);
  --color-link-hover:       var(--color-primary-dark);
  --color-link-visited:     #7b5ea7;

  --font-main:              'Open Sans', sans-serif;
  --font-mono:              'Courier New', Courier, monospace;
  --font-heading:           var(--font-main);        

  --font-size:              14px;                    
  --font-size-xs:           0.75rem;                 
  --font-size-sm:           0.857rem;                
  --font-size-base:         1rem;                    
  --font-size-md:           1.143rem;                
  --font-size-lg:           1.286rem;                
  --font-size-xl:           1.571rem;                
  --font-size-2x:           2rem;                    
  --font-size-3x:           2.571rem;                

  --font-weight-light:      300;
  --font-weight-normal:     400;
  --font-weight-medium:     500;
  --font-weight-semibold:   600;
  --font-weight-bold:       700;

  --line-height-tight:      1.2;
  --line-height-base:       1.5;
  --line-height-relaxed:    1.75;

  --letter-spacing-tight:   -0.025em;
  --letter-spacing-normal:  0;
  --letter-spacing-wide:    0.05em;

  --space-0:    0;
  --space-1:    0.25rem;    
  --space-2:    0.5rem;     
  --space-3:    0.75rem;    
  --space-4:    1rem;       
  --space-5:    1.25rem;    
  --space-6:    1.5rem;     
  --space-8:    2rem;       
  --space-10:   2.5rem;     
  --space-12:   3rem;       
  --space-16:   4rem;       
  --space-20:   5rem;       
  --space-24:   6rem;       

  --border-width-none:      0;
  --border-width-thin:      1px;
  --border-width-base:      1px;
  --border-width-thick:     2px;
  --border-width-heavy:     4px;

  --border-style:           solid;

  --border-radius-none:     0;
  --border-radius-sm:       0.25rem;    
  --border-radius-base:     0.375rem;   
  --border-radius-md:       0.5rem;     
  --border-radius-lg:       0.75rem;    
  --border-radius-xl:       1rem;       
  --border-radius-pill:     50rem;      
  --border-radius-circle:   50%;        

  --shadow-none:            none;
  --shadow-xs:              0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm:              0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-base:            0 2px 8px rgba(0, 0, 0, 0.10);
  --shadow-md:              0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg:              0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-xl:              0 16px 40px rgba(0, 0, 0, 0.16);
  --shadow-inset:           inset 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-focus:           0 0 0 3px rgba(74, 144, 217, 0.35);  

  --z-below:        -1;
  --z-base:          0;
  --z-raised:        10;     
  --z-dropdown:      100;    
  --z-sticky:        200;    
  --z-sticky1:       210;    
  --z-fixed:         300;    
  --z-overlay:       400;    
  --z-modal:         500;    
  --z-toast:         600;    
  --z-tooltip:       700;    

  --transition-fast:        100ms ease;
  --transition-base:        200ms ease;
  --transition-slow:        350ms ease;
  --transition-property-color:      color, background-color, border-color;
  --transition-property-transform:  transform;
  --transition-property-opacity:    opacity;
  --transition-property-all:        all;

  --header-height:          4rem;
  --header-padding-x:       1.5rem;
  --header-padding-y:       0.75rem;

  --menu-width:             240px;           
  --menu-width-collapsed:   60px;            
  --menu-item-height:       2.75rem;

  --content-max-width:      1400px;
  --content-padding-x:      var(--space-6);
  --content-padding-y:      var(--space-6);

  --footer-height:          3rem;
  --footer-padding-x:       var(--space-6);
  --footer-padding-y:       var(--space-4);

  --form-max-width:         800px;
  --card-min-width:         200px;

  --input-height:           2.286rem;       
  --input-height-sm:        1.857rem;       
  --input-height-lg:        2.857rem;       
  --input-padding-x:        var(--space-3);
  --input-padding-y:        var(--space-2);

  --btn-padding-x:          var(--space-4);
  --btn-padding-y:          var(--space-2);
  --btn-padding-x-sm:       var(--space-3);
  --btn-padding-y-sm:       var(--space-1);
  --btn-padding-x-lg:       var(--space-6);
  --btn-padding-y-lg:       var(--space-3);

  --grid-header-height:     2.5rem;
  --grid-row-height:        2.286rem;
  --grid-row-height-sm:     1.857rem;

  --modal-padding:          var(--space-6);
  --modal-border-radius:    var(--border-radius-md);
  --modal-max-width-sm:     400px;
  --modal-max-width-base:   600px;
  --modal-max-width-lg:     900px;
  --modal-max-width-xl:     1200px;
}
/* File variable.css end *//* File main.css begin */
html, body {
  height: 100%;
  width: 100%;
  background-color: var(--color-body-bg);
  color: var(--color-body-text);
  font-family: var(--font-main);
  font-size: var(--font-size);
  line-height: var(--line-height-base);
}

body {

  padding-top: var(--header-height);
}

a {
  color: var(--color-link);
  text-decoration: none;
  cursor: pointer;
}

  a:hover {
    color: var(--color-link-hover);
    text-decoration: none;
  }

  a:visited {
    color: var(--color-link-visited);
  }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-800);
  margin: var(--space-2) 0;
}

p {
  margin-bottom: var(--space-4);
}

footer {
  margin-top: var(--space-6);
  padding: var(--space-8) var(--footer-padding-x);
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  border-top: var(--border-width-base) var(--border-style) var(--color-footer-border);
  text-align: center;
}

.hidden {
  display: none;
}

.hiddenf {
  opacity: 0;
}

.fw_light {
  font-weight: var(--font-weight-light);
}
.fw_normal {
  font-weight: var(--font-weight-normal);
}
.fw_medium {
  font-weight: var(--font-weight-medium);
}
.fw_semibold {
  font-weight: var(--font-weight-semibold);
}
.fw_bold {
  font-weight: var(--font-weight-bold);
}

.btn_flex {
  display: flex;
  align-items: stretch;
  align-content: stretch;
}

  .btn_flex .btn:first-child {
    flex-grow: 10;
    text-align: left;
  }

.btn, .form-select {
  cursor: pointer;
}

.img-hover:hover {
  opacity: 0.8;
}

.img-header {
  min-height: 250px;
  background: no-repeat center center scroll;
  background-size: cover;
}

.disclaimer {
  margin: var(--space-3) var(--space-2);
  border: var(--border-width-base) var(--border-style) var(--color-black);
  background-color: var(--color-danger-light);
  padding: var(--space-3);
}
/* File main.css end *//* File col.css begin */
.cx0   { flex: 0 0 auto; display: none; }
.cx5   { flex: 0 0 auto; width: 5%; }
.cx8   { flex: 0 0 auto; width: 8.3333333%; }
.cx10  { flex: 0 0 auto; width: 10%; }
.cx12  { flex: 0 0 auto; width: 12.5%; }
.cx15  { flex: 0 0 auto; width: 15%; }
.cx16  { flex: 0 0 auto; width: 16.6666666%; }
.cx20  { flex: 0 0 auto; width: 20%; }
.cx25  { flex: 0 0 auto; width: 25%; }
.cx30  { flex: 0 0 auto; width: 30%; }
.cx33  { flex: 0 0 auto; width: 33.3333333%; }
.cx35  { flex: 0 0 auto; width: 35%; }
.cx37  { flex: 0 0 auto; width: 37.5%; }
.cx40  { flex: 0 0 auto; width: 40%; }
.cx41  { flex: 0 0 auto; width: 41.6666666%; }
.cx45  { flex: 0 0 auto; width: 45%; }
.cx50  { flex: 0 0 auto; width: 50%; }
.cx55  { flex: 0 0 auto; width: 55%; }
.cx58  { flex: 0 0 auto; width: 58.3333333%; }
.cx60  { flex: 0 0 auto; width: 60%; }
.cx62  { flex: 0 0 auto; width: 62.5%; }
.cx65  { flex: 0 0 auto; width: 65%; }
.cx66  { flex: 0 0 auto; width: 66.6666666%; }
.cx70  { flex: 0 0 auto; width: 70%; }
.cx75  { flex: 0 0 auto; width: 75%; }
.cx80  { flex: 0 0 auto; width: 80%; }
.cx83  { flex: 0 0 auto; width: 83.3333333%; }
.cx85  { flex: 0 0 auto; width: 85%; }
.cx87  { flex: 0 0 auto; width: 87.5%; }
.cx90  { flex: 0 0 auto; width: 90%; }
.cx91  { flex: 0 0 auto; width: 91.6666666%; }
.cx95  { flex: 0 0 auto; width: 95%; }
.cx100 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
  .cx0_sm   { flex: 0 0 auto; display: none; }
  .cx5_sm   { flex: 0 0 auto; width: 5%; }
  .cx8_sm   { flex: 0 0 auto; width: 8.3333333%; }
  .cx10_sm  { flex: 0 0 auto; width: 10%; }
  .cx12_sm  { flex: 0 0 auto; width: 12.5%; }
  .cx15_sm  { flex: 0 0 auto; width: 15%; }
  .cx16_sm  { flex: 0 0 auto; width: 16.6666666%; }
  .cx20_sm  { flex: 0 0 auto; width: 20%; }
  .cx25_sm  { flex: 0 0 auto; width: 25%; }
  .cx30_sm  { flex: 0 0 auto; width: 30%; }
  .cx33_sm  { flex: 0 0 auto; width: 33.3333333%; }
  .cx35_sm  { flex: 0 0 auto; width: 35%; }
  .cx37_sm  { flex: 0 0 auto; width: 37.5%; }
  .cx40_sm  { flex: 0 0 auto; width: 40%; }
  .cx41_sm  { flex: 0 0 auto; width: 41.6666666%; }
  .cx45_sm  { flex: 0 0 auto; width: 45%; }
  .cx50_sm  { flex: 0 0 auto; width: 50%; }
  .cx55_sm  { flex: 0 0 auto; width: 55%; }
  .cx58_sm  { flex: 0 0 auto; width: 58.3333333%; }
  .cx60_sm  { flex: 0 0 auto; width: 60%; }
  .cx62_sm  { flex: 0 0 auto; width: 62.5%; }
  .cx65_sm  { flex: 0 0 auto; width: 65%; }
  .cx66_sm  { flex: 0 0 auto; width: 66.6666666%; }
  .cx70_sm  { flex: 0 0 auto; width: 70%; }
  .cx75_sm  { flex: 0 0 auto; width: 75%; }
  .cx80_sm  { flex: 0 0 auto; width: 80%; }
  .cx83_sm  { flex: 0 0 auto; width: 83.3333333%; }
  .cx85_sm  { flex: 0 0 auto; width: 85%; }
  .cx87_sm  { flex: 0 0 auto; width: 87.5%; }
  .cx90_sm  { flex: 0 0 auto; width: 90%; }
  .cx91_sm  { flex: 0 0 auto; width: 91.6666666%; }
  .cx95_sm  { flex: 0 0 auto; width: 95%; }
  .cx100_sm { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
  .cx0_md   { flex: 0 0 auto; display: none; }
  .cx5_md   { flex: 0 0 auto; width: 5%; }
  .cx8_md   { flex: 0 0 auto; width: 8.3333333%; }
  .cx10_md  { flex: 0 0 auto; width: 10%; }
  .cx12_md  { flex: 0 0 auto; width: 12.5%; }
  .cx15_md  { flex: 0 0 auto; width: 15%; }
  .cx16_md  { flex: 0 0 auto; width: 16.6666666%; }
  .cx20_md  { flex: 0 0 auto; width: 20%; }
  .cx25_md  { flex: 0 0 auto; width: 25%; }
  .cx30_md  { flex: 0 0 auto; width: 30%; }
  .cx33_md  { flex: 0 0 auto; width: 33.3333333%; }
  .cx35_md  { flex: 0 0 auto; width: 35%; }
  .cx37_md  { flex: 0 0 auto; width: 37.5%; }
  .cx40_md  { flex: 0 0 auto; width: 40%; }
  .cx41_md  { flex: 0 0 auto; width: 41.6666666%; }
  .cx45_md  { flex: 0 0 auto; width: 45%; }
  .cx50_md  { flex: 0 0 auto; width: 50%; }
  .cx55_md  { flex: 0 0 auto; width: 55%; }
  .cx58_md  { flex: 0 0 auto; width: 58.3333333%; }
  .cx60_md  { flex: 0 0 auto; width: 60%; }
  .cx62_md  { flex: 0 0 auto; width: 62.5%; }
  .cx65_md  { flex: 0 0 auto; width: 65%; }
  .cx66_md  { flex: 0 0 auto; width: 66.6666666%; }
  .cx70_md  { flex: 0 0 auto; width: 70%; }
  .cx75_md  { flex: 0 0 auto; width: 75%; }
  .cx80_md  { flex: 0 0 auto; width: 80%; }
  .cx83_md  { flex: 0 0 auto; width: 83.3333333%; }
  .cx85_md  { flex: 0 0 auto; width: 85%; }
  .cx87_md  { flex: 0 0 auto; width: 87.5%; }
  .cx90_md  { flex: 0 0 auto; width: 90%; }
  .cx91_md  { flex: 0 0 auto; width: 91.6666666%; }
  .cx95_md  { flex: 0 0 auto; width: 95%; }
  .cx100_md { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
  .cx0_lg   { flex: 0 0 auto; display: none; }
  .cx5_lg   { flex: 0 0 auto; width: 5%; }
  .cx8_lg   { flex: 0 0 auto; width: 8.3333333%; }
  .cx10_lg  { flex: 0 0 auto; width: 10%; }
  .cx12_lg  { flex: 0 0 auto; width: 12.5%; }
  .cx15_lg  { flex: 0 0 auto; width: 15%; }
  .cx16_lg  { flex: 0 0 auto; width: 16.6666666%; }
  .cx20_lg  { flex: 0 0 auto; width: 20%; }
  .cx25_lg  { flex: 0 0 auto; width: 25%; }
  .cx30_lg  { flex: 0 0 auto; width: 30%; }
  .cx33_lg  { flex: 0 0 auto; width: 33.3333333%; }
  .cx35_lg  { flex: 0 0 auto; width: 35%; }
  .cx37_lg  { flex: 0 0 auto; width: 37.5%; }
  .cx40_lg  { flex: 0 0 auto; width: 40%; }
  .cx41_lg  { flex: 0 0 auto; width: 41.6666666%; }
  .cx45_lg  { flex: 0 0 auto; width: 45%; }
  .cx50_lg  { flex: 0 0 auto; width: 50%; }
  .cx55_lg  { flex: 0 0 auto; width: 55%; }
  .cx58_lg  { flex: 0 0 auto; width: 58.3333333%; }
  .cx60_lg  { flex: 0 0 auto; width: 60%; }
  .cx62_lg  { flex: 0 0 auto; width: 62.5%; }
  .cx65_lg  { flex: 0 0 auto; width: 65%; }
  .cx66_lg  { flex: 0 0 auto; width: 66.6666666%; }
  .cx70_lg  { flex: 0 0 auto; width: 70%; }
  .cx75_lg  { flex: 0 0 auto; width: 75%; }
  .cx80_lg  { flex: 0 0 auto; width: 80%; }
  .cx83_lg  { flex: 0 0 auto; width: 83.3333333%; }
  .cx85_lg  { flex: 0 0 auto; width: 85%; }
  .cx87_lg  { flex: 0 0 auto; width: 87.5%; }
  .cx90_lg  { flex: 0 0 auto; width: 90%; }
  .cx91_lg  { flex: 0 0 auto; width: 91.6666666%; }
  .cx95_lg  { flex: 0 0 auto; width: 95%; }
  .cx100_lg { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1200px) {
  .cx0_xl   { flex: 0 0 auto; display: none; }
  .cx5_xl   { flex: 0 0 auto; width: 5%; }
  .cx8_xl   { flex: 0 0 auto; width: 8.3333333%; }
  .cx10_xl  { flex: 0 0 auto; width: 10%; }
  .cx12_xl  { flex: 0 0 auto; width: 12.5%; }
  .cx15_xl  { flex: 0 0 auto; width: 15%; }
  .cx16_xl  { flex: 0 0 auto; width: 16.6666666%; }
  .cx20_xl  { flex: 0 0 auto; width: 20%; }
  .cx25_xl  { flex: 0 0 auto; width: 25%; }
  .cx30_xl  { flex: 0 0 auto; width: 30%; }
  .cx33_xl  { flex: 0 0 auto; width: 33.3333333%; }
  .cx35_xl  { flex: 0 0 auto; width: 35%; }
  .cx37_xl  { flex: 0 0 auto; width: 37.5%; }
  .cx40_xl  { flex: 0 0 auto; width: 40%; }
  .cx41_xl  { flex: 0 0 auto; width: 41.6666666%; }
  .cx45_xl  { flex: 0 0 auto; width: 45%; }
  .cx50_xl  { flex: 0 0 auto; width: 50%; }
  .cx55_xl  { flex: 0 0 auto; width: 55%; }
  .cx58_xl  { flex: 0 0 auto; width: 58.3333333%; }
  .cx60_xl  { flex: 0 0 auto; width: 60%; }
  .cx62_xl  { flex: 0 0 auto; width: 62.5%; }
  .cx65_xl  { flex: 0 0 auto; width: 65%; }
  .cx66_xl  { flex: 0 0 auto; width: 66.6666666%; }
  .cx70_xl  { flex: 0 0 auto; width: 70%; }
  .cx75_xl  { flex: 0 0 auto; width: 75%; }
  .cx80_xl  { flex: 0 0 auto; width: 80%; }
  .cx83_xl  { flex: 0 0 auto; width: 83.3333333%; }
  .cx85_xl  { flex: 0 0 auto; width: 85%; }
  .cx87_xl  { flex: 0 0 auto; width: 87.5%; }
  .cx90_xl  { flex: 0 0 auto; width: 90%; }
  .cx91_xl  { flex: 0 0 auto; width: 91.6666666%; }
  .cx95_xl  { flex: 0 0 auto; width: 95%; }
  .cx100_xl { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 1400px) {
  .cx0_xxl   { flex: 0 0 auto; display: none; }
  .cx5_xxl   { flex: 0 0 auto; width: 5%; }
  .cx8_xxl   { flex: 0 0 auto; width: 8.3333333%; }
  .cx10_xxl  { flex: 0 0 auto; width: 10%; }
  .cx12_xxl  { flex: 0 0 auto; width: 12.5%; }
  .cx15_xxl  { flex: 0 0 auto; width: 15%; }
  .cx16_xxl  { flex: 0 0 auto; width: 16.6666666%; }
  .cx20_xxl  { flex: 0 0 auto; width: 20%; }
  .cx25_xxl  { flex: 0 0 auto; width: 25%; }
  .cx30_xxl  { flex: 0 0 auto; width: 30%; }
  .cx33_xxl  { flex: 0 0 auto; width: 33.3333333%; }
  .cx35_xxl  { flex: 0 0 auto; width: 35%; }
  .cx37_xxl  { flex: 0 0 auto; width: 37.5%; }
  .cx40_xxl  { flex: 0 0 auto; width: 40%; }
  .cx41_xxl  { flex: 0 0 auto; width: 41.6666666%; }
  .cx45_xxl  { flex: 0 0 auto; width: 45%; }
  .cx50_xxl  { flex: 0 0 auto; width: 50%; }
  .cx55_xxl  { flex: 0 0 auto; width: 55%; }
  .cx58_xxl  { flex: 0 0 auto; width: 58.3333333%; }
  .cx60_xxl  { flex: 0 0 auto; width: 60%; }
  .cx62_xxl  { flex: 0 0 auto; width: 62.5%; }
  .cx65_xxl  { flex: 0 0 auto; width: 65%; }
  .cx66_xxl  { flex: 0 0 auto; width: 66.6666666%; }
  .cx70_xxl  { flex: 0 0 auto; width: 70%; }
  .cx75_xxl  { flex: 0 0 auto; width: 75%; }
  .cx80_xxl  { flex: 0 0 auto; width: 80%; }
  .cx83_xxl  { flex: 0 0 auto; width: 83.3333333%; }
  .cx85_xxl  { flex: 0 0 auto; width: 85%; }
  .cx87_xxl  { flex: 0 0 auto; width: 87.5%; }
  .cx90_xxl  { flex: 0 0 auto; width: 90%; }
  .cx91_xxl  { flex: 0 0 auto; width: 91.6666666%; }
  .cx95_xxl  { flex: 0 0 auto; width: 95%; }
  .cx100_xxl { flex: 0 0 auto; width: 100%; }
}
/* File col.css end *//* File nav.css begin */
:root {

  --nav-height:                    var(--header-height);
  --nav-padding-x:                 var(--space-3);
  --nav-padding-y:                 var(--space-2);
  --nav-border-bottom:             var(--border-width-base) var(--border-style) var(--color-menu-border);
  --nav-shadow:                    var(--shadow-md);

  --nav-brand-size:                40px;
  --nav-brand-gap:                 var(--space-2);
  --nav-brand-logo:                url("../img/icons/JDMX_AppIcon.png");

  --nav-title-color:               var(--color-white);
  --nav-title-size:                var(--font-size-md);
  --nav-title-weight:              var(--font-weight-bold);

  --nav-link-padding-x:            var(--space-3);
  --nav-link-padding-y:            var(--space-2);
  --nav-link-gap:                  var(--space-1);
  --nav-link-radius:               var(--border-radius-sm);
  --nav-link-transition:           var(--transition-base);
  --nav-link-weight:               var(--font-weight-normal);

  --nav-hamburger-width:           24px;
  --nav-hamburger-bar-height:      2px;
  --nav-hamburger-bar-gap:         5px;
  --nav-hamburger-radius:          2px;
  --nav-hamburger-transition:      0.25s ease;

  --nav-dropdown-bg:               var(--color-gray-900);
  --nav-dropdown-border:           var(--color-menu-border);
  --nav-dropdown-shadow:           var(--shadow-lg);
  --nav-dropdown-radius:           var(--border-radius-base);
  --nav-dropdown-min-width:        180px;  
  --nav-dropdown-padding-y:        var(--space-2);
  --nav-dropdown-item-px:          var(--space-4);
  --nav-dropdown-item-py:          var(--space-2);
  --nav-dropdown-item-color:       var(--color-menu-text);
  --nav-dropdown-item-hover-bg:    var(--color-menu-hover-bg);
  --nav-dropdown-item-hover-color: var(--color-menu-hover-text);
  --nav-dropdown-item-active-bg:   var(--color-gray-50);
  --nav-dropdown-item-active-color: var(--color-gray-900);
  --nav-dropdown-header-color:     var(--color-gray-500);
  --nav-dropdown-header-size:      var(--font-size-xs);
  --nav-dropdown-divider-color:    var(--color-menu-border);

  --nav-contact-weight:            var(--font-weight-bold);

  --nav-submenu-bg:                var(--color-gray-800);
  --nav-submenu-text:              var(--color-gray-300);
  --nav-submenu-hover-bg:          var(--color-menu-hover-bg);
  --nav-submenu-hover-text:        var(--color-menu-hover-text);
  --nav-submenu-border:            var(--color-menu-border);
  --nav-submenu-padding:           var(--space-2);
  --nav-submenu-item-height:       var(--menu-item-height);
}

.xnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);

  display: flex;
  flex-wrap: wrap;     
  align-items: center;

  background-color: var(--color-menu-bg);
  padding: var(--nav-padding-y) var(--nav-padding-x);
  border-bottom: var(--nav-border-bottom);
  box-shadow: var(--nav-shadow);
  box-sizing: border-box;
}

@media print {
  .xnav { display: none; }
}

.xnav-brand {
  display: inline-block;
  flex-shrink: 0;
  height: var(--nav-brand-size);
  width: var(--nav-brand-size);
  margin-right: var(--nav-brand-gap);

  background-image: var(--nav-brand-logo);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-decoration: none;
}

.xnav-title {
  flex: 1;
  text-align: center;
  color: var(--nav-title-color);
  font-size: var(--nav-title-size);
  font-weight: var(--nav-title-weight);
  white-space: nowrap;
  user-select: none;
}

@media (min-width: 992px) {
  .xnav-title {
    flex: 0 0 auto;
    text-align: left;
    margin-right: auto;   
  }
}

.xnav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.xnav-toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: var(--nav-link-padding-y) var(--nav-link-padding-x);
  color: var(--color-menu-text);
  border-radius: var(--nav-link-radius);
  cursor: pointer;
  transition: background-color var(--nav-hamburger-transition);
}

.xnav-toggle-label:hover {
  background-color: var(--color-menu-hover-bg);
}

@media (min-width: 992px) {
  .xnav-toggle-label { display: none; }
}

.xnav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--nav-hamburger-width);

  height: calc( (var(--nav-hamburger-bar-height) * 3) + (var(--nav-hamburger-bar-gap) * 2) );
  pointer-events: none;
}

.xnav-hamburger span {
  display: block;
  width: 100%;
  height: var(--nav-hamburger-bar-height);
  background-color: currentColor;
  border-radius: var(--nav-hamburger-radius);
  transform-origin: center;
  transition:
    transform var(--nav-hamburger-transition),
    opacity   var(--nav-hamburger-transition);
}

.xnav-toggle:checked ~ .xnav-toggle-label .xnav-hamburger span:nth-child(1) {
  transform: translateY(calc( var(--nav-hamburger-bar-height) + var(--nav-hamburger-bar-gap) )) rotate(45deg);
}
.xnav-toggle:checked ~ .xnav-toggle-label .xnav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.xnav-toggle:checked ~ .xnav-toggle-label .xnav-hamburger span:nth-child(3) {
  transform: translateY(calc( -1 * (var(--nav-hamburger-bar-height) + var(--nav-hamburger-bar-gap)) )) rotate(-45deg);
}

.xnav-menu {
  display: none;
  width: 100%;
  box-sizing: border-box;

  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.xnav-toggle:checked ~ .xnav-menu {
  display: block;
}

@media (min-width: 992px) {
  .xnav-menu {
    display: flex;
    width: auto;
    align-items: center;
    justify-content: end;
    max-height: none;
    overflow-y: visible;
  }
}

.xnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .xnav-list {
    display: flex;
    flex-direction: column; 
  }
}

@media (min-width: 992px) {
  .xnav-list {
    flex-direction: row;    
    align-items: center;
    gap: var(--nav-link-gap);
  }
}

.xnav-item {
  position: relative;   
  margin: 0;
  padding: 0;
  background-color: var(--color-menu-bg);
}

.xnav-link {
  display: block;
  color: var(--color-menu-text);
  text-decoration: none;
  padding: var(--nav-link-padding-y) var(--nav-link-padding-x);
  font-weight: var(--nav-link-weight);
  border-radius: var(--nav-link-radius);
  white-space: nowrap;
  cursor: pointer;
  transition:
    color            var(--nav-link-transition),
    background-color var(--nav-link-transition);
}

.xnav-link:hover,
.xnav-link:focus {
  color: var(--color-menu-hover-text);
  background-color: var(--color-menu-hover-bg);
  text-decoration: none;
  outline: none;
}

.xnav-link.active {
  color: var(--color-menu-active-text);
  background-color: var(--color-menu-active-bg);
}

.xnav-link-dropdown::after {
  content: "";
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: 0.15em;
  border-top:    0.35em solid currentColor;
  border-right:  0.3em solid transparent;
  border-left:   0.3em solid transparent;
  transition: transform var(--nav-hamburger-transition);
}

.xnav-link-contact {
  font-weight: var(--nav-contact-weight);
}

.xnav-dropdown {
  display: block;
  position: static;
  width: 100%;

  list-style: none;
  margin: 0;
  padding: var(--nav-dropdown-padding-y) 0;

  background-color: var(--nav-dropdown-bg);
  border: none;
  border-top: 1px solid var(--nav-dropdown-border);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}

@media (min-width: 992px) {

  .xnav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: var(--nav-dropdown-min-width);
    border: 1px solid var(--nav-dropdown-border);
    border-radius: var(--nav-dropdown-radius);
    box-shadow: var(--nav-dropdown-shadow);
    z-index: var(--z-fixed);
  }

  .xnav-item-has-dropdown:hover > .xnav-dropdown {
    display: block;
  }

  .xnav-item-has-dropdown:hover > .xnav-link-dropdown::after {
    transform: rotate(180deg);
  }
}

.xnav-dropdown-item {
  display: block;
  color: var(--nav-dropdown-item-color);
  text-decoration: none;
  padding: var(--nav-dropdown-item-py) var(--nav-dropdown-item-px);
  white-space: nowrap;
  transition:
    color            var(--nav-link-transition),
    background-color var(--nav-link-transition);
}

.xnav-dropdown-item:hover {
  color: var(--nav-dropdown-item-hover-color);
  background-color: var(--nav-dropdown-item-hover-bg);
  text-decoration: none;
}

.xnav-dropdown-item:active {
  color: var(--nav-dropdown-item-active-color);
  background-color: var(--nav-dropdown-item-active-bg);
}

.xnav-dropdown-header {
  display: block;
  margin: 0;
  padding: var(--nav-dropdown-item-py) var(--nav-dropdown-item-px);
  color: var(--nav-dropdown-header-color);
  font-size: var(--nav-dropdown-header-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  cursor: default;
  user-select: none;
}

.xnav-dropdown-divider {
  border: none;
  border-top: 1px solid var(--nav-dropdown-divider-color);
  margin: var(--space-1) 0;
}

.xnav-item-inactive > .xnav-dropdown-item {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.xnav-subnav-nav {
  background-color: var(--nav-submenu-bg);
  border-bottom: 1px solid var(--nav-submenu-border);
}

.xnav-subnav {
  list-style: none;
  margin: 0;
  padding: var(--nav-submenu-padding) 0;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-menu-bg);
}

.xnav-subnav-item {
  display: flex;
  align-items: center;
  min-height: var(--nav-submenu-item-height);
}

.xnav-subnav-item a {
  display: block;
  color: var(--nav-submenu-text);
  text-decoration: none;
  padding: var(--nav-link-padding-y) var(--nav-link-padding-x);
  cursor: pointer;
  transition:
    color            var(--nav-link-transition),
    background-color var(--nav-link-transition);
}

.xnav-subnav-item a:hover {
  color: var(--nav-submenu-hover-text);
  background-color: var(--nav-submenu-hover-bg);
}
/* File nav.css end *//* File bs.css begin */
.form-control, .form-check-inline {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.form-group {
  margin-bottom: 0.7rem;
}

.form-label, .col-form-label {
  font-weight: 600;
  line-height: 23px;
}

.input-group .form-control + .btn-group-vertical button,
.input-group .form-control + button + .btn-group-vertical button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.table-responsive {
  overflow-x: scroll;
}

.card {
  margin: var(--space-1) 0;
  border-color: var(--color-surface-border);
  box-shadow: var(--shadow-xs);
}

.input-group {
  background-color: var(--color-input-bg);

}

.anchor::before {
  display: block;
  content: " ";
  height: var(--header-height);
  margin-top: calc(var(--header-height) * -1);
  visibility: hidden;
}

.col-0 {
  flex: 0 0 auto;
  display: none;
}

@media (min-width: 576px) {
  .col-sm-0 {
    flex: 0 0 auto;
    display: none;
  }
}

@media (min-width: 768px) {
  .col-md-0 {
    flex: 0 0 auto;
    display: none;
  }
}

@media (min-width: 992px) {
  .col-lg-0 {
    flex: 0 0 auto;
    display: none;
  }
}

@media (min-width: 1200px) {
  .col-xl-0 {
    flex: 0 0 auto;
    display: none;
  }
}

@media (min-width: 1400px) {
  .col-xxl-0 {
    flex: 0 0 auto;
    display: none;
  }
}

.order-6 { order: 6; }
.order-7 { order: 7; }
.order-8 { order: 8; }
.order-9 { order: 9; }
.order-10 { order: 10; }
.order-initial { order: initial; }

@media screen and (min-width: 576px) {
  .order-sm-6 { order: 6; }
  .order-sm-7 { order: 7; }
  .order-sm-8 { order: 8; }
  .order-sm-9 { order: 9; }
  .order-sm-10 { order: 10; }
  .order-sm-initial { order: initial; }
}
@media screen and (min-width: 768px) {
  .order-md-6 { order: 6; }
  .order-md-7 { order: 7; }
  .order-md-8 { order: 8; }
  .order-md-9 { order: 9; }
  .order-md-10 { order: 10; }
  .order-md-initial { order: initial; }
}
@media screen and (min-width: 992px) {
  .order-lg-6 { order: 6; }
  .order-lg-7 { order: 7; }
  .order-lg-8 { order: 8; }
  .order-lg-9 { order: 9; }
  .order-lg-10 { order: 10; }
  .order-lg-initial { order: initial; }
}
@media screen and (min-width: 1200px) {
  .order-xl-6 { order: 6; }
  .order-xl-7 { order: 7; }
  .order-xl-8 { order: 8; }
  .order-xl-9 { order: 9; }
  .order-xl-10 { order: 10; }
  .order-xl-initial { order: initial; }
}
@media screen and (min-width: 1400px) {
  .order-xxl-6 { order: 6; }
  .order-xxl-7 { order: 7; }
  .order-xxl-8 { order: 8; }
  .order-xxl-9 { order: 9; }
  .order-xxl-10 { order: 10; }
  .order-xxl-initial { order: initial; }
}
/* File bs.css end *//* File validate.css begin */
:root {
  --color-field-valid: var(--color-success);
  --color-field-invalid: var(--color-danger);
  --color-field-warning: var(--color-warning);
  --color-required-indicator: var(--color-info);
}

.color-success { color: var(--color-field-valid); }
.color-danger  { color: var(--color-field-invalid);  }
.color-warning { color: var(--color-field-warning); }
.color-info    { color: var(--color-required-indicator); }

label.alert {
  width: 100%;
}

.alert_block {
  margin-top: 1rem;
}

.alert_inline {
  padding: 0.25rem 10px;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
/* File validate.css end *//* File dlg.css begin */
:root {
  --dlg-toaster-width: 400px;
  --dlg-toaster-min-height: 100px;
  --dlg-toaster-max-height: 300px;
  --dlg-toaster-shadow: 5px 2px 25px -3px #601872;
}

.d_form {
  position: relative;
  display: none;
  box-sizing: border-box;
  z-index: var(--z-raised);
}

.d_form_pop {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--color-surface);
  color: var(--color-body-text);
  border: var(--border-width-base) var(--border-style) var(--color-surface-border);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  padding: var(--space-4);
  transform: translate3d(0, 37px, 0);
}

.d_form_standard {
  width: 100%;
}

.d_open_pop {
  display: block;
  z-index: var(--z-dropdown);
}

.d_form_inline {
  width: 100%;
}

.d_open_inline {
  display: block;
}

.d_form_replace {
  width: 100%;
}

.d_open_replace {
  display: inherit;
}

.d_form_modal { }

.d_open_modal {
  display: block;
}

.d_center_modal {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  min-height: 30%;
  max-height: 94%;
  scrollbar-width: thin;
  animation: fade-out var(--transition-slow);
}

  .d_center_modal[open] {
    background: var(--color-surface);
    border: var(--border-width-base) var(--border-style) var(--color-surface-border);
    border-radius: var(--border-radius-md);
    transition: background-color var(--transition-base);
    animation: fade-in var(--transition-base);
  }

    .d_center_modal[open]::backdrop {
      background-image: linear-gradient(45deg, var(--color-black), #601872);
      opacity: 0.55;
      animation: backdrop-fade-in var(--transition-slow) forwards;
    }

.d_form_toaster {
  position: fixed;
  right: calc(50vw - (var(--dlg-toaster-width) / 2));
  bottom: 0;
  width: var(--dlg-toaster-width);
  min-height: var(--dlg-toaster-min-height);
  max-height: var(--dlg-toaster-max-height);
  background: var(--color-surface);
  border: var(--border-width-base) var(--border-style) var(--color-surface-border);
  border-radius: var(--border-radius-base);
  box-shadow: var(--dlg-toaster-shadow);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.d_open_toaster {
  display: block;
  opacity: 1;
  z-index: var(--z-toast);
}

/* DIALOG - CLOSE BUTTON Absolute-positioned icon button; spins 90deg on hover. */
.d_close {
  position: absolute;
  display: block;
  top: var(--space-1);
  right: var(--space-1);
  border: none;
  background-color: transparent;
  color: var(--color-body-text);
  z-index: var(--z-raised);
  transition: transform var(--transition-slow);
}

  .d_close > span {
    display: none;
  }

  .d_close:focus-visible {
    outline: 0;
  }

  .d_close:hover {
    transform: rotate(90deg);
    color: var(--color-danger);
  }

/* DIALOG - HELP SIZE VARIANT  */
.d_form_help {
  max-width: var(--modal-max-width-sm);
  min-width: 280px;
}

/* =========================================================================
   DIALOG - MESSAGE CONTENT  (used by dlg.message)
   Classnames match x.cfg.dlg.message.css properties:
     css.inner          -> d_msg_inner
     css.message        -> d_msg_text
     css.button_confirm -> d_msg_confirm
   ========================================================================= */
.d_msg_inner {
  margin: var(--space-2);
  display: flex;
  flex-direction: column;
  place-items: center;
  text-align: center;
}

.d_msg_text {
  font-size: var(--font-size-lg);
}

.d_msg_confirm {
  display: none;
  font-size: var(--font-size-md);
  margin-top: var(--space-2);
}

/* =========================================================================
   DIALOG - ANIMATIONS
   fade-in / fade-out / backdrop-fade-in are referenced globally across
   modal dialogs and overlays throughout the stylesheet.
   ========================================================================= */
@keyframes fade-in {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes backdrop-fade-in {
  from { opacity: 0; }
  to   { opacity: 0.55; }
}
/* File dlg.css end *//* File wdt.autocomplete.css begin */
:root {
  --autocomplete-border-radius:       var(--border-radius-sm);
  --autocomplete-dropdown-max-height: 280px;
  --autocomplete-item-padding-x:      var(--space-3);
  --autocomplete-item-padding-y:      var(--space-2);
  --autocomplete-hover-bg:            var(--color-primary-light);
  --autocomplete-hover-text:          var(--color-primary);
  --autocomplete-selected-bg:         var(--color-primary);
  --autocomplete-selected-text:       var(--color-primary-text);
}

.ac_select {
  border-radius: var(--autocomplete-border-radius);
  border: 1px solid var(--color-gray-200);
  box-sizing: border-box;
  color: var(--color-body-text);
  cursor: pointer;
  display: flex;
  justify-content: left;
  position: relative;
  transition: 0.2s;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

.ac_label { }

.ac_options {
  border-radius: var(--autocomplete-border-radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid var(--color-gray-200);
  box-sizing: border-box;
  color: var(--color-body-text);
  display: none;
  left: 0;
  top: 100%;
  max-height: var(--autocomplete-dropdown-max-height);
  overflow-y: scroll;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.ac_select_opened .ac_options {
  display: block;
}

.ac_option {
  background: var(--color-body-bg);
  box-sizing: border-box;
  line-height: 25px;
  padding: var(--autocomplete-item-padding-y) var(--autocomplete-item-padding-x);
  font-weight: 300;
}

.ac_option:hover {
  background-color: var(--autocomplete-hover-bg);
  color: var(--autocomplete-hover-text);
}

.ac_option_disabled {
  color: var(--color-gray-300);
  cursor: none;
  pointer-events: none;
}

.ac_option_selected {
  background-color: var(--autocomplete-selected-bg);
  color: var(--autocomplete-selected-text);
  cursor: initial;
  pointer-events: none;
}

.ac_option_hidden {
  display: none;
}

.ac_selected_label {
  background: var(--color-secondary);
  border-radius: 4px;
  color: var(--color-secondary-text);
  cursor: initial;
  display: inline-block;
  margin: 3px 10px 3px 0;
  padding: 3px 7px;
}

.ac_selected_label:last-of-type {
  margin-right: 0;
}

.ac_selected_label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}

.ac_selected_label i:hover {
  color: var(--color-secondary-text);
}

.ac_autocomplete {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-200);
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 100%;
}

.ac_radio { }

.ac_radio_lbl {
  padding-left:2px;
}

.ac_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0;
}

.ac_btn_item {
  cursor: pointer;
}

.ac_btn_selected {
  box-shadow: inset 0 0 0 2px currentColor;
}
/* File wdt.autocomplete.css end *//* File wdt.carousel.css begin */
div.carousel-indicators {
}

button.carousel-indicators {
  height: 5px;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 10%;
  bottom: 35%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  width: 48px;
  opacity: 0.38;
}

.carousel-next {
  right: 0;
}

.carousel-prev {
  left: 0;
}

.carousel-pause {
  top: 10px;
  right: 10px;
}
/* File wdt.carousel.css end *//* File wdt.datepicker.css begin */
:root {
  --datepicker-border-radius:    var(--border-radius-sm);
  --datepicker-cell-size:        2rem;
  --datepicker-header-bg:        var(--color-secondary);
  --datepicker-header-text:      var(--color-secondary-text);
  --datepicker-today-bg:         var(--color-primary-light);
  --datepicker-today-text:       var(--color-primary);
  --datepicker-selected-bg:      var(--color-primary);
  --datepicker-selected-text:    var(--color-primary-text);
  --datepicker-hover-bg:         var(--color-primary-light);
}

.dt {
  align-items: center;
  border-radius: var(--datepicker-border-radius);
  border: 1px solid var(--color-gray-200);
  border-right: none;
  box-sizing: border-box;
  color: var(--color-body-text);
  justify-content: left;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
}

.dt_anchor {
  display: inline-block;
  position: relative;
}

.dt_button {
  border: 1px solid var(--color-gray-200);
  margin-left: 0 !important;
  border-left: none;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.dt_form {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  max-width: 360px;
  min-width: 280px;
  z-index: var(--z-overlay);

  background-color: var(--color-body-bg);
  color: var(--color-body-text);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--datepicker-border-radius);
  box-sizing: border-box;
  padding: 1rem;
  transform: translate3d(0px, 37px, 0px);
}

input.form-control-sm + .dt_form {
  transform: translate3d(0px, 37px, 0px) !important;
}
input.form-control-lg + .dt_form {
  transform: translate3d(0px, 47px, 0px) !important;
}

.row .col:last-child .input-group input.form-control + .dt_form {
  right: 0;
  left: auto;
}

.dt_opened {
  display: block;
}

.dt_header{ }
.dt_prev { }
.dt_prev_btn { }
.dt_next { }
.dt_next_btn { }
.dt_month { }
.dt_month_h {
  font-size: 20px;
  line-height: 30px;
}

.dt_days_header {
  background-color: var(--datepicker-header-bg);
  color: var(--datepicker-header-text);
  border-radius: 0.2rem;
}

.dt_day_header h6 {
  text-align: center;
}
.dt_day_header_text { }

.dt_date {
  margin: 0;
  min-width: var(--datepicker-cell-size);
  min-height: var(--datepicker-cell-size);
  padding: 0.15rem;
  text-align: center;
}

.dt_date:hover {
  background-color: var(--datepicker-hover-bg);
  border-radius: 0.2rem;
  cursor: pointer;
}

.dt_date.day_current {
  color: var(--datepicker-today-text);
  background-color: var(--datepicker-today-bg);
}

.dt_date.day_selected {
  background-color: var(--datepicker-selected-bg);
  color: var(--datepicker-selected-text);
  border-radius: 0.2rem;
}

.dt_date.day_active {}
.dt_date.day_active:hover { }

.dt_date.day_inactive {
  color: var(--color-gray-300);
}
.dt_date.day_inactive:hover {
  color: var(--color-secondary-text);
}

.dt_number {
  margin: 0;
}

.dt_time { }
.dt_time_hour { }
.dt_time_min { }
.dt_time_sec { }
.dt_time_button { }

.input-group.tm_input .btn-group-vertical .btn {
  background-color: var(--color-gray-100);
  color: var(--color-body-text);
  border: 1px solid var(--color-gray-200);
  border-radius: 0;
}

  .input-group.tm_input .btn-group-vertical .btn:hover {
    color: var(--color-secondary-text);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary-dark);
  }
/* File wdt.datepicker.css end *//* File wdt.dragdrop.css begin */
:root {
  --dragdrop-hint-bg:      var(--color-warning-light);
  --dragdrop-hint-border:  var(--color-warning);
  --dragdrop-active-bg:    var(--color-danger-light);
  --dragdrop-handle-color: var(--color-gray-400);
}

.dd_base {
}

.dd_hint {
  background: var(--dragdrop-hint-bg);
  border-color: var(--dragdrop-hint-border);
}

.dd_active {
  background: var(--dragdrop-active-bg);
}

.dd_nodrag { }

.dd_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

  .dd_list li {
    margin: 2px;
    padding: 2px;
    border: 1px solid var(--color-gray-800);
    background: var(--color-gray-200);
    text-align: left;
  }
/* File wdt.dragdrop.css end *//* File wdt.dragdropfile.css begin */
.dropzone {
  border: 5px solid var(--color-primary);
  text-align: center;
  padding: 40px 20px;
}

.dropfileinput {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
/* File wdt.dragdropfile.css end *//* File wdt.tooltip.css begin */
:root {
  --tooltip-bg: var(--color-gray-900);
  --tooltip-text: var(--color-white);
  --tooltip-radius: var(--border-radius-sm);
  --tooltip-padding-x: var(--space-3);
  --tooltip-padding-y: var(--space-2);
  --tooltip-font-size: var(--font-size-sm);
  --tooltip-max-width: 220px;
  --tooltip-shadow: var(--shadow-md);
  --tooltip-arrow-size: 5px;
  --tooltip-transition: opacity var(--transition-fast);
  --tooltip-offset: 8px;
}

.tooltip_box {
  position: fixed;
  z-index: var(--z-tooltip);
  max-width: var(--tooltip-max-width);
  background-color: var(--tooltip-bg);
  color: var(--tooltip-text);
  border-radius: var(--tooltip-radius);
  padding: var(--tooltip-padding-y) var(--tooltip-padding-x);
  box-shadow: var(--tooltip-shadow);
  pointer-events: none;
  opacity: 0;
  transition: var(--tooltip-transition);
  white-space: normal;
  word-break: break-word;
}

  .tooltip_box.tooltip_open {
    opacity: 1;
  }

.tooltip_text {
  font-size: var(--tooltip-font-size);
  line-height: var(--line-height-base);
  display: block;
}

.tooltip_arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: var(--tooltip-arrow-size) solid transparent;
}

.tooltip_top .tooltip_arrow {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: var(--tooltip-bg);
  border-bottom: none;
}

.tooltip_bottom .tooltip_arrow {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: var(--tooltip-bg);
  border-top: none;
}

.tooltip_left .tooltip_arrow {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: var(--tooltip-bg);
  border-right: none;
}

.tooltip_right .tooltip_arrow {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: var(--tooltip-bg);
  border-left: none;
}
/* File wdt.tooltip.css end *//* File wdt.wizard.css begin */
div.wizard-indicators { }

button.wizard-indicators {
  height: 5px;
}

.wizard-prev, .wizard-next {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
/* File wdt.wizard.css end *//* File frm.btn.css begin */
:root {

  --border-radius:              var(--border-radius-base);

  --dropdown-bg:                var(--color-surface);
  --dropdown-border:            var(--color-surface-border);
  --dropdown-item-color:        var(--color-body-text);
  --dropdown-item-hover-bg:     var(--color-gray-50);
}

.xbtn-has-dropdown {
  position: relative;
  display: inline-block;
}

.xbtn-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: var(--z-fixed);
  min-width: 10rem;
  background: var(--dropdown-bg, var(--color-surface));
  border: 1px solid var(--dropdown-border, var(--color-surface-border));
  border-radius: var(--border-radius, var(--border-radius-sm));
  box-shadow: var(--shadow-sm);
  list-style: none;
  padding: .25rem 0;
  margin: 0;
}

.xbtn-has-dropdown:focus-within > .xbtn-dropdown,
.xbtn-has-dropdown:hover > .xbtn-dropdown {
  display: block;
}

.xbtn-dropdown-item {
  display: block;
  padding: .35rem 1rem;
  color: var(--dropdown-item-color, var(--color-body-text));
  text-decoration: none;
  white-space: nowrap;
}

.xbtn-dropdown-item:hover {
  background: var(--dropdown-item-hover-bg, var(--color-gray-50));
}

button.new {}

button.cancel {}

button.filter {}

button.filter_on, button.filter_off:hover, button.filter_off:active {}

button.filter_off {}

button.duplicate {}

  button.duplicate:hover, button.duplicate:active, button.duplicate:focus { }

button.pdf {}

button.history {}

button.chkoff {}

button.chkon {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
}

button.delete {}

button.print {}

button.help {}

  button.help.record {
    min-height: 36px;
  }

button.edit {}

button.save {}

button.spelling {}

  button.spelling.record {
    min-height: 36px;
  }

button.recordedit {}

button.recordview {}

button.calendar {}

button.search {}

button.searchclear {}

button.searchtoggle {}

button.prev {}

button.next {}

button.upload {}
/* File frm.btn.css end *//* File frm.css begin */
.top_gud { }

.top_search { }

.top_result { }

div.result { }

.result_header {
  margin-top: 0.5rem;
}

.result_subnav {
  display: block;
  padding: 0.25rem 0.5rem;
  margin-top: 0.5rem;
  border-radius: 0.2rem;
  width: 100%;
}

.result_pager { }

.result_output { }

.result_body { }

.headerFunc,
.headerDisplay,
.headerLoad,
.headerSearch_full,
.headerSearch_fullh,
.headerSearch_simple,
.headerSearch_date,
.headerSearch_legend,
.headerPagesize {
  display: flex;
  flex-flow: wrap;
}

@media screen and (max-width: 405px) {
  .headerDisplay, .display_btn_group {
    width: 100%;
  }

    .display_btn_group .btn-group {
      width: 20%;
    }

  .headerPagesize {
    flex-grow: 100;
  }
}

.record_img {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 576px) {
  .record_toolbar button:first-child {
    border-top-right-radius: 3.2px !important;
    border-bottom-left-radius: 0 !important;
  }

  .record_toolbar button:last-child {
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 3.2px !important;
  }
}

.rownumsel {
  text-align: center;
  width: 40px;
  border: none;
}

a.filelink {
  padding-right: 4px;
}

a.quicklink {
  padding-right: 4px;
}
/* File frm.css end *//* File frm.search.css begin */
.search { }

.searchtoggle { }

.searchclean { }

.searchclear { }

@media screen and (max-width: 418px) {
  .headerSearch_simple {
    margin-left: auto;
  }
}

@media screen and (max-width: 474px) and (min-width: 375px) {
  .headerSearch_full + .headerPagesize {
    width: 100%;
  }

  .headerSearch_full {
    margin-left: auto;
  }
}

.cal_nav_date { }

.legend-btn {
  margin: 0 5px 5px 0;
  border: 2px solid;
  background: var(--color-body-bg);
  font-weight: 600;
}

.doubleborder { }
/* File frm.search.css end *//* File frm.view.agenda.css begin */
button.agenda { }

.agenda { }

.agenda_header { }

.agenda_item {
  margin: 0.4rem 0;
}

.agenda_field {
  font-size: var(--font-size);
}

.agenda_image {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .agenda_image {
    max-height: 250px !important;
  }
}
/* File frm.view.agenda.css end *//* File frm.view.calendar.css begin */
:root {
  --calendar-today-bg:     var(--color-primary-light);
  --calendar-today-border: var(--color-primary);
  --calendar-event-bg:     var(--color-primary);
  --calendar-event-text:   var(--color-primary-text);
  --calendar-cell-min-height: 5rem;
  --calendar-header-bg:    var(--color-secondary);
  --calendar-border:        var(--color-gray-200);
}

.calendar_header {
  border-bottom: 1px solid var(--color-gray-900);
  background: var(--calendar-header-bg);
  display: flex;
  flex-direction: column;
  border-radius: 9px 9px 0 0;
}

.top_header_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  min-height: 4rem;
  padding: 1rem 1.5rem 1rem 1rem;
  border-radius: 5rem 5rem 0 0;
}

.left_header_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.right_header_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.current_range {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-secondary-text);
  margin-left: 3rem;
}

.current_city {
  color: var(--color-secondary-text);
  font-size: 1.2rem;
  font-weight: 400;
}

.cal_header_row {
  background-color: var(--color-secondary);
  border-radius: 0.2rem;
  margin: 0 !important;
}

h5.cal_header {
  font-weight: 200;
  color: var(--color-secondary-text);
  text-align: center;
}

h2.month_header {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 200;
}

.month_left {
  text-align: left !important;
}

.calendar_body {
  border: 1px solid var(--calendar-border);
}

.cal_week {
  position: relative;
  border-bottom: 1px solid var(--calendar-border);
  display: flex;
  flex: 1 1 0%;
}

.cal_week_box {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
}

  .cal_week_box:first-child {
    border-left: 1px solid var(--calendar-border);
  }

.cal_week_border {
  border-right: 1px solid var(--calendar-border);
  flex: 1 1 0%;
}

.cal_week_border:last-child {
  border-right: none;
  flex: 1 1 0%;
}

.cal_week_border_v {
  border-bottom: 1px solid var(--calendar-border);
  flex: 1 1 0%;
}

.cal_week_border_v:last-child {
  border-bottom: none;
  flex: 1 1 0%;
}

.cal_week_header {
  border-right: 1px solid var(--calendar-border);
  background: transparent;
  flex: 1 1 0%;
}

.cal_week_header button > span {
  display: none;
}

.cal_day_header {
  background: transparent;
  justify-content: space-between;
  padding: 0;
}

.cal_day_header button {
  background-color: transparent !important;
  color: var(--color-gray-600);
  border: none;
}

.cal_day_number {
  margin: 0.3rem 0;
}

.cal_week_pl_top_box {
  margin-top: 30px;
  flex: 1 1 0%;
}

.cal_week_pl_left_box {
  margin-left: 30px;
  flex: 1 1 0%;
}

.calendar > .calendar_body > .cal_week > .cal_week_pl_top_box,
.calendar > .calendar_body > .cal_week > .cal_week_pl_left_box {
  min-height: var(--calendar-cell-min-height);
}

.cal_week_pl_mid_box {
  display: flex;
  position: relative;
}

.cal_week_pl_day_box {
  flex: 1 1 0%;
  border-right: 1px solid transparent;
}

.dayViewClose {
  position: absolute;
  top: 1em;
  right: 1rem;
}

.day_inactive {
  background-color: var(--color-gray-200);
}

.day_current,
.cal_single.day_current {
  background-color: var(--calendar-today-bg);
  border: 1px solid var(--calendar-today-border);
}

.day_current {
  font-weight: var(--font-weight-bold);
}

.day_past { }

.day_active { }

.cal_item {
  position: absolute;
  box-sizing: border-box;
  list-style: none;
  overflow: hidden;
  height: 24px;
  cursor: pointer;
  background-color: var(--calendar-event-bg);
  color: var(--calendar-event-text);
}

.cal_item_card {
  transition: transform 0.2s;
}

.cal_item_card:hover {
  transform: translateY(-2px);
}

.cal_item_btn { }

.cal_item_collapse { }

.cal_item_bullet { }

.cal_lightCard { }

.cal_lightCardBody { }

.cal_btnGroup { }

.cal_btnDark { }

.cal_dark_dropdownBtn { }

.cal_collapsable { }

.view_more {
  text-align: center;
  opacity: 0.55;
  transition: transform 0.2s;
}

.view_more:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.cal_pin_field {
  font-size: 0.8rem;
  margin-left: 4px;
}

.cal_pin_field > span {
  white-space: nowrap;
  display: inline-block;
  text-overflow: ellipsis;
  width: calc(99%);
  overflow: hidden;
}

.cal_pin_item {
  width: 100% !important;
}

.cal_pinitem { }

.cal_pin_image { }

.cal_item_label {
  width: 100% !important;
}

.cal_pin_item > .row-cols-sm-auto > * {
  flex: 0 0 auto;
  width: 100% !important;
}

.cal_fields_body { }

.calendar_mini_header { }

.calendar_image { }

.calendar_mini_img { }

.btn_cal_day {
  background-color: transparent !important;
  color: var(--color-gray-600);
}

.date_number {
  font-size: 1.25rem;
}

.date_search {
  max-height: 36px;
}

.time_disp {
  font-weight: var(--font-weight-semibold);
  margin-left: 3.5px;
  text-overflow: ellipsis;
}

.small_rise {
  transition: transform 0.2s;
}

.small_rise:hover {
  transform: translateY(-2px);
}

.desaturate_hover {
  transition: filter 0.2s;
}

.desaturate_hover:hover {
  filter: saturate(50%);
}

.cal-date:hover {
  background-color: transparent !important;
  color: var(--color-gray-600);
}
/* File frm.view.calendar.css end *//* File frm.view.grid.css begin */
button.grid { }

div.grid {
  padding-left: 0;
  padding-right: 0;
  z-index: var(--z-base);
}

table.grid {
  position: relative;
}

table.grid th {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

table.grid th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: var(--z-sticky1);
}

table.grid .grid_header {
  vertical-align: middle;
}

table.grid .t_right {
  padding-right: 2rem;
}

table.grid .grid_row_header {
  padding-left: 0;
  padding-right: 0;
  background-color: var(--color-body-bg);
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: var(--z-sticky);
}

.d_th_table {
  vertical-align: middle;
  overflow: hidden;
  display: block;
  white-space: nowrap;
}

.d_th_td_text {
  font-weight: 600;
  line-height: 15px;
  white-space: nowrap;
}

.d_th_td_nav {
  vertical-align: top;
  text-align: right;
}

.sort-arrow-up, .sort-arrow-dn {
  width: 15px !important;
  line-height: 1;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

.sort-arrow-up {
  padding-bottom: 0 !important;
}

td {
  white-space: nowrap;
  margin-right: 1rem;
}

.btn-xs {
  padding: var(--btn-padding-y-sm) var(--btn-padding-x-sm);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-tight);
  border-radius: var(--border-radius-sm);
}

.grid_button {
}

.sort-arrow-dn {
  padding-top: 0 !important;
}
/* File frm.view.grid.css end *//* File frm.view.pinboard.css begin */
button.pinboard { }

.pinboard { }

.pinboarditem { }

.pinboard_field { }

.pinboard_card_text {
  font-size: var(--font-size);
}

.pinboard-btn-group {
  width: 100%;
}

  .pinboard-btn-group button {
    border-radius: 0;
  }
/* File frm.view.pinboard.css end *//* File frm.view.html.css begin */
.html { }
/* File frm.view.html.css end *//* File D:\dotnet\jdmx\css\frm.view.schmea.css not found *//* File frm.view.record.css begin */
.recordEdit_Header {
  background-color: var(--color-success);
  border-color: var(--color-success);
}

.recordView_Header {
  background-color: var(--color-secondary);
}

.result_edit {
}

.record_readonly {
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--color-gray-200);
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
  background-color: var(--color-gray-100);
  opacity: 1;
  margin-bottom: 0;
  font-size: 1rem;
}

  .record_readonly:empty {
    height: 48px;
  }
/* File frm.view.record.css end *//* File frm.view.recordpanel.css begin */

/* File frm.view.recordpanel.css end *//* File social.css begin */
.social {
  font-size: 50px;
  text-align: center;
}

.social a i {
  padding: 2px;
}

i.fa-facebook-f, i.fa-facebook {
  color: #3b5998;
}

i.fa-twitter-square, i.fa-twitter {
  color: #00aced;
}

i.fa-instagram {
  color: #d92c74;
}

i.fa-pinterest, i.fa-pinterest-p {
  color: #cb2027;
}

i.fa-google-plus-square {
  color: #dd4b39;
}

i.fa-snapchat {
  color: #fffc00;
}

i.fa-yelp {
  color: #d32323;
}

i.fa-tripadvisor {
  color: #00af87;
}

i.fa-google {
  color: #4285f4;
}

i.fa-linkedin {
  color: #007bb5;
}

i.fa-youtube {
  color: #ff0000;
}

i.fa-github {
  color: black;
}

.email-bar {
  margin-bottom: 20px;
  background-color: #ffffff;
}

#email-container {
  border: 1px solid black;
}

.side-links a {
  display: block;
  text-align: center;
  padding: 7px 10px;
  transition: all 0.3s ease;
  font-size: 18px;
  border-bottom: 1px solid white;
  background-color: rgba(240, 240, 240, 0.6);
  margin-left: 22px;
}
.side-links a:first-child {
  border-top-left-radius: 0.25rem;
}
.side-links a:last-child {
  border-bottom-left-radius: 0.25rem;
}
.side-links a:hover {
  cursor: pointer;
  background-color: #dcdcdc;
}

#icon-bar {
  width: 60px;
  z-index: 20;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  margin-top: 100px;
}
/* File social.css end */