.container-loading-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: inherit;
}

body {
  margin: 0;
}

#loading-bg {
  width: 100% !important;
  height: 100% !important;
  background: #fff !important;
  display: flex;
  /* Center child elements */
  justify-content: center;
  align-items: center;
  position: fixed;
  /* Fullscreen overlay */
  top: 0;
  /* Align to top */
  left: 0;
  /* Align to left */
  z-index: 9999;
  /* Ensure it appears above all other content */
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

#loading-bg.hide {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s, 0.5s;
  /* Delays hiding the visibility until opacity is fully transitioned */
}

.loading-logo {
  z-index: 10000;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}

.loading .effect-1,
.loading .effect-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(25, 35, 72, 1);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1 {
  animation: rotate 1s ease infinite;
}

.loading .effect-2 {
  animation: rotateOpacity 1s ease infinite 0.1s;
}

.loading .effect-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(25, 35, 72, 1);
  -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
  animation: rotateOpacity 1s ease infinite 0.2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effects {
  transition: all 0.3s ease;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotateOpacity {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.1;
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}

.logo-shining {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 10000000000001;
  background: linear-gradient(to bottom right,
      #0000 calc(50% - 40px),
      #fff 50%,
      #0000 calc(50% + 40px)) bottom right/calc(200% + 80px) calc(200% + 80px);
  animation: ct8 1s infinite;
}

@keyframes ct8 {
  100% {
    background-position: top left;
  }
}