:root {  
  --headline-font: 'Open Sans', sans-serif;
  --content-font: 'Open Sans', sans-serif;
  
  --line-height: 1.3;
  --font-size-default: 18px;
  --font-size-p: 18px;
  --font-size-h1: 38px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  
  --primary: #0d6efd;
  --secondary: #6c757d;
  --success: #198754;
  --success-light: #32d8a6;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #0dcaf0;
  --light: #f8f9fa;
  --dark: #212529;
  
  --blue: #6c9ad7;
  --blue-accent: #318aff;
  --blue-dark: #293e5b; /*2f63aa*/
  --blue-darker: #254e85;
  --blue-darkest: #1c3962;
  --blue-light: #aabfd4; /*c0d0f0*/
  --blue-lighter: #d6e6f6;
  --blue-lightest: #e4edff;
  --red: #f00;
  --red-light: #ffbfbf;
  --yellow: #ffc411;
  --yellow-light: #f0e2b7;
  --yellow-lighter: #fff5d7;
  --yellow-lightest: #fff9e6;
  --yellow-dark: #ae8200;
  --info-light: #9eeafa;
  --gray: #e4e4e4;
  --green: #72c932;
  --green-high: #6fff01;
  --green-light: #c1e8a3;
  --green-dark: #549425;
  --text-light: #d8d8d8;
  --text-yellow-dark: #ae8200;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html
{
	font-family: var(--content-font);
	font-weight: 400;
	font-size: var(--font-size-default);
	scroll-behavior: smooth;
	/* width: 100vw; */
	min-width: 380px;
	height: 100vh;
}
body {
	color: #000;
	line-height: var(--line-height);
	background: #fff;
	height: 100vh;
}

h1,h2,h3,h4,h5,h6 { margin: 0; padding: 0; }
p,a,ul,li { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,.headline-font,.h1,.h2,.h3,.h4 { font-family: var(--headline-font), sans-serif; font-weight: 600; }
p,a,ul,li,.content-font { font-family: var(--content-font), sans-serif; font-size: var(--font-size-p); line-height: var(--line-height); }
ul { padding-left: 10px; }
p { margin-bottom: 15px; }
h1, .h1 { font-size: var(--font-size-h1); line-height: var(--line-height); }
h2, .h2 { font-size: var(--font-size-h2); line-height: var(--line-height); }
h3, .h3 { font-size: var(--font-size-h3); line-height: var(--line-height); }
h4, .h4 { font-size: var(--font-size-h4); line-height: var(--line-height); }
.h1 { font-size: var(--font-size-h1) !important; }
.h2 { font-size: var(--font-size-h2) !important; }
.h3 { font-size: var(--font-size-h3) !important; }
.h4 { font-size: var(--font-size-h4) !important; }
a { text-decoration:none;}
a:hover { text-decoration: underline;}
button:hover, .btn:hover, .nav-link:hover {  text-decoration:none; }
button:focus { box-shadow: none !important; outline: none !important; }

.btn { padding: 0.25rem 1rem;}
.btn-dark { background: var(--dark);}
.btn-dark:hover { background: #000; }
.btn-green { background: var(--green); color:#fff; border-color: var(--green-dark); }
.btn-green:hover { background: var(--green-dark); color:#fff; }
.btn-blue { background: var(--blue); color:#fff; border-color: var(--blue-dark);}
.btn-blue:hover { background: var(--blue-accent); color:#fff; border-color: var(--blue-dark); }
.btn-blue-light { background: #b4d4ff; border-color: var(--blue-dark);}
.btn-blue-light:hover { background: #7c9dca; border-color: var(--blue-dark); }
.bg-blue-dark .btn-blue:hover { background: var(--blue-accent); color:#fff; border-color: var(--blue-accent); }
.btn-blue-dark { background: var(--blue-dark); color:#fff; border-color: var(--blue-darker);}
.btn-blue-dark:hover { background: var(--blue-darker); color:#fff; border-color: var(--blue-darker); }
.btn-blue-dark:disabled { background: #718196 !important; color:#fff; border-color: #718196 !important; }
.btn-clear { background: transparent; color:#000; border: none; }
.btn-clear:hover { background: rgba(0,0,0, 0.15); color:#000; text-decoration:underline; }
.btn.btn-xs {
	padding: 3px 7px;
	line-height: 1.2;
	font-size: 14px;
}

.bg-black { background: #000; }
.bg-black-5 { background: rgba(0,0,0, 0.05) !important;}
.bg-black-10 { background: rgba(0,0,0, 0.1) !important;}
.bg-black-20 { background: rgba(0,0,0, 0.2) !important;}
.bg-black-30 { background: rgba(0,0,0, 0.3) !important;}
.bg-black-40 { background: rgba(0,0,0, 0.4) !important;}
.bg-black-50 { background: rgba(0,0,0, 0.5) !important;}
.bg-black-70 { background: rgba(0,0,0, 0.7) !important;}
.bg-black-80 { background: rgba(0,0,0, 0.8) !important;}
.bg-black-90 { background: rgba(0,0,0, 0.9) !important;}

.bg-white { background: #fff; }
.bg-white-5 { background: rgba(255,255,255,0.05) !important; }
.bg-white-10 { background: rgba(255,255,255,0.1) !important; }
.bg-white-20 { background: rgba(255,255,255,0.2) !important; }
.bg-white-30 { background: rgba(255,255,255,0.3) !important; }
.bg-white-50 { background: rgba(255,255,255,0.5) !important; }

.bg-light { background: #eee !important;}
.bg-info-light { background: var(--info-light) !important;}
.bg-blue-light { background: var(--blue-light) !important;}
.bg-blue-light.border { border-color: #c8daff !important;}
.bg-blue-lighter { background: var(--blue-lighter) !important;}
.bg-blue-lightest { background: var(--blue-lightest) !important;}
.bg-blue { background: var(--blue) !important;}
.bg-blue-dark { background: var(--blue-dark) !important;}
.bg-blue-darker { background: var(--blue-darker) !important;}
.bg-blue-darkest { background: var(--blue-darkest) !important;}
.bg-yellow { background: var(--bg-yellow) !important;}
.bg-yellow-light { background: var(--bg-yellow-light) !important;}
.bg-yellow-light.border { border-color: #ecdfba !important;}
.bg-yellow-lighter { background: var(--bg-yellow-lighter) !important;}
.bg-yellow-lightest { background: var(--bg-yellow-lightest) !important;}
.bg-yellow-dark { background: var(--bg-yellow-dark) !important;}
.bg-gray {background: #eee !important;}
.bg-green { background: var(--bg-green) !important; color: #000 !important; }
.bg-green-light { background: var(--green-light) !important;}
.btn-icon { padding: 0; line-height: 1; border: none !important; background: transparent !important; opacity: 1; transition: opacity 0.2s ease-in; }
.btn-icon:hover { opacity: 0.65; transition: opacity 0.2s ease; }
.bg-blue-dark-gradient { background: linear-gradient(to left, #293e5b 0%, #293e5b 95%, #567eb6 100%); }


.text-white-50 { color: rgba(255,255,255, 0.5); }
.text-black-50 { color: rgba(0,0,0, 0.5); }
.text-light, .text-light p { color:#d8d8d8; }
.text-yellow-dark { color:#ae8200; }
.text-blue-light { color: #bad4ff; }
.text-success-light { color: var(--success-light); }

/* margin styling */
.mt-10 {margin-top: 10px !important;} .mt-15 {margin-top: 15px !important;}
.mt-20 {margin-top: 20px !important;} .mt-25 {margin-top: 25px !important;}
.mt-30 {margin-top: 30px !important;} .mt-35 {margin-top: 35px !important;}
.mt-40 {margin-top: 40px !important;} .mt-45 {margin-top: 45px !important;}
.mt-50 {margin-top: 50px !important;} .mt-55 {margin-top: 55px !important;}
.mt-60 {margin-top: 60px !important;} .mt-65 {margin-top: 65px !important;}
.mt-70 {margin-top: 70px !important;} .mt-75 {margin-top: 75px !important;}
.mt-80 {margin-top: 80px !important;} .mt-85 {margin-top: 85px !important;}
.mt-90 {margin-top: 95px !important;} .mt-95 {margin-top: 95px !important;}
.mb-10 {margin-bottom: 10px !important;} .mb-15 {margin-bottom: 15px !important;}
.mb-20 {margin-bottom: 20px !important;} .mb-25 {margin-bottom: 25px !important;}
.mb-30 {margin-bottom: 30px !important;} .mb-35 {margin-bottom: 35px !important;}
.mb-40 {margin-bottom: 40px !important;} .mb-45 {margin-bottom: 45px !important;}
.mb-50 {margin-bottom: 50px !important;} .mb-55 {margin-bottom: 55px !important;}
.mb-60 {margin-bottom: 60px !important;} .mb-65 {margin-bottom: 65px !important;}
.mb-70 {margin-bottom: 70px !important;} .mb-75 {margin-bottom: 75px !important;}
.mb-80 {margin-bottom: 80px !important;} .mb-85 {margin-bottom: 85px !important;}
.mb-90 {margin-bottom: 95px !important;} .mb-95 {margin-bottom: 95px !important;} 

.mt-neg-100 {margin-top: -100px !important;}
.pb-100 {padding-bottom: 100px !important;}

.p-15 { padding: 15px !important; }
.py-15 { padding-top: 15px !important; padding-bottom: 15px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pt-15 { padding-top: 15px !important; }
.p-20 { padding: 20px !important; }
.py-20 { padding-top: 20px !important; padding-bottom: 20px !important;}
.pb-20 { padding-bottom: 20px !important; }
.pt-20 { padding-top: 20px !important; }
.p-25 { padding: 25px !important; }
.py-25 { padding-top: 25px !important; padding-bottom: 25px !important;}
.pb-25 { padding-bottom: 25px !important; }
.pt-25 { padding-top: 25px !important; }
.p-30 { padding: 30px !important; }
.py-30 { padding-top: 30px !important; padding-bottom: 30px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pt-30 { padding-top: 30px !important; }
.p-35 { padding: 35px !important; }
.py-35 { padding-top: 35px !important; padding-bottom: 35px !important; }
.pb-35 { padding-bottom: 35px !important; }
.pt-35 { padding-top: 35px !important; }
.p-40 { padding: 40px !important; }
.py-40 { padding-top: 40px !important; padding-bottom: 40px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pt-40 { padding-top: 40px !important; }

/* Font related */
.fz-12 { font-size: 12px !important; }
.fz-14 { font-size: 14px !important; }
.fz-16 { font-size: 16px !important; }
.fz-16 { font-size: 16px !important; }
.fz-18 { font-size: 18px !important; }
.fz-20 { font-size: 20px !important; }
.fz-22 { font-size: 22px !important; }
.fz-24 { font-size: 24px !important; }
.fz-28 { font-size: 28px !important; }
.fz-32 { font-size: 32px !important;}
.fz-30 { font-size: 30px !important;}
.fz-34 { font-size: 34px !important; }
.fz-38 { font-size: 38px !important; }
.fz-42 { font-size: 42px !important; }
.fz-44 { font-size: 44px !important; }
.fz-52 { font-size: 52px !important; }
.fz-62 { font-size: 62px !important; }
	
.headline-font { font-family: var(--headingFont); }
.content-font { font-family: var(--contentFont); }
.strong { font-weight: 700 !important; }
.stronger { font-weight: 800 !important; }
.font-italic, .italic { font-style:italic; }
.fw-light, .light { font-weight: 200 !important; }
.fw-regular, .regular { font-weight: 400 !important; }
.underline { text-decoration:underline; }
.strike { text-decoration: line-through !important;}

.lh-13 { line-height: 1.3 !important; }
.lh-14 { line-height: 1.4 !important; }
.lh-15 { line-height: 1.5 !important; }
.lh-16 { line-height: 1.6 !important; }
.lh-1 { line-height: 1 !important; }
.lh-0 { line-height: 0 !important; }

.lts-1 {letter-spacing: 1px;}
.lts-2 {letter-spacing: 2px;}
.lts-3 {letter-spacing: 3px;}

/* Borders */
.bd { border: 1px solid rgba(0, 0, 0, 0.5); }
.bdb { border-bottom: 1px solid rgba(0, 0, 0, 0.5);}
.bdt { border-top: 1px solid rgba(0, 0, 0, 0.5); }
.bdr { border-right: 1px solid rgba(0, 0, 0, 0.5); }
.bdl { border-left: 1px solid rgba(0, 0, 0, 0.5); }
.bd-2 { border-width: 2px !important; }
.bd-3 { border-width: 3px !important; }
.bd-4 { border-width: 4px !important; }
.bd-5 { border-width: 5px !important; }
.bd-6 { border-width: 6px !important; }
.bd-white { border-color: #fff !important; }
.bd-black { border-color: #000; }
.bd-black-5 { border-color: rgba(0,0,0,0.05) !important; }
.bd-black-10 { border-color: rgba(0,0,0,0.1) !important; }
.bd-black-15 { border-color: rgba(0,0,0,0.15) !important; }
.bd-black-20 { border-color: rgba(0,0,0,0.2) !important; }
.bd-black-30 { border-color: rgba(0,0,0,0.3) !important; }
.bd-black-40 { border-color: rgba(0,0,0,0.4) !important; }
.bd-white-5 { border-color: rgba(255,255,255,0.05) !important; }
.bd-white-10 { border-color: rgba(255,255,255,0.1) !important; }
.bd-white-20 { border-color: rgba(255,255,255,0.2) !important; }
.bd-white-30 { border-color: rgba(255,255,255,0.3) !important; }
.bd-white-40 { border-color: rgba(255,255,255,0.4) !important; }
.bd-light-blue, .bd-light-blue { border-color: #bdd1f9;}
.bd-light-yellow, .bd-light-yellow { border-color: #ecdfba;}
.bd-primary { border-color: var(--primary);}
.bd-secondary { border-color: var(--secondary);}
.bd-success { border-color: var(--success);}
.bd-danger { border-color: var(--danger);}
.bd-warning { border-color: var(--warning);}
.bd-info { border-color: var(--info);}
.bd-light { border-color: var(--light);}
.bd-ddd { border-color: #ddd; }
.bd-ccc { border-color: #ccc; }
.bd-dark { border-color: var(--dark);}
.bd-dashed { border-style: dashed; }
.bdb-dashed { border-bottom-style: dashed; }
.bdt-dashed { border-top-style: dashed; }
.bdb-dashed { border-bottom-style: dashed; }
.nobd { border: none !important; }
.nobdb { border-bottom:none !important; }
.nobdt { border-top:none !important; }

.img-center { display:block; max-width: 100%; margin: auto;}

.max-850 { width: 100%; max-width: 850px; }
.max-650 { width: 100%; max-width: 650px; }

/* Other General */
.stop-scrolling { height: 100%; overflow: hidden; } /* this is for the js disable scroll function */

.trans-op, .trans-op.--all * { transition: opacity .2s ease; }
.trans-op:hover, .trans-op.--all:hover * { transition: opacity .4s ease; }

ul { margin-bottom: 0; }
li { list-style: none; }
.img-link { display:block; }
.img-link img { transition: all 0.3s ease-out; }
.img-link:hover img { opacity: 0.5; transition: all 0.5s ease-in; }

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

.w-60 { width: 60%; }
.w-65 { width: 65%; }
.w-70 { width: 70%; }
.w-80 { width: 80%; }
.w-90 { width: 90%; }
.h-100 { height: 100%; }
.h-100vh { height: 100vh; }
.max-1000 { max-width: 1000px; }
.hide, .hidden { display:none; }
.force-hide { display:none !important; }
.show { display:block;}
.same-col-height, .same-ch { height: 100%; }
.trans-all { transition: all 0.3s ease-in; }
.trans-all:hover { transition: all 0.5s ease-out; }
.posr { position:relative; }
.clear { overflow:hidden; }
.ovh { overflow:hidden;}

.posa-center { position: absolute; top: 0; bottom: 0; right: 0; left: 0; margin: auto; display:block; width: 100%; height: auto;}
.posa { position: absolute; }
.posa.top { top: 0px; }
.posa.bottom { bottom: 0px; }
.posa.left { left: 0px; }
.posa.right { right: 0px; }

.z--1 { z-index: -1;}
.z-0 { z-index: 0;}
.z-1 { z-index: 1;}
.z-2 { z-index: 2;}
.z-9 { z-index: 9;}
.z-99 { z-index: 99;}

/* CUSTOM FLEX */
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex;}
.flex-col-cc, .flex-middle { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.flex-col-row { display: flex; flex-direction: column; }
.flex-row-col { display: flex; flex-direction: row; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-cs { display: flex; justify-content: center; align-items: start; }
.flex-cc { display: flex; justify-content: center; align-items: center; }
.flex-ce { display: flex; justify-content: center; align-items: end; }
.flex-ss { display: flex; justify-content: start; align-items: start; }
.flex-sc, .flex-icon { display: flex; justify-content: start; align-items: center; }
.flex-se { display: flex; justify-content: start; align-items: end; }
.flex-es { display: flex; justify-content: end; align-items: start; }
.flex-ec { display: flex; justify-content: end; align-items: center; }
.flex-ee { display: flex; justify-content: end; align-items: end; }
.flex-inline-icon { display: inline-flex; justify-content: start; align-items: center; }
.jsc-start { justify-content: start; }
.jsc-center { justify-content: center; }
.jsc-end { justify-content: end; }
.jsc-between { justify-content: space-between; }
.jsc-evenly { justify-content: space-evenly; }
.ai-start { align-items: start;  }
.ai-center { align-items: center;  }
.ai-end { align-items: end;  }
.ai-stretch { align-items: stretch;  }
.flex-img-txt { display: flex; justify-content: center; align-items: start; flex-direction: row; }
.flex-img-txt em, .flex-img-txt img { margin-top: 2px; }
.gap--5, .gap--5 .inner { gap: 5px !important; }
.gap-10, .gap-10 .inner { gap: 10px !important; }
.gap-15, .gap-15 .inner { gap: 15px !important; }
.gap-20, .gap-20 .inner { gap: 20px !important; }
.gap-25, .gap-25 .inner { gap: 25px !important; }
.gap-30, .gap-30 .inner { gap: 30px !important; }
.gap-60, .gap-60 .inner { gap: 60px !important; }

.flex-1 { flex: 1 !important; }
.flex-2 { flex: 2 !important; }
.flex-3 { flex: 3 !important; }
.flex-4 { flex: 4 !important; }
.flex-5 { flex: 5 !important; }

.flex-cards { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: start; align-items: stretch; }
.flex-cards .card-item { width: 192px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
/* end CUSTOM FLEX */

.rounded-6 { border-radius: 6px; }
.rounded-8 { border-radius: 8px; }
.rounded-10 { border-radius: 10px; }
.rounded-12 { border-radius: 12px; }
.rounded-14 { border-radius: 14px; }
.rounded-b-0 { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.rounded-t-0 { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; }
.rounded-start-0 { border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; }
.rounded-end-0 { border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; }

.show-mobile { display: none !important; }
.show-desktop { display: block !important; }
table th.show-desktop, table td.show-desktop { display: table-cell !important; }


#flashMessage { margin-bottom: 0 !important; }

table tfoot { position:relative; z-index: 9; }
table tfoot.static tr { position: static; }

table tr.selected { position:relative; }
table tr.selected td { position:relative; z-index: 1;}
table tr.selected { background: #fff8d3; }
table tr.selected::after {
	content: "";
	position:absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	width: 100%; height: 100%;
	margin: auto;
	/* box-shadow: inset 0 0 0px 2px #0d6efd; */
	z-index: 0;
}
tr.clicked, .table-clicked tr.clicked td, .table-clicked tr.clicked th { background-color:#ffda70 !important; }
tr.clicked:hover, .table-clicked tr.clicked:hover td, .table-clicked tr.clicked:hover th { background-color:#ffd24d !important; }
.table-w-auto { table-layout: auto; width: auto; }
.table-w-auto th:last-child, .table-w-auto td:last-child { width: 100%; }
.invisible { visibility:hidden; }

.sortable .sort-item {
	cursor: all-scroll;
	background-color: #fff;
	padding: 5px 15px;
	border: 1px solid #ccc;
}
.sortable .sort-item:hover {
	background-color: #ffcd37;
    border-color: #ffc107;
}

.table td.fit, 
.table th.fit {
   white-space: nowrap;
   width: 1%;
}
table .sub-category {}
table .sub-category .indent-child-1 { padding-left: 16px !important; }
table .sub-category .indent-child-2 { padding-left: 32px !important; }
table .sub-category .indent-child-3 { padding-left: 48px !important; }
table .sub-category .indent-child-4 { padding-left: 64px !important; }
table thead.header-fixed { position:relative; } 
table thead.header-fixed tr {
  position: -webkit-sticky;
  position: sticky;
  top: -2px;
  z-index: 2;
}
table tfoot.footer-fixed { position:relative; } 
table tfoot.footer-fixed tr {
  position: -webkit-sticky;
  position: sticky;
  top: -2px;
  z-index: 2;
}
table td.inactive { text-decoration: line-through; color:#999; }

.checkbox-lg {width: 30px; height: 30px;}
.alert-sm { padding: 8px 16px; }

/* Forms */
.form-control, .form-select { line-height: 1.3; }
form .form-control, form .form-select {  }
form .form-group { margin-bottom: 16px; }
form .form-group label { font-size: 16px; letter-spacing: 0px; text-transform:uppercase; margin-bottom: 6px; margin-left: 3px; color:#777; }
form .form-group input::placeholder { color:#999; }
.form-wrapper form .form-group label { color:#333; }
.form-wrapper form .form-group input { border-color: #c4c4c4; }
form.form-edit-user {}
form.form-edit-user .form-group { margin-bottom: 12px !important; }
form.form-edit-user .form-group label { flex: 1; }
form.form-edit-user .form-group input,
form.form-edit-user .form-group div { flex: 3; }
form.form-edit-user .form-label { margin-bottom: 0; }
form.form-edit-user .form-control { padding: 6px 10px; }
#editUserForm .form-group label { min-width: 86px; }
form .form-control[readonly] { background: #ddd; }
/* end Forms */

.nowrap { white-space: nowrap; }

.autocomplete-custom { width: auto !important; box-shadow: 2px 2px 4px rgba(0,0,0, 0.3); border: 2px solid #000000 !important; margin-top: -1px; }

.scroll-x { overflow-x: scroll; }
.divider { width: 100%; height: 0; padding-top: 1rem; margin-bottom: 1rem;}
.divider.--bd { border-bottom: 1px solid #ccc; }
.w-50 { width: 50%; }
.text-faded { color: rgba(0,0,0, 0.5);}
small { font-size: 14px; margin-left: 4px; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Form Ajax Loader */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { transform: rotate(360deg); }
}
.loading { 
	width: 26px; height: 26px; 
	border-radius: 50% !important;
	border: 3px solid rgba(255,255,255, 0.3);
	border-color: rgba(255,255,255, 0.8); border-top-color: rgba(0,0,0, 0.25); 
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
	color: #fff;
}
.loading-sm {
	width: 15px; height: 15px;
	border-width: 2px;
}
/**/

.show-hide-pass { position:relative; }
.show-hide-pass input[type=password] { padding-right: 40px; }
.show-hide-pass button.pass-eye { 
	position: absolute; bottom: 1px; right: 0; z-index: 99;
	border: none;
	background: transparent;
	color:#000;
	padding: 4px 8px;
	line-height: 1.4;
}
.show-hide-pass button.pass-eye.off { }
.show-hide-pass button.pass-eye.on { }
.show-hide-pass button.pass-eye:hover { color:#666; }

.logo { max-width: 40px; filter: drop-shadow(0px 0px 0px rgba(0, 255, 255, 1)); }
.menu-select {background-color: #d6e7ff; }

/* Top Logo */
@keyframes bounceContinuous {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
@keyframes bounceSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
a.top-logo { display: inline-block; }
a.top-logo:hover { animation: bounceSubtle 0.4s ease-out; }
/* .top-logo img { transition: all 0.3s ease; filter: drop-shadow(0 6px 12px rgba(255,255,255, 0.5)); } */
/* a.top-logo:hover img { filter: drop-shadow(0 12px 12px rgba(255,255,255, 0.7)); } */
/* end Top Logo */

/* Main Nav */
#mainNav {}
#mainNav .nav-link { 
	font-size: 18px; font-weight: 400; line-height: 1.2; text-decoration: none; padding: 6px 10px; margin: 0 3px;
	background: transparent;
	color: #b3d3ff;
	border-bottom: 1px solid #678bbc;
	border-radius: 0;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { 
	text-decoration:none;
	background: #b3d3ff;
	border-color: #b3d3ff;
	color:#000;
	border-radius: 4px;
}

#navToggle { 
	display: none; padding: .2rem !important; 
	border-radius: 4px; background: transparent; border: 1px solid #b3d3ff; color: #b3d3ff; 
}
#navToggle:hover { color: #000; background: #b3d3ff; border-color: #b3d3ff; }

#mobileNavWrapper { position: fixed; top:0; left: -100%; display: block; width: 0; height: 100vh; overflow: hidden; z-index: 999; color:#fff; opacity: 0; transition: all 0.3s ease-out; overflow-y: scroll;}
#mobileNavWrapper.show-nav { height: 100vh; width: 100%; left: 0; opacity: 1; transition: all 0.3s ease-out; }
#mobileNav { width: 100%; max-width: 300px; height: 100%; margin: 0 auto;}
#mobileNav li.nav-item { padding: 2px 0; border-bottom: 1px solid rgba(0,0,0, 0.15); }
#mobileNav li.nav-item:last-child { border: none !important; }
#mobileNav a.nav-link {
	color: rgba(0,0,0, 1);
	background: transparent;
	width: 100%;
	font-size: 22px;
	padding: 8px 10px !important;
	font-family: var(--headline-font);
	letter-spacing: normal;
	text-align: center;
	border-radius: 0px;
}
#mobileNav li:hover a.nav-link,
#mobileNav a.nav-link.active {  
	color: #fff;
	background: #293e5b;
	text-decoration:none;
	border-radius: 4px;
}
#mobileNav a.nav-link.brand-link {  }
#mobileNav a.nav-link.brand-link:hover,
#mobileNav a.nav-link.brand-link.active { background: transparent; color: #000; }

#navCloseBtn { background: transparent; border: 2px solid #777; color: #777; border-radius: 4px; }
#navCloseBtn:hover { background: #000; color: #fff; border-color: #000; }
/* end Main Nav */

.currency { font-size: 12px; letter-spacing: 1px; text-transform:uppercase; color:#666;}
.breadcrumbs { font-size: 14px; line-height: 1.3; letter-spacing: 1px; }

.datepicker table tr td.active {
	border: none !important;
	/* border-radius: 0 !important; */
}
.upper { text-transform: uppercase; }
.lower { text-transform: lowrcase; }

.login-box-wrapper { padding: 0 1rem;}
.login-box { width: 100%; max-width: 380px; }

@keyframes float {
	0% {
		/* box-shadow: #000 0px 0px 30px 0px, #0ff 0px 0px 30px 0px; */
		transform: translateY(0px);
	}
	50% {
		/* box-shadow: rgba(0,0,0,0.2) 0px 20px 30px 0px, rgba(0,255,255,0.2) 0px 20px 30px 0px; */
		transform: translateY(-20px);
	}
	100% {
		/* box-shadow: #000 0px 0px 30px 0px, #0ff 0px 0px 30px 0px; */
		transform: translateY(0px);
	}
}
.float-animation {
	transform: translateY(0px);
	animation: float 6s ease-in-out infinite;
}

/* Media Queries */

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
	.flex-sm-row { flex-direction: row; }
	.flex-sm-col { flex-direction: column; }
	
	.jsc-sm-start { justify-content: start !important; }
	.jsc-sm-center { justify-content: center !important; }
	.jsc-sm-end { justify-content: flex-end !important; }
	.jsc-sm-between { justify-content: space-between !important; }
	.ai-sm-start { align-items: start !important; }
	.ai-sm-center { align-items: center !important; }
	.ai-sm-end { align-items: end !important; }
	.ai-sm-stretch { align-items: stretch !important;  }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  
	.flex-md-row { flex-direction: row; }
	.flex-md-col { flex-direction: column; }
	
	.jsc-md-start { justify-content: start !important; }
	.jsc-md-center { justify-content: center !important; }
	.jsc-md-end { justify-content: flex-end !important; }
	.jsc-md-between { justify-content: space-between !important; }
	.ai-md-start { align-items: start !important; }
	.ai-md-center { align-items: center !important; }
	.ai-md-end { align-items: end !important; }
	.ai-md-stretch { align-items: stretch !important;  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  
	.fz-lg-16 { font-size: 16px !important; }
	.fz-lg-18 { font-size: 18px !important; }
	.fz-lg-20 { font-size: 20px !important; }
	.fz-lg-22 { font-size: 22px !important; }
	.fz-lg-24 { font-size: 24px !important; }
	.fz-lg-28 { font-size: 28px !important; }
	.fz-lg-32 { font-size: 32px !important;}
	.fz-lg-34 { font-size: 34px !important; }
	.fz-lg-38 { font-size: 38px !important; }
	.fz-lg-42 { font-size: 42px !important; }
	.fz-lg-44 { font-size: 44px !important; }
	.fz-lg-52 { font-size: 52px !important; }
	.fz-lg-62 { font-size: 62px !important; }
	.pos-lg-a { position:absolute;}
	
	.flex-col-row { flex-direction: row; }
	.flex-row-col { flex-direction: column; }
	.flex-lg-row { flex-direction: row; }
	.flex-lg-col { flex-direction: column; }
	
	.flex-lg-1 { flex: 1 !important; }
	.flex-lg-2 { flex: 2 !important; }
	.flex-lg-3 { flex: 3 !important; }
	.flex-lg-4 { flex: 4 !important; }
	.flex-lg-5 { flex: 5 !important; }
	
	.jsc-lg-start { justify-content: start !important; }
	.jsc-lg-center { justify-content: center !important; }
	.jsc-lg-end { justify-content: flex-end !important; }
	.jsc-lg-between { justify-content: space-between !important; }
	.ai-lg-start { align-items: start !important; }
	.ai-lg-center { align-items: center !important; }
	.ai-lg-end { align-items: end !important; }
	.ai-lg-stretch { align-items: stretch !important;  }

	.gap-lg--5, .gap-lg--5 .inner { gap: 5px !important; }
	.gap-lg-10, .gap-lg-10 .inner { gap: 10px !important; }
	.gap-lg-15, .gap-lg-15 .inner { gap: 15px !important; }
	.gap-lg-20, .gap-lg-20 .inner { gap: 20px !important; }
	.gap-lg-25, .gap-lg-25 .inner { gap: 25px !important; }
	.gap-lg-30, .gap-lg-30 .inner { gap: 30px !important; }
	
	.w-lg-100 { width: 100% !important; }
	.w-lg-auto { width: auto !important; }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
	.flex-xl-row { flex-direction: row; }
	.flex-xl-col { flex-direction: column; }
	.flex-xl-1 { flex: 1 !important; }
	.flex-xl-2 { flex: 2 !important; }
	.flex-xl-3 { flex: 3 !important; }
	.flex-xl-4 { flex: 4 !important; }
	.flex-xl-5 { flex: 5 !important; }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
	.container, .max-xxl-1170 { max-width: 1170px; }
}

@media (max-width: 1399px) {
	
}
@media (max-width: 1199px) {
	.flex-1 { flex: 1 !important; }
	.flex-2 { flex: 2 !important; }
	.flex-3 { flex: 3 !important; }
	.flex-4 { flex: 4 !important; }
	.flex-5 { flex: 5 !important; }
	#leftSide { max-width: 400px; }
	.persoana-item .name-wrapper { flex-wrap: wrap; gap: 13px !important; }
}
@media (max-width: 991px) {
	#mainNavWrapper { display:none !important; }
    #navToggle { display:block !important; }
	.show-mobile { display: block !important; }
	.show-desktop { display: none !important; }
	table th.show-desktop, table td.show-desktop { display: table-cell !important; }
	.flex-img-txt { justify-content: center; align-items: center; flex-direction: column; }
	.px-mobile, .px-mobile .c-column { padding-left: 10px !important; padding-right: 10px !important;}
	.flex-col .flex-1, .flex-col .flex-2, .flex-col .flex-3, .flex-col .flex-4, .flex-col .flex-5 { width: 100%; }
	
	/* make modal on smaller screens than this to cover most of the screen, like on mobile*/
	.modal-dialog {
		width: auto;
		max-width: none;
		margin: .5rem;
	}
	.w-50-100 { width: 100%; }
	
	.form-groups, #leftSide { max-width: none; }
	#mobileBar { display: block; }
	#dateRightControls { display: none; }
	#dateMobileControls { display: flex; }
	#authBar { margin-top: 114px; }
	#oreTable { display: none; }
	#oreTableMobileWrapper { display: block; }
	.btm-response-wrapper.scroll-x { overflow-x: visible; background: transparent; }
}
@media (max-width: 767px) {
    .navbar-toggler { display: inline-block;}
	table th.show-desktop, table td.show-desktop { display: none !important; }
}
@media (max-width: 575px) {
}
@media (max-width: 380px) {  
	
}

@media (min-width: 576px) and (max-width: 767px) { }
@media (min-width: 768px) and (max-width: 991px) {  }
@media (min-width: 992px) and (max-width: 1199px) {  }

@media (max-width: 1199px) {  }

@media (max-width: 1399px) {  }

/* The CSS Debugger Component - shows what media element applies 
	<div class="debugger flex-sc gap-2"><button class="btn btn-close btn-sm text-white px-1" onclick="$(this).parent().hide()">X</button></div>
*/
.debugger { display: block; position:fixed; bottom: 0; right: 0; background: #000; z-index: 99999; padding: 3px 10px; color:#fff; }
	.debugger::before { content: "min-width: 1400px"; }
  @media (max-width: 1399px) {
	.debugger::before { content: "max-width: 1399px"; }
	}
  @media (max-width: 1199px) {  
	.debugger::before { content: "max-width: 1199px"; }
  }
  @media (max-width: 991px) {
	.debugger::before { content: "max-width: 991px"; }
  }
  @media (max-width: 767px) {
	.debugger::before { content: "max-width: 767px"; }
  }
  @media (max-width: 575px) {  
	.debugger::before { content: "max-width: 575px"; }
  }
  @media (max-width: 380px) {  
	.debugger::before { content: "max-width: 380px"; }
  }
  
@media print {
	.no-print, .debugger { display:none; visibility:hidden;}
  
	#section-to-print {
		visibility: visible;
		position: absolute;
		left: 0;
		top: 0;
	}
  
	.print-this {
		background: #fff !important;
	}
	.p-print-0 { padding: 0 !important; }
	section.print-this { display:block !important; }
  
	/* to remove headers and footer in chrome */
	@page { 
		margin: 0mm; 
		 /* size: a4 landscape; - asta nu merge bine, adauga spatii in dreapta */
	}
	body { 
		margin: .5cm !important; 
		print-color-adjust: exact !important; /* to enable background printing in Safari and Firefox */
		-webkit-print-color-adjust: exact !important; /* to enable background printing in Chrome: */
		padding: 0 !important;
	}
	/**/
  
	#printWrapper { border: none !important; padding: 0 !important; margin: 0 !important; }
	#printWrapper h2 { font-family: Arial, sans-serif !important; font-size: 16px !important; }
	#printWrapper p, #printWrapper ul li { font-family: Arial, sans-serif !important; font-size: 12px !important; }
	#printWrapper table, #printWrapper table tr { box-shadow: none !important; }
	#printWrapper table thead tr, #printWrapper table thead th { position:static; }
	#printWrapper table thead tr, #printWrapper table thead tr *,
	#printWrapper table thead th, #printWrapper table thead th * { font-family: Arial, sans-serif !important; font-size: 14px !important; color:#000 !important; }
	#printWrapper table tbody td, #printWrapper table tbody td * { font-family: Arial, sans-serif !important; font-size: 12px !important; color:#333 !important; }
	#printWrapper table tfoot td, #printWrapper table tfoot td * { font-family: Arial, sans-serif !important; font-size: 14px !important; color:#000 !important; }
	#printWrapper table tfoot tr { position:static; }
  
	#printWrapper #pageHeader .legend span { font-size: 10px; }
	#printWrapper #pageHeader h2 { font-size: 16px; }
	#printWrapper #pageHeader p { font-size: 14px; }
	
	#printWrapper div.title { min-width: 260px; }
	/* #printWrapper table.export-table th { box-shadow: none !important; } */
	#printWrapper table.export-table tr th { font-size: 12px !important; padding: 3px !important; }
	#printWrapper table.export-table tr td { font-size: 10px !important; padding: 3px !important; }
	#printWrapper table.export-table thead .th-ziua { width: 45px !important; }
	#printWrapper table.export-table td.ziua { width: 45px !important; }
	
	#printWrapper table tbody { page-break-inside: avoid; }
	
	#printWrapper table.export-table .today { background-color: #d3e7fc; } /*box-shadow: 0px 0px 3px var(--blue);*/
	#printWrapper table.export-table .weekend { background-color: #f8f0d6; }
	#printWrapper table.export-table .holiday { background-color: #fed0d0; }
	#printWrapper table.export-table .weekend.today { background-color: #fffe87; }
	#printWrapper table.export-table .holiday.today { background-color: #ff9494; }
}