: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
{
	min-width: 380px;
	font-family: var(--content-font);
	font-weight: 400;
	font-size: var(--font-size-default);
	scroll-behavior: smooth;
	height: 100%;
}
body {
	color: #000;
	line-height: var(--line-height);
	background: var(--blue-dark);
	min-height: 100%;
}

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; }

.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; }


.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; }

/* 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-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 */
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%; }
.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; }

.show-mobile { display: none !important; }
.show-desktop { display: block !important; }

.field { display:inline-block; }
.value { display:inline-block; font-weight: 700; }

.navbar-toggler { display:none;}


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

table tfoot { position:relative; z-index: 999; }
/* table tfoot tr { */
	/* position: sticky; */
	/* bottom: 0; /* Don't forget this, required for the stickiness */ */
	/* box-shadow: 0 -3px 3px -1px rgba(0, 0, 0, 0.2); */
/* } */
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; }

.menu a.btn { padding: 3px 16px; }
.menu a.btn.active { }
.no-wrap { white-space: no-wrap; }
.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 thead.header-fixed { position:relative; } 
table thead.header-fixed tr {
  position: -webkit-sticky;
  position: sticky;
  top: -2px;
  z-index: 2;
}

.checkbox-lg {width: 30px; height: 30px;}
.alert-sm { padding: 8px 16px; }
.ron { font-size: 12px;}
.select-active { background: #dbffc9; }

/* Forms */
.form-control, .form-select { padding-top: 5px; padding-bottom: 5px; line-height: 1.3; }
.form-sm .form-control, .form-sm .form-select { padding: 2px 5px; padding-top: 2px; padding-bottom: 3px; line-height: 1.3; }
.form-sm .form-control.size-fixed, .form-sm .form-select.size-fixed { width: 60px; }
.form-sm .form-group label { font-size: 16px; }
.form-sm .form-group { margin-bottom: 6px; }
.form-groups { max-width: 390px; padding: 1rem; background: #eee; border: 1px solid #ccc;}
.form-sm .form-groups { padding: 0.5rem; }
/* .form-groups .form-group { max-width: 551px; } */
.form-groups .form-group label span.inner { display:block; width: 120px; }
.form-sm .form-groups .form-group label span.inner { width: 100px; }
.persoana-form *:disabled { 
	background: #d6e6f6;
	border-color: #b0c8e0;
}
#oreTable .cell-value { display:block; width: 51px; height: 28px; padding: 1px 2px; line-height: 1.3; font-size: 18px; border: 1px solid transparent; }
#oreTable .cell-ban { display:block; width: 51px; height: 28px; padding: 1px 2px; line-height: 1.3; font-size: 18px; border: 1px solid transparent; color:#999; }
#oreTable .cell-value.hide { display: none; }
#oreTable .cell-input { width: 51px; height: 28px; border-width: 1px; outline: 0 !important; line-height: 1.3; font-size: 18px;}
#oreTable .today { background-color: var(--blue-light); border-color: var(--blue); border-width: 2px; border-bottom: 0; border-top: 0; } /*box-shadow: 0px 0px 3px var(--blue);*/
#oreTable th.today { border-top: 2px solid var(--blue);  }
#oreTableBody tr:last-child td.today { border-bottom: 2px solid var(--blue);  }
#oreTable .weekend { background-color: var(--yellow-light); }
#oreTable .holiday { background-color: var(--red-light); }
#oreTable .weekend.today { background-color: #fffe87; }
#oreTable .holiday.today { background-color: #ff9494; }
/* end Forms */

.nowrap { white-space: nowrap; }
#leftSide, #rightSide { width: 100%; }
#leftSide { max-width: 440px; }
.input-hightlight { background-color: var(--yellow-lightest); border-color: var(--yellow); }
#persoaneList { border: 1px solid rgba(0,0,0, 0.1); padding: 6px 10px; background: var(--blue-lighter); border-color: var(--blue-light); max-height: 400px; overflow-y: scroll; }
#persoaneList  .pers-item { }
#persoaneList  .pers-item .check-wrpr { max-width: 20px; }
#persoaneList  .pers-item .btn { display:block; width: 100%; border-radius: 0; text-align:left; border-left: 1px solid var(--blue-light); }
#persoaneList  .pers-item .btn.is-ban { color:#ba4c4c; text-decoration: line-through !important; }
#persoaneList  .pers-item .btn:hover,
#persoaneList  .pers-item .btn.active { background: #74baff; text-decoration:none; box-shadow: none; }
#persoaneList  .pers-item .btn.is-ban:hover,
#persoaneList  .pers-item .btn.is-ban.active { background: #eca6ad; }
#persoaneItemsWrapper .persoana-item h2.is-ban { background: #eca6ad !important; color: #923039 !important; }

.legend-box { background: #eee; border: 1px solid #ccc; padding: 10px; }
.legend-box ul li { font-size: 14px; }
#legend { 
	position: absolute; top: 0; right: 0; margin: auto; display:block; width: 100%; z-index: 2; 
	background: #eee; padding: 10px; overflow:hidden; 
	width: 100%; height: auto; max-width: 230px; max-height: 700px; padding-top: 44px;
}
#legend.collapsed { max-width: 44px; max-height: 35px; padding-top: 0; }
#legend ul li { font-size: 14px; }
#legendBtn { position: absolute; top: 0px; right: 0px; z-index: 2; border: 3px solid #eee; width: 44px; height: 35px; }
#legendBtn:hover { background: var(--dark); }
#legend.collapsed #legendBtn em.bi-arrow-left,
#legend #legendBtn em.bi-arrow-right { display: inline-block;}
#legend #legendBtn em.bi-arrow-left,
#legend.collapsed #legendBtn em.bi-arrow-right { display: none;}
#statusBar { border-top: 1px solid rgba(255, 255, 255, 0.2); min-height: 50px; padding: 10px; }
#btmSection { min-height: 236px; }
.btm-response-wrapper { min-height: 236px; margin: 0.5rem 0; background: var(--light);  }
#oreResponse { position:relative; }
#oreResponse .alert { position: absolute; top: 1rem; z-index: 9; width: 100%; text-align:center; }
.autocomplete-custom { width: auto !important; box-shadow: 2px 2px 4px rgba(0,0,0, 0.3); border: 2px solid #000000 !important; margin-top: -1px; }
.flex-boxed > * {
	border: 1px solid #ccc;
	padding: 4px 10px;
}

.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-100 { 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;
}
/*
#oreResponse.invisible { position:relative; min-height: 215px; width: 100vh; }
#oreResponse.invisible::after {
	content: "";
	width: 26px; height: 26px; 
	position: absolute; top: 0; left: 0; bottom: 0; right: 0; margin: auto;
	border-color: rgba(0,0,0, 0.8); border-top-color: rgba(255,255,255, 0.25); 
	z-index: 999;
	visibility: visible;
}
*/
.loading-sm {
	width: 15px; height: 15px;
	border-width: 2px;
}
/**/

#mobileBar { 
	display:none; 
	position: fixed;
	top: 0px;
	background: #6c9ad7;
	color: #fff;
	width: 100%;
	/* min-width: 380px; */
	/* overflow-x: scroll; */
	z-index: 999;
}
#mobileBar a { padding: 2px 10px !important; font-size: 24px; }
#dateRightControls { display: flex; }
#dateMobileControls { display: none; }
#dateMobileControls select { background-color: #b4d4ff; }
#oreTable { display: table; }

#oreTableMobileWrapper { display: none; }
#oreTableMobileWrapper .cell-value { display:block; width: 100%; height: 28px; padding: 1px 2px; line-height: 1.3; font-size: 20px; border: 1px solid transparent; }
#oreTableMobileWrapper .cell-ban { display:block; width: 100%; height: 28px; padding: 1px 2px; line-height: 1.3; font-size: 20px; border: 1px solid transparent; color:#999; }
#oreTableMobileWrapper .cell-value.hide { display: none; }
#oreTableMobileWrapper .cell-input { width: 100%; height: 28px; border-width: 1px; outline: 0 !important; line-height: 1.3; font-size: 20px;}
#oreTableMobileWrapper .day-block { background-color: #eee; }
#oreTableMobileWrapper .day-block.today { background-color: #d1ffd2; border: 2px solid #00ff37; } /*box-shadow: 0px 0px 3px var(--blue);*/
#oreTableMobileWrapper .day-block.weekend { background-color: var(--yellow-light); }
#oreTableMobileWrapper .day-block.holiday { background-color: var(--red-light); }
#oreTableMobileWrapper .day-block.weekend.today { background-color: #fffe87; }
#oreTableMobileWrapper .day-block.holiday.today { background-color: #ff9494; }

#mainLoader.is-mobile {
	width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    background: #293e5b;
    top: 0;
    left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
}
#mainLoader.is-mobile.invisible {
	width: 0; height: 0;
}

#pageHeader .legend { max-width: 730px; row-gap: 5px; column-gap: 10px; }
#pageHeader .legend span { width: 100%; max-width: 32%; font-size: 16px; }

table.export-table { 
	/* border-collapse: separate; /* Don't collapse */ */
	/* border-spacing: 0; */
}
/* table.export-table th { box-shadow: inset 0 -2px 0 #999999; } */
table.export-table tr, table.export-table td, table.export-table th { border-color:#999; }
table.export-table tr th,
table.export-table tr td { vertical-align:middle; }
table.export-table thead .th-ziua { width: 53px; text-align:center; }
table.export-table td.ziua { width: 53px; text-align:center; }
table.export-table td, table.export-table th { padding: 4px; font-size: 16px; }
table.export-table td p { font-size: 16px; }
table.export-table th.first-col,
table.export-table td.first-col { width: 236px; }
table.export-table tbody.pers-tbody { border-color:#999; }
table.export-table .today { background-color: #d3e7fc; } /*box-shadow: 0px 0px 3px var(--blue);*/
table.export-table .weekend { background-color: #f8f0d6; }
table.export-table .holiday { background-color: #fed0d0; }
table.export-table .weekend.today { background-color: #fffe87; }
table.export-table .holiday.today { background-color: #ff9494; }


.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; }


/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
	.flex-sm-row { flex-direction: row; }
	.flex-sm-col { flex-direction: column; }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {  
	.flex-md-row { flex-direction: row; }
	.flex-md-col { flex-direction: column; }
}

/* // 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: 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) {
	.show-mobile { display: block !important; }
	.show-desktop { display: none !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;}
}
@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; }
}