html {
  background: #161818;
}
body {
  background: #20212d;
  color: white;
  display: block;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  visibility: hidden;
}
.animated-background {
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(to right, #272835 10%, #35364a 18%, #272835 33%);
    background-size: 844px 104px;
    height: 20px;
    position: relative;
}
.footer {
  padding: 23px 20px;
  font-size: .75rem;
  text-align: center;
  background-color: black;
}
.logo {
  max-height: 40px;
}
.navbar {
  background-color: black;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 50%);
}
.placeholder {
   height: 20px;
   background-color: #272835;
   border-radius: 4px;
}
.placeholder.title {
   max-width: 200px;
}
.placeholder.description {
   height: 16px;
   margin: 10px 0;
   max-width: 100%;
}
.placeholder.description .animated-background {
  height: 16px;
}
.tron-player {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.tron-player-aspect-container {
  background-color: black;
  width: 100%;
  height:0;
  position: relative;
  max-width:844px;
  padding-top: 56.25%;
}
.tron-player-container {
  max-width:844px;
  width: 100%;
  position: relative;
  margin: auto;
}
.tron-player-replay-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: white;
}
.tron-player-replay-container:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
  opacity: 0.8;
  content: '';
  z-index: 1;
}
.tron-player-replay-container:after {
  content: "\f116";
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal;
  font-size: 7em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.video-details {
  max-width: 844px;
  margin: auto;
}

.video-js .vjs-play-progress {
  background-color: red !important;
}
.video-title {
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 700;
}
@keyframes placeHolderShimmer{
    0%{
        background-position: -844px 0
    }
    100%{
        background-position: 844px 0
    }
}
