@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0; }

html {
  height: 100%; }

html, body {
  display: flex;
  flex: 1 1 auto;
  justify-content: center; }

body, input, textarea, button {
  background-color: #000;
  color: #fff;
  font-family: sans-serif; }

*:-webkit-full-screen {
  width: 100%;
  height: 100%; }

*:focus {
  outline: none; }

*::-moz-focus-inner {
  border: 0;
  outline: none; }

.full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; }

.fade {
  transition: opacity 222ms, filter 500ms; }

.disabled {
  cursor: initial;
  pointer-events: none;
  transform: scale(0.9);
  opacity: 0.4; }
  .disabled:hover {
    transform: scale(0.9);
    background-color: initial; }

.hidden {
  opacity: 0;
  display: none;
  pointer-events: none; }

img.full {
  display: none; }
  img.full[src] {
    display: flex; }

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  pointer-events: none; }

.blurred {
  filter: blur(20px); }

@media screen and (orientation: portrait), screen and (max-height: 500px) {
  .blurred {
    filter: brightness(50%); } }
.player .loading-text {
  display: flex;
  flex-direction: column; }
  .player .loading-text > div {
    padding: 15px;
    border-radius: 7px; }
    .player .loading-text > div h2 {
      text-shadow: 2px 2px 3px black, 0px 0px 10px rgba(0, 0, 0, 0.5); }
.player .error-message {
  display: flex;
  flex-direction: column; }

.loading .logo {
  max-width: 22em;
  object-fit: contain; }
.loading .bg {
  object-fit: contain; }
.loading .loading-bar-wrapper {
  margin: 7px 0;
  height: 5px;
  min-width: 100px;
  box-shadow: 2px 2px 3px black, 0px 0px 10px rgba(0, 0, 0, 0.5);
  transition: opacity 500ms;
  background-color: rgba(0, 0, 0, 0.22); }
  .loading .loading-bar-wrapper .loading-bar {
    background-color: white;
    height: 100%;
    width: 0px;
    transition: width 150ms; }

.bg-thumb {
  object-fit: contain; }

.post .display {
  z-index: 1; }
.post .controls {
  z-index: 2; }

.pre {
  z-index: 3; }

.controls {
  flex-direction: column;
  align-items: normal;
  justify-content: normal;
  display: flex;
  pointer-events: none; }
  .controls button {
    pointer-events: all;
    min-width: 65px;
    min-height: 65px; }
  .controls .col {
    flex: 100;
    display: flex;
    flex-direction: column; }
    .controls .col.mid {
      flex: 1 1 auto; }
  .controls .row {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    flex: 1 1 20px; }
    .controls .row.mid {
      flex: 10 1 auto; }
  .controls.fade {
    transition: opacity 500ms, transform 500ms; }
  .controls.hidden {
    opacity: 0;
    transform: scale(1.02); }
    .controls.hidden:hover {
      opacity: 0.25;
      transform: scale(1.01); }

.controls {
  padding: 2vw; }
  .controls .row:first-child {
    align-items: flex-start; }
  .controls .row:last-child {
    align-items: flex-end;
    pointer-events: all; }
    .controls .row:last-child .col {
      max-height: 75px; }
  .controls .controls-w {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
  .controls .controls-e {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; }
  .controls .controls-n {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start; }
  .controls .controls-s {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end; }
  .controls .controls-nw {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start; }
  .controls .controls-ne {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start; }
  .controls .controls-sw {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end; }
  .controls .controls-se {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end; }
  .controls .controls-c {
    flex-direction: row;
    justify-content: center;
    align-items: center; }

@media screen and (max-width: 720px) {
  .controls .row {
    flex-wrap: wrap; }
    .controls .row:last-child {
      flex: 1 1 auto; }
    .controls .row .col {
      justify-content: space-around; }
  .controls .col.mid {
    order: -1;
    flex-basis: 100%; } }
.vertical-slider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 200px;
  position: relative; }
  .vertical-slider .thumb {
    position: absolute;
    bottom: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: -15px;
    box-shadow: #000 3px 3px 5px;
    background-color: #fff; }
  .vertical-slider .track {
    width: 7px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3.5px; }

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto_Condensed/RobotoCondensed-Bold.ttf"); }
button {
  font-family: "Roboto", sans-serif; }

h2, h3 {
  text-shadow: 2px 2px 3px black, 0px 0px 10px rgba(0, 0, 0, 0.5); }

h3 {
  font-size: 22px;
  border-radius: 4px; }

@font-face {
  font-family: "icon";
  src: url("../font/glyphicons-halflings-regular.eot"), url("../font/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../font/glyphicons-halflings-regular.woff2") format("woff2"), url("../font/glyphicons-halflings-regular.woff") format("woff"), url("../font/glyphicons-halflings-regular.ttf") format("truetype"), url("../font/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
.icon {
  font-family: "icon"; }

.icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 35px;
  text-shadow: 2px 2px 3px black, 0px 0px 10px rgba(0, 0, 0, 0.5); }
  .icon-text:before {
    font-family: "icon";
    font-size: 132px; }

.icon[name=play]:before,
.icon-text[name=play]:before {
  font-weight: normal;
  content: ""; }

.icon[name=pause]:before,
.icon-text[name=pause]:before {
  font-weight: normal;
  content: ""; }

.icon[name=speed]:before,
.icon-text[name=speed]:before {
  font-weight: normal;
  content: ""; }

.icon[name=volume]:before,
.icon-text[name=volume]:before {
  font-weight: normal;
  content: ""; }

.icon[name=volume-50]:before,
.icon-text[name=volume-50]:before {
  font-weight: normal;
  content: ""; }

.icon[name=volume-muted]:before,
.icon-text[name=volume-muted]:before {
  font-weight: normal;
  content: ""; }

.icon[name=hide]:before,
.icon-text[name=hide]:before {
  font-weight: normal;
  content: ""; }

.icon[name=show]:before,
.icon-text[name=show]:before {
  font-weight: normal;
  content: ""; }

.icon[name=fullscreen]:before,
.icon-text[name=fullscreen]:before {
  font-weight: normal;
  content: ""; }

.icon[name=exit-fullscreen]:before,
.icon-text[name=exit-fullscreen]:before {
  font-weight: normal;
  content: ""; }

.icon[name=load]:before,
.icon-text[name=load]:before {
  font-weight: normal;
  content: ""; }

.icon[name=replay]:before,
.icon-text[name=replay]:before {
  font-weight: normal;
  content: ""; }

a {
  color: #959bff;
  text-decoration: none; }
  a:hover {
    color: #99f;
    text-decoration: underline; }
  a:visited {
    color: #d48aff; }
    a:visited:hover {
      color: #97f; }

button {
  cursor: pointer;
  text-shadow: 2px 2px 3px black;
  transform: scale(1, 1);
  background: transparent;
  transition: background-color 200ms, text-shadow 200ms, transform 200ms, opacity 300ms;
  padding: 12px;
  margin: 10px;
  border: 0;
  font-size: 32px;
  border-radius: 4px; }
  button:hover {
    transform: scale(1.2, 1.2);
    background-color: rgba(78, 145, 167, 0.3); }
  button:active {
    text-shadow: 1px 1px 8px black;
    transform: scale(0.98, 0.98); }
  button.large {
    padding: 25px 45px; }
    button.large:hover {
      transform: scale(1, 1); }
    button.large:active {
      transform: scale(1, 1); }

.button-popup {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 100vh; }
  .button-popup .popup {
    background-color: rgba(78, 145, 167, 0.3);
    border-radius: 7px;
    padding: 25px;
    display: flex;
    flex: 1 1 200px;
    justify-content: center;
    z-index: 100; }
  .button-popup button {
    flex: 0 0 auto; }
