#formfilling{
    width:100%;
    height:100%;
    overflow-x:hidden;
}

#toolbar{
    position: absolute;
    z-index: 1;
    width:100%;
    height:auto;
}

#close{
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

#closeSave{
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}

.hidden{
    display:none !important;
}

#images{
    width: 75%;
    height: 100%;
    float: right;
}

#preview{
    width: calc(75% - 100px);
    position: absolute;
    right: 50px;
    top: 50px;
}

.zoom{
    width:200px;
    height:100px;
    position:absolute;
    border:1px solid black;
    pointer-events: none;
}

#fields label{
    display:inline-block;
    width:calc(100% - 100px);
}

#fields input{
    width:calc(100% - 100px);
}

#fields div{
    margin-bottom:50px;
}

#fields{
    width: 25%;
    height: 100%;
    float: left;
    padding:50px;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.75);
  border-right: 1.1em solid rgba(255, 255, 255, 0.75);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.75);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.outer-loader{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loaderLazyLoading{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
  height:100%;
  z-index:3;
  display:flex;
  justify-content: center;
  align-items: center;
}

.loaderLazyLoading div{
  border: 10px solid rgba(0, 0, 0, 0.1);
  border-top: 10px solid #333;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spinLazyLoadin 1s linear infinite;
}

@keyframes spinLazyLoadin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}