:root {
    --footer-height: 60px;

    --primary-color: #1a1a2e;
    --secondary-color: #ffffff;
    --background-color: #0f0f1a;
    --text-color: #ffffff;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

body {
    min-width: 100dvw;
    min-height: 100dvh;

    margin: 0;
    padding: 0;
    overflow-x: hidden;

    font-family: "Segoe UI", system-ui, sans-serif;

    background: var(--background-color);
    color: var(--text-color);
}

#main_wrapper {
    position: relative;
    width: 100dvw;
    min-height: calc(100dvh - var(--navbar-height) - 40px);
    overflow-y: auto;
    background: radial-gradient(circle at top, #1a1a2e, #0f0f1a);
}

.lds-ellipsis {
  /* change color here */
  color: #1c4c5b
}
.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 40px;
}
.lds-ellipsis div {
  position: absolute;
  top: 13.33333px;
  width: 13.33333px;
  height: 13.33333px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.lds-ellipsis.small {
    transform: scale(70%);
}
