.sysForm {
    width: 100%;
    height: 100%;
    background: var(--surface-container-low);
}

.sysFormTitre {
    text-align: center;
    font-size: 1.7rem;
    background: #FFFFFF;
    /* border-bottom: solid 1px rgba(0,0,0,0.1); */
    /* box-shadow: 1px 3px 2px 0px rgba(0,0,0,0.05)inset; */
    height: 4.5rem;
    line-height: 4rem;
    padding-top: 0.5rem;
    box-sizing: border-box;
}

/*.sysFormTitre .lib {
	width: 100%;¬
	box-sizing: border-box;
	text-align: left;
	padding-left: 0.5rem;
	display: inline-block;
	background-color: #eee;
	padding-left: 1rem;
	height: 100%;
}*/

.sysForm.noOnglet > .barOnglet {
    height: 0;
}

.sysForm.noAppBar > .appbar,
.sysForm.noAppBar.noOnglet > .barOnglet {
    display: none;
}

.sysForm.noOnglet > .onglets {
    height: calc(100% - 64px);
}

.sysForm.noAppBar > .onglets {
    height: calc(100% - 48px);
}

.sysForm.noAppBar.noOnglet > .onglets {
    height: 100%;
}

.sysForm .appbar h1,
.appbar > h1 {
    padding: 0 16px;
}

.xs .sysForm .appbar h1,
.xs .appbar > h1 {
    padding: 0 35px 0 0;
    width: calc(100% - 100px);
}

.xs .POPIN_window .sysForm .appbar h1 {
    padding: 0 0 0 0;
    width: calc(100% - 100px);
}

.sysformBar {
}

.sysformOnglet:not(.chat):not(:has(.dashboard)) {
    /* background: rgba(255,255,255,1); */
    overflow-y: scroll;
    padding: 8px;
}

.sysformOnglet.hidden {
    display: none;
}

.notouch .sysformOnglet {
    overflow-y: scroll; /* Laisser le scroll vertical car la largeur des blocs est calculee en js en fonction de l'espace libre */
}

.sysformOnglet .titreOnglet {
    padding: 1rem;
    background-color: #eee;
    margin: 1rem;
    font-size: 1.2rem;
    display: none;
}

.sysformOnglet.grid {
    display: grid;
    grid-gap: 24px;
    padding: 24px;
    height: auto;
}

.sysformOnglet.grid:after {
    content: initial;
    display: initial;
    clear: initial;
}

.xs .sysformOnglet.grid,
.sm .sysformOnglet.grid {
    grid-gap: 4px;
    padding: 4px 8px;
}

.xs .sysformOnglet.grid {
    grid-template-columns: repeat(4, 1fr);
}

.sm .sysformOnglet.grid {
    grid-template-columns: repeat(6, 1fr);
}

.md .sysformOnglet.grid {
    grid-template-columns: repeat(8, 1fr);
}

.lg .sysformOnglet.grid {
    grid-template-columns: repeat(10, 1fr);
}

.xl .sysformOnglet.grid {
    grid-template-columns: repeat(12, 1fr);
}

.sysformOnglet.grid .formBloc.col-span-1 {
    grid-column: span 1;
}

.sysformOnglet.grid .formBloc.col-span-2 {
    grid-column: span 2;
}

.sysformOnglet.grid .formBloc.col-span-3 {
    grid-column: span 3;
}

.sysformOnglet.grid .formBloc.col-span-4 {
    grid-column: span 4;
}

.sysformOnglet.grid .formBloc.col-span-5 {
    grid-column: span 5;
}

.sysformOnglet.grid .formBloc.col-span-6 {
    grid-column: span 6;
}

.sysformOnglet.grid .formBloc.col-span-7 {
    grid-column: span 7;
}

.sysformOnglet.grid .formBloc.col-span-8 {
    grid-column: span 8;
}

.sysformOnglet.grid .formBloc.col-span-9 {
    grid-column: span 9;
}

.sysformOnglet.grid .formBloc.col-span-10 {
    grid-column: span 10;
}

.sysformOnglet.grid .formBloc.col-span-11 {
    grid-column: span 11;
}

.sysformOnglet.grid .formBloc.col-span-12 {
    grid-column: span 12;
}

.xs .sysformOnglet.grid .formBloc.col-span-5,
.xs .sysformOnglet.grid .formBloc.col-span-6,
.xs .sysformOnglet.grid .formBloc.col-span-7,
.xs .sysformOnglet.grid .formBloc.col-span-8,
.xs .sysformOnglet.grid .formBloc.col-span-9,
.xs .sysformOnglet.grid .formBloc.col-span-10,
.xs .sysformOnglet.grid .formBloc.col-span-11,
.xs .sysformOnglet.grid .formBloc.col-span-12,
.xs .sysformOnglet.grid > .actions {
    grid-column: span 4;
}

.sm .sysformOnglet.grid .formBloc.col-span-7,
.sm .sysformOnglet.grid .formBloc.col-span-8,
.sm .sysformOnglet.grid .formBloc.col-span-9,
.sm .sysformOnglet.grid .formBloc.col-span-10,
.sm .sysformOnglet.grid .formBloc.col-span-11,
.sm .sysformOnglet.grid .formBloc.col-span-12,
.sm .sysformOnglet.grid > .actions {
    grid-column: span 6;
}

.md .sysformOnglet.grid .formBloc.col-span-9,
.md .sysformOnglet.grid .formBloc.col-span-10,
.md .sysformOnglet.grid .formBloc.col-span-11,
.md .sysformOnglet.grid .formBloc.col-span-12,
.md .sysformOnglet.grid > .actions {
    grid-column: span 8;
}

.lg .sysformOnglet.grid .formBloc.col-span-11,
.lg .sysformOnglet.grid .formBloc.col-span-12,
.lg .sysformOnglet.grid > .actions {
    grid-column: span 10;
}

.sysformOnglet.grid .formBloc.row-span-1 {
    grid-row: span 1;
}

.sysformOnglet.grid .formBloc.row-span-2 {
    grid-row: span 2;
}

.sysformOnglet.grid .formBloc.row-span-3 {
    grid-row: span 3;
}

.sysformOnglet.grid .formBloc.row-span-4 {
    grid-row: span 4;
}

.sysformOnglet.grid .formBloc.row-span-5 {
    grid-row: span 5;
}

.sysformOnglet.grid .formBloc.row-span-6 {
    grid-row: span 6;
}

.sysformOnglet.grid .formBloc.row-span-7 {
    grid-row: span 7;
}

.sysformOnglet.grid .formBloc.row-span-8 {
    grid-row: span 8;
}

.sysformOnglet.grid .formBloc.row-span-9 {
    grid-row: span 9;
}

.sysformOnglet.grid .formBloc.row-span-10 {
    grid-row: span 10;
}

.sysformOnglet.grid .formBloc.row-span-11 {
    grid-row: span 11;
}

.sysformOnglet.grid .formBloc.row-span-12 {
    grid-row: span 12;
}

.sysformOnglet.grid .formBloc.topLeft {
    align-self: start;
    justify-self: start;
}

.sysformOnglet.grid .formBloc.topCenter {
    align-self: start;
    justify-self: center;
}

.sysformOnglet.grid .formBloc.topRight {
    align-self: start;
    justify-self: end;
}

.sysformOnglet.grid .formBloc.centerLeft {
    align-self: center;
    justify-self: start;
}

.sysformOnglet.grid .formBloc.centerCenter {
    align-self: center;
    justify-self: center;
}

.sysformOnglet.grid .formBloc.centerRight {
    align-self: center;
    justify-self: end;
}

.sysformOnglet.grid .formBloc.bottomLeft {
    align-self: end;
    justify-self: start;
}

.sysformOnglet.grid .formBloc.bottomCenter {
    align-self: end;
    justify-self: center;
}

.sysformOnglet.grid .formBloc.bottomRight {
    align-self: end;
    justify-self: end;
}

.sysformOnglet.dark {
    background-color: #333;
}

/********* en cas de fenetre simple *******/

.wsingle .sysformGeneral {
    background: transparent;
}

.wsingle .sysFormTitre {
    background: transparent;
}

.wsingle .sysFormTitre {
    padding-top: 0;
    height: 5rem;
    line-height: 5rem;
    background: transparent;
    color: white;
}

.wsingle .sysFormTitre .lib {
    background: transparent;
}

.wsingle .sysformOnglet .titreOnglet {
    padding: 1rem;
    background-color: transparent;
    margin: 1rem;
    font-size: 1.2rem;
    display: none;
}

/**************** ACTION PLUS *********/

.actplusdiv {
    position: absolute;
    right: 0;
    top: 0;
    background: rgb(232, 186, 33);
    margin-top: 5rem;
    z-index: 1000;
    overflow: hidden;
    height: 0px;
    transition: all 0.2s;
}

.actplusdiv BUTTON {
    clear: both;
    float: right;
    width: 20rem;
    background: transparent;
    font-size: 1.3rem;
    text-align: left;
    padding-left: 3rem;
}

.actplusdiv BUTTON::before {
    position: absolute;
    padding: 0.3rem 1rem;
    display: inline-block;
    vertical-align: middle;
    left: 0;
    text-align: center;
    width: 2rem;
}

/******* bar onglet *******************/

.sysForm .barOnglet {
    height: 48px;
    overflow: hidden;
    overflow-x: auto;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sysForm.noOnglet .barOnglet > * {
    display: none;
}

.onglets {
    background: var(--surface-container-low);
}

.sysForm.with_footer .onglets {
    position: relative;
    overflow: hidden;
}

.sysForm.with_footer .onglets {
    height: calc(100% - 104px - 61px - 15px);
}

.sysForm:not(.with_footer) .onglets {
    height: calc(100% - 104px);
}

.sysForm .ocbtn {
    position: absolute;
    top: 0.5rem;
    height: 4rem;
    width: 5rem;
    /* font-family: SWGicon2; */
    background: none;
    color: rgba(0, 0, 0, 0.5);
    line-height: 4.5rem;
    cursor: pointer;
    text-align: center;
}

.sysForm.onglethide .onglets {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-left: 0rem;
    /*box-shadow: 0px 1px 2px 2px rgba(0,0,0,0.1);*/
    z-index: 4;
}

div:not(#content_dashboard) > form .barOnglet > div {
    flex: 2 2 100%;
    width: 100%;
}

.barOnglet > .view_more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.barOnglet > .view_more > span {
    text-overflow: ellipsis;
    width: calc(100% - 24px);
    overflow: hidden;
}

.barOnglet > .view_more > .icon {
    width: 24px;
    height: 24px;
}

.barOnglet > div {
    /* font-size: 1.4rem; */
    /* height: auto; */
    text-align: center;
    /* padding: 0rem; */
    /* padding-top: 1.1rem; */
    /* box-sizing: border-box; */
    -moz-box-sizing: border-box;
    /* 	margin-top: 1rem;
 */
    /* cursor: pointer; */
    /* padding: 1.5rem 0.5rem; */
}

.barOnglet .view {
    /* background: #fff; */
    /* color: #333; */
    /* box-shadow: none; */
}

.barOnglet .view .lib {
    /* box-shadow: none; */
}

.barOnglet .hidden {
    display: none;
}

.barOnglet > DIV.hide {
    color: #888;
    font-size: 1.2rem;
}

.barOnglet > DIV:hover {
    /* box-shadow: 0 1px 4px 1px rgba(0,0,0,0.1); */
    /* font-size: 1.2rem; */
    /* background: rgba(255,255,255,0.3); */
}

.wsingle .barOnglet > DIV.hide {
    color: #333;
    font-size: 1.2rem;
}

.barOnglet .lib {
    /* word-break: break-word; */
    /* text-align: center; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* word-break: normal; */
}

/***************** status et boutons ***********************/

.sysForm .buttons {
    position: absolute;
    /* width: calc(100% - 12rem); */
    margin-left: 12rem;
    height: 48px;
    bottom: 0;
    vertical-align: middle;
    text-align: center;
    z-index: 4;
    overflow: hidden;
}

.sysForm .buttons.intitre {
    top: 8px;
    right: 8px;
    text-align: right;
}

.sysForm .buttons.intitre > .icon {
    display: inline-block;
    padding: 12px;
}

.wsingle .sysForm .buttons.intitre {
    /* top: 0rem; */
    /* right: 0; */
    /* width: auto; */
    /* box-sizing: border-box; */
    /* display: inline-block; */
    /* text-align: right; */
    /* margin: 0; */
    /* background: transparent; */
    /* box-shadow: none; */
    /* height: 5rem; */
}

.sysForm .buttons button {
    height: 100%;
    vertical-align: top;
    margin: 0 1px 0 1px;
}

.sysForm .buttons button::before {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.sysForm .buttons .smallbtn {
    background: rgba(100, 100, 100, 0.5);
    margin: 0;
    border-radius: 0;
    width: 5rem;
    color: white;
    padding: 0;
}

.sysForm .buttons .smallbtn.close {
    background-color: transparent;
}

.sysForm .buttons .smallbtn:first-child {
    /* border-radius: 0.5rem 0 0 0.5rem; */
}

.wsingle .sysForm .buttons .smallbtn:first-child {
    border-radius: 0;
}

.sysForm .buttons .smallbtn::before {
    padding: 0;
}

.sysForm .buttons button:hover {
    /*color: rgba(0, 88, 129, 0.8);*/
    color: #000;
}

.sysForm .buttons .smallbtn.delete:hover {
    /*color: rgba(0, 88, 129, 0.8);*/
    color: #000;
}

.sysForm .buttons .submit {
    /* color: rgb(0, 88, 129); */
}

.sysForm .buttons .smallbtn.submit {
    background: rgb(148, 202, 28);
}

.sysForm .buttons .smallbtn.submit.close {
    background: rgb(141, 183, 47);
}

.sysForm .buttons .submit:hover {
    color: rgba(0, 88, 129, 0.8);;
}

.sysForm .buttons .delete {
    /*background: rgb(189, 158, 158);*/
    color: rgb(150, 0, 0);
}

.sysForm .buttons .smallbtn.delete {
    background: rgb(216, 80, 80);
    color: white;
}

.sysForm .buttons .smallbtn.actplus {
    background: rgb(232, 186, 33);
    color: white;
}

.sysForm .buttons .smallbtn.actplus:hover {
    color: rgba(0, 88, 129, 0.8);
}

.sysForm .buttons .delete:hover {
    color: rgba(0, 88, 129, 0.8);
}

.sysForm .buttons .print {

}

.sysForm .buttons .status {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 1rem;
    color: #000;
    line-height: 3rem;
    margin-top: 1rem;
    margin-left: 1rem;
    width: auto;
    max-width: calc(50% - 5rem);
    display: none;
}

.sysForm .buttons .alerte {
    color: #C41F00;
    display: block;
}

.sysForm .buttons .std {
    display: block;
}

.sysFormTitre .status {
    position: absolute;
    top: 0;
    line-height: 2.5rem;
    font-size: 1.2rem;
    /* margin: auto 0; */
    padding: 0.5rem;
    /*color: #C41F00;
    */
    background: rgb(222, 227, 232);
    /*background: rgb(216, 80, 80);*/
    color: rgba(0, 47, 96, 1);
    display: none;
    width: 40rem;
    left: 50%;
    height: 4rem;
    margin-left: -20rem;
    text-align: center;
    box-sizing: border-box;
    margin-top: 0.5rem;
    /* vertical-align: top; */
    /*border: 2px solid rgb(216, 80, 80) ;*/
    border-radius: 5px;
    text-overflow: ellipsis;
    font-weight: 400;
}

.sysFormTitre .status.alerte {
    /*color: #C41F00;*/
    color: white;
    display: block;
    background: rgb(216, 80, 80);
}

.sysFormTitre .status.error {
    color: #FFFFFF;
    display: block;
    background: rgba(214, 0, 0, 0.66);
    border: 0;
}

.sysFormTitre .status.std {
    display: block;
    background: transparent;
}

.sysFormTitre .status.msg {
    /*
    border-color: rgb(76, 76, 118);
    background: rgb(181, 192, 203);
    color: rgb(68, 68, 112);
    */
    /*background: rgb(216, 80, 80);*/
    /*color: white;*/
    display: block;
    border: none;
}

.sysFormTitre .status.ok {
    display: block;
    border: none;
}

/***************** formulaire *****************/

.formOnglet {
}

.formSep {
    clear: both;
    /* width: 100%; */
    line-height: 4rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: transparent;
    /* padding: 0.5rem;*/
    margin: 0.5rem;
}

.formSep.hide {
    padding: 0;
    margin: 0;
}

.xs .formCol .formBloc,
.sm .formCol .formBloc {
    width: 100% !important;
}

.md .formCol,
.lg .formCol,
.xl .formCol {
    float: left;
    /* padding: 0.5rem; */
    padding-bottom: 0;
}

.formCol.fullheight {
    /* height: 100%; */
}

.formCol.fullheight > DIV {
    height: 100%;
}


.formCol.fullheight .inner.slboxGeneral {
    height: calc(100% - 48px);
    padding: 0;
    position: relative;
    border-radius: 0px 0px 0 0;
    overflow: hidden;
}

.formCol.fullheight .notitre .inner.slboxGeneral {
    border-radius: 8px 8px 0 0;
}

.formCol .open {
    /*height: attr(data-height);*/
}

.formCol .close {
    overflow: hidden;
}

.formBloc {
    transition: all 0.2s;
    position: relative;
}

.formBloc:has(.inner.chat) {
    min-height: 50vh;
}

.formBloc.nostyle2 {
    margin: 0 8px;
}

.sysformOnglet.grid .formBloc {
    margin: 0;
}

.formBloc:not([class*=nostyle]) {
    border-radius: 8px;
    border: 2px var(--palettes-neutral-90-bg);
    background-color: #fff;
}

/*
.sysformOnglet.grid .formBloc:not([class*=nostyle]) {
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, .1), -4px -4px 8px rgba(255, 255, 255, 1);
    -moz-box-shadow: 4px 4px 8px rgba(0, 0, 0, .1), -4px -4px 8px rgba(255, 255, 255, 1);
    -ms-box-shadow: 4px 4px 8px rgba(0, 0, 0, .1), -4px -4px 8px rgba(255, 255, 255, 1);
    -o-box-shadow: 4px 4px 8px rgba(0, 0, 0, .1), -4px -4px 8px rgba(255, 255, 255, 1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .1), -4px -4px 8px rgba(255, 255, 255, 1);
}
*/

.dark .formBloc:not([class*=nostyle]),
.dark.formBloc:not([class*=nostyle]) {
    background-color: #333;
}

.formBloc.hidden {
    display: none;
}

.formBloc:not([class*=nostyle]):not(.nopadding):not(.canvas) > .inner:not(.file):not(.chat):not(.slboxGeneral):not(.widget_map):not(.ifr):not(.widget_explorer):not(.widget_notes):not(.graph):not(.widget_chart) {
    padding: 8px 0;
}

.formBloc .card {
    margin-bottom: 16px;
}

.formBloc .card:last-child {
    margin-bottom: 0;
}

.formBloc > .inner .rssfeedreader {
    height: 100%;
}

.formBloc.close .titreBloc, .titreSublist {
    border-bottom: none !important;
}

.formBloc .titreBloc .run_sign {
    position: absolute;
    right: 15px;
    padding: 0 40px;
}

.formBloc .titreBloc .close_sign {
    position: absolute;
    right: 0;
    padding: 16px;
}

.formBloc.canvas .titreBloc {
    height: 65px;
}

.formBloc .titreBloc, .titreSublist {
    height: calc(24px + 24px);
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--palettes-neutral-95-bg);
}

.formBloc .titreBloc h3, .titreSublist {
    font-style: normal;
    font-weight: 600;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--on-surface);
}

.formBloc .titreBloc > h3, .titreSublist {
    float: left;
}

.formBloc .titreBloc > .button {
    margin: 12px 0;
}

.formBloc .titreBloc h4 {
    margin: -16px 0 16px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, .6);
}

.formBloc .titreBloc .icon.chevron {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition: 0.3s -webkit-transform;
    -moz-transition: 0.3s -moz-transform;
    -ms-transition: 0.3s -ms-transform;
    -o-transition: 0.3s -o-transform;
    transition: 0.3s transform;
    width: 48px;
}

.formBloc.open .titreBloc .icon.chevron {
    transform: rotateZ(-180deg);
}

.formBloc .titreBloc .actions {
    right: 15px;
    position: absolute;
}

.formBloc.open .titreBloc .actions, .formBloc.close .titreBloc .actions {
    right: 55px;
    position: absolute;
}


.formBloc .titreBloc .actions .icon {
    padding: 12px;
}

.formBloc .titreBloc .btn {
    display: inline-block;
    float: right;
    cursor: pointer;
    padding: 1rem;
    height: 100%;
    margin: 0 0 0 1px;
    text-transform: none;
    /* text-decoration: underline; */
    font-weight: 300;
    overflow: hidden;
    /* max-height: 35px; */
    background: transparent;
}

.formBloc .titreBloc .blocfn {
    display: inline-block;
    float: right;
    cursor: pointer;
    padding: 0.5rem;
    height: 100%;
    margin: 0 5rem 0 1px;
    text-transform: none;
    overflow: hidden;
    background: transparent;
    box-sizing: border-box;
}

.formBloc .titreBloc .blocfn INPUT {
    display: inline-block;
    float: left;
    box-sizing: border-box;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.formBloc .titreBloc .blocfn INPUT:focus {
    background: rgba(255, 255, 255, 0.8);
}

.formBloc .titreBloc .blocfn .btnsearch {
    display: inline-block;
    float: left;
    box-sizing: border-box;
    line-height: 3rem;
    padding: 0 1rem;
    font-size: 1.7rem;
}

.wsingle .formBloc .titreBloc .btn {
    border-radius: 0;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
    padding: 0.5rem;
}

.formBloc .titreBloc .btnsep {
    display: inline-block;
    margin: 8px;
    float: right;
    /* vertical-align: middle; */
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    height: calc(100% - 16px);
}

.wsingle .formBloc .titreBloc .btn::before {
    /* border-radius: 0; */
    /* margin: 0; */
    font-size: 2rem;
    text-align: center;
    display: block;
    padding: 0;
    padding-top: 2px;
    box-sizing: border-box;
}

.formBloc .titreBloc .btn::before {
    padding-right: 0.5rem;
}

.formBloc .titreBloc .btn:hover {
    background: #ddd;
}

.formBloc .inner > .ligne {
    padding: 0 16px;
}

.swgChart {
    padding: 8px 0;
}

.swgChart.swgChartIndicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swgChart.swgChartIndicator > .icon {
    border-radius: 8px;
    width: 48px;
    height: 48px;
    margin: 0 16px;
}

.swgChart.swgChartIndicator > .swgChart-container {
    flex: 1;
}

.swgChart {
    padding: 14px !important
}

.swgChart .indicator-data {
    font-size: 32px;
    line-height: 43px !important;
    font-weight: 500;
    color: #1B1B1C !important;
}

.swgChart .indicator-description {
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: normal !important;
    color: #75777C !important;
}

.swgChart.light .swgChart-indicator,
.swgChart.light .swgChart-chart {
    min-height: 0 !important;
}

.small .swgChart {
    padding: 0 !important;
}

.small .swgChart .indicator-data {
    font-size: 17px !important;
    line-height: 16px !important;
    font-weight: 900 !important;
    color: #1B1B1C !important;
    padding-top: 4px !important;
}

.notes .note {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
}

.formBloc .inner > .ligne .card {
    display: inline-block;
    margin: 0 16px 16px 0;
}

.formBloc .inner > .ligne .card .headline {
    width: auto !important;
}

@media (max-width: 640px) {
    /*.formBloc .inner > .ligne {
        margin: 0 8px;
    }*/
    .formBloc .inner > .ligne .card {
        margin: 8px;
    }

    .formBloc .inner > .ligne .card.small {
        width: calc(50% - 16px) !important;
    }

    .formBloc .inner > .ligne .card.small .headline {
        font-size: 18px;
    }
}

.formBloc .ligne.invisible {
    display: none;
}

.formBloc .ligne .form-group {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.formBloc .ligne .form-group.divider {
    display: block;
    width: inherit;
}

.formBloc .ligne .form-group.divider .border,
.formBloc .ligne .form-group.divider .validators {
    display: none;
}

.formBloc .ligne .caption {
    width: 10rem;
    padding: 0;
    /* text-align: right; */
    display: inline-block;
    vertical-align: middle;
    /* line-height: 1.5rem; */
    /* box-sizing: border-box; */
    -moz-box-sizing: border-box;
    color: rgba(0, 0, 0, 0.7);
    /* padding-left: 0.5rem; */
    /* font-weight: 400; */
}

.formBloc .ligne.datalist .caption {
    vertical-align: top;
    /* line-height: 4rem; */
    padding-top: 1rem;
}

.formBloc .ligne .needed {
    font-weight: 500;
}

.formBloc .ligne .needed::after {
    content: 'X';
    /*color: #C00;*/
    color: rgb(216, 80, 80);
    font-size: 1rem;
    line-height: 1rem;
    display: inline-block;
    padding-left: 0.5rem;
}

.zzformBloc .ligne .value {
    width: calc(100% - 10.2rem);
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    vertical-align: middle;
    padding-left: 0.5rem;
    position: relative;
}

.formBloc .ligne .value INPUT,
.formBloc .ligne .value SELECT {
    width: 100%;
    /* font-weight: 400; */
    font-size: 1.6rem;
    padding: 0.5rem;
    border: solid 1px rgba(100, 100, 100, 0.25);
    background-color: white;
    border-radius: 5px;
    /* color: rgba(0,47,96,0.8); */
    /* vertical-align: middle; */
    /* lio
    color: white;
    */
}

.formBloc .ligne .value BUTTON {
    width: 100%;
    margin: 0;
    height: 3.5rem;
    font-size: 1.4rem;
    overflow: hidden;
    vertical-align: baseline;
    padding: 0;
    margin: 0;
    line-height: 3rem;
}

.formBloc .ligne.datalist .value {
    vertical-align: top;
}

.formBloc .ligne .datalist_in {
    /* height: 3rem; */
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.formBloc .ligne .datalist_in.closed {
    height: 4rem;
    overflow: hidden;
}

.formBloc .ligne .datalist_in.opened {
    height: auto;
}

.formBloc .ligne .datalist_in .label {
    /* margin-top: 2px; */
    line-height: 3rem;
    vertical-align: middle;
    height: 3.5rem;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 3rem);
    background: #fff;
    padding: 0.3rem;
    box-sizing: border-box;
    border-radius: 0.5rem;
    border: solid 1px rgba(0, 0, 0, 0.15);
}

.formBloc .ligne .datalist_in .labelbtn {
    padding-top: 0.3rem;
    line-height: 3rem;
    vertical-align: top;
    height: 3rem;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    white-space: nowrap;
    width: 3rem;
    /* background-color: #fff; */
    text-align: center;
    color: #AAA;
}

.formBloc .ligne .datalist_in span {
    padding: 0.5rem;
    line-height: 3rem;
    vertical-align: middle;
}

.formBloc .multi {
    white-space: nowrap;
    overflow: hidden;
}

.formBloc .multi .value {
    width: auto;
}

.formBloc .ligne.multi > div:nth-child(1n+2) {
    margin-left: 16px;
}

.formBloc .ligne .inline > * {
    margin-left: 0.5rem;
}

.formBloc INPUT[type=checkbox] {
    max-width: 3rem;
    height: 3rem;
    margin: 0rem 0 0 0;
    vertical-align: middle;
    border: solid 1px rgba(0, 0, 0, 0.2);
}

.formBloc .ligne .value INPUT[readonly],
.formBloc .ligne .value SELECT[readonly] {
    background-color: rgba(255, 255, 255, 0.4);
    border: solid 1px rgba(0, 0, 0, 0.06);
    /*color: rgba(0,0,0,0.8);*/
}

.formBloc .text {
    /* line-height: 2rem; */
}

.formBloc .text .caption,
.formBloc .img .caption {
    width: 100%;
    text-align: left;
}

.formBloc .text .value,
.formBloc .img .value {
    width: 100%;
    text-align: left;
    padding: 0;
}

.formBloc .info .value {
    text-align: left;
    padding: 0;
}

.formBloc .info.small {
    text-align: left;
    padding: 0;
    font-style: italic;
    line-height: 1rem;
    font-size: 1.3rem;
}

.formBloc .info.small .value {
    text-align: left;
    padding: 0;
    font-style: italic;
}

.formBloc .ligne .value IMG {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
    box-sizing: border-box;
    /*height: 10rem;*/
    /*font-family: inherit;*/
}

.formBloc .ligne .value TEXTAREA {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
    box-sizing: border-box;
    height: 10.4rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 1);
    border: solid 1px rgba(0, 0, 0, 0.1);
}

.formBloc .ligne .value TEXTAREA[readonly] {
    background-color: rgba(255, 255, 255, 0.4);
}

.formBloc .ligne .form-group-inner > div.text {
    padding: 4px 0;
    margin: 8px 0;
    overflow: hidden;
}

.formBloc .ligne .value .info {
    /* width: 100%; */
    margin: 0;
    padding: 0.5rem;
    box-sizing: border-box;
    font-weight: 300;
    background: transparent;
    border: 0;
    line-height: 2rem;
}

.formBloc .ligne .value.small .info {
    /* width: 100%; */
    margin: 0;
    padding: 0 0.5rem;
    box-sizing: border-box;
    font-weight: 300;
    background: transparent;
    border: 0;
    line-height: 2rem;
    font-size: 1.2rem;
}

.formBloc > .actions {
    position: sticky;
    top: 100%;
    padding: 16px;
    text-align: right;
}

.sysformOnglet > .actions {
    text-align: right;
}

.sysformOnglet.grid > .actions {
    grid-column-start: 1;
    grid-column: span 12;
    align-self: end;
}

.sysformOnglet > .actions > .button:last-child {
    margin-left: 16px;
}

.md .sysformOnglet > .actions > .button:last-child,
.lg .sysformOnglet > .actions > .button:last-child,
.xl .sysformOnglet > .actions > .button:last-child {
    margin-right: 8px;
}

/* .join */

.sysForm .formBloc .ligne .value.join input[type=text] {
    padding-left: 4.5rem;
    text-decoration: underline;
    cursor: pointer;
}

.sysForm .formBloc .ligne.join .value .fa-folder-open-o,
.sysForm .formBloc .ligne.join .value .fa-plus,
.sysForm .formBloc .ligne.join .value .fa-times {
    position: absolute;
    top: 2px;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    text-align: center;
    padding: 0;
    font-family: SWGicon2;
    font-size: 1.6rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.2s;
    border: none;
    background: transparent;
}

.sysForm .formBloc .ligne.join .value .fa-folder-open-o {
    left: calc(0.5rem + 1px);
    border-right: solid 1px rgba(0, 0, 0, 0.06);
    -webkit-border-top-left-radius: 5px;
    -moz-border-top-left-radius: 5px;
    -ms-border-top-left-radius: 5px;
    -o-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -ms-border-bottom-left-radius: 5px;
    -o-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.sysForm .formBloc .ligne.join .value .fa-plus,
.sysForm .formBloc .ligne.join .value .fa-times {
    right: 1px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
    -ms-border-top-right-radius: 5px;
    -o-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
    -ms-border-bottom-right-radius: 5px;
    -o-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.sysForm .formBloc .ligne.join .value .fa-folder-open-o:hover,
.sysForm .formBloc .ligne.join .value .fa-plus:hover,
.sysForm .formBloc .ligne.join .value .fa-times:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.formBloc .ligne .btn_join:hover,
.formBloc .ligne .btn_join_del:hover,
.formBloc .ligne .btn_join_plus:hover {
    color: rgba(0, 0, 0, 0.8);
    font-size: 2rem;
    line-height: 3.8rem;
}

.sysForm .modified,
.form-group.modified input[type=text],
.form-group.modified input[type=password],
.form-group.modified input[type=date],
.form-group.modified select,
.form-group.modified .select,
.form-group.modified textarea,
.form-group input[type=text]:hover,
.form-group input[type=password]:hover,
.form-group input[type=date]:hover,
.form-group select:not(.no_hover):not(.disabled):hover,
.form-group .select:not(.no_hover):not(.disabled):hover,
.form-group textarea:hover {
    border-color: rgba(0, 0, 0, 0.48);
}

.dark .sysForm .modified,
.dark .form-group.modified input[type=text],
.dark .form-group.modified input[type=password],
.dark .form-group.modified input[type=date],
.dark .form-group.modified select,
.dark .form-group.modified .select,
.dark .form-group.modified textarea,
.dark .form-group input[type=text]:hover,
.dark .form-group input[type=password]:hover,
.dark .form-group input[type=date]:hover,
.dark .form-group select:hover,
.dark .form-group .select:hover,
.dark .form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.formBloc .chat {
    width: 100%;
    height: calc(100%);
    border-radius: 12px;
    background-color: #FFF;
}

.formBloc .ifr {
    width: 100%;
    height: calc(100% - 48px);
}

.formBloc .ifr IFRAME {
    width: 100%;
    height: 100%;
    border: none;
}

.formBloc IFRAME {
    width: 100%;
    height: 100%;
    border: none;
}

/******************** toast *************/

.sysformGeneral .toast-container {
    right: 50%;
    -webkit-transform: translate3d(50%, 0, 0);
    -moz-transform: translate3d(50%, 0, 0);
    -ms-transform: translate3d(50%, 0, 0);
    -o-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
}

.sysformGeneral .toast {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.sysformGeneral .toast .icon-m {
    /*display: none;*/
}

.sysformGeneral .toast .inner {
    margin: 8px;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
}

/******************** .sousliste ********************/

.sousliste {
    /*float: left;*/
    /*width: 100%;*/
}

.sousliste .formBloc {
    width: auto;
}

.sousliste .formBloc > .inner {
    height: calc(100% - 48px);
    position: relative;
    flex: 1;
    overflow: hidden;
}

.sysformOnglet.grid .sousliste .formBloc > .inner {
    height: initial;
    flex: 1;
}

.sousliste .formBloc .titreBloc .button {
    float: right;
}

.sousliste .formBloc .titreBloc .lib {
    padding: 0 1rem;
    line-height: 4.5rem;
}

.sousliste .formBloc .enteteC {
    border-bottom: 1px solid var(--palettes-neutral-90-bg);
    box-shadow: none;
}

/******************** .text ********************/

.form-group[class*="view-text-"] {
    /*margin-top: 0;
    padding-top: 0;*/
}

.text-actions {
    height: 48px;
    text-align: right;
}

.text-actions > .icon {
    display: inline-block;
}

.view-text-preview .ck-editor,
.view-text-preview textarea,
.view-text-source .text-preview,
.view-text-source .ck-editor,
.view-text-editor textarea,
.view-text-editor .text-preview,
.view-text-preview .form-group-inner > .border,
.view-text-editor .form-group-inner > .border {
    display: none;
}

.text-preview {
    position: relative;
    border: 1px solid rgba(0, 0, 0, .14);
    padding: 8px 16px;
    min-height: 240px;
}

/******************** .formBlocLight ********************/

.formBlocLight .enteteC,
.formBlocLight .boxsummary {
    display: none;
}

.formBlocLight .SLBox .boxlineScroller {
    height: calc(100% - 48px);
}

.formBlocLight .SLBox .boxlines .boxline:first-child .line {
    border-top: none;
}

/******************** media ********************/

@media only screen
and (max-width: 568px) {
    .sysForm.ongletopen .onglets {
        width: 100%;
        margin-left: 10rem;
        transition: all 0.2s;
    }

    .sysForm.onglethide .onglets, .sysForm .onglets {
        width: 100%;
        margin-left: 0rem;
        padding-bottom: 10px;
    }
}

.xs .sysForm .onglets,
.sm .sysForm .onglets {
    overflow-y: auto;
}

.xs .sysForm .sysformOnglet,
.sm .sysForm .sysformOnglet {
    padding: 4px 8px;
    height: 100%;
}

.xs .sysForm .formBloc,
.sm .sysForm .formBloc {
    margin: 4px 0;
}

/*
.xs .sysForm .formBloc,
.sm .sysForm .formBloc,

.xs .sysForm .slboxSearch,
.sm .sysForm .slboxSearch,
.xs .sysForm .SLBox,
.sm .sysForm .SLBox,*/
.xs .widget_rssfeedreader,
.sm .widget_rssfeedreader {
    height: auto !important;
}

.xs .sysForm .formBloc,
.sm .sysForm .formBloc,
.xs .sysForm .SLBox,
.sm .sysForm .SLBox {
    position: relative !important;
}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (orientation: portrait) {
    .sysForm .barOnglet {
        /*display: none;*/
    }

    .sysformOnglet {
        display: block;
    }

    .sysForm .onglets {
        /* height: auto; */
        /* width: 100%; */
        /* overflow-y: auto; */
        /* margin-left: 0rem; */
    }

    .sysForm .onglet_content {
        height: auto;
    }

    .formBloc:has(.inner.chat) {
        min-height: 65vh;
    }


    .sysformOnglet .titreOnglet {
        /* display: block; */
    }

    .sysForm .buttons {
        width: 100%;
        margin-left: 0rem;
    }

    .formCol {
        /* float: left; */
        /* padding: 0.5rem; */
        /* width: 100%; */
        height: 100%;
    }

    .formBloc {
        /* width: 100%; */
    }

    .formBloc .ligne {
        /* width: auto; */
        /* vertical-align: middle; */
        /* line-height: 4rem; */
        font-size: 1.4rem;
    }

    .formBloc .ligne .caption {
        width: 100%;
        padding: 0 1rem;
        text-align: left;
        display: inline-block;
        vertical-align: middle;
        line-height: 1.4rem;
    }

    .formBloc .ligne .value {
        /* width: 100%; */
        /* display: inline-block; */
        /* padding-left: 0.5rem; */
    }

    .formBloc .multi .value {
        /* width: auto; */
    }

    .formBloc .join .value {
        width: 88%;
    }

    .formBloc .multi .caption {
        width: auto;
    }

    .formBloc .ligne .value > * {
        /* width: 100%; */
        /* background: transparent; */
        /* margin-right: 0.5rem; */
    }
}

.sysForm .sysFormFooter {
    height: calc(53px + 15px);
    padding-bottom: 15px;
    border-top: 1px solid #ddd;
    bottom: 0;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.sysForm .sysFormFooter .sysFormCoWorking {
    display: flex;
    position: relative;
    padding: 0 16px;
}

.sysForm .sysFormFooter .sysFormCoWorking .avatar {
    border: 5px solid #F7F7F7;
    top: 5px;
    width: 50px;
    height: 50px;
}

.sysForm .sysFormFooter .sysFormFooterBtn {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    position: absolute;
    right: 0;
    padding: 0 16px;
}

.sysForm .sysFormFooter .sysFormFooterBtn > .button {
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #C5C6CB;
    height: 36px;
    padding: 10px 16px;
    margin: 0;
}

.sysForm .formBloc:not(.canvas) .button:not(.floating) {
    background-color: var(--tertiary-fixed-dim);
    color: var(--on-tertiary-fixed-variant);
}

.sysForm .sysFormFooter .sysFormFooterBtn > .button.ok {
    background: var(--primary-container);
    color: var(--on-surface-variant);
}

.sysForm .sysFormFooter .sysFormFooterBtn > .button.ok svg {
    fill: white;
}

.sysFormLight .sysForm {
    background: transparent !important;
}

.sysFormLight .sysFormFooter {
    position: relative !important;
    order: 2;
}

.sysFormLight .sysForm {
    display: flex;
    flex-direction: column;
}

.sysFormLight .sysForm .onglet_content .titreBloc {
    display: none;
}

.sysFormLight .sysForm .onglet_content {
    position: relative !important;
    padding: 0 !important;
    overflow: hidden;
}

.sysFormLight .sysForm .onglet_content .formCol, .sysFormLight .sysForm .onglet_content .formBloc {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sysFormLight .sysForm .onglet_content .formBloc {
    background: transparent !important;
}

.sysFormLight .sysForm .onglets {
    position: relative !important;
    order: 1;
}

.sysFormLight .formBloc .inner > .ligne {
    padding: 0 !important;
}

.sysFormLight .toast-container {
    display: none !important;
}

.sysFormLight .divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    left: 0;
    margin-top: 8px;
}

.sysFormLight .form-group:not(.no_bg) input:not(.no_bg) {
    background-color: white;
    height: 36px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 14px;
}

.sysFormLight .formBloc:not([class*=nostyle]):not(.nopadding) > .inner:not(.file):not(.chat):not(.slboxGeneral):not(.widget_map):not(.ifr):not(.widget_explorer):not(.widget_notes):not(.graph):not(.widget_chart) {
    padding: 0 !important;
}

.sysFormLight .no-edit {
    background-color: transparent !important;
}

.grid-line:has(.dashboard) {
    height: calc(100% - 10px) !important;
}

/* Conteneur principal */
.grid-line {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 10px;
    margin-top: 8px;
}

/* Chaque bloc de formulaire */
.grid-item.formCol {
    display: flex;
    flex-direction: column !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    gap: 8px;
}

.grid-item.formCol[style*="display: none"] {
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    min-height: 0 !important;
}

.grid-separator.formSep {
    display: block;
    width: 100% !important;
    height: 0 !important;
    background: transparent !important;
    border-radius: 4px !important;
    position: relative !important;
}

.grid-separator.formSep.auto {
    background: transparent !important;
    height: 0 !important;
}

.grid-item > .formBloc {
    width: 100% !important;
}

@media (max-width: 900px) {
    .grid-line {
        flex-wrap: wrap !important;
        margin-top: 0 !important;
    }

    .grid-item.formCol {
        flex: 1 1 100% !important;
    }
}

.grid-stack {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    flex: 0 0 auto !important;
}

.grid-item.formCol {
    flex-shrink: 0 !important;
}


.grid-stack {
    display: flex;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
    flex: 0 0 auto !important;
}

.grid-item.formCol {
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}


/* Petits écrans */
@media (max-width: 600px) {
    .grid-separator.formSep {
        margin: 8px 0 !important;
    }

    .grid-item.formCol {
        padding: 0 !important;
    }
}
