/* 
 * CSS Document 
  header('Content-type: text/css');
  transition: max-height 0.3s, padding 0.3s;
  transition: all .35s;
 * https://jqueryui.com/demos/
 * https://www.w3schools.com/cssref/css_selectors.php
 * https://www.w3schools.com/cssref/tryit.php?filename=trycss_cursor
 * https://www.w3.org/WAI/standards-guidelines/aria/
 */
html, body {
}
/* 
 * **************
 * SIZE VARIABLES 
 */
:root {
  /* var(--switchWidth) */
  --boxMargin: 0.5em;

  --ui-scale: 1.1;

  --ui-font-size: calc( 0.9rem * var( --ui-scale ) );
  --ui-icon-size: calc( 1.25rem * var( --ui-scale ) );
  --ui-gap: calc( 0.5rem * var( --ui-scale ) );
  --ui-pad-y: calc( 0.45rem * var( --ui-scale ) );
  --ui-pad-x: calc( 0.85rem * var( --ui-scale ) );

  --ui-radius: 999px;
  --ui-lift: calc( 1px * var( --ui-scale ) );
  --ui-shadow: 0 4px 10px var( --black010 , rgba( 0,0,0,0.08 ) );
}

.fontThemeColor {
	color: var( --themeDark , #333333 );
}

 
/* 
 * ***********************
 * LAYOUT ELEMENTS COLOURS
 color = text;
 */
body {
  color: var(--black);
  background-color: var(--themeLight);
  border-color: var(--themeLight);
  }
header {
  color: var(--black);
  background-color: var(--white);
  }
left-side {
  color: var(--black);
  background-color: var(--side);
  }
right-side {
  color: var(--black);
  background-color: var(--side);
  }
article {
  color: var(--black);
  background-color: var(--article);
  }
footer {
  /*color: var(--black);*/
  /*background-color: var(--themeLight);*/
  }
.alignLeft {
	text-align: left;
}
.alignRight {
	text-align: right;
}
.floatRight {
  padding: 0.25em;
}
.glyphicon.hidden {
	display: none;
}
.on ,
.fiterSelected {
  text-shadow: 
  	0em 0em 0.2em var(--white) ,
	0em 0em 0.4em var(--white) ,
	0em 0em 0.6em var(--themeColour) ,
	0em 0em 0.8em var(--themeColour) ;
  color: var(--selected);
  }
.filterFound , 
.filterFound.p_S:not(.th) , 
.filterFound.position_Sticky:not(.th) , 
.filterFound.sticky:not(.th) {
  -webkit-box-shadow: 
  	0 0em 0.3em 0.05em var(--black040) inset, 
	0 0em 0.6em 0.1em var(--black030) inset;
  filter: drop-shadow( 
  	0 0em 0.3em 0.05em var(--black040) inset, 
	0 0em 0.6em 0.1em var(--black030) inset;
	);
  box-shadow: 
  	0 0em 0.3em 0.05em var(--black040) inset, 
	0 0em 0.6em 0.1em var(--black030) inset;
  background-color: var(--selected);
  }
/* 
 * CHILDREN ELEMENT COLOURS
 */

button {
    color: var(--black); /* #333303; */
/*    background-color: var(--selected);*/
  }
button:hover
, button:current {
/*    box-shadow: 0 0.8em 1em 0 rgb(0 0 0 / 24%), 0 0.9em 2em 0 rgb(0 0 0 / 19%); */
    box-shadow: 0 0.8em 1em 0 var(--black040), 0 0.9em 2em 0 var(--black020);
  }

branding {
  color: var(--black);
  background-color: var(--themeLight);
  }

nav a
, nav .glyphicon 
, nav .fas{
  color: var(--textWhite);
  }
nav {
  background-color: var(--themeColour);
  background: var(--themeColour);
  background: -moz-linear-gradient(var(--themeColour), var(--themeDarker));
  background: -o-linear-gradient(var(--themeColour), var(--themeDarker));
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(var(--themeColour)), to(var(--themeDarker)));
  background: -webkit-linear-gradient(var(--themeColour), var(--themeDarker));
  }
nav li.current,
nav li:hover {
  background-color:var(--themeDarker);
  background: var(--themeDarker);
  background: -moz-linear-gradient(var(--themeDarker), var(--themeColour));
  background: -o-linear-gradient(var(--themeDarker), var(--themeColour));
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(var(--themeDarker)), to(var(--themeColour)));
  background: -webkit-linear-gradient(var(--themeDarker), var(--themeColour));
  }
.gHead nav {
    display: flex;
    align-items: center;
    overflow: hidden; /* important */
    min-height: 3.3em;
}
.gHead nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    margin: 0;
    padding: 0;

    /* take all space except user icon */
    flex: 1 1 auto;
}
.gHead nav ul {
    scrollbar-width: none;          /* Firefox */
}
.gHead nav ul::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
}

.gHead nav li {
    float: none;            /* important */
    display: inline-flex;
    align-items: center;
    padding: 0 0.5em;
    flex: 0 0 auto;          /* prevent shrinking */
}
nav #showUser {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0 0.75em;
    cursor: pointer;
}
.button {
  color: var(--black); /* #333303; */
  background-color: var(--selectedLight);
  }
.current {
  box-shadow: 0 0.8em 1em 0 var(--black040), 0 0.9em 2em 0 var(--black020);
  background-color: var(--selected);
  }
.button:hover {
  box-shadow: 0 0.8em 1em 0 var(--black040), 0 0.9em 2em 0 var(--black020);
  background-color: var(--selectedHover);
  }



.error-notice, #failure {
  color: var(--white);
  background-color: var(--error);
  }
.warning-notice {
  color: var(--white);
  background-color: var(--warning);
  }
.success-notice {
  color: var(--white);
  background-color: var(--success);
  }
.info-notice {
  color: var(--white);
  background-color: var(--info);
  }

#login-container, .small-size #security-container {
  border-color: #bebebe;
  background-color: #fff;
  }

#login-container .input-field-login.icon input.std_textbox, #login-container .input-field-login.no-icon input.std_textbox {
  border-color: #FFF;
  }
#login-container input.std_textbox {
  border-lolor: #bebebe;
  background-color: #fff;
  color: #000;
  }
#login-container .login-btn button, #login-container .login-btn input, #login-container .login-btn .loginbtn , .btn button,
#login-container .external-auth-btn .external-auth-link, #login-container .clickthrough-cont-btn {
  background-color: #179bd7;
  }
#login-container .login-btn button:hover, #login-container .login-btn input:hover, #login-container .login-btn .loginbtn:hover
, #login-container .external-auth-btn .external-auth-link:hover {
  background-color: #095779;
  color: #FFF;
  }
#login-container button, #login-container button:active, #login-container input[type=submit], #login-container input[type=submit]:active,
 #login-container input[type=button], #login-container input[type=button]:active, #login-container .login-btn a.loginbtn {
  border-color: #095779;
  color: #fff;
  }
#login-container .reset-pass-btn button {
  background-color: #d35351;
  color: #FFF;
  }
#login-container .reset-pass-btn button:hover {
  background-color: #9E3E3D;
  color: #FFF;
  }

#login-container .resend-otc-btn button {
  background-color: #009933;
  color: #FFF;
  }
#login-container .resend-otc-btn button:hover {
  background-color: #00541c;
  color: #FFF;
  }

#login-container .input-req-login {
  color: #293a4a;
  }
/* -------*/
/*  modal */
.modal-overlay {
  background-color: #000000;
  }
.main-modal .close-icon {
  color: #333;
  }
/**/
/*
* { /* this '*' applies to all elements based on the cascading rule*/
/*
	color: var(--color);
	background-color: var(--background-color);
	}
/* elements */
body {
  clear: both !important;
  display: block;
  font: 100% "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.25em;
}
header{
  display: block;
}
branding {
  display: block;
  min-height: 2.75em;
  padding: 0.25em;
}
nav{
  overflow: auto;
  display: block;
  min-height: 3.3em;
}
nav .glyphicon , nav .fas{
  float: left;
  position: relative;
  font-size: 1.7em;
  line-height: 1.9em;
  padding: 0em 0.5em;
}

nav a {
  display: block;
  line-height: 3.3em;
  padding: 0em 0.5em;
  text-decoration: none;
}
nav .current > a {
  font-weight: bold;
}
nav ul {
  font-size: 1em;
  list-style: none;
  margin: 0em;
  padding-left: 0;
}
nav li {
  float: left;
  position: relative;
  padding: 0 0.5em;
}
navSpacer {
  display: none;
}

left-side {
  overflow:auto;
  padding: 0.75em;
}
right-side {
  overflow:auto;
  padding: 0.75em;
}
article {
  overflow: auto;
  padding: 0.75em;
}
footer {
  padding: 0.25em;
}
p {
  font-size: 1em;
  margin: 0;
  min-height: 1.4em;
  margin-top: 0.3em;
  margin-bottom: 0.5em;
}
p span {
  margin-left: 0.3em;
  margin-right: 0.3em;
}
select, input {
  font-size: 1em;
}
textarea , 
input[type="time" i] , 
input[type="date" i] , 
input[type="datetime-local" i] {
  font-size: 1.05em;
}

input[type="number" i] {
  width: 5em;
}
input:hover , input:focus , 
select:hover , select:focus , 
textarea:hover , textarea:focus  {
  background-color: var(--selectedLighter);
  accent-color: var(--selectedLighter) ;
  box-shadow: 0 0.4em 0.5em 0 var(--black040), 0 0.4em 1em 0 var(--black030);
/*  border-width: 0.10em ; */
  }
button[disabled]:hover , button[disabled]:focus  {
  cursor: not-allowed ;
  }
button:not([disabled]):hover , button:not([disabled]):focus , 
input:hover , input:focus , 
select:hover , select:focus {
  cursor: pointer ;
  }
input:not([type="checkbox" i]):hover , input:not([type="checkbox" i]):focus ,
textarea:hover , textarea:focus  {
  cursor: text ;
  }
select:focus option:checked , select:focus option:active {
  background-color: var(--selectedHover) ;
  accent-color: var(--selectedHover) ;
  cursor: pointer ;
  }
input:not([value])[class="required"] , select:not([value])[class="required"] {
  background-color: var(--errorLighter);
  }
.changed {
  background-color: var(--selectedLighter);
  accent-color: var(--selectedLighter) ;
  box-shadow: 0 0 0.5em 0 var(--warningLight), 0 0 0.1em 0 var(--warning);
 }
.invalid ,
.invalid .ts-control ,
input:invalid , select:invalid {
  /*background-color: var(--errorLighter);*/
  }
abbr{
  cursor: help ;
}
/*
.required {
  position: relative;
  cursor: help;
}

.required::after {
  content: attr(data-title);
  position: absolute;
  bottom: 100%; 
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.25em;
  
  background: black;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.required:hover::after {
  opacity: 1;
}
*/
option {
  font-weight: normal;
  display: block;
  white-space: nowrap;
  min-height: 1.4em;
  padding: 0em 0.1875em 0.125em;
/*  margin-bottom: 0.3em;
  margin-right: 0.3em; */
  }


/* IDs */
#time {
  text-align: right;
  float: right;
}
#branding-buttom {
  margin-top: -0.7em;
  float: right;
}
#nav-buttom {
  margin-top: -0.7em;
}
#footer-buttom {
  margin-top: -0.7em;
  float: right;
}
#site-generator {
  font-size: 0.8em;
  line-height: 1.2em;
  /*padding: 1.2em 0.5em;*/
  text-align: center;
}
#site-generator a {
  font-weight: bold;
}
.site-info a {
  text-decoration: none;
  line-height: 2.1em;
  padding: 0 1.8em 0 0;
  display:inline-block;
  background-image:url('./img/cw-icon.png');
  background-size:1.5em;
  background-position: right center;
  background-repeat:no-repeat;
}
/* classes */
.clear {clear:both !important;}
/*upsidedown*/
.upsidedown {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg); 
}
.underline{	text-decoration:underline;}
.popup {
  cursor: pointer ;
  }
.slider-buttom {
  margin-bottom: -2em;
  margin-top: -1.3em;
  z-index: 5;
  position: relative;
  font-size: 0.7em;
}
.overflow-auto {	overflow: auto;}
.ui-widget {	font-size: 1em;}
.closed{
  display: none;
  flex-grow: 0;
}
.hidden{ 
	display: none;
	transition: max-height 0.3s, padding 0.3s;
}
.block{		display: block;}
.fixed{
  position: fixed;
  display: block;
  margin: 0em;
  z-index: 100;
  max-width: inherit;
  opacity: 1;
}

/* flex */
section {
  display: -webkit-flex;
  display: flex;
}
side {
  -webkit-flex: 30;
  -ms-flex: 30;
  flex: 30;
  transition: flex-grow 1000ms linear;
}
article {
  -webkit-flex: 70;
  -ms-flex: 70;
  flex: 70;
  transition: flex-grow 1000ms linear;
}
.button {
    padding: 0.4em 0.5em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 0em;
    cursor: pointer;
}
.add-btn, .remove-btn {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px var( --black030 , rgba( 0,0,0,0.25 ) );
    transition: background 0.2s, transform 0.1s;
    font-size: 1em; /* keep base size */
    color: var(--white);
	position: relative;
    top: -1.0em;
    left: -1.0em;
    z-index: 140;
}
.add-btn {
    background: var(--successLight);
}
.remove-btn {
    background: var(--errorLight);
}
.add-btn:hover {
    background: var(--success);
}
.remove-btn:hover {
    background: var(--error);
}

.add-btn::before {
    content: "+";  /* Add plus sign */
    font-size: 1.5em;
}

.remove-btn::before {
    content: "-";  /* Add minus sign */
    font-size: 1.5em;
}

.add-btn .plus, .remove-btn .plus {
    display: none; /* Hide any existing text if used */
}

.add-btn:active 
remove-btn:active {
    transform: scale(0.95);
}

.ui-state-highlight { height: 1.5em; line-height: 1.2em; }
#sortable div ,
#sortable1 div ,
#sortable2 div ,
#sortable3 div ,
#sortable4 div{ 
  min-height: 2.0em; 
  line-height: 1.2em; 
}
.ui-sortable-handle {
  -ms-touch-action: none;
  width: max-content;
}
.ui-sortable > div { /*,.ui-sortable > div > label*/
  cursor: grab ;
}

/*
button {
    font-size: 0.875em;
    font-family: 'Open Sans',sans-serif;
    font-weight: 600;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-align: center;
    text-decoration: none;
}



/****************/
/* -------------*/
/* Cpanel Login */

#notify {
    width: 28em;
    margin: 1em auto;
	z-index: 20000;
	position: sticky;
}
#login-status.error-notice, #login-status.answers-notice, #login-status.warn-notice,#login-status.warning-notice, #login-status.info-notice, #login-status.success-notice {
    padding: 0;
}
#login-status {
    display: table;
    width: 100%;
}
.error-notice, .answers-notice, .warn-notice, .info-notice, .success-notice, .warning-notice, #failure {
    -khtml-border-radius: 0.3125em;
    border-radius: 0.3125em;
    font-size: 0.9em;
    min-height: 1.6875em;
    padding: 0.3125em 0.626em 0.3125em 0.3125em;
}
#login-detail, .message-detail {
    display: table-row;
    height: 2.5em;
}
#login-status-icon-container, #login-status-message, .login-status-message {
    display: table-cell;
    vertical-align: middle;
}
#login-status-icon-container {
    padding-left: 0.3125em;
    padding-right: 0.3125em;
    width: 1.6875em;
}
#login-status.error-notice .login-status-icon,
#login-status.warning-notice .login-status-icon {
    background-image: url(./img/notice-error.png);
}
#login-status .login-status-icon {
    display: block;
    width: 1.6875em;
    height: 1.6875em;
}
#login-status-message, .login-status-message {
    padding: 0.3125em;
}
#login-status-icon-container, #login-status-message, .login-status-message {
    display: table-cell;
    vertical-align: middle;
}
.main-content {
    /*width: 36em;*/
	margin: auto;
	z-index: 260;
    position: relative;
}
#login-container, .small-size #security-container {
    margin: 0 auto;
    position: relative;
    width: 34em;
    -khtml-border-radius: 0.25em;
    border-radius: 0.25em;
	border-width: 0.125em;
	border-style: solid;
 	z-index: 1000;
	opacity: 1;
}

#closeUser {
  float: right;
}

#login-sub-header {
  height: 6em;
  width: 100%;
  padding: 0.626em 1em 0;
  text-align: center;

  overflow: hidden; /* hide any overflow */
  position: relative;
}
#login-sub-header img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;  <-- keeps aspect ratio, fills parent */
  object-fit: contain; /* <-- keeps aspect ratio, reduces */
  object-position: center; /* optional, centers the image */
}
#login-sub, #security-sub {
    padding: 2em;
    height: auto;
}
#login-container .glyphicon, #notify .glyphicon,
#login-container .fas, #notify .fas{
	font-size:1.6em;
	padding: 0.2em 0.5em;
}
#login_form {
/*    position: absolute; */
    left: 0;
    top: 6.25em;
}

#login-container label, .input-req-login label {
    font-family: 'Open Sans',sans-serif;
    font-size: 1.2em;
    font-weight: 600;
	margin: 0.3em;
}
#login-container .input-field-login.icon {
    background-position: 0.375em 0.375em;
}
#login-container .input-field-login.icon, #login-container .input-field-login.no-icon {
    display: block;
    height: 2.6em;
    -khtml-border-radius: 0.25em;
    border-radius: 0.25em;
    border: 0.1875em solid;
    background-repeat: no-repeat;
	margin: 0.3em 0.3em 1.5em 0.3em;
}
/*
div.username-container, div.reset-pass-container {
    background-image: url(./img/icon-username.png);
}
div.password-container {
    background-image: url(./img/icon-password.png);
}
*/
#login-container .btn {
    font-size: 1.5em;
    font-weight: 600;
    padding: 1.0em 0em 0.0em ; 
    border-radius: 0.25em;
    -khtml-border-radius: 0.25em;
    width: 100%;
}
#login-container .input-req-login {
    font-size: 0.75em;
    font-weight: bold;
    padding-bottom: 0.5em;
    padding-left: 0.25em;
    width: 100%;
}
#login-container .register-btn button{
	background-color: #009933;
}
#login-container .input-field-login.icon input.std_textbox, #login-container .input-field-login.no-icon input.std_textbox {
    padding: 0em 0.5em; 
    border-radius: 0.25em;
    -khtml-border-radius: 0.25em;
}
div.icon input.std_textbox, div.no-icon input.std_textbox {
    width: 70%;
    background: transparent;
    border: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
}
#login-container input.std_textbox {
    height: 1.3125em;
    -khtml-border-radius: 0.25em;
    border-radius: 0.25em;
    border: 0.1875em solid;
    font-family: 'Open Sans',sans-serif;
    font-size: 1.1em;
}
div.controls {
    display: inline-block;
}
.controls {
    width: 17.8125em;
}
/*
#login-container .login-btn, #login-container .reset-pass-btn, #login-container .resend-otc-btn, #login-container .external-auth-btn, #login-container .clickthrough-cont-btn {
    padding-top: 1em;
    width: 100%;
    font-size: 1.5em;
    font-weight: 600;
}
*/

#login-container .login-btn button, #login-container .login-btn input, #login-container .login-btn .loginbtn , .btn button,
  #login-container .external-auth-btn .external-auth-link, #login-container .clickthrough-cont-btn {
    width: 100%;
    font-size: 0.8125em;
    font-family: 'Open Sans',sans-serif;
    font-weight: 600;
    padding-top: 0.4375em;
    padding-bottom: 0.4375em;
    text-align: center;
    text-decoration: none;
}
#login-container .login-btn button:hover, #login-container .login-btn input:hover, #login-container .login-btn .loginbtn:hover, #login-container .external-auth-btn .external-auth-link:hover {
    text-decoration: none;
}
#login-container button, #login-container button:active, #login-container input[type=submit], #login-container input[type=submit]:active,
 #login-container input[type=button], #login-container input[type=button]:active, #login-container .login-btn a.loginbtn {
    border: 0.125em solid;
    -khtml-border-radius: 0.25em;
    border-radius: 0.25em;
    cursor: pointer;
}
#login-container .reset-pass-btn button ,#login-container .resend-otc-btn button {
    text-decoration: none;
}
#login-container .reset-pass-btn button:hover , #login-container .resend-otc-btn button:hover{
    text-decoration: none;
}

/* -------*/
/*  modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0.7;
  -ms-filter: "alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: .7;
  -khtml-opacity: .7;
}
.main-modal {
/*  display: none; */
  position: fixed;
  top: 0.9em;
  left: 0.9em;
  right: 0.9em;
  bottom: 1.7em;
  z-index: 10000;
  overflow: hidden;
}
.main-modal .close-icon {
  position: absolute;
  top: 0.7em;
  right: 0.7em;
  font-size: 2em;
  cursor: pointer;
  z-index: 160001;
  line-height: 0.5em;
  padding: 0.5em;
  margin: -0.25em;
}
.main-modal .main-menu {
  top: 0;
  right: 0;
  left: 0;
  height: 1em;
}
.main-modal .main-menu h1 {
  padding: 0.5em 1em;
  margin: 0.2em 1.5em;
  font-size: 1.4em;
  line-height: 1.8em;
}
/*******/
/*align*/
.a-left { text-align: left;}
.a-center { text-align: center;}
.a-right { text-align: right;}

/*float*/
.float-left { float: left;}
.float-right { float: right;}

/*width*/
.full { width: 99%;}
.sixty { width: 66%; }
.fifty { width: 49%; }
.thirty { width: 33%; }
.auto { width: auto ; }
.box_footer .thirty { width: 23%; margin: 0.125em 5% ;  }
.cell .thirty { width: 90%; }
.sixty.box { width: calc(66% - 4*var(--boxMargin) );}
.sixty.cell { width: calc(66% - 2*var(--boxMargin) );}
.fifty.box { width: calc(50% - 4*var(--boxMargin) );}
.fifty.cell { width: calc(50% - 2*var(--boxMargin) );}
.thirty.box { width: calc(33% - 4*var(--boxMargin) );}
.thirty.cell { width: calc(33% - 2*var(--boxMargin) );}

.thirty { width: 33%;}

/*border*/
.dotted {	border-style: dotted;}
.dashed {	border-style: dashed;}
.solid {	border-style: solid;}
.double {	border-style: double;}
.groove {	border-style: groove;}
.ridge {	border-style: ridge;}
.inset {	border-style: inset;}
.outset {	border-style: outset;}
.none {		border-style: none;}
.hidden {	border-style: hidden;}
.mix {		border-style: dotted dashed solid double;}
.b-w01 {	border-width: 0.1em;}
.b-w02 {	border-width: 0.2em;}
.b-w03 {	border-width: 0.3em;}

/*font*/
.font-16 {	font-size: 1.6em; line-height: 2.0em;}
.font-14 {	font-size: 1.4em; line-height: 1.8em;}
.font-12 {	font-size: 1.2em; line-height: 1.6em;}
.font-10 {	font-size: 1.0em; line-height: 1.4em;}
.font-09 {	font-size: 0.9em; line-height: 1.3em;}
.font-08 {	font-size: 0.8em; line-height: 1.2em;}
.font-07 {	font-size: 0.7em; line-height: 1.1em;}
.bold { font-weight: bold; }

/* box-shadow: none|h-offset v-offset blur spread color |inset|initial|inherit; 
0em 0em 0.3em 0.3em var(--selected) ,
0em 0em 0.3em 0.3em var(--selected) inset;
*/
span.glyphicon:hover {
	cursor: pointer;
	box-shadow: 
	  0 0em 0.1em 0 var(--black030) ,
	  0 0em 0.4em 0 var(--black010) ,
	  0 0em 0.2em 0 var(--white) inset ,
	  0 0em 0.4em 0 var(--black020)inset ;
  }
li span.glyphicon:hover {
	box-shadow: unset;
  }
.sorted {
	box-shadow: 
	  0 0em 0.2em 0 var(--black040) ,
	  0 0em 0.4em 0 var(--black020) ,
	  0 0em 0.2em 0 var(--white) inset ,
	  0 0em 0.4em 0 var(--black020)inset ;
  }

.save {
  color: var(--white);
  background-color: var(--success);
  padding: 0.5em;
   border-radius: 12%;          /* rounded square */
  }
.reset {
  color: var(--white);
  background-color: var(--buttonDark);
  padding: 0.5em;
   border-radius: 12%;          /* rounded square */
  }
.delete {
  color: var(--white);
  background-color: var(--errorLight);
  padding: 0.5em;
   border-radius: 12%;          /* rounded square */
  }
input[type=checkbox].pending ,
input[type=radio].pending ,
.pending {
border: none;                /* remove all borders */
  border-bottom: 0.3em solid var(--warning); /* yellow bottom border, adjust thickness */
  padding: 4px 6px;            /* some spacing inside */
  outline: none;               /* remove default blue outline on focus */
}

.jsFSize span {
  font-weight: 200;
  line-height: 1.2em
  }
.jsFSizeDown {
  font-size: 0.9375em;
  }
.jsFSizeUp {
  font-size: 1.0625em;
  }

.deleteConfirm{
	z-index: 9999;
}

/* =========================================
   TOOL TIP
   ========================================= */
/* Tooltip wrapper */
.toolTip {
  position: absolute;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY( 0.125em ) translatex( -1.25em );
  transition: opacity 0.15s ease;
  opacity: 0.3;
  z-index: 150;
  line-height: 1.5em;
}
/* Tooltip marks */
.toolTip::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.toolTip.pass::before {
  content: "\f00c";
  color: var( --success );
}
.toolTip.fail::before {
  content: "!"; /* compress icon */
  color: var( --error );
}
/* Tooltip bubble */
div .toolTip::after {
  content: attr( data-tooltip );
  margin-left: 0.75em;

  background: var( --black080 , rgba( 0,0,0,0.85 ) );
  color: #fff;
  padding: 0.35em 0.6em;
  border-radius: 0.4em;
  font-size: 1.0em;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
/* Show tooltip when INPUT is hovered or focused */
div input:hover + .toolTip ,
div input:hover + .toolTip::after ,
div input:focus + .toolTip::after {
  opacity: 0.8;
}
/* =========================================
   TOOL TIP
   ========================================= */
.logoImg {
  height: 100%;
  text-align: center;

  overflow: hidden; /* hide any overflow */
  position: relative;
}
.logoImg img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;  <-- keeps aspect ratio, fills parent */
  object-fit: scale-down; /* <-- keeps aspect ratio, reduces */
  object-position: center; /* optional, centers the image */
}

/* ==========================================================
   BUBBLES , whatsApp , instagram , facebook , .addressBubble
   ========================================================== */
.noBackground:hover ,
.noBackground {
	background: none;
	box-shadow: none;
}
.noBorder:hover ,
.noBorder {
	border: none;
	box-shadow: none;
}
button.socialBubble,
.socialBubble,
.whatsAppBubble,
.instagramBubble,
.facebookBubble,
.addressBubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var( --ui-gap );

  padding: var( --ui-pad-y ) var( --ui-pad-x );
  border-radius: var( --ui-radius );

  color: var( --socialColour , currentColor );
  font-size: var( --ui-font-size );
  font-weight: 500;
  line-height: 1.4;

  text-decoration: none;
  vertical-align: middle;

  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.socialBubble:hover ,
.instagramBubble:hover ,
.facebookBubble:hover ,
.addressBubble:hover ,
.whatsAppBubble:hover {
  background-color: var(
    --backgroundOverride ,
    color-mix( in srgb , currentColor 18% , transparent )
  );
  transform: translateY( calc( -1 * var( --ui-lift ) ) );
  box-shadow: var( --ui-shadow );
}
/* svg , icons */
.socialBubble img,
.socialBubble svg ,
.instagramBubble svg ,
.facebookBubble svg ,
.addressBubble svg ,
.whatsAppBubble::before {
  width: var( --ui-icon-size );
  height: var( --ui-icon-size );
  fill: currentColor;
  flex-shrink: 0;

  transition: transform 0.25s ease;
}
.socialBubble:hover img,
.socialBubble:hover svg ,
.instagramBubble:hover svg ,
.facebookBubble:hover svg ,
.addressBubble:hover svg {
  transform: scale( 1.1 ) rotate( -15deg );
}
.whatsAppBubble:hover::before {
  transform: translateY( -50% ) scale( 1.1 ) rotate( -15deg );
}
/* instagram */
.instagramBubble {
  --socialColour: #e1306c;
}
/* facebook */
.facebookBubble {
  --socialColour: #1877f2;
}
/* address */
.addressBubble {
  --socialColour: var( --themeColour );
}
/* whatsApp*/
.whatsAppBubble {
  --socialColour: #25D366;
  /* Add left padding to make room for the icon */
  padding-left: calc( var( --ui-icon-size ) + var( --ui-pad-x ) * 1.5 );
}
.whatsAppBubble::before {
  content: "";
  position: absolute;

  /* Align icon left inside the bubble */
  left: var( --ui-pad-x );  
  top: 50%;
  transform: translateY( -50% );

  background: url("./img/whatsApp-logo-green.png") no-repeat center / contain;
}

/* responsiveness*/
@media ( max-width: 600px ) {
  :root {
    --ui-scale: 0.80;
  }
  .socialBubble, .instagramBubble, .facebookBubble, .addressBubble {
	padding: calc( var( --ui-pad-y ) / 2 ) var(--ui-pad-x);
  }
  .whatsAppBubble {
	padding-left: calc( var( --ui-icon-size ) + var( --ui-pad-x ) * 1.5 );
  }
  .gFoot.rights ,
  .gFoot.social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center; 
	
	gap: 0;
	padding: 0.125em;
	font-size: 0.7em;
	max-height: 2.75em !important;
  }
  .gFoot.rights {
/*	font-size: 0.7em; */
/*	max-height: 2.75em !important; */
  }
  .gHead.menu  {
	font-size: 0.7em; 
	max-height: 3.75em !important; 
  }
  .gBody {
	font-size: 0.85em; 
  }
  footer {
  }

  /* flex */
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .main-modal .main-menu {
	height: 0em;
  }
  #login-container, .small-size #security-container {
	width: 20.625em;
  }
  nav a .text {
	display: none;
	}
  .timeWrapper {
	font-size: 0.7rem;
  }
}
