@keyframes fade-in {

0% {
    opacity: 0;
  }
  
100% {
    opacity: 1;
  }

}

.anim-fade-in-fast {
  animation-name: fade-in;
  animation-duration: 0.3s;
  animation-fill-mode: none;
}

.anim-fade-in-default {
  animation-name: fade-in;
  animation-duration: 0.7s;
  animation-fill-mode: none;
}

.anim-fade-in-medium {
  animation-name: fade-in;
  animation-duration: 1.0s;
  animation-fill-mode: none;
}

.anim-fade-in-slow {
  animation-name: fade-in;
  animation-duration: 1.5s;
  animation-fill-mode: none;
}

@keyframes fade-out {

0% {
    opacity: 1;
  }
  
100% {
    opacity: 0;
  }

}

.anim-fade-out-fast {
  animation-name: fade-out;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.anim-fade-out-default {
  animation-name: fade-out;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.anim-fade-out-medium {
  animation-name: fade-out;
  animation-duration: 1.0s;
  animation-fill-mode: both;
}

.anim-fade-out-slow {
  animation-name: fade-out;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

* {
  font-family: 'Roboto', sans-serif;
  color: #fdfdfd;
  padding: 0;
  margin: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: #607D8B;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
}

#app {
  width: 100%;
  height: 100%;
  z-index: -2;
}

.right-border-radius {
  -webkit-border-top-right-radius: 16px;
  -webkit-border-bottom-right-radius: 16px;
  -moz-border-radius-topright: 16px;
  -moz-border-radius-bottomright: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selected {
  background-color: #fdfdfd;
}

.oddity {
  background-color: #FF5252;
}

.oddity:hover {
  background-color: #FF7474;
}

.redditv-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #263238;
  line-height: 40px;
}

.redditv-header-fullscreen {
  position: absolute;
  z-index: 999;
  top: 30px;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
  transition: top 0.3s;
}

.redditv-header-fullscreen.anim-fade-out-fast {
  top: -10px;
}

.redditv-header-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.redditv-header-flex-fullscreen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
}

.header-logo {
  width: 120px;
  height: 40px;
  flex-shrink: 0;
  text-align: center;
  flex-grow: 0;
  font-weight: bold;
  font-size: 24px;
  background-color: #01405d;
  flex-basis: 120px;
}

.header-subreddit {
  line-height: 40px;
  height: 40px;
  text-align: center;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
  font-size: 20px;
  background-color: #607D8B;
  padding-right: 10px;
  display: flex;
  transition: color 0.3s;
  padding-left: 15px;
}

.header-subreddit:hover {
  color: #1d1d1d;
}

.header-title {
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 40px;
}

.header-title-fullscreen {
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  white-space: wrap;
  overflow: hidden;
  margin-left: 10px;
  font-size: 20px;
  background-color: hsla(0, 0%, 0%, 0.33);
  padding-right: 20px;
  border-radius: 5px;
  padding-left: 20px;
}

#spinner-loading {
  line-height: 40px;
  margin-top: 6px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: auto;
  margin-right: 17px;
}

.redditv-sidepane {
  position: absolute;
  z-index: 999;
  top: 40px;
  left: 0;
  bottom: 140px;
  width: 40px;
  background-color: #263238;
}

.redditv-sidepane-compressed {
  position: absolute;
  z-index: 999;
  top: 40px;
  left: 0;
  bottom: 40px;
  width: 40px;
  background-color: #263238;
}

.redditv-sidepane-fullscreen {
  display: none;
}

.redditv-playlist {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background-color: #263238;
}

.redditv-playlist-compressed {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background-color: #263238;
}

.redditv-playlist-fullscreen {
  display: none;
}

.redditv-playlist-count {
  line-height: 40px;
  padding-bottom: 5px;
  top: 0;
  height: 40px;
  position: absolute;
  font-weight: bold;
  font-size: 34px;
  display: inline-block;
  padding-left: 12px;
  left: 80px;
}

.redditv-playlist-load-indicator {
  background-color: hsla(0, 0%, 5.098039%, 0.5);
  width: 100%;
  height: 100%;
  animation-name: fade-in;
  animation-duration: 1.0s;
  animation-fill-mode: none;
}

.redditv-playlist-load-indicator>.redditv-playlist-progress {
  left: 0;
  top: 20%;
  margin-left: 20%;
  margin-right: 20%;
  color: blue;
}

.redditv-playlist-progress {
  position: absolute;
  right: 0;
  top: 0;
  left: 80px;
  width: initial;
}

.redditv-playlist-container {
  right: 40px;
  height: 140px;
  overflow-y: hidden;
  white-space: nowrap;
  position: absolute;
  overflow-x: scroll;
  background-color: #607D8B;
  bottom: 0;
  left: 40px;
}

.redditv-playlist-container .compressed {
  height: 40px;
  right: 80px;
}

.redditv-playlist-container-compressed {
  right: 80px;
  height: 40px;
  overflow-y: hidden;
  white-space: nowrap;
  position: absolute;
  overflow-x: hidden;
  background-color: #607D8B;
  bottom: 0;
  left: 40px;
}

.redditv-playlist-leftpane-compressed {
  position: absolute;
  left: 0;
  height: 140px;
  width: 80px;
}

.redditv-playlist-rightpane {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 140px;
}

.redditv-playlist-rightpane-compressed {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 40px;
}

#redditv-player-container {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 0;
  bottom: 140px;
  background-color: black;
}

#redditv-player-container-compressed {
  position: absolute;
  top: 40px;
  left: 40px;
  right: 0;
  bottom: 40px;
  background-color: black;
}

#redditv-player-container-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
}

#redditv-player {
  width: 100%;
  height: 100%;
}

.redditv-playlist-item {
  width: 165px;
  height: 100%;
  margin: 0px 0px 45px 0px;
  vertical-align: top;
  white-space: normal;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.1s;
}

.redditv-playlist-item:hover {
  background-color: #90A4AE;
}

.redditv-playlist-item-title {
  width: 140px;
  top: 0;
  padding: 10px;
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  text-overflow: ellipsis;
  cursor: pointer;
  overflow: hidden;
  font-size: 14px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.redditv-playlist-item-thumbnail {
  cursor: pointer;
  position: absolute;
  overflow: hidden;
  margin: 5px;
  top: 0;
  height: 116px;
  background-color: #1d1d1d;
  width: 155px;
}

.redditv-button {
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  background-color: #455A64;
  transition: background-color 0.1s;
}

.redditv-button:hover {
  background-color: #78909C;
}

.redditv-icon {
  position: relative;
  text-align: center;
}

.button-active-toggle {
  background-color: #000000;
}

.button-active-toggle:hover {
  background-color: #000000;
}

.redditv-search-dialog {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 40px;
  width: 300px;
  height: 40px;
  background-color: #11171a;
}

#input-search-bar {
  width: 270px;
  margin: 6px;
  border: none;
  vertical-align: middle;
  padding: 0 5px 0 5px;
  outline: none;
  font-size: 24px;
  background-color: black;
  border-radius: 3px;
}

.redditv-settings-dialog-container {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 0;
  bottom: 140px;
  background-color: hsla(0, 0%, 5.098039%, 0.5);
}

.redditv-settings-dialog-container-compressed {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 0;
  bottom: 40px;
  background-color: hsla(0, 0%, 5.098039%, 0.5);
}

.redditv-settings-dialog-page {
  position: relative;
  min-height: 400px;
  max-width: 600px;
  margin: 60px auto;
  background-color: #263238;
}

.redditv-dialog-close {
  z-index: 1000;
  position: absolute;
  top: -12.5px;
  right: -12.5px;
}

.redditv-dialog-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
}

.redditv-dialog-title {
  font-size: 26px;
  font-weight: bold;
  padding: 0 5px 0 5px;
}

.redditv-dialog-content {
  right: 0;
  top: 40px;
  overflow-y: auto;
  padding: 25px;
  position: absolute;
  background-color: #fdfdfd;
  bottom: 0;
  color: #1d1d1d;
  left: 0;
}

.redditv-dialog-content h3 {
  color: #1d1d1d;
}

.redditv-dialog-content h4 {
  color: #1d1d1d;
}

.redditv-dialog-content label {
  color: #1d1d1d;
}

.redditv-dialog-content span {
  color: #1d1d1d;
}

.redditv-dialog-content option {
  color: #1d1d1d;
}

.redditv-dialog-content select {
  color: #1d1d1d;
}

.video-type-setting {
  padding: 17px;
}

.video-type-setting span {
  padding-right: 15px;
  font-size: 16px;
}

.video-type-setting select {
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 80px;
}

.video-type-setting option {
  font-size: 16px;
}

.redditv-fullscreen-controls {
  width: 40px;
  right: 0;
  top: 80px;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  z-index: 999;
  overflow: hidden;
  display: flex;
  bottom: 80px;
  transition: right 0.5s;
}

.redditv-fullscreen-controls.anim-fade-out-fast {
  right: -20px;
}

.redditv-button-fullscreen {
  position: relative;
  z-index: 999;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background-color: hsla(0, 0%, 5.098039%, 0.33);
  cursor: pointer;
}

.redditv-button-fullscreen:hover {
  background-color: hsla(0, 0%, 5.098039%, 0.66);
}

.redditv-header-button {
  line-height: 40px;
  height: 40px;
  padding-left: 5px;
  cursor: pointer;
}

.redditv-header-button:hover {
  color: hsla(0, 0%, 5.098039%, 1.0);
}

.header-subreddit-listing {
  position: fixed;
  opacity: 1.0;
  z-index: 199;
  top: 40px;
  left: 120px;
  height: 200px;
  width: 200px;
}

.header-subreddit-container {
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.header-subreddit-listing-element {
  line-height: 24px;
  padding-bottom: 5px;
  height: 24px;
  white-space: nowrap;
  z-index: 199;
  text-overflow: ellipsis;
  cursor: pointer;
  overflow: hidden;
  font-size: 18px;
  background-color: hsla(0, 0%, 14.117647%, 0.66);
  padding-right: 10px;
  padding-left: 15px;
  padding-top: 5px;
}

.header-subreddit-listing-element:hover {
  background-color: hsla(0, 0%, 14.117647%, 1.0);
}

.mdl-tooltip {
  will-change: unset;
  background-color: hsla(199.35484, 18.343195%, 33.137257%, 1.0);
  font-size: 16px;
}

.redditv-tooltip-fullscreen>span {
  background-color: hsla(0, 0%, 5.098039%, 0.66);
}

.hide-tooltip>span {
  display: none;
}

::selection {
  background: hsla(198.53403, 100%, 62.54902%, 0.66);
}