@font-face {
  font-family: "Roboto Black";
  src: url("/assets/Roboto-Black-0c4018c5.eot");
  src: url("/assets/Roboto-Black-0c4018c5.eot?#iefix") format("embedded-opentype"),
    url("/assets/Roboto-Black-afa38ce0.woff2") format("woff2"),
    url("/assets/Roboto-Black-4fd8d6f8.woff") format("woff"),
    url("/assets/Roboto-Black-050b1c99.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Bold";
  src: url("/assets/Roboto-Bold-5a18ec09.eot");
  src: url("/assets/Roboto-Bold-5a18ec09.eot?#iefix") format("embedded-opentype"),
    url("/assets/Roboto-Bold-dcb83a36.woff2") format("woff2"),
    url("/assets/Roboto-Bold-8cbc7125.woff") format("woff"),
    url("/assets/Roboto-Bold-5d351fc7.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Light";
  src: url("/assets/Roboto-Light-4aa5b2ee.eot");
  src: url("/assets/Roboto-Light-4aa5b2ee.eot?#iefix") format("embedded-opentype"),
    url("/assets/Roboto-Light-b6e093ba.woff2") format("woff2"),
    url("/assets/Roboto-Light-a3a16424.woff") format("woff"),
    url("/assets/Roboto-Light-8c92c216.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Medium";
  src: url("/assets/Roboto-Medium-bd29b07c.eot");
  src: url("/assets/Roboto-Medium-bd29b07c.eot?#iefix") format("embedded-opentype"),
    url("/assets/Roboto-Medium-1754aab0.woff2") format("woff2"),
    url("/assets/Roboto-Medium-a53eeefe.woff") format("woff"),
    url("/assets/Roboto-Medium-fd7a678e.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/Roboto-Regular-f6615538.eot");
  src: url("/assets/Roboto-Regular-f6615538.eot?#iefix") format("embedded-opentype"),
    url("/assets/Roboto-Regular-ac413565.woff2") format("woff2"),
    url("/assets/Roboto-Regular-b69596fa.woff") format("woff"),
    url("/assets/Roboto-Regular-1e7fdca2.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Thin";
  src: url("/assets/Roboto-Thin-be12ebfd.eot");
  src: url("/assets/Roboto-Thin-be12ebfd.eot?#iefix") format("embedded-opentype"),
    url("/assets/Roboto-Thin-33caa2a8.woff2") format("woff2"),
    url("/assets/Roboto-Thin-df71288c.woff") format("woff"),
    url("/assets/Roboto-Thin-4369b55d.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  background: rgb(28, 35, 42);
  background: radial-gradient(
    circle,
    rgba(28, 35, 42, 1) 0%,
    rgba(16, 20, 25, 1) 100%
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  color: white;
  background-color: #101419;
}

.fullscreen-fix {
  height: calc(var(--vh, 1vh) * 100);
}

* {
  outline: none !important;
}

.roboto-thin {
  font-family: "Roboto Thin", sans-serif;
}
.roboto-light {
  font-family: "Roboto Light", sans-serif;
}
.roboto-medium {
  font-family: "Roboto Medium", sans-serif;
}
.roboto-bold {
  font-family: "Roboto Bold", sans-serif;
}
.roboto-black {
  font-family: "Roboto Black", sans-serif;
}

.text-gradient {
  background: #000;
  background-color: #000;
  background-image: linear-gradient(0.46turn, #0aa8f9 23%, #0af1bb 78%);
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.75s ease;
}

[hover-tooltip] {
  position: relative;

  &:hover {
    &::before {
      content: attr(hover-tooltip);
      font-size: 12px;
      text-align: center;
      position: absolute;
      display: block;
      left: 50%;
      min-width: max-content;
      max-width: 200px;
      bottom: calc(100% + 10px);
      transform: translate(-50%);
      animation: fade-in 300ms ease;
      background: rgba(39, 39, 39, 1);
      border-radius: 4px;
      padding: 6px 10px;
      color: #ffffff;
      z-index: 1;
    }

    &::after {
      content: "";
      position: absolute;
      display: block;
      left: 50%;
      width: 0;
      height: 0;
      bottom: calc(100% + 6px);
      margin-left: -6px;
      border: 1px solid black;
      border-color: rgba(39, 39, 39, 1) transparent transparent transparent;
      border-width: 4px 6px 0;
      animation: fade-in 300ms ease;
      z-index: 1;
    }
  }

  &[tooltip-position="bottom"] {
    &:hover {
      &::before {
        bottom: auto;
        top: calc(100% + 16px);
      }

      &::after {
        bottom: auto;
        top: calc(100% + 12px);
        border-color: transparent transparent rgba(39, 39, 39, 1);
        border-width: 0 6px 4px;
      }
    }
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
