body {
    margin: 0px;        /* 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 !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: 0px 0px 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: 0px 0px 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;
}
/**********************************************************/
/*     Menus & Buttons Management                                 */

/* Generic styling of the buttons */
.buttonCancel, .buttonSave, .buttonSettings, .buttonEdit, .buttonCancelMD, .buttonSaveMD {
    cursor: pointer;
    height: 34px;
    line-height: 34px;
    font-size: 21px;
    font-weight: 300;
/*    background-color: #ffffff; */
    padding: 0px 5px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

button.buttonSave, .buttonSaveMD {
    background-color: white;
    border-color: transparent;
}

.buttonCancel, .buttonCancelMD {                
    color: rgb(249, 46, 49);
}

.buttonSave, .buttonEdit, .buttonSaveMD {
    color:rgb(0, 122, 255);
}

.buttonSettings {
    color: rgb(0, 122, 255);
}

.buttonSave:hover, .buttonEdit:hover, .buttonSettings:hover , .buttonSaveMD:hover {
    color: rgb(9, 78, 150);
}

.buttonCancel:hover, .buttonCancelMD:hover {
    color: rgb(139, 17, 11);
}

.buttonInactive {
    color: lightgrey;
    cursor: default;
}

.buttonInactive::after {
    color: lightgrey;
}

.buttonInactive:hover {
    color: lightgrey; 
}

/* menu element - space between??? BOTTOM OF PAGE */

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

/* menu element - space between  TOP of PAGE - BORDER below */

.formMenu {
    width: 100%;
    height: 45px;
    display: flex;
    flex: 0 0 45px;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    border-bottom: 1px solid red;
}

/* 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(2) {
    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;
}

.menuFont21 {
    font-size: 21px;
}

/*
.formTopMenu.allButtonsRight > div:first-child::after {
    color: rgb(249, 46, 49);
    content: " |";
    align-self: center;
    font-size: 21px;    
}
*/

/*
.formTopMenu > div > div.buttonCancel::after {
    color: rgb(249, 46, 49);
    content: " |";
    align-self: center;
    font-size: 21px;
}

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

.marginLeftAuto {
    margin-left: auto;
}

.allButtonsRight {
    justify-content: flex-end;
}

.allButtonsRight > div:nth-child(2) {
    margin-left: unset;
}

/*
.formTopMenu > div:only-child {
    margin-left: auto;
}
*/

/**********************************************************/
/* NEW BUTTONS WRAPPER
*/

.buttonsWrapperBox {
    width: 100%;
    height: 45px;
    display: flex;
    flex: 0 0 45px;
    flex-flow: row nowrap;
    justify-content: flex-end;
    padding: 0 10px;
    align-items: center;
    position: relative;
}

.buttonsWrapperBox::after {
    content: " ";
    position: absolute;
    right: 10px;
    width: 6px;
    background-color: white;
    height: 100%;
}

.buttonsWrapperBox >div:first-child {
    margin-right: auto;
}

.buttonsWrapperBox >div:last-child {
    padding-right: 6px;
}

.buttonsWrapperBox > div:not(:first-child):not(:last-child)::after {
    content: "|";
    align-self: center;
    color:rgb(0, 122, 255);
    font-size: 21px;
    padding-left: 1px;
    width: 5px;
}
        

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

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

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

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

div.scrollbar:hover {
    overflow: overlay;
}

/*****************************************************************/
/*  Scrollbar standard features (appliers 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: overlay;
}

/**********************************************************/
/*   field elements 
        standard 41px - 6px + 6px top/bottom margin + 29px element height */

.firstBox {
    display: flex;
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 5px;
}

.firstBoxAuto {
    height: auto;
    width: 100%;
}

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

/*  text box wrappers              */

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

/* label and Read-only elements    */

.labelElement {
    /*
    width: calc(100% - 10px);
    max-width: 290px; */
    width: 100%;
    height: 41px;
    min-height: 29px;
    line-height: 29px;
    text-align: right;
    padding-top: 6px;
    padding-bottom: 6px;
/*    margin-right: 5px;
    margin-left: 5px;
    */
    padding-left: 5px;
    padding-right: 5px;

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

}

.infoElement {
    /*width: calc(100% - 15px); */
    /*max-width: 290px; */
    max-width: 100%;
    height: 41px;
    min-height: 29px;
    line-height: 29px;
    text-align: left;
    /*
    margin-top: 6px;
    margin-bottom: 6px;
    
    margin-left: 5px; */
    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; 
    /* min-height: 60px; */
    width: calc(100% - 5px); 
    z-index: 2; 
    position: relative;
    text-overflow: unset;
    white-space: normal;
}

.invalid {
    background-color: rgb(248, 228, 228);
}

/* input elements and modifiers    */

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

input {
    -webkit-appearance: none;
}

input[type=checkbox] {
    -webkit-appearance: checkbox;
}

input[type=radio] {
    -webkit-appearance: radio;
    margin-bottom: 5px;
    position: relative;
}

input[type=checkbox]:focus {
    box-shadow: 0px 0px 3px 3px rgba(59, 153, 252);
    border-radius: 3.5px;
}

/*
input[type=radio]:focus {
    box-shadow: 0px 0px 3px 3px rgba(59, 153, 252);
    border-radius: 8px;
    /*
    -webkit-appearance: initial;
    width: 10px;
    height: 10px;
    -- /
}
*/

input[type=radio]:focus::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 3px 3px rgba(59, 153, 252);
}

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

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

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

.elementRequiredMissed {
    background: yellow !important;
}

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

input[type=time] {
    max-width: 120px;
}

input[type=date] {
    max-width: 180px;
}

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

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

input:disabled {
    background: #ededed;
}

.checkboxElement {
    display: flex;
    align-items: center;
    /*
    margin-top: 0;
    width: 20px;
    height: 38px;*/
    max-width: 20px !important;
    margin-left: 12px;
    align-self: center;
}

.checkboxElementNarrow {
    display: flex;
    align-items: center;
    width: 20px !important;
    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.inputElement {
    background: white;
}
*/

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

textarea.inputElement {
    /* max-width: calc(100% - 15px); */
    max-width: none;
    height: 2.5em;
    min-height: 2.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%;
}

/*****************************************************************/
/*      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 darkgrey;
    border-radius: 4px;
    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;
    border: 1px solid darkgrey;
    border-radius: 4px;
    z-index: 105;
    background: rgb(240, 240, 240);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/

/* 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;
    border-radius: 4px;
    flex-flow: column nowrap;
    align-items: left;
    background: rgb(240, 240, 240);
}

.calloutBoxContent > div {
    height: 33px;
    line-height: 30px;
    border-top: 1px solid darkgray;
    /*background: rgb(240, 240, 240);*/
    width: auto;
    min-width: 100%;
    padding: 2px 10px;
}

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

.calloutBoxContent > div:hover {
    background: lightgrey;
}


/*****************************************************************/
/*                various - print                                */

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

.textAreaHatches {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-rows: repeat(auto-fill, 28px);
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    grid-row-gap: 1px;
    min-height: 100%;
    background: grey;
    overflow: hidden;
}

.c1 {
    min-width: 100%;
    min-height: 28px;
    background: white;
    
}

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

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

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

}

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

.topAlign {
    padding-top: 5px;
}

.leftAlign {
    padding-left: 5px;
}

.horizontalAlign {
    padding-left: 5px;
    padding-right: 5px;
}

.bottomBorder {
    border-bottom: 1px solid red;
}

.topBorder {
    border-top: 1px solid red;
}

.rightBorder {
    border-right: 1px solid red;
}

.rightAlign {
    padding-right: 5px;
}

.fullPageWrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
}

.overflowHidden {
    overflow: hidden;
}
/* *******************************************************
/* Froms Arrays styling
*/

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

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

/* ********************************************************************
// ROLODEX css
*/

.rolodexWrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
}

.letterBar {
    border-right: 1px solid red;
    width: 45px;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.letterIndex {
    width: 44px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: blue;
}

.letterIndex:hover {
    cursor: pointer;
    color: rgb(0,0,127)
}

.rolodexList {
    border-right: 1px solid red;
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1 0;
    height: 100%;
    position: relative;
    will-change: transform;
}

.rolodexElement {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: rgb(240,240,240); 
    color: rgb(0,0,0);
    padding-left: 10px;
    padding-right: 10px;
}

.rolodexListItem {
    background-color: #ffffff; 
    cursor: pointer;
    color: rgb(0,0,0);
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
}

.rolodexListItem:hover {
    color: blue;
}

.rolodexListItemSelected {
    background-color: darkgrey;
    color: white;
}

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

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

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


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

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




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

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

.tabbedMenu > div.showing::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: 0px;
    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.showing {
    border-bottom: 1px solid white !important;
    z-index: 2;
}

.tabbedMenuBottom > div.showing {
    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.showing {
    color: blue;
}

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

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

.tabbedMenuRadio {
    display: flex;
}


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

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

.dropdownInput {
    font-size: 17px;
    border: none;
    height: 100%;
    width: 100%;
}

.dropdownInput:focus {
    outline: none;
}

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

.clock {
	position: relative;
	width: 62px;
	height: 62px;
	border-radius: 30px;
	border: solid 6px 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;
}

.narrowInput {
    max-width: 200px;
}

.CNPInput {
    max-width: 14ch;
}

.titleFont {
    font-size: 29px;
}

.formsArrayTitle {
    padding-left: 10px;
}

.ROInput {
    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;
    color: grey;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}

.RONumber {
    justify-content: flex-end;
    min-width: 60px;
    max-width: 120px;
}

.labelButton {
    cursor: pointer;
    height: 34px;
    line-height: 34px;
    padding: 0px 5px;
    flex: 0 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 17px;
}

.sectionTitle {
    background: #d0d0d0;
    width: 100% !important;
    font-weight: bold;
    text-align: left !important;
    padding-right: 4px;
}

.greyBackground {
    background: #d0d0d0;
}

.redFrame {
    border: 1px solid red;
}

.sectionTitleCentered {
    background: #d0d0d0;
    width: 100% !important;
    font-weight: bold;
    text-align: center !important;
    padding-right: 4px;
}

.fitContentBlockSection {
    display: flex;
    width: fit-content;
    height: auto;
    justify-content: flex-start;
    flex-flow: column nowrap;
}

.wideInput {
    margin-right: 8px;
    max-width: 100%;
    flex: 1 1 0;
}

.multiRowLabel {
    height: auto;
    line-height: 19px;
    text-align: left;
    white-space: normal;
}

.FATitleBox {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 4px;
}

.FATitleBox > div:first-child > div {
    padding-left: 0px;
}

.FALabel {
    width: 100%;
    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;
}

.boldText {
    font-weight: bold;
}

.italicText {
    font-style: italic;
}

.underlinedText {
    text-decoration: underline;
}

.borderBottom {
    width: 100% !important;
    border-bottom: solid 1px black;
}

.marginTop {
    margin-top: 15px;
}

.marginBottom {
    margin-bottom: 15px;
}

.marginRight {
    margin-right: 15px;
}

.marginLeft {
    margin-left: 15px;
}



/* ****************************************** */
/* Main menu common settings */

.mainMenuDialogue {
    top: 60px;
    max-width: calc(100vw - 100px);
    left: 50px;
    height: 202px;
    width: fit-content;
    background-color: #fefefe;
    font-size: 17px;
    font-weight: 300;
}

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

.actionMenuDialogue > div > div {
    font-size: 17px;
    height: 32px;
    padding: unset;
    width: 100% !important;
    text-align: left;
}

.actionMenuDialogue > div > div:hover {
    background-color: lightgray;
}


.menuPicture {
    width: 90px;
    height: 90px;
    align-self: center;
    cursor: pointer;
}

.menuName {
    height: auto;
    white-space: normal;
    cursor: pointer;
    text-align: center;
}

.menuImages {
    height: 20px;
    align-self: center;
    cursor: pointer;
}

.menuSeparator {
    color: white;

}

.mainMenu {
    padding: unset;
    align-items: center;
    width: 100%;
}

.largeTextarea {
    height: 20em !important;
    max-height: unset !important;
}

.noPadding {
    padding: unset !important;
}

.boxPadding {
    padding: 10px;
}

.rowHeight35 {
    height: 35px;
}

::-webkit-calendar-picker-indicator {
    margin-inline-start: 2px;
}

.elementTitle {
    background-color: lightgrey;
    font-weight: bold;
}

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

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


.dot {
    margin-top: 9px; 
    margin-right: 6px; 
    height: 22px;
    width: 22px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
  }

  .dotGrey {
    margin-right: 6px; 
    height: 22px;
    width: 22px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
  }

  .dotRed {
    margin-right: 6px; 
    height: 22px;
    width: 22px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
  }

  .dotGreen {
    margin-right: 6px; 
    height: 22px;
    width: 22px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
  }

  .dotYellow {
    margin-right: 6px; 
    height: 22px;
    width: 22px;
    background-color: rgb(250, 205, 109);
    border-radius: 50%;
    display: inline-block;
  }

.etichetaAplicatie {
    display: inline-block; 
    font-family: "Helvetica Neue", Arial;
    font-size: 21px;
    font-weight: 300;
    margin-left: 12px;
    margin-right: 4px;
}

.ajutorAplicatie {
    height: 26px;
    margin-left: -2px;
    margin-right: 6px;
    align-self: center;
}

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

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

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

.titleMD {
    width: 100%;
    height: 41px;
    line-height: 29px;
    text-align: center;
    padding-top: 6px;
    border-bottom: solid 1px red;
}

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

*/

.inputElementNumberAR {
    text-align: right;
}

.navigateWrapper {
    justify-content: center;
    align-items: center;
}

.navigateButtons {
    height: 21px;
    margin-top: 3px;
    flex-wrap: wrap;
    align-content: center;
}