@import url("https://fonts.googleapis.com/css?family=Oswald:400,700,300&subset=latin-ext");
@import url("../../node_modules/plyr/dist/plyr.css");
@import url("../../virtual_keyboard/mitigandae_keyboard_1.0.css");
*::-webkit-scrollbar {
  width: 5px;
  background: none;
  height: 5px;
}

*::-webkit-scrollbar-thumb {
  background-color: #e52d27;
}

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

* {
  outline: none;
}

body {
  position: relative;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  background-color: #222;
  font-size: 20px;
}

header {
  display: table;
  width: 100%;
}

.yt_bg {
  background: linear-gradient(to bottom, #e52d27 1%, #b31217 100%);
}

.grotesk {
  font-family: "Oswald", sans-serif;
}

.max_width {
  display: block;
  padding: 10px;
  width: calc(100% - 20px);
}

.white {
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.font20 {
  font-size: 20px;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

table {
  border-collapse: collapse;
}

table tr {
  margin: 0;
  padding: 0;
}

table td {
  margin: 0;
  padding: 0;
}

#head {
  display: table-cell;
  background: #666;
  z-index: 1;
  padding: 10px 0px 10px 30px;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  color: #ddd;
}

.lightgray {
  background-color: #aaa;
}

.controlsActive {
  background-color: green;
}

.controlsPassive {
  background-color: #444;
}

#stepNext {
  background-image: url("../../next.svg");
}

#stepPrev {
  background-image: url("../../prev.svg");
}

#listLoop {
  background-image: url("../../loop.svg");
}

#listLock {
  background-image: url("../../unlocked.svg");
}

#autoplay {
  background-image: url("../../autoplay.svg");
}

#keyboard {
  background-image: url("../../keyboard.svg");
}

.cb {
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  margin: 2.5px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dashed_ouline {
  outline: 4px dashed rgba(255, 255, 255, 0.5);
}

#playlistContainer {
  min-height: 185px;
  position: relative;
  overflow: hidden;
  font-size: 0;
}

#playlist {
  position: relative;
  overflow: hidden;
  display: inline-block;
  height: 185px;
  vertical-align: middle;
  width: calc(100% - 100px);
  overflow-x: scroll;
  white-space: nowrap;
}

.playlist_item {
  width: 240px;
  height: 135px;
  background-size: 0px, cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 25px;
  vertical-align: top;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.playlist_item_playing {
  font-size: 0;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: font-size 0.1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.now_playing .playlist_item_playing {
  font-size: 18px;
  font-weight: bold;
}

.playlist_item:hover > .playlist_title {
  text-decoration: underline;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.playlist_item * {
  cursor: pointer;
}

.playlist_item_remover {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: white;
  z-index: 2;
  font-size: 25px;
  color: black;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border: 2px solid #e2e2e2;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.playlist_item_remover:after {
  content: "x";
}

.playlist_item:not(:last-child) {
  margin-right: 0;
}

.playlist_title {
  font-size: 16px;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  padding: 5px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: calc(100% - 10px);
  white-space: normal;
  transition: all 0.1s ease-out;
}

.scroll_button {
  display: inline-block;
  text-align: center;
  line-height: 185px;
  height: 185px;
  vertical-align: middle;
  width: 50px;
  font-size: 18px;
  cursor: pointer;
}

#listEmpty {
  margin-top: 20px;
  display: block;
  padding: 20px 0px 0px 20px;
  color: white;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}

#container {
  height: calc(100vh - 235px);
  display: block;
  font-size: 0;
  position: relative;
}

#searchBox {
  width: 40%;
  display: inline-block;
  height: calc(100% - 50px);
}

#searchField {
  box-sizing: content-box;
  border: none;
  margin: 0;
  cursor: text;
}

#search_response_container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
}

.response_list_item {
  margin: 10px;
  font-size: 0;
  cursor: pointer;
  padding-bottom: 5px;
  cursor: pointer;
}

.response_list_item * {
  cursor: pointer;
}

.response_list_item:not(:last-child) {
  border-bottom: 3px solid #555;
}

.response_list_item:hover > .response_cover {
  background-size: 40px, cover;
}

.response_list_item:hover > .response_description .response_title {
  text-decoration: underline;
}

.response_cover {
  width: 160px;
  height: 90px;
  background-size: 0px, cover;
  background-repeat: no-repeat;
  background-position: center center, center center;
  transition: background-size 0.1s ease-out;
}

.response_description {
  width: calc(100% - 160px);
  overflow-wrap: break-word;
  overflox-x: hidden;
}

.response_cover,
.response_description {
  display: inline-block;
  vertical-align: top;
}

.response_title {
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 5px;
}

.response_channel {
  font-size: 16px;
  color: #ddd;
  padding: 5px;
}

#videoCover {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 60%;
  height: 100%;
  z-index: 2;
}

#videoBox {
  width: 60%;
  display: inline-block;
  height: 100%;
  background-color: #000;
  background-image: url("../../youtube.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
#videoBox #videoBoxInner {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
}
#videoBox #videoBoxInner .plyr__video-embed {
  aspect-ratio: auto !important;
  padding-bottom: 0px !important;
  min-height: 100%;
}
#videoBox #videoBoxInner .plyr__video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0px;
}

#searchBox,
#videoBox {
  display: inline-block;
  vertical-align: top;
}

.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.loading div {
  width: 50px;
  height: 50px;
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  background: url("../../loader.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: spin 4s linear infinite;
}

#vBoxCover {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
}

#vBoxCoverAlways {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
}

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