
.win-root {
  position: absolute;
  width:auto;
  height:auto;
  min-height:200px;
  /* max-width: 800px; */    
  /*resize: both; !*enable this to css resize*! */
  overflow: hidden;
  background-color: rgb(231 231 231);
  border-radius:5px;
  font-size: 24px;
  border: 1px solid grey;
  box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);  
}

 /*Menu*/
 .menu-root {
  position: absolute;
  width:auto;
  height:auto;
  min-height:200px;
  text-align: left;
  /*resize: both; !*enable this to css resize*! */
  overflow: hidden;
  background-color: rgb(203, 219, 230);
  border-radius:5px;
  box-shadow: 0 7px 14px rgb(0 0 0 / 25%), 0 5px 5px rgb(0 0 0 / 22%);  
}
  

.win-body, .menu-body{
  font-size: 1rem;
  overflow: auto;
  height: inherit;
  padding-bottom: 20px;
} 

.win-header-bar {
  padding: 2px;
  /* height:37px; */
  flex-direction: row;
  cursor: move;
  align-items :center;
  z-index: 10;
  display:flex;
  background-color: #337ab7;;
  color: #fff;
}

.menu-header-bar {
  padding: 2px;
  flex-direction: row;
  cursor: move;
  align-items :center;
  z-index: 10;
  display:flex;
  background-color: #194c79;;
  color: #fff;
}

.win-header-title, .menu-header-title {
  display:flex;
  flex : 1 1 0;
  font-size:1.7rem;
  padding-left:7px;
  padding-right:10px;
}
.win-header-icons, .menu-header-icons {
  display:flex;
  padding-right: 2px;
}
.win-header-icon, .menu-header-icon {
  padding: 3px;
  border-radius: 3px;
}
.win-header-icon:hover, .menu-header-icon:hover {
  background-color: rgba(0,0,0,.15);
}

.win-title-highlight {
    border-radius: 4px;
    background-color: #48adad;
    padding: 2px;
}
.menu-title {
  font-size: 1.3rem;
}


/*Resizeable*/
.resizer-right {
    width: 7px;
    height: 100%;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: e-resize;
  }
  
.resizer-bottom {
    width: 100%;
    height: 7px;
    background: transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: n-resize;
}
    
.resizer-both {
  width: 20px;
  height: 10px;
  background: transparent;
  z-index: 10;
  position: absolute;
  right: -7;
  bottom: -7;
  cursor: nw-resize;
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  border-radius: 50px 0px 0px 0px;
  margin: 5px;      
}
.header{
  width:100%;
  height:40px;
  font-size: 30px;
  text-align: center;
  background: rgb(74 102 220);
  color : white;
}    


  #infobox{
    position:fixed;
    top:28px;
    right:10px;
    z-index:1200;
  }
  
  .alert {
    padding: 20px;
    background-color: #f57970;
    border-radius:8px;
    color: white;
    z-index:1200;
  }
  .notif {
    padding: 20px;
    background-color: #91ec9d;
    border-radius:8px;
    color: black;
  }
  .warn {
    padding: 20px;
    background-color: #e6ec91;
    border-radius:8px;
    color: black;
  }
  #confirm_box {
    position: fixed;
    z-index: 4000;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    background: rgb(181 188 197 / 50%);
  }
  #confirm_box div{
    min-width:200px;
/*    position: absolute;
    display: inline-block;
    text-align: center;
    justify-content: center;*/
    color : #1f4561;
    font-weight: bold;
    background: rgb(181 188 197 / 100%);
    border-radius: 15px;
    padding:20px;
  }
  #confirm_box button{
    margin:10px;
    border-radius: 7px;
    border: solid transparent 2px;
    padding: 7px;
    min-width: 80px;    
    opacity : 0.7;
  }    
  #confirm_box button:hover{
    opacity : 1;
    border: solid black 2px;
  }    
  #signin {
      z-index:2000;
      display: block;
      left: 50%;
      transform: translateX(-50%);
      position: fixed;
      margin-top: 15px;
  }
  
  
  body{ 
    padding:0px; margin:0px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;  
  }
  
  img.iconh15{    height:15px;}
  img.iconh20{    height:20px;}
  img.iconh25{    height:25px;}
  img.iconh30{    height:30px;}
  img.iconh40{    height:40px;}

/*  
.splash {
  visibility: visible;
  position: absolute;
  width: 100%;
  background-color: #0083ff;
  height: 100%;
  opacity: 0.3;
  display: none;
  z-index: 1000;  
  transition: opacity 0.5s linear;
} */
/* Ecran d'obfuscation */
.splash_2 {
    visibility: visible;
    position: fixed;
    width: 100%;
    height: 100%;
    top:0px;left:0px;
    background-color: #0083ff;
    height: 100%;
    opacity: 0.3;
    display: none;
    z-index: 1000;  
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;    
    transition: all 0.5s;
    transition: opacity 0.5s linear;
  }

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
}



.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.3s;
}

@keyframes fadeInOpacity {
	0% { opacity: 0;	}
	100% { opacity: 1;	}
}
@keyframes fadeOpacity {
	0% { opacity: 1;	}
	100% { opacity: 0;	}
}

.tab_body_inactive{display:none;}


/*--------------------------------*/
/*    SPECIFIC CSS                */
/*--------------------------------*/

ul.h_tab_menu{
    display:flex;
    margin-bottom: 0px;
    border-bottom:solid 2px black;
}
ul.h_tab_menu>li{
    list-style-type: none;
    margin: 0px 5px 5px 10px;
    padding: 5px 18px 10px 18px;
    border-radius: 0px 0px 5px 5px;
    min-width:100px;
    border-top: 3px solid transparent ;
    background-color: #b8dbec;
    color: #1a4271;
    text-align: center;
    font-size: 14px;
    cursor:pointer;
}
ul.h_tab_menu>li:hover {
    border-top: 3px solid black;
    /*border-radius: 5px;*/
    background-color:grey;
    color:black;
}
ul.h_tab_menu>li.selected {
    border-top: 3px solid #0d3c6b;
    font-weight: bold;
    background-color: #2e4a8c;
    color: #cbe7f7;
}


/**************************
  TAB_MENU_EMB - Onglets embarqués
**************************/
ul.h_tab_menu_emb{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: space-between; */
  /* padding-top: 0.5rem; */
  /* padding-bottom: 0.5rem; */
}
ul.h_tab_menu_emb>li{
  list-style-type: none;
  margin: 0px 10px 5px 5px;
  padding: 5px 18px 5px 18px;
  border-radius: 0px 0px 5px 5px;
  border-bottom: 2px solid transparent ;
  background-color: #0a384f;
  color: #dbe0e6;
  text-align: center;
  font-size: 12px;
  cursor:pointer;
}
ul.h_tab_menu_emb>li:hover {
  border-bottom: 2px solid black;
  /*border-radius: 5px;*/
  background-color:grey;
  color:black;
}
ul.h_tab_menu_emb>li.selected {
  border-bottom: 2px solid #3c7fc3;
  font-weight:bold;
  background-color: #22795f;
  color: #dbe0e6;
}


ul.form_table_S {
  border : 0px solid transparent;
  margin : 0px;
  padding:0px;
  border:0px;
  border-collapse: collapse;
  list-style-type: none;
  vertical-align: middle;
  display: flex;
}
ul.form_table_S>li:first-child {
  width: 150px;
  border-top: 1px solid rgb(169, 215, 245);
  text-indent: 10px;
  text-align: right;
  background-color: #385f78;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

ul.form_table_S>li:nth-child(2){
  width   : 100%;
  padding: 20px 10px;
  vertical-align: middle;
  font-size : 12px;
  background-color : white;
  border-top: 1px solid #c9d4dc;    
  overflow:auto;
}
ul.form_table_S>li:nth-child(2):hover{
  background-color:  #dbe4f3
}


ul.form_table_S2 {
  border : 0px solid transparent;
  margin : 0px;
  padding:0px;
  border:0px;
  border-collapse: collapse;
  list-style-type: none;
  vertical-align: middle;
  display: flex;
}
ul.form_table_S2>li:first-child {
  width: 150px;
  border-top: 1px solid rgb(169, 215, 245);
  text-indent: 10px;
  text-align: right;
  background-color: #7ba2bb;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

ul.form_table_S2>li:nth-child(2){
  width   : 100%;
  padding: 20px 10px;
  vertical-align: middle;
  font-size : 12px;
  background-color : white;
  border-top: 1px solid #c9d4dc;    
}
ul.form_table_S2>li:nth-child(2):hover{
  background-color:  #dbe4f3
}



#dLogout {
  position: absolute;
  display:block;
  right: 0px;
  top: 0px;
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 0px 0px 0px 15px;
}


.parameter {
  border-radius: 4px;
  background-color: #779bb3;
  padding: 4px;
  /*padding-right: 5px;
  background-color: #3e6985;
  padding-left: 5px;*/
  color: #fdfdfd;
  margin-right: 3px;
  margin-left: 0px;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size:0.9em;
  display:inline-block;
}

.bg-green {
  background-color :#6ecfb2;
}
.bg-yellow {
  background-color :#aacf6e;
}


.header-2{
  font-size: 1.5rem;
    padding: 6px;
}


.list_result tbody>tr:hover{
  background-color: #a1bad1;
}

pre {
  white-space: pre-wrap;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.rotate {
  animation: rotation 2s infinite linear;
}



input[type="radio"].pretty {
  display: none;
}
input[type="radio"].pretty + label {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.3rem;
  color: #fff;
  background-color: #6c757d;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
input[type="radio"].pretty:hover + label {
  background-color: #6baecf;
  border-color: #262e30;
}
input[type="radio"].pretty:checked + label {
  background-color: #459ec9;
  border-color: #4d78c7;
}
