:root {
  --ld-duration:1.5s;
  --ld-container-size:250px;
  --ld-box-size:33px;
  --ld-box-border-radius:15%;
}

#globalLoader {
  display: none;
}

.loader-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 2000;
  background: white;
  height: 100vh;
  justify-content: center;
  max-width: 100% !important;
}
.loader-section .container img {
  max-width: 500px;
  max-height: 155px;
  margin-bottom: 50px;
}
.loader-section .container .partner-logo-container {
  margin-bottom: 60px;
}
.loader-section .container .partner-logo-container img {
  max-width: 300px;
  max-height: 100px;
  margin-bottom: 0;
}
.loader-section .container .partner-logo-container .partner-divider {
  max-height: 72px;
}
.loader-section .container p {
  font-family: var(--font-title-bold);
  font-size: 30px;
  color: #2d2d2d;
  margin-bottom: 15px;
}
.loader-section .container label {
  font-family: var(--font-text);
  font-size: 15px;
  color: #adadad;
}

@media (max-width: 769px) {
  .loader-section .container img {
    max-width: 500px;
    max-height: 155px;
  }
  .loader-section .container .partner-logo-container {
    width: 100%;
    margin-bottom: 60px;
  }
  .loader-section .container .partner-logo-container img {
    max-width: 162px;
    max-height: 54px;
    margin-bottom: 0px;
  }
  .loader-section .container .partner-logo-container .partner-divider {
    max-height: 45px;
  }
}
.loader-container {
  width: var(--ld-container-size);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.loader-box {
  width: var(--ld-box-size);
  height: var(--ld-box-size);
  position: relative;
  display: block;
  transform-origin: -50% center;
  border-radius: var(--ld-box-border-radius);
}
.loader-box:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e0e0e0;
  border-radius: var(--ld-box-border-radius);
  box-shadow: 0px 0px 10px 0px rgba(30, 30, 30, 0.4);
}
.loader-box:nth-child(1) {
  -webkit-animation: slide var(--ld-duration) ease-in-out infinite alternate;
  animation: slide var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(1):after {
  -webkit-animation: color-change var(--ld-duration) ease-in-out infinite alternate;
  animation: color-change var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(2) {
  -webkit-animation: flip-1 var(--ld-duration) ease-in-out infinite alternate;
  animation: flip-1 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(2):after {
  -webkit-animation: squidge-1 var(--ld-duration) ease-in-out infinite alternate;
  animation: squidge-1 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(3) {
  -webkit-animation: flip-2 var(--ld-duration) ease-in-out infinite alternate;
  animation: flip-2 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(3):after {
  -webkit-animation: squidge-2 var(--ld-duration) ease-in-out infinite alternate;
  animation: squidge-2 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(4) {
  -webkit-animation: flip-3 var(--ld-duration) ease-in-out infinite alternate;
  animation: flip-3 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(4):after {
  -webkit-animation: squidge-3 var(--ld-duration) ease-in-out infinite alternate;
  animation: squidge-3 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(5) {
  -webkit-animation: flip-4 var(--ld-duration) ease-in-out infinite alternate;
  animation: flip-4 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(5):after {
  -webkit-animation: squidge-4 var(--ld-duration) ease-in-out infinite alternate;
  animation: squidge-4 var(--ld-duration) ease-in-out infinite alternate;
}
.loader-box:nth-child(2):after, .loader-box:nth-child(3):after {
  background-color: var(--bs-secondary);
}
.loader-box:nth-child(4):after, .loader-box:nth-child(5):after {
  background-color: var(--bs-primary);
}

@-webkit-keyframes slide {
  0% {
    background-color: var(--bs-secondary);
    transform: translatex(0vw);
  }
  100% {
    background-color: var(--bs-primary);
    transform: translatex(calc(var(--ld-container-size) - var(--ld-box-size) * 1.25));
  }
}
@keyframes slide {
  0% {
    background-color: var(--bs-secondary);
    transform: translatex(0vw);
  }
  100% {
    background-color: var(--bs-primary);
    transform: translatex(calc(var(--ld-container-size) - var(--ld-box-size) * 1.25));
  }
}
@-webkit-keyframes color-change {
  0% {
    background-color: var(--bs-secondary);
  }
  100% {
    background-color: var(--bs-primary);
  }
}
@keyframes color-change {
  0% {
    background-color: var(--bs-secondary);
  }
  100% {
    background-color: var(--bs-primary);
  }
}
@-webkit-keyframes flip-1 {
  0%, 15% {
    transform: rotate(0);
  }
  35%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-1 {
  0%, 15% {
    transform: rotate(0);
  }
  35%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-1 {
  5% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  15% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  25%, 20% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  55%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  40% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-2 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-2 {
  0%, 30% {
    transform: rotate(0);
  }
  50%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-2 {
  20% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  30% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  40%, 35% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  70%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  55% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-3 {
  0%, 45% {
    transform: rotate(0);
  }
  65%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-3 {
  0%, 45% {
    transform: rotate(0);
  }
  65%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-3 {
  35% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  45% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  55%, 50% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  85%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  70% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@-webkit-keyframes flip-4 {
  0%, 60% {
    transform: rotate(0);
  }
  80%, 100% {
    transform: rotate(-180deg);
  }
}
@keyframes flip-4 {
  0%, 60% {
    transform: rotate(0);
  }
  80%, 100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}
@keyframes squidge-4 {
  50% {
    transform-origin: center bottom;
    transform: scalex(1) scaley(1);
  }
  60% {
    transform-origin: center bottom;
    transform: scalex(1.3) scaley(0.7);
  }
  70%, 65% {
    transform-origin: center bottom;
    transform: scalex(0.8) scaley(1.4);
  }
  100%, 100% {
    transform-origin: center top;
    transform: scalex(1) scaley(1);
  }
  85% {
    transform-origin: center top;
    transform: scalex(1.3) scaley(0.7);
  }
}

/*# sourceMappingURL=loader.css-65lfqxo.map */
