.Spinner_Default {
  overflow: hidden;
}

.Spinner_Background {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #000000ff;
  z-index: 7;
}
.Spinner_Background .text {
  font: normal normal 500 22px/22px 'Mulish', sans-serif;
  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;
}

@media screen and (max-width: 1020px) {
  .HomePage_Spinner {
    margin-bottom: 0;
  }
  .Spinner_Background .text {
    font-size: 16px;
    max-width: 80vw;
    text-align: center;
  }
}

@keyframes spinner {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

