/* Movie overlay */
.overlay-link {
  cursor: pointer;
}

@keyframes hud-overlay-fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hud-overlay-fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.hud-overlay-noscrolling {
  overflow: hidden;
  position: relative;
}

.overlay {
  position: fixed;
  z-index: 9997;
  width: 100vw;
  height: 100%;
  overflow-y: scroll;
}

.hud-overlay {
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}

.hud-dimmed {
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.0);
}

.border-content {
  max-width: 1280px;
  width: 60%;
  display: table;
  margin: 0 auto;
  color: white;
  font-family: 'TheSans', sans-serif;
  font-weight: 800;
  /* change to 700 */
  font-size: 27px;
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.vert-centered-content {
  pointer-events: none;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: relative;
}

.vert-centered-content>* {
  pointer-events: auto;
}

.theme-name {
  line-height: 1em;
  padding-top: 1em;
  padding-bottom: 0.4em;
  border-width: 0px;
  border-style: solid;
  border-bottom-width: 0.3em;
  margin-bottom: 0.5em;
  position: relative;
}

#close-button {
  position: absolute;
  width: 1em;
  height: 1em;
  right: -0.5em;
  top: 0.5em;
  background-size: 1em 1em;
  background-image: url('');
  cursor: pointer;
}

.movie-aspect-ratio {
  position: relative;
  width: 100%;
  margin-bottom: 0.7em;
}

.movie-aspect-ratio:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.movie,
.uc-embedding-container {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.uc-embedding-container {
  position: absolute !important;
}

.movie html,
.movie body {
  overflow: hidden;
}

.movie-description {
  font-size: 0.7em;
  line-height: 1.5em;
  padding-bottom: 1em;
}

@media (max-width: 600px) {
  .border-content {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.border-brown {
  border-color: #9b7242;
}

.border-green {
  border-color: #758440;
}

.border-black {
  border-color: #000;
}

.border-orange {
  border-color: #da8b38;
}

.border-darkyellow {
  border-color: #c0c035;
}

.border-magenta {
  border-color: #75145c;
}

.border-gray {
  border-color: #cecece;
}

.border-darkred {
  border-color: #982e24;
}

.border-blue {
  border-color: #316389;
}

.border-lightgreen {
  border-color: #8fa635;
}

.border-yellow {
  border-color: #baae4b;
}
