@import "./fonts.css";

body {
  position: relative;
  background-color: #0f0f10 !important;
}
body.light {
  background-image: linear-gradient(to bottom, #f3f3fb 0%, #fdfbfd 100%);
}

.loader-container {
  position: absolute;
  height: 100vh;
  width: 100vw;
  background-color: rgba(173, 173, 173, 0.5);
  top: 0;
  left: 0;
}

.loader-container .loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.banner {
  width: 100%;
  height: auto;
}
.banner img {
  width: 100%;
  height: auto;
}

.live {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  padding: 15px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  max-width: 1440px;
}

.live.vertical {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.scroll-box {
  overflow: auto;
}

.scroll-box::-webkit-scrollbar {
  width: 0.4rem;
  border-radius: 0.4rem;
}

.scroll-box::-webkit-scrollbar-track {
  background-color: darkgrey;
  border-radius: 0.4rem;
}

.scroll-box::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
}

.toogle-container {
  display: none;
  height: 50px;
  margin: auto;
  margin-bottom: 10px;
}

.toggle__label {
  width: 33.3%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
  padding: 15px 5px 12px;
  background-color: #24252b;
  font-family: CheilRomanOTF-Regular;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: normal;
  color: #bbd0ff;
  border: none !important;
  margin: 0 auto;
}
.toogle-container.light .toggle__label {
  background-color: #FFFFFF;
  color: #000000;
}

.ally-active {
  background: linear-gradient(to left, #6b12dd 30%, #3f28df 80%);
  color: #f6f6f6;
}

.toogle-container.light .ally-active {
  background: linear-gradient(#d8a0fe, #7683d9);
  color: #FFFFFF;
}

.ally-border-unactive {
  border: 0 solid #46bebe;
}

@media only screen and (max-width: 991px) {
  .live {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .toogle-container {
    display: none;
    flex-direction: row;
  }
  .toogle-container.show {
    display: flex !important;
    flex-direction: row;
  }
}
