@import url("https://fonts.googleapis.com/css?family=Major+Mono+Display&display=swap");

/* HTML: <div class="loader"></div> */
.loader {
  --s: 25px;
  --g: 5px;

  width: calc(3 * (1.353 * var(--s) + var(--g)));
  display: grid;
  justify-items: end;
  aspect-ratio: 3;
  overflow: hidden;
  --_m: linear-gradient(90deg, #0000, #000 15px calc(100% - 15px), #0000);
  -webkit-mask: var(--_m);
  mask: var(--_m);
}
.loader:before {
  content: "";
  width: calc(4 * 100% / 3);
  background: conic-gradient(
    from -90deg at var(--s) calc(0.353 * var(--s)),
    #dc1fff 135deg,
    #dc1fff 0 270deg,
    #dc1fff 0
  );
  --_m: linear-gradient(
      to bottom right,
      #0000 calc(0.25 * var(--s)),
      #000 0 calc(100% - calc(0.25 * var(--s)) - 1.414 * var(--g)),
      #0000 0
    ),
    conic-gradient(
      from -90deg at right var(--g) bottom var(--g),
      #000 90deg,
      #0000 0
    );
  -webkit-mask: var(--_m);
  mask: var(--_m);
  background-size: calc(100% / 4) 100%;
  -webkit-mask-size: calc(100% / 4) 100%;
  mask-size: calc(100% / 4) 100%;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  animation: l8 10s infinite linear;
}
@keyframes l8 {
  to {
    transform: translate(calc(100% / 4));
  }
}

.img {
  min-width: 90px;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  box-shadow: 0 3px 0 0 rgb(255, 255, 255);
}

img.na {
  opacity: 1;
  box-shadow: 0 3px 0 0 rgb(255, 255, 255);
}

.dot-black {
  height: 12px;
  width: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

.dot-purple {
  height: 12px;
  width: 12px;
  background-color: #dc1fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: 16px;
}

.marq {
  position: fixed;
  top: 0%;
  width: 100%;
}

.home-img {
  min-width: 5%;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.card {
  box-shadow: -3px 0 0 0 rgb(255, 255, 255), 3px 0 0 0 rgb(255, 255, 255),
    0 -3px 0 0 rgb(255, 255, 255), 0 3px 0 0 rgba(255, 255, 255);
  max-width: 200px;
  background-color: #d0a2f7;
}

.cardTaken {
  box-shadow: -3px 0 0 0 rgba(255, 255, 255, 0.3),
    3px 0 0 0 rgb(255, 255, 255, 0.3), 0 -3px 0 0 rgb(255, 255, 255, 0.3),
    0 3px 0 0 rgb(255, 255, 255, 0.3);
  max-width: 200px;
  background-color: #000000;
}

.element {
  position: absolute;
  top: 1px;
  right: 1px;
  max-width: 20%;
}

.container {
  padding: 4px 3px;
}

.checkButton {
  opacity: 100%;
  padding: 4px 4px;
  margin-bottom: 5px;
  transition: 0.1s;
  width: 60px;
  background-color: #dc1fff;
  box-shadow: -2px 0 0 0 rgb(255, 255, 255), 2px 0 0 0 rgb(255, 255, 255),
    0 -2px 0 0 rgb(255, 255, 255), 0 2px 0 0 rgb(255, 255, 255);
}

.checkButton:hover {
  background-color: #ffffff;
  color: #000000;
}

.doneButton {
  opacity: 100%;
  padding: 4px 4px;
  transition: 0.1s;
  margin-bottom: 5px;
  width: 60px;
  box-shadow: -2px 0 0 0 rgb(255, 255, 255, 0.5),
    2px 0 0 0 rgb(255, 255, 255, 0.5), 0 -2px 0 0 rgb(255, 255, 255, 0.5),
    0 2px 0 0 rgb(255, 255, 255, 0.5);
  font-weight: bold;
}

.alert {
  padding: 20px;
  background-color: #616161;
  color: white;
  margin-bottom: 15px;
  bottom: 0;
  right: 0;
  box-shadow: -3px 0 0 0 rgb(255, 255, 255), 3px 0 0 0 rgb(255, 255, 255),
    0 -3px 0 0 rgb(255, 255, 255), 0 3px 0 0 rgb(255, 255, 255);
}

.alert.ok {
  background-color: #d0a2f7;
}

.alert.taken {
  background-color: #d43737;
}

#toastBox {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.insc {
  display: none;
}

.main {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
}

body {
  font-family: "Major Mono Display", monospace;
  background-image: url("bg.png");
  background-color: #000000;
  color: black;
}

h1 {
  color: white;
}

hr {
  padding-top: 2px;
  padding-bottom: 8px;
  margin: auto;
  max-width: 90%;
}

.pageButton {
  padding-left: 3px;
  padding-right: 3px;
  color: #ffffff;
}

.pageButton:hover {
  color: #dc1fff;
}

hr.na {
  border-color: rgba(255, 255, 255, 0.5);
}

.nav-button:hover {
  color: #ff6600;
}

.hello {
  font-family: "Major Mono Display", monospace;
}

.accordion {
  background-color: #d0a2f7;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  box-shadow: -3px 0 0 0 rgb(255, 255, 255), 3px 0 0 0 rgb(255, 255, 255),
    0 -3px 0 0 rgb(255, 255, 255), 0 3px 0 0 rgb(255, 255, 255);
  max-width: 1080px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 650px) {
  .alert {
    max-width: 333px;
    white-space: nowrap;
    overflow: hidden;
  }
}

.active,
.accordion:hover {
  background-color: #000000;
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  width: 80%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.accordion:after {
  content: "\00ff0b";
  color: #ffffff;
  float: right;
  margin-left: 5px;
  display: block;
}

.active:after {
  content: "\2212";
  color: #ffffff;
  float: right;
  margin-left: 5px;
  display: block;
}

.navnum {
  width: 80%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.feeter {
  width: 80%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
}
.icon-item {
  width: 36px;
  height: auto;
  display: block;
  margin: auto;
  color: white;
  position: relative;
  cursor: pointer;
  margin-bottom: 8px;
}

.tooltip-icon {
  width: 320%;
  bottom: 95%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  position: absolute;
}

.icon-item:hover .tooltip-icon {
  opacity: 1;
  visibility: visible;
}

.tooltip-text {
  position: relative;
  font-size: 1rem;
  color: white;
  padding: 2px;
  border-radius: 2px;
  background-color: gray;
}

.home-icon {
  width: 140px;
}

@media (max-width: 768px) {
  .social-icon {
    display: none;
  }
  .home-icon {
    width: 90px;
  }
}
