body, html {
  padding-bottom: 10%;
}

.Spinner_Default {
  overflow: hidden;
}

.Spinner_Background {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #000000eb;
  z-index: 3;
}
.Spinner_Background .text {
  font: normal normal 400 22px/22px Lato;
  color: #F58220;
}
.HomePage_Spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 7px;
}
.HomePage_Spinner div {
  position: absolute;
  border: 4px solid #f58220;
  opacity: 1;
  border-radius: 50%;
  animation: spinner 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.HomePage_Spinner div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes spinner {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .Spinner_Background .text {
    text-align: center;
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .Spinner_Background .text {
    font-size: 14px;
  }
}