.previousStep {
  float: left;
  margin-left: 15px;
}
.nextStep {
  float: right;
  margin-right: 15px;
}
/* Loading composant Structure */

.loading-component-struct {
  background-color: #fff;
  opacity: 0.8;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0px;
  left: 0px;
}
.loading-component-struct .loading-inner-struct {
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-left-color: rgba(0, 0, 0, 0.08);
  border-radius: 150px !important;
  animation: loading 1s infinite linear;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -20px;
  z-index: 1;
}
