@charset "UTF-8";

* {
	box-sizing: border-box;
}

html {
	height: 100%;
	font-size: 16px;
}

body {
	overflow: hidden;
	height: 100vh;
	max-height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	flex-direction: column;
}

/* Borders & Bg */
.bordered {
	border-style: solid;
	border-width: 1px;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.bordered.left-item {
	border-right-width: 0; 
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.bordered.central-item {
	border-right-width: 0;  
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.bordered.right-item {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.bordered.top-item {
	border-bottom-width: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.bordered.middle-item {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-width: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.bordered.bottom-item {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.border-input {
	border-color: #000000;
	border-radius: 0.25rem;
}

.fake-input > .border-input,
.border-input.fake-input {
	border-color: #959595;
}

/* Element modifiers */
.faded {
	opacity: 0.5 !important;
}

.display-none {
	display: none !important;
}

.justify-content-center {
	justify-content: center;
}

.pad-left-1 {
	padding-left: 2rem !important;
}

.mar-right-01 {
	margin-right: 0.1rem !important;
}

.parent-h {
	height: 100% !important;
}

.parent-w {
	width: 100% !important;
}

.flex-filler {
	flex-grow: 100 !important;
}

.bold {
	font-weight: bold !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-left {
	text-align: left !important;
}

.ws-nowrap {
	white-space: nowrap !important;
}
/* / Element modifiers */

/* Page Elements */
div.page-header {
	min-height: 3.5rem;
	max-height: 10vh;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
    padding: 0 0.5rem;
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

div.page-header .header-el {
	display: flex;
    align-items: center;
    flex-direction: row;
    min-width: 15rem;
}

.header-el .badge {
    padding: 0 0.65rem;
    font-size: 2.8rem;
    border-right: 0.13rem solid;
	display: flex;
	align-items: center;
	height: 100%;
	margin-right: 0.65rem;
}

.header-el.toolbar {
	flex-grow: 1;
	padding-left: 1rem;
}

.header-el .content {
	padding: 0 0.5rem;
	margin-right: 0.65rem;
	flex-grow: 1;
}

.toolbar-btn {
	align-self: stretch;
	align-content: center;
	padding: 0.25rem 1rem;
	cursor: pointer;
}

.toolbar-btn > a {
	color: inherit;
    font-size: 1.1rem;
    text-decoration: none;
}

.toolbar-btn.current > a {
	text-decoration: underline;
	font-weight: 600;
}

.toolbar-btn.dropdown-handle {
	display: flex;
	align-items: center;
	flex-direction: row;
}

.toolbar-btn.dropdown-handle > .content {
	font-size: 1.1rem;
	flex-grow: 1;
}

.toolbar-btn.dropdown-handle > i[class^='fa-'] {
	font-size: 1.1rem;
	
}

.header-el.toolbar .content > a:last-of-type {
	border-right: inherit;
}

.header-el .content .c1 {
	font-weight: 700;
	font-size: 1.1rem;
}

.header-el .content .c1:after {
	content: "\A";
	white-space: pre;
}

.header-el > i[class^='fa-'] {
	font-size: 1.5rem;
	margin-right: 0.65rem;
}

.dropdown {
	display: none;
	position: absolute;
    min-width: 100%;
    top: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 0.5rem 0 1.5rem 0;
    z-index: 100;
}

.toolbar-btn > .dropdown {
	padding-bottom: 0.7rem;
	left: 0;
}

.dropdown.open {
	display: block;
	cursor: default;
}

.dropdown.open > a,
.dropdown.open > a.disabled,
.dropdown.open > form > input.dropdown-element[type="submit"] {
	text-decoration: none;
    color: inherit;
    display: block;
    margin-top: 0.6rem;
	padding: 0.3rem 1.5rem;
}

.toolbar-btn > .dropdown.open > a,
.toolbar-btn > .dropdown.open > a.disabled,
.toolbar-btn > .dropdown.open > form > input.dropdown-element[type="submit"] {
	padding-left: 0.7rem;
	padding-right: 0.7rem;
}

.dropdown.open > a.disabled {
	cursor: not-allowed;
}

.dropdown.open > form > input.dropdown-element[type="submit"] {
	font-size: inherit;
	user-select: none;
	text-align: inherit;
	cursor: pointer;
	background-color: transparent;
	white-space: normal;
	padding-block: none;
	padding-inline: none;
	border: none;
}

.toolbar-btn > .dropdown.open > a:first-child,
.toolbar-btn > .dropdown.open > form:first-child > input.dropdown-element[type="submit"] {
	margin-top: 0.45rem;
}

.dropdown-handle {
	cursor: pointer;
	position: relative;
}

div.page-body {
	overflow: auto;
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

div.page-body .body-section {
	display:flex;
	flex-wrap: wrap;
	padding-top: 1rem;
	padding-right: 1rem;
	padding-left: 1rem;
	margin-right: auto;
	margin-left: auto;
	width: 90%;
	background-color: #ffffff;
    align-items: flex-start;
    align-content: flex-start;
    gap: 1%;
}

div.page-body .body-section.align-center {
	justify-content: center;
}

div.page-body .body-section.vertical {
	flex-direction: column;
	flex-wrap: nowrap;
}

div.page-body.single-section-body > .body-section {
	/*max-height: 90vh;*/
	overflow: hidden;
}

div.page-body.single-section-body > .body-section > .section-content {
	overflow: hidden;
}

div.page-body .body-section:last-child {
	padding-bottom: 1rem;
	flex-grow: 1;
}

div.page-body .body-section.collapsed {
	padding-top: 0;
	padding-right: 0;
	padding-left: 0;
}

div.page-body .body-section.collapsed > *:not(.collapse-title) {
	display: none;
}

div.page-body .body-section.collapsed .collapse-title {
	margin-top: 1rem;
	margin-right: 1rem;
	margin-left: 1rem;
	cursor: pointer;
}

div.page-body .body-section.collapsed .collapse-title > i[class^='fa-'] {
	margin-right: 0.7rem;
}

.body-section .section-title {
	padding-left: 0.8rem;
    padding-right: 0.8rem;
    width: 100%;
}

.body-section .section-content {
	width: 100%;
}

.body-section .section-md {
	width: 49%;
}

.body-section .section-xlg {
	width: 100%;
}

span.confirmOptionLbl {
	display: none !important;
}

form.std-form, 
div.std-form,
div.std-tbl-filter {
	display: flex;
	flex-direction: column;
}

div.std-tbl-filter.bordered {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

form.login-form, 
div.login-form {
	display: flex;
	flex-direction: column;
	margin: auto;
}

.std-form .form-row,
.login-form .form-row,
.std-tbl-filter .filter-row {
	display: flex;
	flex-direction: row;
	margin-top: 1.25rem;
	margin-left: 1rem;
    margin-right: 1rem;
	align-items: flex-start;
}

.std-tbl-filter .filter-row.filter-submit {
	flex-direction: row-reverse;
}

.std-tbl-filter .filter-row {
	flex-wrap: wrap;
}

.std-tbl-filter .filter-row .filter-element {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.std-form .form-row:last-child,
.login-form .form-row:last-child,
.std-tbl-filter .filter-row:last-child {
	margin-bottom: 1.25rem;
}

.form-row .form-lbl,
.filter-row .filter-lbl {
	display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
    padding-top: 0.1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    width: 10rem;
    min-width: 10rem;
}

.filter-row .filter-lbl {
	width: 9rem;
}

.form-row .form-value,
.filter-row .filter-value {
	display: flex;
    /*flex-grow: 2;*/
    justify-content: flex-start;
    padding-right: 0.875rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    width: 14.5rem;
}

.form-row .form-tiptext {
	display: flex;
	justify-content: flex-start;
	padding-right: 0.875rem;
	margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    flex-grow: 1;
    font-style: italic;
    font-size: 0.9rem;
    align-items: center;
    align-self: stretch;
}

.filter-row .filter-value {
	width: 12.5rem;
}

.form-row .form-value.form-value-lg {
	width: 39rem;
	min-width: 39rem;
}

.form-row .form-value .ms-container {
	width: 100%;
}

.std-form.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.std-form .form-title,
.login-form .form-title {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 3rem;
    padding: 1rem 1rem 1.25rem 1rem;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    font-size: 1.4rem;
    font-weight: 700;
}

.std-form .form-body,
.login-form .form-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.std-form .form-submit,
.login-form .form-submit {
	display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 3rem;
    margin-top: 1rem;
    padding: 1rem 1rem 1.25rem 1rem;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.std-form.disabled .form-submit,
.login-form.disabled .form-submit {
	display: none;
}

input:not(.dropdown-element),
select,
textarea {
	border-color: #000000;
	border-radius: 0.25rem;
	border-width: 1px;
	padding: 0.1rem 0.25rem;
	font-size: inherit;
}

input[type="submit"]:not(.dropdown-element), 
input[type="button"],
div.btn-face {
	height: fit-content;
    width: fit-content;
    min-width: 7.8rem;
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-style: outset;
    border-width: 2px;
}

input[type="submit"].btn-sm:not(.dropdown-element),
input[type="button"].btn-sm,
div.btn-face.btn-sm {
	font-size: 1rem;
    min-width: unset;
    padding: 0.35rem 0.8rem;
}

input[type="submit"]:not(.dropdown-element) > i[class^='fa-'], 
input[type="button"] > i[class^='fa-'],
div.btn-face > i[class^='fa-'] {
	margin-right: 0.5rem;
} 

input.input-error {
	border-color: #bf1717;
	color: #b11616;
	background-color: #f59a9a;
}

.form-submit input[type="submit"]:not(.dropdown-element), 
.form-submit input[type="button"] {
	margin-right: 2rem;
}

.form-submit input[type="submit"]:last-child, 
.form-submit input[type="button"]:last-child {
	margin-right: 0;
}

span.fake-input,
.form-value.fake-input > span {
	background-color: #cfcfcf;
	min-width: 5rem;
	padding: 0.1rem 0.25rem;
	cursor: default;
}

span.fake-input.adapt,
.form-value.fake-input.adapt > span {
    min-width: unset;
}

span.fake-input.right,
.form-value.fake-input.right > span {
	text-align: right;
}

.form-value > input:disabled, .form-value > input:not([type='checkbox']):not([type='radio']):read-only,
.form-value > select:disabled,
.form-value > textarea:disabled, .form-value > textarea:read-only,
.std-form.disabled .form-value > .fake-input {
	background-color: #cfcfcf;
	cursor: not-allowed;
}

textarea {
	height: 8rem;
}

.form-value > input:not([type='checkbox']):not([type='radio']),
.form-value > select,
.form-value > textarea {
	width: 100%;
}

.form-value > .tooltip > input:not([type='checkbox']):not([type='radio']),
.form-value > .tooltip > select,
.form-value > .tooltip > textarea {
	width: 13.625rem;
}

.form-value.form-value-lg > .tooltip > input:not([type='checkbox']):not([type='radio']),
.form-value.form-value-lg > .tooltip > select,
.form-value.form-value-lg > .tooltip > textarea {
	width: 38.125rem;
}

input[type='checkbox'],
input[type='radio'] {
	cursor: pointer;
}

input[type='text'].double {
	text-align: right;
}

input.sm {
	width: 5rem;
}

div.filler {
	flex-grow: 100;
}

div.spacing-v-sm {
	height: 3rem;
}

div.spacing-v-md {
	height: 7rem;
}

span.space-text-vsm {
	display: inline-block;
	width: 0.5rem;
}

.text-lg {
	font-size: 1.2rem;
}

/**********************/
/* --STD containers-- */
/**********************/
.std-container {
	display: flex;
	flex-direction: column;
}
.std-row-container {
	display: flex;
	flex-direction: row;
}

.std-container > .container-fill-1,
.std-row-container > .container-fill-1 {
	flex-grow: 1;
}

.std-container.scroll,
.std-row-container.scroll {
	overflow: auto;
}

.std-container.scroll-x,
.std-row-container.scroll-x {
	overflow-x: auto;
	overflow-y: hidden;
}

.std-container.scroll-y,
.std-row-container.scroll-y {
	overflow-x: hidden;
	overflow-y: auto;
}

.std-container.no-scroll,
.std-row-container.no-scroll {
	overflow: hidden;
}

.std-text {
	padding: 0.5rem 0.8rem;
}

.container-smw {
	width:20%;
	min-width: 15rem;
	max-width: 25rem;
}

.items-container > .items-title {
	padding: 0.5rem 0.7rem;
	margin-bottom: 0.2rem;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}

.items-container > .items-title:not(:first-child) {
	margin-top: 0.5rem;
}

.items-container > .item {
	display: flex;
	flex-direction: row;
	padding: 0.2rem 0.6rem 0 0.6rem;
}

.item > .badge {
	font-size: 0.85rem;
	margin-right: 0.5rem;
}

.item > .controls {
	display: flex;
	font-size: 0.85rem;
	flex-direction: row;
	column-gap: 0.2rem;
	margin-left: 0.5rem;
	align-items: flex-start;
}

.item > .controls > i[class^='fa-'],
.item > .controls > i[class*=' fa-'] {
	cursor: pointer;
}

.item > .content {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    flex-grow: 1;
}

.items-container > .item:last-child {
	margin-bottom: 0.2rem;
}

.items-container > .item:hover {
	background-color: #d2eafd;
}

.padded {
	padding-left: 0.8rem;
	padding-left: 0.8rem;
}
/**********************/

/**********************/
/* --Fake elements--- */
/**********************/
.std-simple-link {
	cursor: pointer;
	font-weight: bold;
}

.std-fake-simple-link {
	font-weight: bold;
}
/**********************/

/*
* tables
*/
.data-table {
	border-collapse: collapse;
}

.data-table, 
.data-table th, 
.data-table td {
	border: 1px solid #000000;
}

.data-table thead tr,
.data-table tr.header-row {
	background-color: #e1e1e1;
}

.data-table th,
.data-table td {
    padding: 0.5rem 0.35rem;
}

.data-table tbody tr:not(.separator):nth-child(even),
.data-table tr.data-row:nth-child(even) {
	background-color: #f3f3f3;
}

.data-table tbody tr:not(.separator):nth-child(odd),
.data-table tr.data-row:nth-child(odd) {
	background-color: #fdfdfd;
}

.data-table th.tools,
.data-table td.tools {
	text-align: right;
	width: 4%;
	white-space: nowrap;
}

.data-table i[class^='fa-'],
.data-table i[class*=' fa-'] {
	cursor: pointer;
	margin-right: 0.5rem;
}

table .templateRow {
	display: none !important;
}

.tbl-responsive {
	
}

/**********************/
/* -Table pagination- */
/**********************/
.tbl-pagination {
	display: flex;
	flex-direction: row;
	gap: 0.4rem;
	justify-content: flex-end;
	margin-right: 1.5rem;
}

.tbl-pagination .pagination_nr {
	display: flex;
	padding: 0.2rem;
	min-width: 2.5rem;
	max-width: 2.5rem;
	min-height: 2.5rem;
	max-height: 2.5rem;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.tbl-pagination .pagination_nr.current {
	font-weight: bold;
}

.tbl-pagination .pagination_nav {
	display: flex;
	padding: 0.2rem;
	min-width: 2.5rem;
	max-width: 2.5rem;
	min-height: 2.5rem;
	max-height: 2.5rem;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.tbl-pagination .pagination_ellipsis {
	display: flex;
	padding: 0.2rem;
	min-width: 2.5rem;
	max-width: 2.5rem;
	min-height: 2.5rem;
	max-height: 2.5rem;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

/**********************/
/* ------Alerts------ */
/**********************/
.msg-alert-container {
	display: flex;
	flex-direction: column;
	position: absolute;
	right: 0;
	top: 0;
	width: 100vw;
	z-index: 100;
}

.msg-alert {
	display: flex;
	flex-direction: row;
	padding: 0.5rem 0.75rem;
	background-color: #e8e8e8;
	color: black;
	font-size: 1.1rem;
}

.msg-alert .close-btn {
    color: black;
    background: none;
    border: none;
    margin-left: 15px;
    cursor: pointer;
}

.msg-alert.msg-info {
	background-color: #a6d4fa;
}

.msg-alert.msg-success {
	background-color: #1dd95d;
}

.msg-alert.msg-error {
	color: #ffffff;
	background-color: #e92b2b;
}

.msg-alert.msg-warning {
	color: #ffffff;
	background-color: #e92b2b;
}

.msg-alert.msg-error .close-btn,
.msg-alert.msg-warning .close-btn {
	color: #ffffff;
}

.closebtn:hover {
/*   color: black; */
}
/**********************/

/**********************/
/* -----Tooltips----- */
/**********************/
span.tooltip,
div.tooltip {
	position: relative;
}

span.tooltip .tooltiptext,
div.tooltip .tooltiptext {
	visibility: hidden;
	background-color: #f59a9a;
	color: #b11616;
	text-align: center;
	border-radius: 0.25rem;
	padding: 0.15rem 0.15rem;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 0;
	transition: opacity 0.3s;
	font-size: 0.8rem;
    border-color: #bf1717;
    border-width: 1px;
    border-style: solid;
    font-weight: 600;
}

.tooltiptext.tooltiperror,
.tooltiptext.error {
	background-color: #f97c7c;
}

span.tooltip .tooltiptext::after,
div.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

span.tooltip:hover .tooltiptext,
div.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}
/**********************/

/**********************/
/* ----Positioned---- */
/**********************/
.std-container:has(.top-right),
.page-body:has(.msg-alert-container) {
	position: relative;
}

.positioned.top-right {
	position: absolute;
	top: 0.1rem;
	right: 0.1rem;
}

.positioned.forward {
	z-index: 99;
}
/**********************/
