html,
body {
  font-size: 12px;
  font-family: /*Roboto,RobotoDraft,*/ Helvetica /*,Arial,sans-serif*/;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#fond {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(white, #f0f0f0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/fondPaysageSH.jpg");
  position: fixed;
  top: 0px;
}

#overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0.8;
  background-color: white;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.containerRoller {
  display: flex;
  flex-flow: row;
  justify-content: center;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: black;
  margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#header {
  width: 100%;
  height: 80px;
  z-index: 10;
  position: fixed;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

#lbTitre {
  width: 350px;
  height: 60px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/easyquoteTitreSingle.png");
}

#logoAldes {
  position: absolute;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 120px;
  height: 60px;
  top: 0px;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/logo_new.jpg");
}

#back {
  display: none;
  position: absolute;
  width: 30px;
  height: 45px;
  top: 20px;
  left: 20px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/back.png");
}

#reset {
  position: absolute;
  width: 30px;
  height: 45px;
  top: 20px;
  left: 70px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/reset.png");
}

#user {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 140px;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #3498db;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #3498db;
  font-size: 22px;
  font-weight: bold;

  /*background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../img/user.png");*/
}

#container,
#containerHelp {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 80px - 20px);
  top: 80px;
  margin: 10px;
  overflow: auto;
}

#footer {
  width: 100%;
  height: 70px;
  z-index: 10;
  position: fixed;
  bottom: 0px;
  background-color: white;
  box-shadow: 0 -2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
}

.buttonEasyquote {
  position: relative;
  height: calc(100% - 20px);
  width: 60%;
  max-width: 350px;
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #22c163;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-flow: column;
  justify-content: center;
  cursor: pointer;
}

.separation {
  width: calc(100% - 40px);
  height: 2px;
  background-color: rgb(218, 218, 218);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

/*@media (max-width: 677px) { 
    #lbTitre{
        height: 50px;
        top: 5px;
    }

    #logoAldes{
        width: 50px;
        height: 50px;
        top: 5px;
    }
}*/

@media (max-width: 730px) {
  #header {
    height: 120px;
  }

  #container,
  #containerHelp {
    height: calc(100% - 120px - 20px);
    top: 120px;
  }

  #user {
    top: 70px;
    right: 12px;
  }

  #back,
  #reset {
    top: 70px;
  }

  #logoAldes {
    width: 140px;
    height: 60px;
    top: 50px;
    left: 10px;
  }

  .buttonEasyquote {
    font-size: 12px;
  }
}

@media (max-width: 440px) {
  #lbTitre {
    width: 200px;
    height: 40px;
    top: 10px;
  }
}
