.has-loader {
	display: flex;
    flex-direction: column;
    align-items: center;
}
.pt_plus_button .animted-content-inner,
.elementor-element-42523886 .elementor-button-wrapper {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.document-loader {
  display: flex;
  justify-content: center;
  width: 100px;
  height: 50px;
  top: 5rem;
}
.document-loader p {
	position: relative;
	top: 3rem;
}
.pt-plus-button-wrapper .document-loader {
  position: relative;
  top: 0rem;
}
.document-loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  margin: 6px;
  border: 3px solid #000000;
  border-radius: 50%;
  animation: document-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000000 transparent transparent transparent;
}
.document-loader div:nth-child(1) {
  animation-delay: -0.45s;
}
.document-loader div:nth-child(2) {
  animation-delay: -0.3s;
}
.document-loader div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes document-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
