
.page {
  table-layout: fixed;
  display: table;
  width: 100vw;
  height: 100vh;
  /*border: 3px solid #000;*/
}

.row-content {
  display: table-row;
  width: 100vw;
  height: calc(100vh - 40px);
}

.row-footer {
  display: table-row;
  width: 100vw;
  height: 40px;
}

.row-title {
  display: table-row;
  height: 60px;
  border-bottom: 1px solid #ccc;
  background-color: rgba(41, 182, 246, .8);
}
.row-title>.title {
  display:table-cell;
  text-align: center;
  vertical-align: middle;

  font-size: 30px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #777;
}

.cell {
  display: table-cell;
  vertical-align: top;
  /*height: calc(100% - 250px) !important;*/
  /*overflow-y: auto;*/
}




/*.cell-expand {
  height: calc(100vh - 100px);
  float:left; width: 10px;
  background: #bbb;
  overflow: hidden;
}*/

.page .content{
  border: 1px solid #ccc;
  margin-bottom: 0;
  background-color: white;
  height: 100%;
  overflow: auto;
  z-index: 50;
  width: 100%;
  border-right: none;
  padding-bottom: 20px;
  /*border-bottom: 5px solid black;*/
}

.title-sticky {
  top: 0;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  background-color: white; 
  z-index: 998; 
}
.title-sticky.active {
  background-color:red !important;
}


.cell-menu {
  /* height: calc(100vh - 110px); */
  height: 100vh;
  overflow: auto;
  display:-webkit-box;
  display:flex;
  -webkit-box-orient:vertical;
  flex-direction:column;
  float:left;
  width: 50px;
  margin-bottom: 0;
  background-color: #24344B;
  border-right: 1px solid #ddd;
  z-index: 50;
}

.cell-menu a {
  display : none;
  visibility: hidden;
  text-decoration: none;
  color: white;
  width: 100%;
  text-align: center;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.cell-menu a.show {
  display: block !important;
  visibility: visible !important;
}

.cell-menu a.expand {
  background: #2B3C58;
  cursor: pointer;
}

.cell-menu a.active-link {
  background-color: rgba(41, 182, 246, .8);
  color: white;
}

.cell-menu a:hover {
  text-decoration: none;
  background-color: rgba(41, 182, 246, .6);
  color: white;
}

.cell-menu a:hover i {
  transform: scale(1.5);
  color: white !important;
}

.cell-menu i {
  -moz-transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  color: white;
}

.cell-menu.activated {
  width: 250px !important;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.cell-menu.activated div {
  display: block;
}

.cell-menu.activated a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.cell-menu.disactivated {
  width: 75px !important;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.cell-menu.disactivated div {
  display: none;
}

.cell-menu.disactivated a {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}


@media screen and (max-height:780px){
  .main-menu-ww{
    height: 90%;
    padding-bottom: 30px;
    overflow: hidden;
    overflow-y: scroll;
  }
}

.cell-content {
  height: calc(100vh - 65px); /*Hauteur totale moins la hauteur du header*/
  /*height: 100vh;*/
  float:right;
  overflow: auto;
  background-color: white;
  margin: 0 !important;
}


a:not([href]):not([tabindex]) {
  /* color: white !important; */
}


.cell-content.activated {
  width: calc(100vw - 75px - 175px);
   -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.cell-content.disactivated {
  width: calc(100vw - 75px);
   -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
