body {
    margin: 0;        /* This overrides the default margin settings and forces the contant to stretch to full page */
    overflow: hidden;   /* This forces page to stay fixed */
    font-family: "Helvetica Neue", Helvetica, Arial, serif !important;
    font-size: 17px;
    font-weight: 300 !important;
    user-select: none;
}

* {
    box-sizing: border-box;
}

/**********************************************************/
/*     Boxes Elements                                     */

.fullPageModal {
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 100;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.modalDialogue {
    position: absolute;
    padding-top: 10px;
    box-shadow: 0 0 16px 5px rgba(200, 200, 200, 0.5);
    border: 1px solid lightgrey;
    border-radius: 10px;
    background: #ffffff;
    z-index: 101;
    display: flex;
    flex-flow: column nowrap;
}

.modalDialogueNoBorder {
    position: absolute;
    padding-top: 10px;
    background: #ffffff;
    z-index: 101;
    display: flex;
    flex-flow: column nowrap;
}

.modalDialogueCentered {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 80%;
    max-height: 80%;
    width: fit-content;
    height: fit-content;
    padding-top: 10px;
    box-shadow: 0 0 16px 5px rgba(200, 200, 200, 0.5);
    border: 1px solid lightgrey;
    border-radius: 10px;
    background: #ffffff;
    z-index: 101;
    display: flex;
    flex-flow: column nowrap;
}

.modalBox {
    padding: 10px;
    border-bottom: 1px solid red;
}

.contentWrapper {
    padding: 10px;
    border-bottom: 1px solid red;
    flex: 1 1 0;
    display: flex;
    flex-flow: column nowrap;
}

.firstBox {
    /* padding: 1px; */
    width: 100%;
    height: 100%;
}

/**********************************************************/
/*     Menus & Buttons Management                                 */

/* Generic styling of the buttons */

/*
.checked, .unchecked {
    cursor: pointer;
    height: 34px;
    width: calc(100% - 10px) !important;
    line-height: 34px;
    font-size: 17px;
    font-weight: 300;
    border: solid 1px #03b8c3;
    border-radius: 3px;
    color: #03b8c3;
    padding: 0 5px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 5px;
    text-align: center !important;
}
*/

.buttonCancel, .buttonSave, .buttonSettings, .buttonEdit, .button, .buttonCancelMD, .buttonSaveMD {
    cursor: pointer;
    height: 32px;
    width: calc(100% - 10px) !important;
    line-height: 20px;
    font-size: 17px;
    font-weight: 300;
    border: solid 1px #03b8c3;
    border-radius: 5px;
    background-color: #03b8c3;
    color: white;
    padding: 5px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 5px;
    text-align: center !important;
}

/*
.buttonSave, .checked, .button:hover {
    color: white;
    background-color: #03b8c3;
}
*/

.menuElement {
    width: 100%;
    height: 44px;
    display: flex;
    flex: 0 0 44px;
    justify-content: space-between !important;
    padding:  0px 10px !important;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border: 1px transparent;
    border-radius: 10px;
    /*font-family: "Helvetica Neue"; */

}
.menuElement > div:nth-child(2) {
    margin-left: auto;
}

/**********************************************************/
/*       Scrollbar standard features (applies to divs)    */ 

div.scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: #abc3c4;
    border-radius: 3px;
}

div.scrollbar::-webkit-scrollbar-thumb {
    background: #03b8c3;
    border-radius: 3px;
    border: 2px solid #03b8c3;
    background-clip: content-box;
}

div.scrollbar {
    overflow: hidden;
    scrollbar-gutter: stable;
}

div.scrollbar:hover {
    overflow: auto;
    scrollbar-gutter: stable;
}

/*****************************************************************/
/*  Scrollbar standard features (applies to multiple selects)   */ 

select.scrollbar::-webkit-scrollbar {
    width: 11px;
    height: 11px;
    background: transparent;
    border-radius: 10px;
}

select.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background-clip: content-box;
}

select.scrollbar {
    overflow: hidden;
}

select.scrollbar:hover {
    overflow: auto;
}

/**********************************************************/
/*   field elements  */
/* standard: */

/* LABELS */

.labelElement {
    /*
    width: calc(100% - 10px);
    max-width: 290px;
    min-height: 10px;
    line-height: 17px;
    */

    text-align: right;

    padding-left: 5px;
    padding-right: 5px;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: visible;
    width: fit-content;

}

.infoElement {
    max-width: 100%;
    height: 41px;
    min-height: 29px;
    line-height: 29px;
    text-align: left;
    padding-top: 6px;
    padding-bottom: 6px;

    padding-left: 5px;
    border: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.textareaInfoElement {
    height: auto; 
    width: calc(100% - 5px); 
    z-index: 2; 
    position: relative;
    text-overflow: unset;
    white-space: normal;
}

/* FILEDS */

/*
input {
    -webkit-appearance: none;
    appearance: none;
}
*/

.inputElement {
    /* max-width: 290px; */
    width: calc(100% - 10px);
    min-width: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    height: 31px;
    border: 1px solid lightgrey;
    padding-left: 4px;
    padding-right: 4px;
    font-family: inherit;
    font-weight: inherit;
    font-size: 17px;
}

select.inputElement {
    -webkit-appearance: none;  /* For Safari and Chrome */
    -moz-appearance: none;     /* For Firefox */
    appearance: none;          /* Standard syntax */
    opacity: 1;
    padding-right: 20px !important;
}

.labelAndTextBlock:has(select.inputElement) {
    position: relative;
}

.labelAndTextBlock:has(select.inputElement)::after {
    content: "\25BE";
    right: 10px;
    top: 13px;
    height: 36px;
    width: 10px;
    position: absolute;
    line-height: 36px;
    pointer-events: none;
}

.labelAndTextBlock:has(select.inputElement:disabled)::after {
    content: "";
}

.labelAndTextInline:has(select.inputElement) {
    position: relative;
}

.labelAndTextInline:has(select.inputElement)::after {
    content: "\25BE";
    right: 10px;
    top: 5px;
    height: 32px;
    width: 10px;
    position: absolute;
    line-height: 36px;
    pointer-events: none;
}

.labelAndTextInline:has(select.inputElement:disabled)::after {
    content: "";
}

textarea:disabled {
    background-color: white;
}

.inputElementNoMaxWidth {
    width: calc(100% - 10px);
    min-width: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    height: 32px;
    border: 1px solid lightgrey;
    padding-left: 4px;
    padding-right: 4px;
    font-family: inherit;
    font-weight: inherit;
    font-size: 17px;
}

.inputElementNoBorder {
    width: calc(100% - 10px);
    min-width: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    height: 32px;
    border: 0;
    background-color: white;
    padding-left: 4px;
    padding-right: 4px;
    font-family: inherit;
    font-weight: inherit;
    font-size: 17px;
}

.specimenTypeNoBorder {
    width: calc(100% - 10px);
    min-width: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    height: 32px;
    border: 0;
    background-color: transparent;
    padding-left: 4px;
    padding-right: 4px;
    font-family: inherit;
    font-weight: inherit;
    font-size: 17px;
}

input[type="checkbox"], input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #03b8c3;
    margin: 12px 5px 12px 5px;
    width: 18px;
    height: 18px;
    position: relative;
    accent-color: #03b8c3;
}

input[type="checkbox"] {
    border-radius: 5px;
}

input[type="radio"] {
    border-radius: 50%;
}

textarea.oneRowTA {
    height: 36px !important;
    min-height: unset !important;
}

textarea.expandable {
    min-height: 36px;
    max-height: 108px;
    height: 36px;
}

/*
input[type="checkbox"]:checked, input[type="radio"]:checked {
    accent-color: #03b8c3;
}
*/

input[type="checkbox"]:checked {
    background-color: #03b8c3;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    border-bottom: 2.5px solid white;
    border-right: 2.5px solid white;
    /* border-radius: 2.5px; */
    transform: rotate(35deg);
    width: 5px;
    height: 10px;
    top: -0.5px;
    left: 3px;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    border-radius: 50px;
    border: 1px solid #03b8c3;
    background-color: #03b8c3;
    width: 7px;
    height: 7px;
    top: 2.5px;
    left: 2.5px;
}

/* limit length of input elements */

.input50 {
    max-width: 50px;
}

.input100 {
    max-width: 100px;
}

.input150 {
    max-width: 150px;
}

.input200 {
    max-width: 200px;
}

.input250 {
    max-width: 250px;
}

div.inputElement {
     line-height: 31px;
}

.elementRequired {
   border: 1px solid red !important;
}

.elementRequiredMissed {
    background: yellow !important;
}

input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: searchfield-cancel-button;
}

/************************************************** 
              DISABLED ELEMENTS
*/

.labelAndTextBlock > .inputElement:disabled, .labelAndTextBlock > .inputElementNoMaxWidth:disabled, .labelAndTextBlock > select:disabled,  .labelAndTextBlock > textarea:disabled, .labelAndTextBlock > .inputElement.noMinWidth:disabled {
    border-color: #bbbbbb;
    color: #666666;
}

.labelAndTextInline > .inputElement:disabled, .labelAndTextInline > .inputElementNoMaxWidth:disabled, .labelAndTextInline > select:disabled, .labelAndTextInline > textarea:disabled, .labelAndTextInline > div.infoElement, .labelAndTextInline > .infoElement.noMinWidth {
    border-color: #bbbbbb;
    color: #666666;
}

.labelAndTextInline > .inputElement:disabled, .labelAndTextInline > .inputElementNoMaxWidth:disabled, .labelAndTextInline > select:disabled, .labelAndTextInline > textarea:disabled, .labelAndTextInline > div.infoElementIndex {
    border: none;
    color: black;
}

.elementRequired:disabled {
    border-color: #bbbbbb !important;
}

input[type="checkbox"]:checked:disabled, input[type="radio"]:checked:disabled {
    accent-color: #666666;
    background-color: #bbbbbb;
}

/*
input[type=time] {
    max-width: 180px;
}

input[type=date] {
    max-width: 140px;
    padding-right: 10px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    margin-right: 0;
    padding-right: 0;
}
*/

input[type=number] {
    max-width: 120px;
    min-width: 30px;
    text-align: end;
}

input[type=file] {
    opacity: 0;
    min-width: unset;
    width: 10px;
}

input:disabled {
    color: #666666;
    border-color: #bbbbbb;
  	background-color: white;
}


textarea.inputElement {
    /* max-width: calc(100% - 15px); */
    max-width: none;
    height: 4.5em;
    min-height: 4.5em;
    max-height: 20em;
    resize: none;
    line-height: 20px;
    margin-right: 8px;
}

textarea.oneLineElement {
    /* max-width: calc(100% - 15px); */
    max-width: none;
    height: 31px;
    min-height: 31px;
    max-height: 10em;
    resize: none;
    line-height: 20px;
    margin-right: 8px;
}

.hostingElement {
    width: 100%;
    height: 100%;
}

/* BOXES */

.labelAndTextInline {
    /* width: 100%; */
    display: flex;
    flex-flow: row nowrap;
    flex: 0 0 auto;
}

.labelAndTextBlock {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    height: fit-content;
}

/* ******************************************************************************
                  BORDERED WRAPPERS */

.borderedWrapper {
    border: 1px solid #03b8c3;
    border-radius: 5px;
    margin-top: 13px;
    /* padding: 5px; */
    position: relative;
    padding-top: 10px;
}

.borderedWrapper > .labelAndTextBlock:first-child {
    position: absolute;
    height: 20px !important;
    top: -14px;
    left: 11px;
    background-color: transparent;
    /* width: fit-content !important; */
    max-width: calc(100% - 22px);
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 20px !important;
}

.borderedWrapper > .labelAndTextBlock:first-child > .labelElement {
    height: 20px;
    background-color: transparent;
    max-width: 100%;
    overflow: hidden;
    padding: 0px 3px;
    font-size: 17px;
    left: 0px;
}

.wrapperLabel {
    height: 20px !important;
    background-color: white;
    width: fit-content !important;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    line-height: 20px;
}

/************************************************************/
/* labels for different arrange types */

.labelAndTextBlock > div.labelElement {
    min-height: 13px;
    line-height: 17px;
    position: relative;
    height: 13px;
    top: 4px;
    left: 16px;
    background-color: transparent;
    padding: 0 3px;
    width: fit-content !important;
    max-width: calc(100% - 32px);
    z-index: 1;
}

.labelAndTextBlock > div.labelElement::before {
    position: absolute;
    width: 100%;
    height: 10px;
    top: 9px;
    content: "";
    left: 0px;
    background-color: white;
    z-index: -1;
}

.labelAndTextInline > div.labelElement {
    height: 32px;
    line-height: 20px;
    padding: 6px 0px 6px 0px;
    margin: 5px 5px 5px 5px;
    font-weight: 300;
}

.labelAndTextInline > .inputElement, .labelAndTextInline > .infoElement, .labelAndTextInline > .inputElementNoMaxWidth {
    height: 32px;
    margin: 5px 5px 5px 5px;
    border: 1px solid #03b8c3;
    border-radius: 5px;
    padding: 5px 5px 5px 5px;
    font-size: 17px;
    font-weight: 200;
    line-height: 20px;
}

.labelAndTextBlock > .inputElement, .labelAndTextBlock > .inputElementNoMaxWidth, .labelAndTextBlock > .infoElement {
    height: 36px;
    line-height: 20px;
    border: 1px solid #03b8c3;
    border-radius: 5px;
    padding: 9px 13px 5px 13px;
    color: black;
    font-size: 17px;
    font-weight: 200;
    margin: 0 5px 5px 5px;
    width: calc(100% - 10px) !important;
}

.labelAndTextBlock > textarea.inputElement, .labelAndTextBlock > textarea.inputElementNoMaxWidth {
    line-height: 20px;
    height: 4.5em;    
}

.labelAndTextBlock > textarea.inputElementNoMaxWidth.expandable {
    height: 36px;
}

::placeholder {
    color: lightgrey;
    opacity: 1;
    font-size: 16px;
}

.labelAndTextBlock:has(.searchField) {
    position: relative;
}

.labelAndTextInline:has(.searchField) {
    position: relative;
    padding-top: 15px;
}

.labelAndTextBlock:has(.searchField)::before, .labelAndTextInline:has(.searchField)::before {
    content: "\1F50E";
    position: absolute;
    top: 22px;
    left: 20px;
    line-height: 30px;
}

/*
.labelAndTextBlock:has(.searchField) > .labelElement {
    padding: 0;
}
*/

.orderField {
    padding-right: 10px;
    position: relative;
}

.orderField::after {
    position: absolute;
    right: 5px;
    top: 0;
    font-weight: bold;
    height: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-bottom: 3px;
    box-sizing: border-box;
}

.orderField.orderUp::after {
    content: "\2193";
}

.orderField.orderDown::after {
    content: "\2191";
}

.searchField {
    padding-left: 35px !important;
}

.labelAndTextInline > .searchField {
    height: 32px;
    line-height: 20px;
    border: 1px solid #03b8c3;
    border-radius: 5px;
    padding: 5px 5px 5px 20px;
    color: black;
    font-size: 17px;
    font-weight: 200;
    margin: 5px 5px 5px 5px;
    width: calc(100% - 10px) !important;
}

.noMinWidth {
	min-width: unset;
}

.dateTimeBox {
    padding-left: 13px;
    padding-right: 13px;
    margin-left: 5px;
    margin-right: 5px;
    padding-top: 15px;
    padding-bottom: 13px;
    margin-bottom: 5px;
    height: fit-content;
}

.dateBox {
    padding-left: 13px;
    padding-right: 13px;
    margin-left: 5px;
    margin-right: 5px;
    padding-top: 8px;
    padding-bottom: 6px;
    margin-bottom: 5px;
    height: fit-content;    
}

.dateTimeBox > div:has(input[type=date]), .dateTimeBox > div:has(input[type=time]), .dateBox > div:has(input[type=date]) {
    height: fit-content !important;
    width: fit-content !important;
}

.dateTimeBox > div  > input[type=date], .dateBox > div  > input[type=date] {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #e6e6e6e9;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
    width: 122px;
    height: 20px;
    border: none;
    border-radius: 0px;
    margin: 0px;
}

.dateTimeBox > div  > input[type=time] {
    padding-right: 0px;
    padding-left: 0px;
    background-color: #e6e6e6;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 122px;
    height: 20px;
    padding-right: 0px;
    padding-left: 6px;
    border: none;
    border-radius: 0px;
    margin: 0px;
    margin-top: 16px;
}

/* **********************************************************************************/
/* LEFTOVERS... */

        .fieldBox {
            height: auto;
            width: fit-content;
       }

        .textField {
            height: 40px;
            border: 1px solid #03b8c3;
            border-radius: 10px;
            padding: 1px 20px;
            color: grey;
            font-size: 15px;
            font-weight: 100;
            margin-left: 5px;
            margin-right: 5px;
        }


button, input, textarea, select, optgroup, option {
    font-family: inherit;
    font-weight: inherit;
}

.checkboxElementNarrow {
    display: flex;
    align-items: center;
    width: 20px;
    height: 29px;
}

.checkBoxLabel {
    width: calc(100% - 30px);
    height: 29px;
    min-height: 29px;
    line-height: 29px;
    text-align: left;
    margin-left: 10px;
}

.checkboxReadOnly {
    width: 30px;
    align-self: center;
}

select {
    background: white;
}

/*
select[multiple] {
    width: 100%;
    height: 88px;   
    border: 1px solid rgb(208, 208, 208);
}
*/

.multipleSelector {
    width: 100%;
    height: 88px;
}

select.multipleSelector {
    border: 1px solid rgb(208, 208, 208);
}

/*
select[multiple]:hover {
    height: 120px;
}
*/

.multipleSelectorLine {
    height: 22px;
    /* font-family: "Helvetica Neue"; */
    font-size: 17px;
    font-weight: 300;
    line-height: 22px; /* for vertically centering the text */
    text-align: left;
}

/*****************************************************************/
/*      autocomplete fields styling                              */

.autocomplete {
    /* the container must be positioned relative: */
    position: relative;
    display: inline-block;
    /*width: calc(100% - 5px);*/
    width: 100%;
    height: 100%;
    max-width: 310px;
    /*margin: 0 5px;*/
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 0 7px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4;
    height: 41px;
    width: 100%;
    min-width: 150px;
    max-width: 400px;
    line-height: 41px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9; 
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}

/************************************************************************/
/*   custom SELECTS with callout box                                    */

.customSelect {
    position: relative;
    border: 1px solid #03b8c3;
    border-radius: 10px;
    padding: 2px 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

/*
.customSelect::after {
    content: "\25BC";
    line-height: 30px; 
    padding-right: 10px; 
    float: right;
}
*/

/* options box */

.calloutBox {
    position: absolute;
    height: fit-content;
    max-height: 300px;
    width: auto;
    max-width: 100%;
    min-width: 100%;
    display: none;
    z-index: 105;
}

.top {
    top: calc(100% + 15px);
    left: 0;
}

.bottom {
    bottom: -20px;
    left: 0;
}

.left {
    top: 0;
    left: calc(100% + 15px);
}

.right {
    top: 0;
    right: -20px;
}

/* the callout V sign */

.calloutBoxS {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    display: none;
    z-index: 105;
}

.calloutBoxS::after {
    content: "";
    position: absolute;
    border-width: 12px;
    border-style: solid;
    z-index: 107;
    border-color: transparent;
}

.topS::after {
    top: -23px;
    border-bottom-color:  rgb(240, 240, 240);
    right: 10px;
}

.bottomS::after {
    bottom: -23px;
    border-top-color:  rgb(240, 240, 240);
    right: 10px;
}

.rightS::after {
    top: calc(50% - 12px);
    border-left-color:  rgb(240, 240, 240);
    right: -23px;
}

.leftS::after {
    top: calc(50% - 12px);
    border-right-color:  rgb(240, 240, 240);
    left: -23px;
}

.calloutBoxS::before {
    content: "";
    position: absolute;
    border-width: 12px;
    border-style: solid;
    border-color: transparent;
    z-index: 106;
}

.topS::before {
    top: -24px;
    border-bottom-color: darkgrey;
    right: 10px;
}

.bottomS::before {
    bottom: -24px;
    border-top-color: darkgrey;
    right: 10px;
}

.rightS::before {
    top: calc(50% - 12px);
    border-left-color: darkgrey;
    right: -24px;
}

.leftS::before {
    top: calc(50% - 12px);
    border-right-color: darkgrey;
    left: -24px;
}

/* dropdown content */

.calloutBoxContent {
    height: fit-content;
    width: fit-content;
    min-width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: normal;
}

.calloutBoxContent > div {
    height: 33px;
    line-height: 30px;
    border-radius: 10px;
    background: #03b8c3;
    width: auto;
    min-width: 100%;
    padding: 2px 10px;
    margin: 0 5px;
    color: white;
}

.calloutBoxContent > div:first-child {
    border-top: none;
}

.calloutBoxContent > div:hover {
    background: #20C2e5;
}

/**********************************************************/
/*       progress bar                                     */

.progressBarContainer {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background-color: lightgrey;
    padding: 3px;
    margin: 10px 0;
}

.progressBarContainer > div {
    width: 100%;
    height: 14px;
    border-radius: 8px;
    background-color: greenyellow;
    min-width: 1%;

}


/* *******************************************************
** Froms Arrays styling
*/

.formsArrayWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    /* padding-bottom: 12px; */
}

.cellWrapper {
    display: block;
    flex: 0 0 auto;
}

/************************************************
// doc mgmt
*/

.largeImage {
    /*width: 600px; */
    width: 100%;
    min-width: 100%;
    /*height: 700px; */
    height: 100%;
    object-fit: contain;
    object-position: left top;
    /*border: 1px solid red; */
}

.largeImageCentered {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/************************************************/
/* waiting clock */

.clock {
	position: relative;
	width: 62px;
	height: 62px;
	border-radius: 30px;
	border: 6px solid black;
	/*left: 50%;
	margin-left: -25px;
	top: 50%;
    margin-top: -25px;*/
}

.hours {
    position: absolute;
    width: 50px;
    height: 6px;
    top: 22px;
    animation: you-spin-me-round-round-baby-right-round 0s linear 0s infinite;
}

.hours:before {
        content: "";
        height: 6px;
        width: 18px;
        position: absolute;
        right: 10px;
        background: black;
        border-radius: 6px;
}

.minutes {
    position: absolute;
    width: 50px;
    height: 6px;
    top: 22px;
    animation: you-spin-me-round-round-baby-right-round 0s linear 0s infinite;
}

.minutes:before {
        content: "";
        height: 6px;
        width: 25px;
        position: absolute;
        right: 3px;
        background: black;
        border-radius: 6px;

}

@keyframes you-spin-me-round-round-baby-right-round {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.queryWaitFloating {
    width: 400px;
    height: 200px;
    top: 200px;
    left: calc(calc(100vw / 2) - 200px);
}

.clockBox {
    align-items: center;
}

.queryWaitNoAnimation {
    animation-duration: 0s;
}

.queryWaitHoursAnimation {
    animation-duration: 24s;
}

.queryWaitMinutesAnimation {
    animation-duration: 2s;
}

.boldText {
    font-weight: bold;
}

.italicText {
    font-style: italic;
}

.underlinedText {
    text-decoration: underline;
}

.STTmic {
    position: relative;
}

.STTmic::after {
    position: absolute;
    top: -2px;
    right: 10px;
    content: "\01F399";
    font-size: 20px;
}

/* ***************************************************
//     Modal dialogue styling
*/
.contentWrapperMD {
    display: flex;
    flex-flow: column nowrap;
    border-bottom: 1px solid red;
    max-height: calc(100% - 83px);
    height: fit-content;
    flex: 1 1 auto;
}

.labelElementMD {
    width: auto;
    height: 41px;
    min-height: 29px;
    line-height: 29px;
    text-align: right;

    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.MDSelected {
    background-color: #e9e9e9;
}

/*

.buttonCancelMD, .buttonSaveMD {
    cursor: pointer;
    height: 34px;
    min-width: 100px;
    line-height: 34px;
    font-size: 17px;
    font-weight: 300;
    border: 1px solid #03b8c3;
    border-radius: 3px;
    color: #03b8c3;
    padding: 0 5px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 5px;
    text-align: center !important;
}

.buttonSaveMD {
    color: white;
    background-color: #03b8c3;
}

*/

.titleMD {
    width: 100%;
    height: 41px;
    line-height: 29px;
    text-align: center;
    font-weight: 400;
    border-bottom: solid 1px red;
}

.actionMenuDialogue {
    top: 55px;
    background-color: #fefefe;
    width: 182px;
    right: 72px;
    padding:10px;
    height: auto;
    font-size: 17px !important;
}

.changeLanguageModal {
    top: calc((100vh - 200px) / 2);
    left: calc((100vw - 500px) / 2);
    height: 150px;
    width: 500px;
    padding-top: 30px;
}

.fading_message {
    padding: 10px;
    box-shadow: 0px 0px 16px 5px rgba(200, 200, 200, 0.5);
    border: 1px solid lightgrey;
    border-radius: 10px;
    background: rgba(255,255,255,0.8);
    position: fixed;
    top: 20px;
    left: 250px;
    z-index: 2000;
    display: none;
    /* font-family: "Helvetica Neue"; */
    font-size: 17px;
    height: 50px;
    text-align: center;
    line-height: 20px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 200px;
    opacity: 1;
    
}


/**********************************************
         NEW GEN
***********************************************/

.rowFormsArray {
    flex-direction: row;
}

.columnFormsArray {
    flex-direction: column;
}

.wrapFormsArray {
    flex-wrap: wrap;
}

.no-wrapFormsArray {
    flex-wrap: nowrap;
}

.formsArrayWrapper > div.rowFormsArray {
    height: 100%;
}

.formsArrayWrapper > div.columnFormsArray {
    width: 100%;
}

/* ***************************************************************
// tabbed classes
*/


.tabbedMenuLEFT {
    /* width: 300px; */
    border-right: 1px solid red;
    display: flex;
    flex-flow: column nowrap;
    overflow: auto;
    /* background-color: #ffffff; */
    /* background-color: rgb(255,225,225); */ 
}

.tabbedMenuLEFT > div {
    position: relative;
    height: 44px;
    line-height: 44px;
    /* font-family: "Helvetica Neue"; */
    font-size: 21px;
    font-weight: 300;
    padding: 0px 10px;
    color: blue;
    width: 100%;
}

.tabbedMenuLEFT > div:hover {
    cursor: pointer;
    color: rgb(9, 78, 150);
}

.tabbedMenuLEFT > div::after {
    display: none;
    border-width: 10px;
    border-style: solid;
    border-color: transparent red transparent transparent;
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% - 20px);
    margin-top: -10px;
}

.tabbedMenuLEFT > div:has(.tabbedMenuShowing)::after {
    display: inline-block;
}

.secondRight > div:nth-child(2) {
    margin-left: auto;
}

.thirdRight > div:nth-child(3) {
    margin-left: auto;
}

.lastRight > div:last-child {
    margin-left: auto;
}

.tabbedMenuTOP {
    /*border-bottom: 1px solid red;*/
    display: flex;
    flex-flow: row nowrap;
    overflow-x: auto;
    overflow-y: visible;
    align-items: flex-end;
    position: relative;
}

.tabbedMenuTOP::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    background-color: red;
    z-index: 0;
}

.tabbedMenuTOP > div {
    position: relative;
    bottom: 0px;
    height: 44px;
    line-height: 44px;
    font-size: 21px;
    font-weight: 300;
    padding: 0px 10px;
    color:blue;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border: 1px solid red;
    margin: 0px 2px;
    text-align: center;
}

.tabbedMenuTOP > div:has(div.tabbedMenuShowing) {
    border-bottom: 1px solid white !important;
    z-index: 2;
}

.tabbedMenuBOTTOM > div:has(div.tabbedMenuShowing) {
    border-top: 1px solid white !important;
    z-index: 2;
}

.tabbedMenuTOP > div:hover {
    cursor: pointer;
    color: rgb(9, 78, 150);
}

.tabbedMenuBOTTOM {
    /*border-top: 1px solid red; */
    display: flex;
    flex-flow: row nowrap;
    overflow: auto;
    align-items: flex-start;
    position: relative;
}

.tabbedMenuBOTTOM::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 0px;
    background-color: red;
    z-index: 0;
}

.tabbedMenuBOTTOM > div {
    position: relative;
    top: 0px;
    height: 44px;
    line-height: 44px;
    font-size: 21px;
    font-weight: 300;
    padding: 0px 10px;
    color:blue;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 1px solid red;
    margin: 0px 2px;
    text-align: center;
}

.tabbedMenuBOTTOM > div:hover {
    cursor: pointer;
    color: rgb(9, 78, 150);
}

.tabbedMenuSELECT {
    border-bottom: 1px solid red;
    display: flex;
    flex-flow: row nowrap;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-end;
    position: relative;
    padding-right: 10px;
}

.tabbedMenuSELECT > select {
    position: relative;
    height: 31px;
    line-height: 31px;
    font-size: 21px;
    font-weight: 300;
    align-self: center;
}

.tabbedMenuBUTTONS {
    border-bottom: 1px solid red;
    display: flex;
    flex-flow: row nowrap;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-end;
    position: relative;
    padding-right: 5px;
}

.tabbedMenuBUTTONS > div {
    position: relative;
    height: 44px;
    line-height: 44px;
    font-size: 21px;
    font-weight: 300;
    padding-left: 10px;
    color: lightBlue;
    text-align: center;
    width: fit-content;
}

.tabbedMenuBUTTONS > div::after {
    content: "|";
    color: lightblue;
    padding-left: 10px;
}

.tabbedMenuBUTTONS >div.tabbedMenuShowing {
    color: blue;
}

.tabbedMenuBUTTONS > div:hover {
    cursor: pointer;
    color: rgb(9, 78, 150);
}

.tabbedMenuBUTTONS > div:last-child::after {
    display: none;
}

.tabbedMenuRADIO {
    display: flex;
    position: relative;
    flex-flow: row nowrap;
    border-bottom: 1px solid red;
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-end;
    position: relative;
    padding-right: 5px;
}


.tabbedWrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.tabbedContent {
    flex: 1 1 0;
    overflow: hidden;
    position: relative;
}

.tabbedContent > div {
    height: 100%;
    width: 100%;
}

/******************************************************
/  Specimen status background colors
*/

.backgroundRed {
    background-color: lightcoral;
}

.backgroundBlue {
    background-color: lightblue;
}

.backgroundGreen {
    background-color: lightgreen;
}

.backgroundGrey {
    background-color: lightgrey;
}

.backgroundYellow {
    background-color: yellow !important;
}


.separatorElement {
    height: 1px;
    min-height: 1px;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
    background-color: #ededed;
}

.separatorElementInvisible {
    height: 1px;
    min-height: 1px;
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
    background-color: white;
}

.bottomBorder {
    border-bottom: 1px solid #03b8c3;
}

.topBorder {
    border-top: 1px solid #03b8c3;
}

.rightBorder {
    border-right: 1px solid #03b8c3;
}

.numberFormat {
    justify-content: flex-end !important;
    padding-right: 4px;
}

.collapsedExpandedArrow {
    display: flex;
    position: relative;
    padding-right: 25px !important;
    align-items: center;
    color: black;
    font-size: 17px;
}

.collapsedExpandedArrow::after {
    position: absolute;
    right: 0px;
    top: calc(50% - 10px);
}


.collapsed::after {
    /* content: "▶"; */
    content: "\25BA";

}

.expanded::after {
    /* content: "▼"; */
    content: "\25BC";

}

.ajutorAplicatieLIS {
    margin-left: -2px;
    margin-right: 6px;
    filter: invert(46%) sepia(80%) saturate(1553%) hue-rotate(148deg) brightness(100%) contrast(98%);
}

/************************************************
// doc mgmt - OLD!!!
*/

.largeImage {
    /*width: 600px; */
    width: 100%;
    min-width: 100%;
    /*height: 700px; */
    height: 100%;
    object-fit: contain;
    object-position: left top;
    /*border: 1px solid red; */
}

.largeImageCentered {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.odtView {
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    overflow: auto;
}

#odtElement div,p,h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-weight: normal;
    font-family: unset;
    font-size: unset;
    line-height: normal;
    min-height: 1.2em;
}


.DLLoaded {
    /*border-right: 1px solid red; */
    overflow: auto;

}

.DLDocPicture {
    /*margin: 10px;*/
    overflow: auto;
    position: absolute !important;
    display: none;
    width: 100%;
    height: 100%;
    background: white;

}

.DLListWrapper {
    height: calc(100% - 45px);
    min-height: calc(100% - 45px);
    position: relative;
    transform: translateX(0);
}

.docHighlight {
    /* border: 3px solid blue; */
    border: 1px solid red;
    background: lightgrey;
}

.DLConsultationHeader {
    background: rgb(240,240,255);
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.recContainer {
    width: 180px;
    height: 150px;
    min-height: 142px;
    /* border: 1px solid red; */
    align-self: center;
    margin: 4px;
    padding: 4px;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}

.recContainerRect {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 100;
}

.recContainer:hover {
    cursor: pointer;
}

.thumbImage {
    width: 150px;
    height: 150px;
    /*align-self: center; */
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
}

.thumbImagePDF {
    width: 150px;
    height: 150px;
    /*align-self: center; */
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
}


.fileInfo {
    line-height: 21px;
}

.docIndex {
    display: none;
}

.focusDefault { 
    height: 20px; 
    width: 0; 
    opacity: 0; 
    overflow: hidden;
}

.highlighted {
    /* border: 1px solid red; */
    background: rgb(240,240,240);
    background-clip: content-box;
    padding-right: 10px;
}

.closeButton {
    position: fixed;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 21px;
    font-weight: 400;
    background: lightgrey;
    cursor: pointer;
    opacity: 0.5;
    z-index: 6;
}

.imageArea {
    position: relative;
}

.clickArea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

.docWrapper {
    position: relative;
    height: 100%;
    width: 100%;
    margin-right: 10px;
}

.docTypeModalForm {
    width: 720px;
    height: 280px;
    top: 100px;
    left:150px;
}

.imagePreview {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 10px;
    object-fit: contain;
}

.blockSlideTemporaryIndex {
    background-color: #e6e6e6;
    border: none;
}

/* menu wrapper element - space between TOP of PAGE - NO BORDER  */

.formTopMenu {
    width: 100%;
    height: 45px;
    display: flex;
    flex: 0 0 45px;
    flex-flow: row nowrap;
    /*justify-content: space-between; */
    padding: 0 10px;
    align-items: center;
}

.formTopMenu > div:nth-child(3) {
    margin-left: auto;
}

.lastVisible {
    display: flex;
}

/*
.formTopMenu > div:not(:first-child):not(:last-child):not(.lastVisible)::after {
    content: " |";
    align-self: center;
    color:rgb(0, 122, 255);
    font-size: 21px;
}
*/

.dayWrapperBox {
    padding: 5px;
}

/******************************************************************
//  Change Password */

.changePasswordModal {
    top: calc((100vh - 200px) / 2);
    left: calc((100vw - 500px) / 2);
    height: 200px;
    width: 500px;
}

.changePasswordModal > .menuElement > div {
    width: 160px;
}

.changePasswordModal > div:first-child {
    padding-right: 10px;
}

#emptyDocDivider_Box_caseExamsFormDiagnosis_I_id {
    height: 0px;
}

/* *********************** CHECK SELECTION
*/

.checkSelectionModal {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.checkSelectionTitleBox {
    height: auto;
    min-height: 20px;
    align-items: center;
}

.checkSelectionTitle {
    font-size: 20px;
    font-weight: 400;
}

.checkSelectionLetterBox {
    width: 100%;
    border-bottom: 1px solid #03b8c3;
    align-items: end;
}

.checkSelectionLetterElement {
    height: 100%;
    font-size: 17px;
    font-weight: 400;
    align-self: flex-end;
}

.checkWrapper {
    overflow: hidden;
    position: relative;
}

.dataWrapper {
    overflow: hidden;
    padding-bottom: 10px;
}

.checkLabel {
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    align-self: center;
}