/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 1065;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}


/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #113448;
}

.spinner {
    position: absolute;
    top: 50%; /* centers the loading animation vertically one the screen */
    left: 50%; /* centers the loading animation horizontally one the screen */
    width: 3.75rem;
    height: 1.25rem;
    margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */
    text-align: center;
}

.spinner > div {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #fff;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0); }
    40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    } 40% {
          -webkit-transform: scale(1.0);
          -ms-transform: scale(1.0);
          transform: scale(1.0);
      }
}


/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.svgbox{
    background:#f9fcff;
    min-height:10vh;
}


.sp_row { background-color: #ffffff; }

.sp_row:hover { 
	background-color: #F0F0F0;
	cursor:pointer;
	text-color:black;
}
.table td{
	vertical-align: middle;
	text-align: center;
}
.img_selected{
    box-shadow:0px 12px 22px 1px #333;
	border-style: solid;
	border-color: coral;
}
html {
  --scrollbarBG: #CFD8DC;
  --thumbBG: #90A4AE;
}


/* IMPORT RADR */
.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}



.atlas {
  width: 100%;
  height: 100%;
  min-height:10vh;
  max-height: 80vh;
}





/* FONT ]*/

@font-face {font-family: "Aveny T WEB";
  src: url("./fonts/avenytweb.eot"); /* IE9*/
  src: url("./fonts/avenytweb.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("./fonts/avenytweb.woff2") format("woff2"), /* chrome、firefox */
  url("./fonts/avenytweb.woff") format("woff"), /* chrome、firefox */
  url("./fonts/avenytweb.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("avenytweb.svg#Aveny T WEB") format("svg"); /* iOS 4.1- */
}


.sb_hiding_panel {
    margin-left:5px;
    margin-right:5px;
}

.fixedElement {
	background-color: #c0c0c0;
	position:fixed;
	top:0;
	width:100%;
	z-index:100;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}


.switch-field label {
	background-color: rgb(227 230 241 / 45%);
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 8px 16px;
	margin-right: -1px;
	border: none;
	box-shadow: none;
	transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
	background-color: #1e4ebf; /* default supported fallback style */
}

.switch-field input:checked + label {
	background-color: #1e4ebf; /* default supported fallback style */
	color: white;
	color: var(--white);
	box-shadow: none;
}

/*.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 0px 0px 0;
}*/

/* disabled div */
.disabledDiv{
	opacity: 0.2;
	pointer-events:none;
}


.splitterdiv {
  display: flex;
}

.left-half {
    flex: 2.5;
    padding: 1rem;
    height: 92.2vh;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-overflow-scrolling: touch;
    will-change: transform;

}
/* Hide scrollbar for Chrome, Safari and Opera */
.left-half::-webkit-scrollbar {
    display: none;
}

.reportToggleDiv{
    margin-top: 1rem;
}



.right-half {
  flex: 1;
  padding: 1rem;
  margin-top: 1rem;
  height: 100%;
  border: 3px rgb(43 65 150 / 40%) dotted;
  background-color: white;
  /*border-radius: 15px 15px 15px 15px;*/
  border-radius: 0px;
  overflow: auto;
}

.right-half h3 {
	font-size:1.25rem;
	color: #1e4ebf;
}

.right-half p {
	font-size:15px;
	font-family: Nunito;
	color: black;
}

.loader,
.loader:after {
	border-radius: 50%;
	width: 10em;
	height: 10em;
}
.loader {            
	margin: 60px auto;
	font-size: 2px;
	/*position: relative;*/
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #000;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

.disable-select {
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}

.loading-txt{
    margin: 45vh 0 0 0;
    text-align: center;
    color: white;
    font: 600 0.875rem/0.875rem "Open Sans", sans-serif;
}

html {
  --scrollbarBG: #CFD8DC;
  --thumbBG: #90A4AE;
}
body::-webkit-scrollbar {
  width: 11px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

.svgtxt{fill:black; stroke: none}
.moelaxtxt{font-size:30px; text-align:center;color:black}


.no-click {
    pointer-events: none;
    background: gray;
}
.btn_no-click {
    pointer-events: none;
    background: gray;
    background-color: gray !important;
}

.img_center {
    display:block;
    margin:auto;
}

#startfloat {
    /*height:75vh;*/
}

#startfloat {
    /*height:75vh;*/
}
.verticaltxt {
    writing-mode:vertical-lr;
    -moz-transform: rotate(180deg);  /* FF3.5/3.6 */
    -o-transform: rotate(180deg);  /* Opera 10.5 */
    -webkit-transform: rotate(180deg);  /* Saf3.1+ */
    transform: rotate(180deg);  /* Newer browsers (incl IE9) */
    width:100%;
    cursor:pointer;
}
.ie{
    writing-mode:tb-rl;
}
/****** DARK MODE *****/
.darkmode{

}

/* Bandeau du haut - Fond */
.darkmode #topbar{
    background-color: #5a5a5a !important;
}

/* Bandeau du haut - Fond box recherche */
.darkmode .form-control {
    background-color : #596066 !important;
    color: white !important;
}

/* Bandeau du haut - Fond box recherche */
.darkmode #searchTextsearchForm {
    color: white;
}

/* Titre (Suivi SEP) */
.darkmode .text-gray-800 {
    color: white !important;
}

/* Bandeau vertical gauche */
.darkmode #accordionSidebar{
    background-color: #112a64 !important;
    /*background-image: url("../img/bg/bg-5.jpg") !important;*/
}

/* Fond  page principale */
.darkmode #wrapper #content-wrapper{
    background-color: #1b1f23 !important;
}

/* Box - fond (Technique, examen antérieur) */
.darkmode .card{
    background-color: #292c2f !important;
    border: 0px solid #292c2f
}
/* Sous box (couleur texte et fond T1, T2 T2EG etc) */
.darkmode .switch-field label {
    color: rgb(231, 231, 231) !important;
    background-color: rgb(59 65 70) !important;
}

.darkmode .switch-field label:hover {
    cursor: pointer;
    background-color: #1e4ebf !important;
}

/* couleur case coché */
.darkmode .switch-field input:checked + label {
    background-color: rgb(31 74 175) !important;
}

.darkmode .text-gray-600 {
    color: white !important
}

/* Sous-box (fond entre le noms des sequences) */
.darkmode .switch-field {
    background-color: #292c2f !important;
}

/* Box - Fond + bord inf (nouvelle lésion, diffusion etc) */
.darkmode .card-header {
    background-color: #292c2f !important;
    border-bottom: none !important;
}
/* Ombres grande box */
.darkmode .shadow {
    box-shadow: none !important;
}

/* Ombres sous-box */
.darkmode .shadow-sm {
    box-shadow:  none !important;
}

/* Liseré inferieur examen modifié */
.darkmode .border-bottom-warning {
    border-bottom: 0.25rem solid #3ec2f6 !important
}



/* Liseré gauche Technique et Examen anterieur */
.darkmode .border-left-primary {
    border-left: 0.25rem solid #2b669696 !important;
}

/* Box - Titre (Technique, nouvelle lesions etc.) */
.darkmode .text-primary {
    color: #467cdf !important;
}
/* Box date examen anterieur */
.darkmode .form-panel{
    background-color: #ababab !important;
    text-color: white !important;
}

/* Compte rendu - fond */
.darkmode #rapport{
    background-color: rgb(41,44,47) !important
}

/* Compte rendu - bordure pointillé */
.darkmode .right-half {
    border: 3px rgb(31 74 175 / 58%) dotted !important;
}
/* Compte rendu - Ecriture titre */
.darkmode .right-half h3 {
    color: #467cdf !important;
}

/* Compte rendu - Ecriture texte */
.darkmode .right-half p {
    color: #ffffff !important;
}

/* Compte rendu - listes */
.darkmode .right-half ul {
    color: #ffffff !important;
}

/* Barre horizontal footer - fond */
.darkmode .bg-white {
    background-color: #292c2f !important;
}

/* Bouton COPIER */
.darkmode .btn_a {
    background-color: rgb(43, 102, 150) !important;
}

/* Tableau lésion */
.darkmode .table td {
    background-color: #2e2e2e !important;
    border: 1px solid #2B6696 !important;
}
.darkmode .table thead th {
    background-color: #474747 !important;
    border-bottom: 2px solid #2B6696 !important;
    border-right: 1px solid #2B6696;
    border-left: 1px solid #2B6696;
    border-top: 1px solid #2B6696;
}
.darkmode select {
    background-color: #3b4146 !important;
    border: none !important;
    color: #838594 !important;
}

.darkmode .svgbox{
    background: #292c2f !important;
}

.darkmode .svgtxt {
    fill: white !important;
}

.darkmode .moelaxtxt{
    color: white !important;
}
}


.darkmode p {
    color: white;
}

.darkmode .subTabLink {
    background-color: #292c2f !important;
}

.darkmode .subTabLink.active,
.nav-item.show .subTabLink {
    color: #ffffff;
    background-color: #3b4146 !important;
    border-color: #474747 #474747 #474747;
}

.darkmode .subTab_div {
    background-color: #3b4146 !important;
}

.darkmode #rapport {
    color:white;
}
.darkmode .alert-info {
    color: #d0e0e2;
    background-color: #659ea7;
    border-color: #659ea7;
}

.darkmode .alert-success {
    color: #cee2da;
    background-color: #499278;
    border-color: #499278;
}

.darkmode .alert-danger {
    color: #e8c5c2;
    background-color: #713d38;
    border-color: #713d38;
}

.darkmode .alert-warning {
    color: #ffffff;
    background-color: #d6b150;
    border-color: #d6b150;
}

.darkmode .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #3a424a;
    border: 1px solid rgb(255, 255, 255 / 54%);
}

.darkmode .logo_dark{
    display:block;
}
.darkmode .logo_white{
    display:none;
}
.logo_dark{
    display:none;
}
#rapport {
    overflow-y: auto;
    height: 90vh;
    color:black;
}

p .rapport {
    color: #333333;
    font-family: "Helvetica Neue",Arial,sans-serif;
    font-size: 16px; font-weight: 300; line-height: 1.225; margin-bottom: 5px; }
.btn_a {
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(1, 178, 255, 0.8);
    padding: 7px;
    border-radius: 5px;
    display: inline-block;
    border: none;
    transition: all 0.2s ease 0s;
    font: 1em "Fira Sans", sans-serif;
}
.btn_a:hover {
    background: #434343;
    letter-spacing: 1px;
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
    box-shadow: 5px 40px -10px rgba(0,0,0,0.57);
    transition: all 0.2s ease 0s;
    cursor:pointer;
}

.subTabItem{

}
.subTabItem:hover{
    cursor: pointer;
    border-color: black;
}


.table-bordered td{
    min-width: 6.75rem;
}

.subTabLink {
    background-color: rgba(227, 232, 241, 0.47);
    display: block;
    padding: 0.5rem 1rem;
    border: none ;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.subTabLink:hover, .subTabLink:focus {
    border-color: #eaecf4 #eaecf4 #dddfeb;
}

.subTabLink.disabled {
    color: #f2f5ff;
    background-color: transparent;
    border-color: transparent;
}

.subTabLink.active,
.nav-item.show .subTabLink {
    color: #122b40;
    background-color: #e3e8f1;
    border-color: #eaedf8 #eaedf8 #eaedf8;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    font-weight:bold;
}

.subTab_div{
    padding:10px;
    background-color: rgba(44,81,143,0.10);
    border-bottom-left-radius: 0.35rem;
    border-bottom-right-radius: 0.35rem;
    border-top-right-radius: 0.35rem;
    box-shadow: 0 5px 10px 0 rgb(31 51 86 / 6%) ;
    z-index: 5;
}

select:hover{
    cursor:pointer;
}

.sidebar.toggled .tab-title{
    display:none !important;
}
.nav-item:hover{
    cursor:pointer;
}
.pagetitle-container{
    bottom: 0;
    position: absolute;
    width: auto;
    /*background: darkblue;*/
    cursor: default;
}

.pagetitle{
    margin-bottom:5px;
    color:white;
    padding: 0.75rem 1rem;
    display:block;
    font-style: italic;
}

.dropdown-item:hover{
    cursor:pointer;
}
.spinner-btn{

}

.legend{
    text-align: center;
}

#toast-container > .toast:before {
    position: fixed;
    font-family: FontAwesome;
    font-size: 24px;
    line-height: 18px;
    float: left;
    color: #FFF;
    padding-right: 0.5em;
    margin: auto 0.5em auto -1.5em;
}


.dropdown-list{
    line-height: 1.3rem;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #367fba;
    border-color: #244ec9;
}

.darkmode .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: #367fba !important;
}

.form-tile-main{
    padding: 0 0.75rem;
}
.form-tile{
    padding: 0 0.75rem;
}

.form-tile .form-item {
    display: block;
    height: 10vh;
    width: 30vw;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #2b6696;/*#3a3b45;*/
    text-align: inherit;
    /*white-space: nowrap;*/
    background-color: transparent;
    border: 0;
}
.form-tile:hover {
    /*transform: scale(1.05);*/ /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    background-color: rgba(56, 114, 180, 0.24);
}
.form-tile .form-image{
    position: relative;
    height: 100%;
    /*width: 2.5rem;*/
}
.form-tile .form-image img{
    height: 100%;
}
.form-tile a:hover{
    text-decoration: none;
}
.form-tile .text-gray-500{
    padding-top: 0.25rem;
}

sentence:hover{
    cursor:pointer;
    /*font-weight: bold;*/
    color: rgb(58, 116, 193);
}

sentence ul{
    margin-bottom: 0;
}
.report{
    padding-bottom: 0.5rem;
}

/***** HELPER *************/
/* classe pour l'affichage du content de l'aide */

.helper-content{
    color: black;
}
.darkmode .helper-content{
    color: white !important;
}

.helper-content .alert-warning{

}
/***** FIN HELPER *************/

/**** texte sous image module image button **/
.img-subtext{
    margin-bottom: 3px;
}



/****** middle div dans form */
.toggleDivA{
    cursor:pointer;
    border-radius:0px;
    border-top-left-radius: 0.50rem;
    border-bottom-left-radius: 0.50rem;
}

.toggleDivA:hover{
    cursor:pointer;
    border-radius:0px;
    border-top-left-radius: 0.50rem;
    border-bottom-left-radius: 0.50rem;
    background-color: #1e4dbe;
}

.logo_R{
    height:5vh;
}

svg {
    overflow: hidden;
    vertical-align: middle;
    /*background-color: white;*/
}

.table_row_splitter{
    text-align: left;
}