html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  color: #fff;
  background-color: #000;
}

div#alternate {
  width: 100%;
  height: 100%;
}

div#overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: block;
}

div#nav {
  height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  background-color: #fff;
}
div#nav svg {
  width: 12px;
  margin-right: 2px;
}
div.title {
  font-weight: 600;
}

div#pager {
  height: 20px;
  display: inline-flex;
  align-items: center;
}
div#pager .btn {
  width: 12px;
  padding: 0 4px;
  display: flex;
  align-items: center;
}
.mirror {
  transform: scaleX(-1);
}
div#pager .title {
  margin: 0 6px 0 4px;
}

div#markets {
  height: 20px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
}
div#markets .btn {
  padding: 0 2px;
}

div#video {
  height: 20px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
}
div#video .btn {
  margin-left: 2px;
  padding: 0 2px;
}

div#owner {
  height: 20px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
div#owner span {
  margin-right: 2px;
  padding-right: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

.fadeIn {
  transform: translateY(0);
  transition: transform 500ms linear;
}
.fadeOut {
  transform: translateY(-60px);
  transition: transform 500ms linear;
}
