@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --col-bg-main: #202124;
  --col-bg-darker: #19191a;
  --col-bg-darkest: #131314;
  --col-txt-main: #fff;
  --col-txt-muted: #666;
  --col-txt-muted-medium: #888;
  --col-txt-muted-mediumlight: #ccd0d0;
  --col-txt-muted-light: #ececec;
  --col-saber-left: #e5a300;
  --col-saber-right: #cf0389;
  --col-blue: #0078d4;
  --col-blue-dark: #0984e3;
  --col-green: #2ecc71;
  --col-green-dark: #27ae60;
  --col-red: #e74c3c;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-anchor: none;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: var(--font-weight-regular);
  background: var(--col-bg-main);
  color: var(--col-txt-main);
}

::selection {
  background: var(--col-saber-left);
  color: var(--col-txt-main);
}

a {
  color: var(--col-blue-dark);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}

abbr {
  text-decoration: none;
  border-bottom: 1px dotted #444;
  cursor: help;
}

.difficulty-txt.-d0 {
  color: #3cb371;
}
.difficulty-txt.-d1 {
  color: #59b0f4;
}
.difficulty-txt.-d2 {
  color: #ff6347;
}
.difficulty-txt.-d3 {
  color: #bf2a42;
}
.difficulty-txt.-d4 {
  color: #8f48db;
}
.difficulty-txt.-unknown {
  opacity: 0.666;
}

.vanilla-version {
  opacity: 0.5 !important;
}

.mp-core-version {
  color: #2ecc71 !important;
}

.mp-ex-version {
  color: #9b59b6 !important;
}

.turbo-progress-bar {
  height: 3px;
  background-color: var(--col-saber-right);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

#content-inner {
  min-height: calc(100vh - 328px);
}

.container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 1.5rem;
  width: 100%;
  max-width: 1300px;
}

header {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
  z-index: 100;
  user-select: none;
}
header.-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header, header .container {
  height: 78px;
}
header > .container {
  padding: 0 1rem;
}
header > .container a {
  border-radius: 6px;
  padding: 0.5rem;
  user-select: none;
  cursor: pointer;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
}
header > .container a, header > .container a * {
  transition: box-shadow 0.1s ease-out, color 0.1s ease-out;
}
header > .container a:hover {
  box-shadow: inset 999px 999px 999px rgba(255, 255, 255, 0.05);
}
header > .container a:active {
  box-shadow: inset 999px 999px 999px rgba(0, 0, 0, 0.25);
}
header > .container .brand {
  flex-shrink: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 58px;
}
header > .container .brand img {
  margin-right: 0.75rem;
}
@media all and (max-width: 999px) {
  header > .container .brand img {
    margin-right: 0;
  }
}
header > .container .brand .text {
  display: block;
  color: var(--col-txt-main);
}
header > .container .brand .text span {
  display: block;
  line-height: 1.35;
}
header > .container .brand .text span:first-child {
  font-weight: var(--font-weight-medium);
  font-size: 1.6rem;
  color: var(--col-saber-left);
}
header > .container .brand .text span:last-child {
  font-weight: var(--font-weight-bold);
  font-size: 1.8rem;
  color: var(--col-txt-main);
}
header > .container .brand .desktop-text {
  display: block;
}
@media all and (max-width: 999px) {
  header > .container .brand .desktop-text {
    display: none;
  }
}
header > .container .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
  flex-grow: 1;
  margin: 0 1.5rem;
}
header > .container .nav > a {
  margin: 0 0.5rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  color: var(--col-txt-muted-light);
}
header > .container .nav > a i {
  display: inline-block;
  height: 2rem;
  width: 2rem;
  font-size: 1.8rem;
  margin-right: 0.75rem;
  color: var(--col-txt-muted);
}
header > .container .nav > a.-active {
  font-weight: var(--font-weight-bold);
}
header > .container .nav > a.-active > i {
  color: var(--col-saber-right);
}
header > .container .nav > a.-active > span {
  color: var(--col-txt-main);
}
header > .container .nav > a:hover > i {
  color: var(--col-saber-left);
}
header > .container .nav > a:hover > span {
  color: var(--col-txt-main);
}
@media all and (max-width: 999px) {
  header > .container .nav > a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0.15rem;
  }
  header > .container .nav > a i {
    margin: 0 0 1rem 0;
    font-size: 2.2rem;
  }
  header > .container .nav > a span {
    font-size: 12px;
    font-weight: normal;
  }
}
header > .container .auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 1;
}
header > .container .auth a.profile-link {
  display: inline-flex;
  align-items: center;
}
header > .container .auth a.profile-link .face {
  margin: 0 1rem 0 0;
}
@media all and (max-width: 1000px) {
  header > .container .auth a.profile-link .face {
    margin: 0;
  }
}
header > .container .auth a.profile-link > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
@media all and (max-width: 1000px) {
  header > .container .auth a.profile-link > span {
    display: none;
  }
}
header > .container .auth a.steam-login {
  padding: 0.5rem 1.5rem;
  background-color: var(--col-blue);
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  color: var(--col-txt-main);
}
header > .container .auth a.steam-login i {
  display: inline-block;
  font-size: 2rem;
  margin-right: 0.75rem;
}
header > .container .auth a.steam-login .text-desktop {
  display: block;
}
header > .container .auth a.steam-login .text-mobile {
  display: none;
}
@media all and (max-width: 999px) {
  header > .container .auth a.steam-login {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  header > .container .auth a.steam-login i, header > .container .auth a.steam-login span {
    padding: 0;
    margin: 0;
  }
  header > .container .auth a.steam-login span {
    font-size: 12px;
  }
  header > .container .auth a.steam-login .text-desktop {
    display: none;
  }
  header > .container .auth a.steam-login .text-mobile {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

footer {
  position: relative;
  padding: 1.5rem 0;
  margin: 3rem 0 0 0;
  background: #1d1e20;
  font-size: 1.4rem;
  overflow: hidden;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
footer .container > div {
  width: 100%;
}
footer .about {
  margin-bottom: 1.5rem;
}
footer .about a {
  color: var(--col-txt-muted-light);
}
footer .about .version {
  font-size: 13px;
  color: var(--col-txt-muted-medium);
  margin: 0.5rem 0 0 0;
  padding: 0;
}
footer .links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
footer .links i {
  margin-right: 0.75rem;
}
footer .links a {
  color: var(--col-txt-muted-light);
  font-weight: var(--font-weight-medium);
  margin-right: 1.5rem;
}
footer .disclaimer {
  font-size: 1.2rem;
  color: var(--col-txt-muted);
  line-height: 1.3;
}
footer .disclaimer strong {
  font-weight: var(--font-weight-medium);
  color: var(--col-txt-muted-medium);
  display: block;
}
footer .disclaimer p:last-child {
  margin-bottom: 0;
}
footer .hippopotamus {
  position: absolute;
  top: 25px;
  right: -15px;
  height: 120px;
  width: 120px;
  background-image: url("/static/stuff/hippopotamus.png");
  background-position: center center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.-gbm {
  color: #666;
}
.-gbm span {
  color: #888;
}
.-gbm span.g {
  color: #27ae60;
}
.-gbm span.b {
  color: #f39c12;
}
.-gbm span.m {
  color: #c0392b;
}

.alert {
  display: flex;
  width: 100%;
  align-items: center;
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #7f409a;
  color: var(--col-txt-main);
  border-radius: 6px;
  font-weight: var(--font-weight-medium);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.alert.-minor {
  background: #34495e;
}
.alert a {
  color: var(--col-txt-main);
  text-decoration: underline;
}
.alert i:first-child, .alert img:first-child {
  margin-right: 1rem;
}
.alert strong {
  font-weight: var(--font-weight-medium);
}
.alert p {
  color: var(--col-txt-muted-light);
  font-weight: var(--font-weight-regular);
}

.block {
  background: var(--col-bg-darker);
  border-radius: 6px;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 1.4rem;
}
.block.-shrink {
  flex-shrink: 1;
  width: 50%;
  max-width: 100%;
}
@media all and (max-width: 999px) {
  .block {
    margin-bottom: 0;
  }
}
.block > .title {
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: var(--col-bg-darkest);
}
.block > .title i {
  display: inline-block;
  margin-right: 5px;
}
.block > .title h3 {
  display: inline-block;
  margin: 0;
}
.block > .inner {
  padding: 2rem 3rem;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.block > .inner > hr {
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  display: block;
  margin: 2rem 0;
  padding: 0;
}
.block > .inner.-textarea-fill {
  padding: 0;
}
.block > .inner.-textarea-fill textarea {
  display: block;
  padding: 2rem 3rem;
  border: none;
  appearance: none;
  background: transparent;
  font: inherit;
  outline: none !important;
  color: var(--col-txt-main);
  width: 100%;
  min-height: 180px;
  box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0.45), inset 999px 999px rgba(255, 255, 255, 0.05);
  margin: 0;
  border-spacing: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
}
.block > .inner.-textarea {
  display: flex;
  flex-direction: column;
}
.block > .inner.-textarea label {
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  margin-bottom: 1.5rem;
}
.block > .inner.-textarea textarea {
  appearance: none;
  font: inherit;
  background: var(--col-bg-darkest);
  color: var(--col-txt-main);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--col-bg-darker);
  resize: none;
  min-height: 180px;
  resize: none;
  outline: none;
}
.block > .inner.-textarea textarea:active, .block > .inner.-textarea textarea:focus {
  border: 1px solid var(--col-saber-left);
}
.block > .inner.-textarea textarea.-smol {
  min-height: 80px;
}
.block > .inner.-no-shadow, .block > .inner.-no-shadow * {
  box-shadow: none !important;
}
.block > .inner table {
  width: 100%;
}
.block > .inner table td, .block > .inner table th {
  vertical-align: middle;
  text-align: left;
  padding: 5px 0;
}
.block > .inner table code {
  color: var(--col-saber-left);
  font-family: monospace;
}
.block > .inner table hr {
  height: 1px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  display: block;
  margin: 1rem 0;
  padding: 0;
}

.container > .block {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  user-select: none;
  cursor: pointer;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  font: inherit;
  font-weight: var(--font-weight-medium);
  background: var(--col-blue);
  color: var(--col-txt-main);
  text-decoration: none !important;
  border: none;
  appearance: none;
}
.btn > i {
  font-size: 1.8rem;
}
.btn > i:first-child, .btn > img:first-child {
  margin-right: 0.75rem;
}
.btn, .btn * {
  transition: box-shadow 0.1s ease-out, color 0.1s ease-out;
}
.btn.-green, .btn.-download, .btn.-save {
  background-color: var(--col-green-dark);
}
.btn.-blue, .btn.-guide {
  background-color: var(--col-blue);
}
.btn.-disabled {
  background-color: #364556;
  color: var(--col-txt-muted-mediumlight);
}
.btn.-disabled, .btn.-disabled:hover, .btn.-disabled:active {
  box-shadow: none;
  cursor: not-allowed;
}
.btn.-ultralite {
  background: transparent;
  color: var(--col-blue);
}

.btn:hover {
  box-shadow: inset 999px 999px 999px rgba(255, 255, 255, 0.1);
}

.btn:active {
  box-shadow: inset 999px 999px 999px rgba(0, 0, 0, 0.25);
}

.check-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.check-switch:last-child {
  margin-bottom: 0;
}
.check-switch input {
  position: relative;
  margin: 0 1rem 0 0;
  padding: 0;
  appearance: none;
  background: var(--col-bg-darkest);
  height: 24px;
  width: 38px;
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid #323232;
  transition: border-color 0.1s ease;
  box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.1);
}
.check-switch input:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #323232;
  transition: transform 0.2s ease;
  transform: translateX(2px);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}
.check-switch input:checked {
  border-color: var(--col-saber-left);
}
.check-switch input:checked:after {
  transform: translateX(16px);
  background: var(--col-saber-left);
}
.check-switch label {
  display: flex;
  flex-grow: 1;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  user-select: none;
}
.check-switch p {
  display: flex;
  width: 100%;
  margin: 1rem 0 0 0;
  font-size: 1.4rem;
  color: var(--col-txt-muted-medium);
}

.content-head {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  width: 100%;
}
.content-head .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.content-head .text h1 {
  margin: 0 0 1rem 0;
  font-size: 3.2rem;
  color: var(--col-txt-main);
}
.content-head .text p {
  margin: 0;
  font-size: 1.6rem;
  color: var(--col-txt-muted-light);
}
.content-head .buttons {
  display: flex;
  align-items: center;
}

.cover-art {
  display: block;
  border-radius: 15%;
  height: 64px;
  width: 64px;
  margin-right: 1.5rem;
  background: #333;
  flex-shrink: 0;
  flex-grow: 0;
}

.dummy-cover-art {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(125deg, #e70f01 0%, #0067e6 100%);
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  flex-grow: 0;
}

.face {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  height: 256px;
  width: 256px;
  background: #0993ed;
  display: flex;
  align-self: center;
  justify-self: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 15px;
  border-radius: 32px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5), inset 0 0 12px 12px rgba(200, 200, 255, 0.25);
}
.face.-server {
  color: var(--col-saber-left) !important;
  background: var(--col-bg-darkest) !important;
  box-shadow: none !important;
}
.face.-server, .face.-server i {
  font-size: 20px !important;
}
.face.-size-lg {
  height: 128px;
  width: 128px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5), inset 0 0 6px 6px rgba(200, 200, 255, 0.25);
}
.face.-size-md {
  height: 64px;
  width: 64px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5), inset 0 0 3px 3px rgba(200, 200, 255, 0.25);
}
.face.-size-sm {
  height: 32px;
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5), inset 0 0 1.5px 1.5px rgba(200, 200, 255, 0.25);
}
.face, .face.-skin-Default {
  background-color: #E5A9A9;
}
.face.-skin-Light {
  background-color: #EBD6C7;
}
.face.-skin-Mid {
  background-color: #D9B9A3;
}
.face.-skin-Brown {
  background-color: #806753;
}
.face.-skin-DarkBrown {
  background-color: #593D2D;
}
.face.-skin-Black {
  background-color: #402A21;
}
.face.-skin-Alien {
  background-color: #2FBC2F;
}
.face.-skin-Smurf {
  background-color: #1A8AE0;
}
.face.-skin-Zombie {
  background-color: #FFFFFF;
}
.face.-skin-Purple {
  background-color: #AB36A7;
}

.face .eyes {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.face .eyes, .face .eyes.-QuestionMark {
  background-image: url("/static/bsavatar/Eyes/QuestionMark.png");
}
.face .eyes.-Eyes1 {
  background-image: url("/static/bsavatar/Eyes/Eyes3.png");
}
.face .eyes.-Eyes2 {
  background-image: url("/static/bsavatar/Eyes/Eyes1.png");
}
.face .eyes.-Eyes3 {
  background-image: url("/static/bsavatar/Eyes/Eyes7.png");
}
.face .eyes.-Eyes4 {
  background-image: url("/static/bsavatar/Eyes/Eyes8.png");
}
.face .eyes.-Eyes5 {
  background-image: url("/static/bsavatar/Eyes/Eyes11.png");
}
.face .eyes.-Eyes6 {
  background-image: url("/static/bsavatar/Eyes/Eyes10.png");
}
.face .eyes.-Eyes7 {
  background-image: url("/static/bsavatar/Eyes/Eyes2.png");
}
.face .eyes.-Eyes8 {
  background-image: url("/static/bsavatar/Eyes/Eyes5.png");
}
.face .eyes.-Eyes9 {
  background-image: url("/static/bsavatar/Eyes/Eyes6.png");
}
.face .eyes.-Eyes10 {
  background-image: url("/static/bsavatar/Eyes/Eyes9.png");
}
.face .eyes.-Eyes11 {
  background-image: url("/static/bsavatar/Eyes/Eyes4.png");
}

.face-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.face-stats .container {
  flex-direction: row;
}
.face-stats .container .left {
  flex-grow: 2;
}
.face-stats > .face {
  margin: 0 1rem;
}

.face.-cheater {
  background-color: transparent !important;
  background-image: url("/static/stuff/dunce.png") !important;
  background-size: contain !important;
  box-shadow: none !important;
}
.face.-cheater .eyes {
  display: none !important;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 420px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.hero.-pull-up {
  margin-top: -78px;
  padding-top: 63px;
}
.hero:before, .hero video, .hero:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
}
.hero:before {
  z-index: 1;
  background-color: #333;
  background-image: url("/static/stuff/beat-saber-multiplayer-1024x576.jpg");
  background-position: center center;
  background-size: cover;
}
.hero video {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero:after {
  z-index: 3;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.5);
}
.hero > .container {
  z-index: 4;
  flex-direction: column;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.hero > .container h1 {
  margin: 0;
  font-size: 3.2rem;
}
.hero > .container p {
  font-size: 1.8rem;
}
.hero > .container p.lead {
  font-size: 2rem;
  color: var(--col-txt-muted-light);
}
.hero > .container .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 1.5rem 0 0 0;
}
.hero > .container .buttons > .btn {
  margin: 0 1rem;
}
@media all and (max-width: 999px) {
  .hero {
    height: 360px;
    margin-bottom: 0;
  }
  .hero > .container h1 {
    font-size: 2.2rem;
  }
  .hero > .container p {
    font-size: 1.6rem;
  }
  .hero > .container p.lead {
    font-size: 1.6rem;
  }
}

.level-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 1.5rem;
  min-height: 22px;
}
.level-tags > .space {
  flex-grow: 1;
}
.level-tags .tag {
  height: 22px;
  display: inline-flex;
  align-items: center;
  font-size: 1.3rem;
  padding: 3px 5px;
  border-radius: 6px;
  background: #273c75;
  color: #fff;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.level-tags .tag:last-child {
  margin-right: 0;
}
.level-tags .tag.-with-tooltip {
  cursor: help;
}
.level-tags .tag.-with-tooltip span {
  border-bottom: 1px dotted #fff;
}
.level-tags .tag > img {
  width: auto;
  height: auto;
  max-height: 16px;
  object-fit: contain;
  margin-right: 0.5rem;
}
.level-tags .tag.characteristic {
  background: #2f3542;
}
.level-tags .tag.difficulty.-diff-0 {
  background: MediumSeaGreen;
}
.level-tags .tag.difficulty.-diff-1 {
  background: #59b0f4;
}
.level-tags .tag.difficulty.-diff-2 {
  background: tomato;
}
.level-tags .tag.difficulty.-diff-3 {
  background: #bf2a42;
}
.level-tags .tag.difficulty.-diff-4 {
  background: #8f48db;
}
.level-tags .tag.badge {
  background: #273c75;
}

ul.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
ul.timeline:before {
  content: "";
  background: #333;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2rem;
}
ul.timeline li {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  position: relative;
}
ul.timeline li abbr {
  border: none;
}
ul.timeline li .time {
  color: #666;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  position: relative;
}
ul.timeline li .time:before {
  content: "";
  background: #333;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 0.4rem;
  bottom: 0;
  left: -1.6rem;
}
ul.timeline li a {
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
}
ul.timeline li p {
  margin: 0.25rem 0 0 0;
  line-height: 1.4;
  font-size: 1.3rem;
  color: #aaa;
}
ul.timeline li.-alert a {
  color: var(--col-saber-left);
}

.page-tabs {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #333;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.page-tabs > a {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 1rem 1.5rem 1rem;
  margin-bottom: -2px;
  text-decoration: none;
  transition: text, background, box-shadow, color, border 0.1s ease;
  color: var(--col-txt-muted-light);
  border: 2px solid transparent;
}
.page-tabs > a i {
  color: var(--col-txt-muted-medium);
  margin-top: 1px;
  margin-right: 5px;
  font-size: 18px;
  transition: color 0.1s ease;
}
.page-tabs > a.-active {
  font-weight: var(--font-weight-bold);
  color: var(--col-txt-main);
  border-bottom: 2px solid var(--col-saber-right);
}
.page-tabs > a.-active i {
  color: var(--col-saber-right);
}
.page-tabs > a:hover {
  color: var(--col-txt-main);
}
.page-tabs > a:hover i {
  color: var(--col-saber-left);
}

.paginator {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0 0 0;
  margin: 1.5rem 0 0 0;
  flex-wrap: wrap;
}
.paginator a.page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  height: 28px;
  width: 32.5px;
  margin: 0.5rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: border-color 0.12s ease-out;
  user-select: none;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}
.paginator a.page i {
  font-weight: var(--font-weight-bold);
  font-size: 1.8rem;
  margin-top: 0.5px;
}
.paginator a.page:hover {
  border-color: rgb(0, 120, 212);
}
.paginator a.page.-active, .paginator a.page:active {
  border-color: rgb(0, 120, 212);
  background: rgba(0, 120, 212, 0.25);
  color: var(--col-txt-main);
}
.paginator a.page.-disabled, .paginator a.page.-dummy {
  opacity: 0.25;
  pointer-events: none;
  color: var(--col-txt-muted) !important;
}

.rounded-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.rounded-table td, .rounded-table th {
  text-align: left;
  vertical-align: middle;
  font-size: 1.4rem;
  border-spacing: 50px;
  padding: 6px 8px;
  border: none !important;
  border-style: solid none;
}
.rounded-table td > .inner, .rounded-table th > .inner {
  display: flex;
  align-items: center;
}
.rounded-table td.-right, .rounded-table th.-right {
  text-align: right;
}
.rounded-table td.-center, .rounded-table th.-center {
  text-align: center;
}
.rounded-table th {
  padding-bottom: 1.5rem;
  color: var(--col-txt-muted-light);
  font-weight: var(--font-weight-medium);
}
.rounded-table thead.small th {
  font-size: 1.2rem;
  font-weight: var(--font-weight-regular);
  color: var(--col-txt-muted-medium);
  padding-bottom: 0.5rem;
  padding-top: 0;
}
.rounded-table tbody tr {
  border-radius: 6px;
  overflow: hidden;
}
.rounded-table tbody tr td {
  transition: box-shadow 0.05s linear;
  background: var(--col-bg-darker);
  overflow: hidden;
}
.rounded-table tbody tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.rounded-table tbody tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.rounded-table tbody tr:hover td {
  box-shadow: inset 999px 999px 999px rgba(255, 255, 255, 0.0666);
}
.rounded-table.-extra-spacing-h tbody tr td:first-child, .rounded-table.-extra-spacing-h tbody tr th:first-child, .rounded-table.-extra-spacing-h thead tr td:first-child, .rounded-table.-extra-spacing-h thead tr th:first-child {
  padding-left: 3rem;
}
.rounded-table.-extra-spacing-h tbody tr td:last-child, .rounded-table.-extra-spacing-h tbody tr th:last-child, .rounded-table.-extra-spacing-h thead tr td:last-child, .rounded-table.-extra-spacing-h thead tr th:last-child {
  padding-right: 3rem;
}
.rounded-table.-extra-spacing-v tbody tr td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.rounded-table .stacked-text {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
}
.rounded-table .stacked-text > * {
  display: flex;
  align-items: center;
  margin: 4px 0;
}
.rounded-table .stacked-text > * i {
  margin-right: 0.5rem;
}
.rounded-table .stacked-text > *:first-child {
  font-weight: var(--font-weight-medium);
}
.rounded-table .stacked-text > *:last-child {
  font-weight: var(--font-weight-regular);
  color: var(--col-txt-muted-light);
  font-size: 1.4rem;
}
.rounded-table .stacked-text.-smaller {
  font-size: 1.4rem;
}
.rounded-table .stacked-text.-smaller > *:last-child {
  font-size: 1.3rem;
}
.rounded-table .player-count {
  font-feature-settings: "lnum" 1;
}
.rounded-table code {
  color: var(--col-saber-left);
  letter-spacing: 1px;
  font-feature-settings: "lnum" 1;
  font-weight: var(--font-weight-bold);
}
.rounded-table .level-limit {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 420px;
}
.rounded-table i.trophy, .rounded-table .rank-trophy {
  font-size: 18px;
  padding: 0 0 0 15px;
}
.rounded-table i.trophy.rank-trophy, .rounded-table .rank-trophy.rank-trophy {
  padding-left: 0;
  font-size: 14px;
}
.rounded-table i.trophy.-gold, .rounded-table i.trophy.rank-trophy-1, .rounded-table .rank-trophy.-gold, .rounded-table .rank-trophy.rank-trophy-1 {
  color: #FFD700;
}
.rounded-table i.trophy.-silver, .rounded-table i.trophy.rank-trophy-2, .rounded-table .rank-trophy.-silver, .rounded-table .rank-trophy.rank-trophy-2 {
  color: silver;
}
.rounded-table i.trophy.-bronze, .rounded-table i.trophy.rank-trophy-3, .rounded-table .rank-trophy.-bronze, .rounded-table .rank-trophy.rank-trophy-3 {
  color: #a05e17;
}
.rounded-table .badge {
  height: 22px;
  display: inline-flex;
  align-items: center;
  font-size: 1.3rem;
  padding: 3px 5px;
  border-radius: 6px;
  background: #273c75;
  color: #fff;
}
.rounded-table .badge i, .rounded-table .badge img {
  margin-right: 5px;
}
.rounded-table .badge.-with-tooltip {
  cursor: help;
}
.rounded-table .badge.-with-tooltip span {
  border-bottom: 1px dotted #fff;
}
.rounded-table .geo-text {
  font-size: 1.2rem;
}

.no-servers-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  margin: 1.5rem 0 0 0;
  font-size: 1.8rem;
  color: var(--col-txt-muted-mediumlight);
  border: 1px solid #333;
  width: 100%;
  border-radius: 4px;
}
.no-servers-active i {
  margin: 1rem 0;
  font-size: 4rem;
  color: #666;
}
.no-servers-active p {
  margin: 1rem 0;
}

@media all and (max-width: 999px) {
  .rounded-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    min-width: 100%;
    flex-grow: 1;
  }
  .rounded-table:after {
    content: "";
    display: table-caption;
    caption-side: bottom;
    min-width: 100%;
    width: calc(100vw - 3rem);
  }
  .rounded-table thead, .rounded-table tbody, .rounded-table tr {
    min-width: 100%;
  }
}
.download-page {
  width: 100%;
}
.download-page .container {
  flex-direction: column;
  max-width: 1000px;
}
.download-page .text-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
}
.download-page .text-intro h1 {
  margin: 0 0 1.5rem 0;
}
@media all and (max-width: 999px) {
  .download-page .text-intro h1 {
    font-size: 2.2rem;
  }
}
.download-page .text-intro p {
  margin: 0 0 1.5rem 0;
  font-size: 1.6rem;
  color: var(--col-txt-muted-light);
}
@media all and (max-width: 999px) {
  .download-page .text-intro p {
    text-align: center;
    line-height: 1.25;
  }
}
.download-page .download {
  display: flex;
  align-items: center;
  margin: 0 0 1.5rem 0;
  padding: 3rem;
  background: var(--col-bg-darker);
  width: 100%;
  border-radius: 6px;
}
.download-page .download img.preview {
  height: 114px;
  width: 114px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 1.5rem;
}
.download-page .download .left {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.download-page .download .left h2 {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
}
.download-page .download .left .platform {
  margin: 0 0 1rem 0;
  color: var(--col-txt-muted-light);
  font-size: 1.6rem;
  line-height: 1.4;
}
.download-page .download .left .author {
  margin: 0;
  color: var(--col-txt-muted-medium);
}
.download-page .download .right {
  display: flex;
  flex-direction: column;
}
.download-page .download .right > .btn {
  margin-bottom: 1.5rem;
  width: auto;
}
.download-page .download .right > .secondary-link {
  color: var(--col-txt-muted-light);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.download-page .download .right > .secondary-link:last-child {
  margin-bottom: 0;
}
.download-page .download .right > .secondary-link > i {
  margin-right: 0.5rem;
}
.download-page .download .oculus-icon {
  display: inline-block;
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  height: 19px;
  max-width: 16px;
  margin-top: 4px;
  margin-bottom: -4px;
}
@media all and (max-width: 999px) {
  .download-page .download {
    flex-direction: column;
    align-items: flex-start;
  }
  .download-page .download img.preview {
    display: none;
  }
  .download-page .download .right {
    margin-top: 3rem;
  }
}
.download-page .help-text {
  width: 100%;
  line-height: 1.5;
}
.download-page .help-text a {
  display: inline-flex;
  align-items: center;
}
.download-page .help-text a i {
  color: var(--col-txt-muted-medium);
  margin-right: 5px;
}

.frontpage-servers {
  display: flex;
  padding: 0 3rem;
  margin: 0 auto;
}
.frontpage-servers .container {
  margin-left: 0;
  margin-right: 0;
  flex-direction: column;
  flex-grow: 4;
  max-width: none;
}
.frontpage-servers .container .rounded-table {
  padding-top: 0.5rem;
}
.frontpage-servers .container-aside {
  flex-grow: 1;
  min-width: 300px;
  max-width: 320px;
  padding-left: 1.5rem;
  padding-top: 1.5rem;
}
.frontpage-servers .container-aside h3 {
  font-size: 1.6rem;
}
.frontpage-servers a.timeline-twitter {
  clear: both;
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

@media all and (max-width: 1600px) {
  .frontpage-servers {
    display: block;
    padding: 0;
  }
  .frontpage-servers .container {
    margin-left: auto;
    margin-right: auto;
  }
  .frontpage-servers .container .rounded-table {
    padding-top: 0;
  }
  .frontpage-servers .container-aside {
    display: none;
  }
}
.game-detail {
  position: relative;
}
.game-detail > .container {
  flex-direction: column;
}
.game-detail > .container > div {
  width: 100%;
}
.game-detail .special-bg {
  opacity: 0.5;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.game-detail .special-bg, .game-detail .special-bg:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100vw;
  height: 220px;
  pointer-events: none;
  z-index: -1;
}
.game-detail .special-bg:after {
  content: "";
  backdrop-filter: blur(12px);
  background: rgb(32, 33, 36);
  background: linear-gradient(180deg, rgba(32, 33, 36, 0.55) 0%, rgb(32, 33, 36) 80%);
}
.game-detail .server-name {
  display: flex;
  margin: 1.5rem 0;
}
.game-detail .server-name .text h1 {
  font-size: 2.8rem;
  margin: 0;
}
.game-detail .server-name .text .descr {
  font-weight: var(--font-weight-bold);
  margin: 0.8rem 0 0 0;
}
.game-detail .server-info {
  display: flex;
  width: 100%;
}
.game-detail .server-info .col-left {
  flex-grow: 6;
  margin-right: 0.75rem;
}
.game-detail .server-info .col-right {
  flex-grow: 4;
  margin-left: 0.75rem;
  max-width: 460px;
}
.game-detail .server-info .card-table {
  width: 100%;
}
.game-detail .server-info .card-table tr th {
  width: 170px;
}
@media all and (max-width: 999px) {
  .game-detail .server-info {
    flex-direction: column-reverse;
  }
  .game-detail .server-info .col-left {
    margin: 0;
  }
  .game-detail .server-info .col-right {
    margin: 0;
  }
}
.game-detail .modded-warning {
  color: var(--col-saber-left);
  margin: 0 0 1rem 0;
  font-weight: var(--font-weight-bold);
}
.game-detail .server-code {
  border-radius: 6px;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--col-bg-darkest);
  overflow: hidden;
}
.game-detail .server-code label {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}
.game-detail .server-code .inner {
  padding: 2rem 3rem;
  width: 100%;
}
.game-detail .server-code .inner .code-value {
  font-family: monospace;
  font-size: 3.4rem;
  letter-spacing: 4px;
  user-select: all;
  color: var(--col-saber-left);
}
.game-detail .server-code .instructions {
  width: 100%;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: var(--col-bg-darker);
  padding: 2rem 3rem;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.game-detail .server-code .instructions p {
  color: var(--col-txt-muted-light);
  line-height: 1.4;
  max-width: 280px;
}
.game-detail .server-code .instructions .extra {
  color: var(--col-txt-muted);
  margin-top: 0;
}
.game-detail .server-code .instructions .extra-broken {
  color: var(--col-red);
  margin-top: 0;
}
.game-detail .server-code .instructions .or {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.75rem auto;
  height: 1px;
  background: #fff;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  width: 100%;
  max-width: 80%;
}
.game-detail .server-code .instructions .or:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "or";
  background: var(--col-bg-darker);
  padding: 0 15px;
  font-size: 1.2rem;
}
.game-detail .players-table {
  margin-top: 1rem;
}
.game-detail tr.player-row.-disconnected, .game-detail tr.player-row.-disconnected td {
  opacity: 0.75;
}
.game-detail tr.player-row .badge {
  height: auto;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  margin-right: 5px;
  padding: 2px 8px;
}
.game-detail tr.player-row .badge.bg-primary {
  background: #007bff;
}
.game-detail tr.player-row .badge:last-right {
  margin-right: 0;
}

.badge.bg-secondary {
  background: #6c757d;
}
.badge.bg-success {
  background: #28a745;
}
.badge.bg-dark {
  background: #0a3d62;
}

.guide-page > .container {
  flex-direction: column;
}
.guide-page .guide-bubble, .guide-page .guide-filters {
  width: 100%;
  max-width: 600px;
}
.guide-page .guide-bubble {
  display: flex;
  align-items: flex-start;
  border-radius: 6px;
  background: rgba(200, 200, 255, 0.1);
  padding: 3rem;
  margin: 1.5rem 0;
}
.guide-page .guide-bubble .face {
  margin: 0 3rem 0 0;
}
.guide-page .guide-bubble .text {
  display: flex;
  flex-direction: column;
}
.guide-page .guide-bubble .text p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.guide-page .guide-bubble .text p.instruction {
  color: var(--col-green);
  font-weight: var(--font-weight-bold);
}
.guide-page .guide-bubble .text p.instruction.-bad {
  color: #e74c3c;
}
.guide-page .guide-bubble .text p:last-child {
  margin-bottom: 0;
}
.guide-page .guide-filters {
  margin: 0 0 1.5rem 0;
}
.guide-page .guide-filters .field {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
}
.guide-page .guide-filters .field:last-child {
  margin-bottom: 0;
}
.guide-page .guide-filters .field > label:first-child {
  display: flex;
  flex-grow: 1;
}
.guide-page .guide-filters .field label {
  font-weight: var(--font-weight-bold);
}
.guide-page .guide-filters .field select {
  position: relative;
  border: 1px solid #323232;
  font: inherit;
  background: var(--col-bg-darkest);
  color: var(--col-txt-main);
  padding: 1rem;
  border-radius: 6px;
  min-width: 200px;
  outline: none !important;
}
.guide-page .guide-filters .button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 3rem 0 0 0;
}
.guide-page .guide-filters .button-wrap button {
  min-width: 33%;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.guide-page .disclaimer {
  font-size: 1.4rem;
  color: var(--col-txt-muted);
  margin: 0 0 1.5rem 0;
}
.guide-page .help-text {
  width: 100%;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
  color: var(--col-txt-muted-medium);
  font-size: 1.4rem;
}
.guide-page .help-text a {
  display: inline-flex;
  align-items: center;
}
.guide-page .help-text a i {
  color: var(--col-txt-muted-medium);
  margin-right: 5px;
}
.guide-page .faqs {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  margin: 1.5rem 0;
}
.guide-page .faqs h2 {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.guide-page .faqs .faq {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.guide-page .faqs .faq p, .guide-page .faqs .faq li {
  line-height: 1.3;
  font-size: 1.5rem;
  color: var(--col-txt-muted-light);
}

.player-profile > .container {
  flex-direction: column;
}
.player-profile > .container > div {
  width: 100%;
}
.player-profile .oculus-icon {
  display: inline-block;
  height: 20px;
  width: 20px;
  float: left;
  margin-right: 5px;
}
.player-profile .oculus-icon path {
  fill: #fff;
}
.player-profile .name-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.player-profile .name-tag .face {
  margin-left: 0;
}
.player-profile .name-tag .text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.player-profile .name-tag .text h1 {
  margin: 0 0 0.75rem 0;
}
.player-profile .name-tag .text p {
  margin: 0;
  color: var(--col-txt-muted-light);
}
.player-profile .name-tag .buttons {
  display: flex;
  align-items: center;
}
.player-profile .name-tag .buttons .btn {
  margin-left: 1rem;
  height: 36px;
}
.player-profile .name-tag .buttons .btn:first-child {
  margin-left: 0;
}
@media all and (max-width: 999px) {
  .player-profile .name-tag {
    flex-wrap: wrap;
  }
}
.player-profile .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.player-profile .row > .block {
  flex-grow: 2;
}
.player-profile .row > .block:first-child {
  margin-right: 1.5rem;
}
@media all and (max-width: 999px) {
  .player-profile .row > .block:first-child {
    margin-right: 0;
  }
}
.player-profile .row > .block:last-child {
  flex-grow: 1;
}
.player-profile .avatar-container, .player-profile .avatar-container #avatar-render {
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-profile .avatar-container, .player-profile .avatar-container #avatar-render, .player-profile .avatar-container canvas {
  width: 100%;
  height: 100%;
}
@media all and (max-width: 999px) {
  .player-profile .avatar-container, .player-profile .avatar-container #avatar-render, .player-profile .avatar-container canvas {
    min-height: 320px;
  }
}
.player-profile .active-lamp {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--col-green);
  margin-right: 4px;
  margin-bottom: 2px;
}

.level-history {
  position: relative;
  display: flex;
  background-color: var(--col-bg-darkest);
  background-position: center center;
  background-size: cover;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0.5rem;
  width: 100%;
  color: var(--col-txt-main);
  text-decoration: none !important;
}
.level-history:first-child {
  margin-top: 1.5rem;
}
.level-history > .inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.666) 100%);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.level-history .cover-art {
  height: 72px;
  width: 72px;
}
.level-history .text {
  font-size: 1.4rem;
  flex-grow: 1;
}
.level-history .text .placement {
  display: inline-flex;
  align-items: center;
  color: var(--col-saber-left);
  font-size: 1.3rem;
}
.level-history .text .placement i {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #595243;
  margin-right: 0.5rem;
}
.level-history .text .placement.-server {
  color: #666;
}
.level-history .text .placement.-server.-now-playing i, .level-history .text .placement.-server.-now-playing {
  color: var(--col-saber-left) !important;
}
.level-history .text .placement.-place-1 i {
  color: #FFD700;
}
.level-history .text .placement.-place-1 i:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 0;
  box-shadow: 0 0 8px 6px rgba(255, 255, 255, 0.333);
}
.level-history .text .placement.-place-2 i {
  color: silver;
}
.level-history .text .placement.-place-3 i {
  color: #a05e17;
}
.level-history .text .placement.-alone, .level-history .text .placement.-alone i {
  color: var(--col-txt-muted);
}
.level-history .text .song {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
}
.level-history .text .song > div {
  display: flex;
  align-items: flex-end;
  margin-top: 0.5rem;
}
.level-history .text .song > div:last-child {
  margin-bottom: 0;
}
.level-history .text .song .by {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  color: var(--col-txt-muted-mediumlight);
  margin-left: 0.5rem;
}
.level-history .text .song .by:first-child {
  margin-left: 0;
}
.level-history .score {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  align-items: flex-end;
}
.level-history .score > div {
  margin: 0.2rem 0;
}
.level-history .score > .score-rank {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
.level-history .score > .score-value {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}
.level-history .score > .score-combo {
  font-size: 1.2rem;
  font-weight: var(--font-weight-regular);
  color: var(--col-txt-muted-mediumlight);
}
.level-history .score > .score-combo.-full {
  color: var(--col-green);
}
@media all and (max-width: 999px) {
  .level-history .score {
    display: none;
  }
  .level-history .tag.badge {
    display: none;
  }
  .level-history .tag.modifier {
    display: none;
  }
  .level-history .text .song .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .level-history .text .song .title span {
    margin: 0;
  }
  .level-history .text .song .title span.by {
    font-size: 12px;
    margin-top: 0.25rem;
  }
  .level-history .level-tags {
    margin-top: 1rem !important;
  }
}

.server-group-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  display: flex;
  align-items: center;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 1rem;
}
.server-group-header.-first {
  margin-top: 1.5rem;
}
.server-group-header > a {
  flex-grow: 1;
}
.server-group-header > .when {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--col-txt-muted-medium);
}
.server-group-header > .when i {
  color: var(--col-txt-muted);
  margin-right: 0.5rem;
  margin-top: 0.1rem;
}
.server-group-header > .when, .server-group-header > .when abbr {
  font-weight: var(--font-weight-regular);
}

.privacy-only-you {
  display: block;
  width: 100%;
  text-align: right;
  color: #666;
  font-size: 1.4rem;
  margin: 0 0 1.5rem 0;
}

.friend-list-controls {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
.friend-list-controls .btn {
  flex-shrink: 0;
}
.friend-list-controls .privacy-only-you {
  margin: 0;
}

.befriend .container {
  align-items: flex-start;
  flex-direction: column;
}
.befriend .container h1 {
  margin: 1.5rem 0;
}
.befriend .container p.lead {
  margin: 0 0 1.5rem 0;
}
.befriend .container form {
  display: block;
  width: 100%;
}
.befriend .container .search-form {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  width: 425px;
}
.befriend .container .search-form input {
  flex-grow: 1;
  display: block;
  appearance: none;
  background: transparent;
  font: inherit;
  margin: 0 1rem 0 0;
  border-spacing: 0;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  appearance: none;
  font: inherit;
  background: var(--col-bg-darkest);
  color: var(--col-txt-main);
  border-radius: 6px;
  padding: 0 1rem;
  box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #666;
  outline: none;
  height: 34px;
}
.befriend .container .search-form input:active, .befriend .container .search-form input:focus {
  border: 1px solid var(--col-saber-left);
}
.befriend .container .results {
  width: 100%;
  border-top: 2px solid #333;
  margin-top: 3rem;
  padding-top: 3rem;
}
.befriend .container .results .alert {
  margin-top: 0;
  margin-bottom: 3rem;
}

.friend-list {
  width: 100%;
}

.friend-result {
  border: 1px solid #333;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  padding: 1.5rem;
}
.friend-result .face {
  margin: 0 1.5rem 0 0;
}
.friend-result .text {
  display: flex;
  flex-direction: column;
}
.friend-result .text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
}
.friend-result .text p {
  margin: 0;
  font-size: 1.4rem;
  color: var(--col-txt-muted-light);
}
.friend-result .controls {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}
.friend-result .controls .btn {
  margin-right: 1rem;
}
.friend-result .controls .btn:last-child {
  margin-right: 0;
}

.results-detail .container {
  flex-direction: column;
  align-items: flex-start;
}
.results-detail h1 {
  font-size: 2rem;
  margin: 1.5rem 0;
}
.results-detail .results-title {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--col-bg-darkest);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 1.5rem;
}
.results-detail .results-title:after {
  content: "";
  position: absolute;
  z-index: 1;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.666) 100%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.results-detail .results-title .cover-art {
  position: relative;
  border-radius: 6px;
  margin: 0 1.5rem 0 0;
  z-index: 3;
  flex-grow: 0;
  flex-shrink: 0;
  width: 128px;
  height: 128px;
}
.results-detail .results-title .title {
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.results-detail .results-title .title, .results-detail .results-title .title > .inner {
  display: flex;
  flex-grow: 1;
}
.results-detail .results-title .title > .inner {
  display: flex;
  flex-direction: column;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.results-detail .results-title .info-line {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
}
.results-detail .results-title .info-line i {
  margin-right: 1rem;
}
.results-detail .results-title .info-line > span {
  font-weight: var(--font-weight-bold);
}
.results-detail .results-title .info-line .by {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  color: var(--col-txt-muted-mediumlight);
  margin-left: 0.5rem;
  margin-top: 2px;
}
.results-detail .results-title .info-line .by:first-child {
  margin-left: 0;
}
.results-detail .results-title .info-line abbr {
  margin: 2px 5px 0 5px;
}
.results-detail .results-title .info-line abbr:first-child {
  margin-left: 0;
}
.results-detail .results-title .info-line abbr:last-child {
  margin-right: 0;
}
.results-detail .results-title .level-tags {
  margin-top: 1rem;
  min-height: 26px;
}
.results-detail .results-title .level-tags, .results-detail .results-title .level-tags .tag {
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
}
.results-detail .results-title .level-tags .tag {
  padding: 0 10px;
  height: 26px;
}
@media all and (max-width: 999px) {
  .results-detail .results-title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .results-detail .results-title .cover-art {
    margin-bottom: 1.5rem;
  }
}
.results-detail .players-table {
  margin-top: 1.5rem;
}
.results-detail .players-table tr.-did-not-play {
  opacity: 0.75;
}

.stats-page {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding-top: 3rem;
}
.stats-page .side-nav {
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
  flex-shrink: 0;
}
.stats-page .side-nav h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  font-weight: var(--font-weight-bold);
  color: var(--col-txt-muted);
  text-transform: uppercase;
}
.stats-page .side-nav h4:first-child {
  margin-top: 0;
}
.stats-page .side-nav a {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 1rem;
  user-select: none;
  cursor: pointer;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  height: 39px;
  color: var(--col-txt-muted-light);
  border: 1px solid transparent;
}
.stats-page .side-nav a i {
  margin-right: 0.75rem;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  font-size: 1.8rem;
  color: var(--col-txt-muted);
}
.stats-page .side-nav a, .stats-page .side-nav a * {
  transition: box-shadow 0.1s ease-out, color 0.1s ease-out;
}
.stats-page .side-nav a.-active {
  font-weight: var(--font-weight-bold);
}
.stats-page .side-nav a.-active > i {
  color: var(--col-saber-right);
}
.stats-page .side-nav a.-active > span {
  color: var(--col-txt-main);
}
.stats-page .side-nav a:hover > i {
  color: var(--col-saber-left);
}
.stats-page .side-nav a:hover > span {
  color: var(--col-txt-main);
}
.stats-page .side-nav a:hover {
  box-shadow: inset 999px 999px 999px rgba(255, 255, 255, 0.05);
}
.stats-page .side-nav a:active, .stats-page .side-nav a.-active {
  box-shadow: inset 999px 999px 999px rgba(0, 0, 0, 0.25);
}
.stats-page .side-nav .separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.075);
  width: 100%;
  display: block;
  margin: 1.5rem 0;
}
.stats-page .stats-content {
  flex-grow: 1;
}
.stats-page .stats-content h1 {
  margin: 0 0 1.5rem 0;
}
.stats-page .stats-content h2 {
  margin: 3rem 0 1.5rem 0;
}
.stats-page .stats-content p.lead {
  margin: 0 0 2rem 0;
  color: var(--col-txt-muted-light);
  line-height: 1.5;
}
.stats-page .stats-content p.lite {
  margin: 0 0 2rem 0;
  color: var(--col-txt-muted-mediumlight);
  line-height: 1.5;
}
.stats-page .stats-content .stats-disclaim {
  color: var(--col-txt-muted-medium);
}
.stats-page .stats-content .btn.btn-primary {
  margin: 1.5rem 0;
}
.stats-page .stats-content .btn.btn-secondary {
  background: #8e44ad;
  margin-left: 0.5rem;
}
.stats-page .stats-content .btn.btn-playlist {
  margin: 1.5rem 0 3rem 0;
}
.stats-page .stats-content .stale-lobby a {
  color: var(--col-txt-muted-medium) !important;
}
.stats-page .stats-cards {
  margin: 0 0 2rem 0;
  display: flex;
  align-items: center;
  width: 100%;
}
.stats-page .stats-cards .card {
  display: flex;
  flex-direction: column;
  background: var(--col-bg-darker);
  border-radius: 6px;
  padding: 2rem;
  width: 33.333%;
  width: calc(33.333% - 1rem);
  margin-right: 1rem;
}
.stats-page .stats-cards .card:last-child {
  margin-right: 0;
}
.stats-page .stats-cards .card .label {
  font-weight: var(--font-weight-bold);
  margin: 0;
  font-size: 1.8rem;
}
.stats-page .stats-cards .card .metric {
  font-weight: var(--font-weight-bold);
  font-size: 3.2rem;
  margin: 1rem 0;
}
.stats-page .stats-cards .card .details {
  font-weight: var(--font-weight-regular);
  color: var(--col-txt-muted-medium);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
  max-width: 300px;
}
@media all and (max-width: 999px) {
  .stats-page {
    flex-direction: column;
  }
  .stats-page .side-nav {
    width: 100%;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--col-txt-muted);
  }
  .stats-page .stats-content {
    width: 100%;
    flex-shrink: 1;
  }
  .stats-page .stats-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .stats-page .stats-cards .card {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

.master-status {
  display: flex;
  align-items: center;
}
.master-status:before {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background: gray;
  border-radius: 50%;
  margin-right: 6px;
}
.master-status.-online {
  color: var(--col-green);
}
.master-status.-online:before {
  background: var(--col-green);
}
.master-status.-maintenance {
  color: var(--col-saber-left);
}
.master-status.-maintenance:before {
  background: var(--col-saber-left);
}
.master-status.-offline {
  color: var(--col-red);
}
.master-status.-offline:before {
  background: var(--col-red);
}

.master-status-extra {
  font-size: 12px;
  margin-top: 8px;
  color: var(--col-txt-muted-mediumlight);
}

.text-page {
  margin: 1.5rem 0 0 0;
  line-height: 1.45;
  font-size: 1.6rem;
}
.text-page h1 {
  font-size: 3.2rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 1.5rem 0;
}
.text-page .last-update {
  display: block;
  color: var(--col-txt-muted-medium);
  font-size: 14px;
  margin: -1rem 0 1.5rem 0;
}
.text-page hr {
  margin: 1.5rem 0;
  padding: 0;
  border: none;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
}
.text-page h2 {
  margin: 2rem 0 0 0;
}

.user-settings form {
  width: 100%;
}
.user-settings .settings-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#ohno {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
#ohno .block {
  display: flex;
  max-width: 500px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #4a5461;
  border-radius: 8px;
  padding: 42px;
  font-size: 16px;
}
#ohno .block h1 {
  font-size: 24px;
  margin: 0 0 16px 0;
}
#ohno .block p {
  margin: 0 0 16px 0;
  text-align: left;
}
#ohno .block .icon {
  margin: 16px 0;
}
#ohno .block .icon i {
  font-size: 48px;
  color: var(--col-saber-left);
}
#ohno .block > *:first-child {
  margin-top: 0;
}
#ohno .block > *:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=bssb.css.map */
