.load-wrapp {
  margin: 0 10px 10px 0;
  padding: 20px 20px 20px;
}

#previous-release-document {
  position: relative;
  min-height: 80px;
}

#previous-release-document .load-wrapp {
  position: absolute;
  background: #f5f5f59c;
  width: 100%;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
}

.ring-1 {
  width: 10px;
  height: 10px;
  margin: 0 auto;
  padding: 10px;
  border: 7px dashed #4b9cdb;
  border-radius: 100%;
}

#previous-release-document .load-4 {
  margin: auto;
}

.dirElement {
  position: relative;
  cursor: pointer;
  white-space: normal;
  padding: 0px 4px 4px 20px;
}

.dirElement:before {
  position: absolute;
  font-size: 1.2em;
  font-family: FontAwesome;
  color: #aaa;
  left: 0;
  content: "\f07b";
}

.dirElement.opened:before {
  position: absolute;
  font-size: 1.2em;
  font-family: FontAwesome;
  color: #aaa;
  left: 0;
  content: "\f07c";
}

/* =Animate the stuff------------------------ */
.load-4 .ring-1 {
  animation: loadingD 1.5s .3s cubic-bezier(.17, .37, .43, .67) infinite;
}

@keyframes loadingD {
  0 {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}