
.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(253, 237, 237);
  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;
} 


.win-header-bar,.menu-header-bar {
  padding: 2px;
  /* height:37px; */
  flex-direction: row;
  cursor: move;
  align-items :center;
  z-index: 10;
  display:flex;
  background-color: #337ab7;;
  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;
}


/*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:200;
  }
  
  .alert {
    padding: 20px;
    background-color: #f57970;
    border-radius:8px;
    color: white;
    z-index:200;
  }
  .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;
    background: rgb(181 188 197 / 50%);
  }
  #confirm_box div{
    position: absolute;
    min-width:200px;
    top:35%;
    left:45%;
    text-align: center;
    justify-content: center;
    color : #1f4561;
    font-weight: bold;
    background: rgb(181 188 197 / 100%);
    border-radius: 15px;
    padding:20px;
  }
    
  #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;  
  }
  ul {
    list-style-type: none; 
  }
  #app_root{
    padding:10px 25px;
  }

  #home_header {
    display:flex;
    margin-top:5px;
    margin-bottom:0px;
    margin-left:15px;
    margin-right:15px;
  }
  
  img.iconh15{    height:15px;}
  img.iconh20{    height:20px;}
  img.iconh25{    height:25px;}
  img.iconh30{    height:30px;}
  img.iconh40{    height:40px;}
  button{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    border-radius : 7px;  
    margin : 5px;  
  }
  button:hover{
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
  }
  .w-100 {    width:100px;  }
  .w-50 {    width:50px;  }
  .w-500 {    width:500px;  }
  .w-full {
    width:100%;
  }  
  /* Input, Textarea Form elements... */
  input.input_ko,textarea.input_ko,select.input_ko {    border : 4px solid red;}
/* Ecran d'obfuscation */
.splash {
  position: absolute;
  width: 100%;
  background-color: #0083ff;
  height: 100%;
  opacity: 0.3;
  display: none;
}

/* Ecran d'obfuscation (hors AppWindow)*/
.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.25s, opacity 0.25s 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;	}
}