#react-flex-container {
  display: flex;
  height: 100vh;
  flex-direction: row;
}

#menu-laterale {
  display: flex;
  flex-flow: column;
  height: 100%;
  min-width: 150px;
  width: 250px;
  padding: 0 1em;
  float: left;
  background-color: #191d32;
}

#menu-laterale #logo img {
  flex: 0 1 auto;
  width: 90%;
  margin: 2em 5%;
}

#menu-laterale #menu {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#menu-laterale .voce-menu,
.voce-menu-celeste {
  width: 100%;
  padding: 0.5em;
  margin: 0.25em 0.5em;
  background: #AB2346;
  border: none !important;
  color: white !important;
}

#menu-laterale .voce-menu-celeste {
  background: #339989;
}

.form-group label {
  display: block;
}

#zona-principale {
  width: 100%;
  flex-flow: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 1em;
  flex: 1;
  padding: 0;
}

.loader,
.loader:before,
.loader:after {
  background: #191d32;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #191d32;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
