html, body {
    margin:0;
	padding:0;
	font-family: 'Roboto', sans-serif;
}
html, body {
    position: fixed;
}

html, body {
    position: relative;
    overflow: hidden;
}

body {
    position: fixed;
    overflow: hidden;
}

body {
    position: fixed;
    height:100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    width: 100%;
}

#divCanvas{
	flex-basis: calc(100% - 100px);
	width:100%;
	display:flex;
	align-items: center;
	justify-content: center;
    overflow: hidden;
}

#fullscreen {
    height:100vh;
    height: calc(var(--vh, 1vh) * 100);
	width:100%;
	position:absolute;
	display:flex;
    margin: 0px;
    flex-flow : column;
}

#CanConfig{
    position: absolute;
}

#logo{
    display: none;
}

#configuration{
    flex-basis: 100px;
    height: 100px;
    position:absolute;
    display: flex;
    align-items: center;
    padding: 0 2%;
    box-sizing: border-box;
    background-color: rgb(67,68,68);
}
#configuration div{
    line-height: 0;
}
#etage{
    flex-grow: 1;
}
#back{
    flex-grow: 1;
}
#contact{
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

#logo{
    width: 100px;
}

#menugauche, #menudroite{
    position: absolute;
    z-index: 10;
    width: 100px;
}

#configuration input, #menugauche input{
    height: 70px;
    margin: 0 5px;
    padding-top: 7px;
}

#etage{
    justify-content: center;
    display: flex;
}
#menugauche{
    display: flex;
    flex-flow : column;
    box-sizing: border-box;
}

@media (max-width: 1080px) {
    #configuration{
        flex-basis: 60px;
        height: 60px;
    }
    #configuration input{
        height: 30px;
        width: 30px;
        padding-top: 3px;
    }

    #divCanvas{
        flex-basis: calc(100% - 60px);
        width:100%;
        display:flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
}

@media (max-width: 500px) {
    #configuration{
        flex-basis: 40px;
        height: 40px;
    }
    #configuration input{
        height: 20px;
        padding-top: 3px;
    }

    #divCanvas{
        flex-basis: calc(100% - 40px);
    }
}

@media (max-width: 380px) {
    #configuration{
        flex-basis: 20px;
        height: 20px;
    }
    #configuration input{
        height: 10px;
        padding-top: 3px;
    }

    #divCanvas{
        flex-basis: calc(100% - 20px);
    }
}


/* Create four equal columns that floats next to eachother */
.column {
    float: left;
    width: 25%;
    display:none;
  }
  
  /* The Modal (background) */
  .modal {
      display: none;
      position: fixed;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: black;
  
  }
  
  /* Modal Content */
  .modal-content {
      position: relative;
      background-color: black;
      margin: 0;
      padding: 0;
      height:100%;
      width:100%;
  }
  
  /* The Close Button */
  .close {
      color: white;
      position: absolute;
      top: 10px;
      right: 25px;
      font-size: 35px;
      font-weight: bold;
      z-index:20;
  }
  
  .close:hover,
  .close:focus {
      color: #999;
      text-decoration: none;
      cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
      display: none;
      height:100%;
      width:100%;
      align-items: center;
      justify-content: center;
  }
  
  .mySlides img{
      max-width:100%;
      max-height:100%;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 16px;
      margin-top: -50px;
      color: white;
      font-weight: bold;
      font-size: 20px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
      -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
      right: 0;
      border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
  }
  
  /* Caption text */
  .caption-container {
      text-align: center;
      background-color: black;
      padding: 2px 16px;
      color: white;
      display:none;
  }
  
  img.demo {
      opacity: 0.6;
      width:90%;
      margin:auto;
  }
  
  .active,
  .demo:hover {
      opacity: 1;
  }
  
  img.hover-shadow {
      transition: 0.3s;
  }
  
  .hover-shadow:hover {
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  
#landscape{
	height: 100%;
	width: 100%;
	display: none;
	position:absolute;
	align-items: center;
	justify-content: center;
	background-color: white;
	color: #666666;
	flex-direction: column;
	font-size: 35px;
}
#landscape img{
	max-width: 100%;
	max-height: 100%;
	padding: 10px;
}
#landscape span{
	margin:20px;
}