#widget-loader {
  max-width: 1440px;
  min-height: 570px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-family: Buch, Arial, Helvetica, sans-serif;
  text-align: center;
  gap: 26px;
}

.loader {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

.loader-signature {
  bottom: 26px;
  position: absolute;
  width: 180px;
  left: 50%;
  margin: 0 0 0 -90px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #bdbdbd;
  z-index: 11;
}

.loader-quart {
  border-radius: 50px;
  border: 6px solid #ececec;
}

.loader-quart:after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 50px;
  border: 6px solid transparent;
  border-top-color: #4d4d4d;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
