@charset "utf8";

@font-face {
  font-family: "binance";
  src: url("https://db.onlinewebfonts.com/t/d05c19ccecf7003d248c60ffd6b5e8f7.eot");
  src: url("https://db.onlinewebfonts.com/t/d05c19ccecf7003d248c60ffd6b5e8f7.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/d05c19ccecf7003d248c60ffd6b5e8f7.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/d05c19ccecf7003d248c60ffd6b5e8f7.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/d05c19ccecf7003d248c60ffd6b5e8f7.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/d05c19ccecf7003d248c60ffd6b5e8f7.svg#Binance PLEX")
      format("svg");
}

* {
  font-family: "binance";
}

body {
  font-family: binance;
}

#root {
  background-color: #111827;
}

@media (min-width: 768px) {
  #root,
  #dashboard-navbar {
    width: 500px;
    margin: 0px auto;
  }

  #root,
  .container,
  nav,
  body,
  html,
  .fixed {
    max-width: 500px;
    margin: 0px auto;
  }
}

@keyframes shakeX {
  0%,
  60%,
  to {
    transform: translateZ(0);
  }

  10%,
  30%,
  50% {
    transform: translate3d(-5px, 0, 0);
  }

  20%,
  40% {
    transform: translate3d(5px, 0, 0);
  }
}

.animate-shake {
  animation: shakeX infinite 1.2s;
  animation-fill-mode: both;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
