* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background: url(../../assets/shattered_black.png);
  font-family: "Open sans", sans-serif;
  color: #ccc;
  font-size: 15px;
  height: 100%;
}

body ::-webkit-scrollbar {
  width: 12px;
}

body ::-webkit-scrollbar-track {
  background: transparent;
}

body ::-webkit-scrollbar-thumb {
  background: #111;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.alpha-notice {
  position: fixed;
  width: 50%;
  height: auto;
  background: #2A2A2A;
  text-align: center;
  color: #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.alpha-notice .discord-link {
  text-decoration: underline;
}

.alpha-notice h2 {
  position: relative;
  width: 100%;
  margin: 20px auto;
}

.alpha-notice p {
  position: relative;
  margin: 5px auto;
}

.alpha-notice .close-notice {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  float: left;
  padding: 8px;
  border: 1px solid #ccc;
  margin: 40px auto;
}

.container {
  position: relative;
  width: 98%;
  margin: 0 auto;
}

.container.homepage .content {
  padding: 10px 15px;
  background: #222;
  margin-bottom: 20px;
}

a {
  color: #ccc;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.clear {
  display: inline-block;
}

/* -------------------------------
  Imported Modules
------------------------------- */
/* Dashboard CSS */
.search_list_yt {
  position: fixed;
  width: 80%;
  height: 80%;
  top: -150%;
  left: 50%;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: #222;
  color: #ccc;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
  overflow: hidden;
}

.search_list_yt .close_yt_search {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.search_list_yt .close_yt_search:before {
  position: absolute;
  top: 15px;
  content: '';
  width: 100%;
  height: 2px;
  background: #ccc;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search_list_yt .close_yt_search:after {
  position: absolute;
  top: 15px;
  content: '';
  width: 100%;
  height: 2px;
  background: #ccc;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.search_list_yt.active {
  top: 50%;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
}

.search_list_yt .video, .search_list_yt .history {
  position: relative;
  width: 100%;
  float: left;
  border-bottom: 1px solid #111;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.search_list_yt .video:hover, .search_list_yt .history:hover {
  background: #333;
}

.search_list_yt .video-image {
  position: relative;
  float: left;
  width: 15%;
  height: 20%;
}

.search_list_yt .video-image img {
  position: relative;
  width: 120px;
  height: 90px;
}

.search_list_yt .video-title {
  position: relative;
  float: left;
  width: 80%;
  top: -20px;
  padding: 5px;
}

.search_list_yt .video-title h3 {
  font-weight: 500;
  margin-bottom: 5px;
}

.search_list_yt .history {
  display: none;
}

.search_list_yt #search {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 999;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.search_list_yt #search input {
  background: transparent;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  color: #ccc;
}

.search_list_yt #results {
  position: absolute;
  top: 100px;
  width: 80%;
  height: calc(100% - 100px);
  left: 50%;
  overflow: hidden;
  overflow-y: scroll;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -2;
}

.search_list_yt #results .addto-playlist {
  margin-top: 5px;
  float: left;
}

.search_list_yt #results .video-add {
  cursor: pointer;
  height: 31px;
  width: 31px;
  position: absolute;
  top: 5px;
  right: 25px;
  background: transparent;
  border: none;
  color: #ccc;
}

.search_list_yt #results .video-add img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.search_list_yt #results .video-add:focus {
  outline: none;
}

.search_list_yt #results .video-add:hover {
  color: #777;
}

.search_list_yt ::-webkit-scrollbar {
  width: 12px;
}

.search_list_yt ::-webkit-scrollbar-track {
  background: transparent;
}

.search_list_yt ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.small-letters {
  font-size: 10px;
}

.vid-added {
  -webkit-animation: fadeIn 0.7s ease;
  animation: fadeIn 0.7s ease;
}

.addto-playlist select {
  background: #ccc;
  border: none;
  color: #111;
}

.addto-playlist input {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
}

.addto-playlist input:hover {
  text-decoration: underline;
}

.addto-playlist input:focus {
  outline: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
  Tab css
*/
.tabs {
  position: relative;
  width: 100%;
  height: 40px;
  background: #111;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.tabs .tab-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tabs .tab {
  position: relative;
  width: 50%;
  height: 100%;
  color: #ccc;
  text-align: center;
  line-height: 3;
  float: left;
  cursor: pointer;
}

.tabs .tab:after {
  position: absolute;
  content: '';
}

.tabs .tab:nth-of-type(1):after {
  right: -100%;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.tabs .tab:nth-of-type(2):after {
  left: -100%;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.tabs .tab:nth-of-type(2).fromright:after {
  left: 100%;
}

.tabs .tab:nth-of-type(3):after {
  left: -100%;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.tabs .tab.active .sub-tabs {
  top: 40px;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
}

.tabs .tab.active:hover {
  color: #ccc;
}

.tabs .tab.active:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: #EF3131;
  bottom: 0;
}

.tabs .tab.active:nth-of-type(1):after {
  right: 0;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.tabs .tab.active:nth-of-type(2):after {
  left: 0;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.tabs .tab.active:nth-of-type(3):after {
  left: 0;
  display: block;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

.tabs .tab:hover {
  color: #777;
}

.tabs .tab .sub-tabs {
  position: absolute;
  width: 100%;
  background: #111;
  top: 0;
  z-index: -1;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
}

.tabs .tab .sub-tabs .sub-tab {
  position: relative;
  width: 100%;
  height: 40px;
  float: left;
}

.tabs .tab .sub-tabs .sub-tab form {
  height: 40px;
}

.tabs .tab .sub-tabs .sub-tab form input {
  width: 90%;
  line-height: 20px;
  color: #ccc;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
}

.tabs .tab .sub-tabs .sub-tab form input:focus {
  outline: none;
}

/*
  Sign in
*/
.user-info {
  display: none;
}

.user-info .sign-in, .user-info .sign-up {
  position: absolute;
  top: calc(50px + 5%);
  left: 50%;
  width: 50%;
  height: 0;
  padding-bottom: 70%;
  max-width: 400px;
  max-height: 600px;
  background: #fff;
  color: #333;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.user-info .sign-in input[type="text"], .user-info .sign-in input[type="password"], .user-info .sign-up input[type="text"], .user-info .sign-up input[type="password"] {
  position: relative;
  display: block;
  box-sizing: border-box;
  background: transparent;
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #999;
  margin: 10px auto;
}

.user-info .sign-in input[type="submit"], .user-info .sign-up input[type="submit"] {
  width: 100px;
  height: 50px;
  margin-top: 50px;
  background: transparent;
  border: 1px solid #999;
  color: #333;
}

.user-info .sign-in .sign-content, .user-info .sign-up .sign-content {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.user-info .profile {
  text-align: center;
  width: 100%;
  float: left;
  margin: 20px auto;
  display: none;
}

.user-info .profile .username, .user-info .profile .user_rank {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #ccc;
}

@media (max-width: 768px) {
  .search_list_yt {
    width: 90%;
  }
  .search_list_yt #results {
    width: 100%;
  }
  .search_list_yt .video-image img {
    width: 100%;
    height: auto;
  }
}

/* Dashboard CSS */
nav {
  position: relative;
  width: 100%;
  height: 60px;
  background: #111;
  box-shadow: inset 0 -8px 2px #222;
}

.brand {
  position: relative;
  float: left;
  left: 20px;
  width: auto;
  height: 100%;
}

.brand img {
  position: relative;
  width: auto;
  height: 42px;
  top: 7px;
}

.nav-right {
  float: right;
  list-style-type: none;
}

.nav-right li {
  position: relative;
  float: left;
  padding: 17px 25px;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  box-shadow: inset 0 8px 2px #222;
  background: #111;
  font-weight: bold;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

footer.active {
  height: calc(100% - 120px);
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

footer ul.nav-footer {
  position: relative;
  z-index: 2;
  height: 60px;
  float: left;
  width: 100%;
}

footer ul.nav-footer li {
  padding: 17px 25px;
  margin-top: 8px;
  list-style-type: none;
}

footer ul.nav-footer .user-settings {
  float: left;
}

footer ul.nav-footer .user-playlist {
  float: right;
}

footer .footer-menu {
  float: left;
  width: 100%;
}

footer .footer-menu .container {
  position: absolute;
  margin: 0 20px 20px 20px;
  height: 100%;
}

footer .footer-menu .container .sidebar {
  position: relative;
  background-color: #222;
  width: calc(15% - 20px);
  min-height: calc(100% - 80px);
  margin-right: 20px;
  float: left;
}

footer .footer-menu .container .sidebar li {
  padding: 17px 25px;
  list-style-type: none;
}

footer .footer-menu .container .sidebar .my-playlists {
  list-style-type: none;
  position: absolute;
  width: 100%;
  height: 60%;
  overflow-y: scroll;
}

footer .footer-menu .container .sidebar .my-playlists li {
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px;
}

footer .footer-menu .container .sidebar .my-playlists-list {
  list-style-type: none;
  position: absolute;
  width: 100%;
  height: 60%;
  overflow-y: scroll;
}

footer .footer-menu .container .sidebar .my-playlists-list li {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 25px;
}

footer .footer-menu .container .sidebar .create-playlist {
  position: absolute;
  bottom: 0;
  width: 100%;
}

footer .footer-menu .container .sidebar .create-playlist input {
  position: relative;
  background: none;
  color: #ccc;
}

footer .footer-menu .container .sidebar .create-playlist .pl-name {
  border: none;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  width: 65%;
  height: 20px;
  padding: 5px;
  float: left;
}

footer .footer-menu .container .sidebar .create-playlist .pl-submit {
  border: none;
  width: 30%;
  float: right;
}

footer .footer-menu .container .main {
  position: relative;
  background-color: #222;
  width: 85%;
  height: calc(100% - 80px);
  float: left;
}

footer .footer-menu .container .main .my-playlists {
  position: relative;
  width: 100%;
  list-style-type: none;
}

footer .footer-menu .container .main .my-playlists li {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
  float: left;
  padding: 10px;
}

footer .footer-menu .container .main .my-playlists li:hover {
  background: #333;
}

footer .footer-menu .container .main .my-playlists li .video-image {
  position: relative;
  float: left;
  width: 120px;
  height: 90px;
}

footer .footer-menu .container .main .my-playlists li span {
  position: relative;
  float: left;
  width: calc( 100% - 130px);
  padding-left: 10px;
}

footer .footer-menu .container .main .my-playlists li .video-add {
  cursor: pointer;
  height: 31px;
  width: 31px;
  position: absolute;
  top: 5px;
  right: 25px;
  background: transparent;
  border: none;
  color: #ccc;
}

footer .footer-menu .container .main .my-playlists li .video-add img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

footer .footer-menu .container .main .my-playlists li .video-add:focus {
  outline: none;
}

footer .footer-menu .container .main .my-playlists li .video-add:hover {
  color: #777;
}

footer .footer-menu .container .main .content {
  margin: 20px;
  height: calc(100% - 20px);
  width: calc(100% - 40px);
}

footer .footer-menu .container .main .content:first-child {
  overflow-y: scroll;
}

footer .footer-menu .container .main .content .character {
  width: calc(100% / 6 - 20px);
  padding-top: calc(100% / 6 - 20px);
  float: left;
  margin: 0 20px 20px 0;
  background-color: #ccc;
}

footer .footer-menu .container .main .content .character:nth-child(6n) {
  margin-right: 0;
}

footer .footer-menu .container .main .content.profile .profileimage {
  position: relative;
  width: 100%;
}

footer .footer-menu .container .main .content.profile .profileimage img {
  position: relative;
  display: block;
  width: 60%;
  max-width: 100px;
  margin: 20px auto 0px auto;
}

footer .footer-menu .container .main .content.profile .user_rank {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

.login {
  display: none;
}

.login .sign-in, .login .sign-up {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 80%;
  max-width: 400px;
  max-height: 600px;
  background: #fff;
  color: #333;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.login .sign-in input[type="text"], .login .sign-in input[type="password"], .login .sign-up input[type="text"], .login .sign-up input[type="password"] {
  position: relative;
  display: block;
  box-sizing: border-box;
  background: transparent;
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #999;
  margin: 10px auto;
}

.login .sign-in input[type="submit"], .login .sign-up input[type="submit"] {
  width: 100px;
  height: 50px;
  margin-top: 50px;
  background: transparent;
  border: 1px solid #999;
  color: #333;
}

.login .sign-in .sign-content, .login .sign-up .sign-content {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login .sign-in .sign-content a, .login .sign-up .sign-content a {
  cursor: pointer;
  color: #444;
}

.login .sign-in .sign-content a:hover, .login .sign-up .sign-content a:hover {
  color: #000;
}

.login .profile {
  text-align: center;
  width: 100%;
  float: left;
  margin: 20px auto;
  display: none;
}

.login .profile .username, .login .profile .user_rank {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: #ccc;
}

.leader {
  color: #2d6abe;
}

.remove-fromplaylist {
  position: absolute;
  top: 5px;
  right: 75px;
  font-size: 80%;
  border: 1px solid #ccc;
  padding: 5px;
}

.remove-playlist {
  position: relative;
  float: right;
  font-size: 70%;
  border: 1px solid #ccc;
  margin: 4px;
  padding: 2px;
}

.close-mobile {
  display: none;
}

@media (max-width: 768px) {
  .close-mobile {
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 15px;
    left: 8px;
    color: #CCC;
    font-size: 22px;
    text-align: center;
  }
  footer ul.nav-footer li {
    padding: 16px 20px;
  }
  footer .footer-menu .container .main .content {
    margin: 20px 40px;
    overflow: scroll;
  }
  footer .footer-menu .container .sidebar {
    width: calc(100% - 34px);
  }
  footer .footer-menu .container .main {
    width: calc(100% - 34px);
    position: absolute;
    left: 100%;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }
  footer .footer-menu .container .main.show-mobile {
    left: 0;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
  }
  footer .footer-menu .container .main .my-playlists li .video-image {
    display: none;
  }
  footer .footer-menu .container .sidebar .my-playlists-list li {
    padding: 8px 2px;
  }
  footer .footer-menu .container .sidebar li {
    padding: 8px 2px;
  }
}

/*-----------------
  Views
-----------------/*

/* Home CSS */
.create-room {
  position: fixed;
  display: none;
  background: #2a2a2a;
  color: #ccc;
  padding: 10px 15px;
  height: auto;
  top: auto;
  left: 0;
  z-index: 99;
}

.create-room input, .create-room textarea {
  width: 100%;
  max-width: 100%;
  background: #444;
  color: #ccc;
  border: none;
}

.rooms {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.room-list {
  list-style-type: none;
  width: 100%;
  float: left;
  margin-bottom: 65px;
}

.room-list li a .room {
  position: relative;
  overflow: hidden;
  float: left;
  height: 0;
  background: #2A2A2A;
}

.room-list li a .room img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.room-list li a .room .room-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20%;
  background: #111;
}

.room-list li a .room .room-title h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.room-list li a .room .room-hover {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.room-list li a .room .room-hover span {
  position: absolute;
  text-align: center;
  font-size: 180%;
  width: 100%;
  top: 42%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.room-list li a .room .room-users {
  position: absolute;
  width: 70%;
  border-radius: 8px 0 0 0;
  padding: 4px;
  height: auto;
  background: #111;
}

.room-list li a .room .room-nowplaying {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px;
  background: #111;
}

.room-list li a .room .room-nowplaying span {
  position: absolute;
  height: 100%;
  white-space: nowrap;
  width: auto;
}

.room-list li a .room:hover .room-hover {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.room-list li a .room:hover .room-nowplaying span {
  animation: floatText 5s infinite ease-in-out;
}

/*
  Webkit animations
*/
@keyframes floatText {
  from {
    margin-right: 0;
  }
  to {
    /* left: auto; */
    margin-right: 100%;
  }
}

@-webkit-keyframes floatText {
  from {
    margin-right: 0;
  }
  to {
    /* left: auto; */
    margin-right: 100%;
  }
}

/* Small View */
@media (min-width: 200px) and (max-width: 800px) {
  .room-list li a .room {
    width: 98%;
    margin: 1%;
    padding-bottom: 100%;
  }
  .room-list li a .room .room-users {
    bottom: 24px;
    right: 0;
  }
  .room-list li a .room .room-nowplaying {
    height: 20px;
  }
}

/* Medium View */
@media (min-width: 800px) and (max-width: 1200px) {
  .room-list li a .room {
    width: 48%;
    margin: 1%;
    padding-bottom: 50%;
  }
  .room-list li a .room .room-users {
    bottom: 24px;
    right: 0;
  }
  .room-list li a .room .room-nowplaying {
    height: 20px;
  }
}

/* Big View */
@media (min-width: 1200px) {
  .room-list li a .room {
    width: 23%;
    margin: 1%;
    padding-bottom: 25%;
  }
  .room-list li a .room .room-users {
    bottom: 24px;
    right: 0;
  }
  .room-list li a .room .room-nowplaying {
    height: 20px;
  }
}

/* Home CSS */
.stremable_container {
  position: absolute;
  margin: 0 20px;
  width: calc(100% - 40px);
  height: calc(100% - 100px);
}

.stremable_container header {
  position: relative;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  background: #222;
}

.stremable_container header h1 {
  float: left;
  font-weight: 500;
  font-size: 24px;
  padding-left: 10px;
  margin: 0px;
  line-height: 1.4;
}

.side-menu {
  position: relative;
  float: right;
}

.side-menu .video-voteskip {
  cursor: pointer;
  float: right;
}

.side-menu .video-voteskip .voteskip-amount {
  position: relative;
  padding: 7px 15px;
  float: right;
  margin-right: 20px;
}

.side-menu a {
  position: relative;
  box-sizing: border-box;
  padding: 7px 15px;
  float: right;
}

.voteskip {
  text-decoration: underline;
  cursor: pointer;
  box-sizing: border-box;
}

.voteskip img {
  position: absolute;
  height: 170%;
  right: -5px;
}

.strem_video-container {
  position: relative;
  box-sizing: border-box;
  background: #222;
  float: left;
  width: calc(60% - 20px);
  overflow: hidden;
  margin-right: 20px;
  padding-bottom: 35%;
}

.strem_video-container iframe {
  position: absolute;
  width: 100%;
  height: calc(100% - 40px);
}

.strem_video-container .video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
}

.strem_video-container .video-controls .current-time {
  position: relative;
  box-sizing: border-box;
  padding: 10px 7px;
  max-width: 15%;
  float: left;
}

.strem_video-container .video-controls .current-time div {
  max-width: 50%;
  float: left;
}

.strem_video-container .video-controls .currentVideoTitle {
  position: relative;
  float: left;
  box-sizing: border-box;
  padding: 10px;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40%;
}

.strem_video-container .video-controls .video-voteskip {
  position: relative;
  width: 10%;
  box-sizing: border-box;
  float: left;
  padding: 10px;
}

.strem_video-container .video-controls .video-voteskip a {
  position: absolute;
  height: 100%;
}

.strem_video-container .video-controls .video-voteskip a img {
  position: relative;
  cursor: pointer;
  height: 100%;
  width: auto;
}

.strem_video-container .video-controls .video-volume-button {
  position: relative;
  cursor: pointer;
  float: right;
  width: 40px;
  height: 40px;
  background: url(../../assets/icons_volume.png);
  background-position: 0px 0px;
}

.strem_video-container .video-controls .video-volume {
  position: absolute;
  display: none;
  box-sizing: border-box;
  width: 40px;
  right: calc(10% - 10px);
  bottom: 20px;
}

.strem_video-container .video-controls .video-volume input[type=range][orient=vertical] {
  writing-mode: bt-lr;
  /* IE */
  -webkit-appearance: slider-vertical;
  /* WebKit */
  width: 8px;
  padding: 0 5px;
}

.strem_video-container .video-controls .video-volume input[type=range] {
  -webkit-appearance: none;
  margin: 16px 0;
  width: 100%;
}

.strem_video-container .video-controls .video-volume input[type=range]:focus {
  outline: none;
}

.strem_video-container .video-controls .video-volume input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
  background: #2D6ABE;
  border-radius: 1.3px;
}

.strem_video-container .video-controls .video-volume input[type=range]::-webkit-slider-thumb {
  position: relative;
  height: 20px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  right: 5px;
}

.strem_video-container .video-controls .video-volume input[type=range]:focus::-webkit-slider-runnable-track {
  background: #2D6ABE;
}

.strem_video-container .video-controls .video-volume input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: #2D6ABE;
  border-radius: 1.3px;
}

.strem_video-container .video-controls .video-volume input[type=range]::-moz-range-thumb {
  position: relative;
  height: 20px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  right: 5px;
}

.strem_video-container .video-controls .video-volume input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

.strem_video-container .video-controls .video-volume input[type=range]::-ms-fill-lower {
  background: #2D6ABE;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}

.strem_video-container .video-controls .video-volume input[type=range]::-ms-fill-upper {
  background: #2D6ABE;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}

.strem_video-container .video-controls .video-volume input[type=range]::-ms-thumb {
  position: relative;
  height: 20px;
  width: 16px;
  right: 5px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

.strem_video-container .video-controls .video-volume input[type=range]:focus::-ms-fill-lower {
  background: #2D6ABE;
}

.strem_video-container .video-controls .video-volume input[type=range]:focus::-ms-fill-upper {
  background: #2D6ABE;
}

.strem_video-container .video-controls .video-quality {
  position: relative;
  box-sizing: border-box;
  padding: 5px;
  width: 10%;
  float: right;
}

.strem_video-container .video-controls .video-quality select {
  width: 100%;
  background: #222;
  border: none;
  color: #ccc;
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.strem_video-container .video-controls .progress-bar {
  position: relative;
  width: calc(75% - 40px);
  float: left;
}

.strem_video-container .video-controls .progress-bar input[type=range] {
  -webkit-appearance: none;
  margin: 16px 0;
  width: 100%;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #2D6ABE;
  border-radius: 1.3px;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-webkit-slider-thumb {
  position: relative;
  height: 20px;
  width: 16px;
  top: -5px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
}

.strem_video-container .video-controls .progress-bar input[type=range]:focus::-webkit-slider-runnable-track {
  background: #2D6ABE;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: #2D6ABE;
  border-radius: 1.3px;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-moz-range-thumb {
  position: relative;
  height: 20px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  top: -5px;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-ms-fill-lower {
  background: #2D6ABE;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-ms-fill-upper {
  background: #2D6ABE;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
}

.strem_video-container .video-controls .progress-bar input[type=range]::-ms-thumb {
  position: relative;
  height: 20px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  top: -5px;
}

.strem_video-container .video-controls .progress-bar input[type=range]:focus::-ms-fill-lower {
  background: #2D6ABE;
}

.strem_video-container .video-controls .progress-bar input[type=range]:focus::-ms-fill-upper {
  background: #2D6ABE;
}

.strem_chat-container {
  position: relative;
  float: right;
  width: 40%;
  height: calc(100% - 100px);
  background: #222;
  color: #ccc;
}

.strem_chat-container .chat-list {
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 130px);
  list-style-type: none;
  padding-left: 20px;
}

.strem_chat-container .chat-list .hide-chat {
  display: inline;
  padding-bottom: 0;
}

.strem_chat-container .chat-list .hide-chat .chat-username, .strem_chat-container .chat-list .hide-chat .time, .strem_chat-container .chat-list .hide-chat br {
  display: none;
}

.strem_chat-container .chat-list .hide-chat:first-of-type .chat-username, .strem_chat-container .chat-list .hide-chat:first-of-type .time, .strem_chat-container .chat-list .hide-chat:first-of-type br {
  display: block;
}

.strem_chat-container .chat-list .hide-chat.anonymous {
  display: block;
}

.strem_chat-container .chat-list .hide-chat.anonymous .chat-username, .strem_chat-container .chat-list .hide-chat.anonymous .time, .strem_chat-container .chat-list .hide-chat.anonymous br {
  display: block;
}

.strem_chat-container .chat-list li {
  width: 100%;
  padding-bottom: 8px;
}

.strem_chat-container .chat-list li.hide-padding {
  padding-bottom: 0;
}

.strem_chat-container .chat-list li.last-message {
  display: list-item;
  padding-bottom: 8px;
}

.strem_chat-container .chat-list li .chat-username.registered {
  color: #2C69BD;
}

.strem_chat-container .chat-list li .chat-username.moderator {
  color: #27AC44;
}

.strem_chat-container .chat-list li .chat-username.moderator:before {
  position: relative;
  float: left;
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../../assets/logo_web.png) no-repeat;
  background-size: 100%;
}

.strem_chat-container .chat-list li .chat-username.administrator {
  color: #BE2D2D;
}

.strem_chat-container .chat-list li .chat-username.administrator:before {
  position: relative;
  float: left;
  content: '';
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../../assets/logo_web.png) no-repeat;
  background-size: 100%;
}

.strem_chat-container .chat-list li .time {
  font-size: 80%;
  text-transform: uppercase;
  opacity: 0.8;
}

.strem_chat-container .chat-list li p {
  width: 100%;
  padding-right: 10px;
  word-wrap: break-word;
}

.strem_chat-container .chat-list li:first-child {
  padding-top: 20px;
}

.strem_chat-container .chat-list li:last-child {
  padding-bottom: 20px;
}

.strem_chat-container .current-playlist {
  padding-left: 0;
}

.strem_chat-container .current-playlist li {
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
}

.strem_chat-container .current-playlist li .requested {
  position: relative;
  float: right;
}

.strem_chat-container .current-playlist li:first-child {
  padding-top: 8px;
  background: #111;
}

.strem_chat-container .current-playlist li:last-child {
  padding-bottom: 8px;
}

.strem_chat-container .send-messages {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.strem_chat-container .send-messages textarea {
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
  background: transparent;
  box-sizing: border-box;
  border: none;
  padding: 10px;
  color: #ccc;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
}

.strem_chat-container .send-messages textarea:focus {
  color: #80DCE8;
}

.chat-tabs {
  position: relative;
  width: 100%;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.chat-tabs .chat-tab {
  position: relative;
  display: inline-block;
  float: left;
  cursor: pointer;
  text-align: center;
  width: 33.33%;
  height: 40px;
  line-height: 2.5;
}

.chat-tabs .chat-tab.active {
  background: #333;
}

@media (max-width: 768px) {
  .strem_video-container {
    width: 100%;
    padding-bottom: calc(56.25% + 40px);
  }
  .strem_chat-container {
    width: 100%;
    margin: 30px 0 100px;
  }
  .side-menu {
    background: #222;
    margin-bottom: 10px;
  }
  .side-menu a {
    padding: 7px 8px;
  }
  .strem_video-container .video-controls .current-time {
    max-width: 25%;
  }
  .strem_video-container .video-controls .currentVideoTitle {
    display: none;
  }
  .strem_video-container .video-controls .video-volume {
    right: calc(25% - 10px);
  }
  .strem_video-container .video-controls .progress-bar {
    width: calc(40% - 40px);
  }
  .strem_video-container .video-controls .video-quality {
    width: 25%;
  }
  .side-menu .video-voteskip .voteskip-amount {
    float: left;
    margin-right: 29px;
  }
}
