* {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-family: 'Big Shoulders Stencil Display', sans-serif;
  font-size: 35px;
  display: block;
  padding: 5px;
}

.player_container {
  display: block;
  position: relative;
  min-height: 200px;
  max-width: 100%;
  overflow: hidden;
}

.player_loading_cape {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  text-align: center;
}

#player {
  max-width: 100%;
  width: 100%;
}

.fullscreenButton {
  text-decoration: none;
  font-size: 25px;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 3000;
}

.allVideosGrid_container {
  display: block;
  max-width: 100%;
  padding: 30px 10px;
  background: #3D26AC;
}

.allVideosGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
}

.allVideosGrid_item {
  display: block;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.allVideosGrid_item_miniatura_container {
  display: block;
  position: relative;
  text-align: center;
}

.allVideosGrid_item_miniatura {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.allVideosGrid_item_miniatura_time {
  display: block;
  position: absolute;
  margin: 5px;
  padding: 8px;
  background: #000;
  color: #fff;
  bottom: 0;
  right: 0;
  font-size: 17px;
  font-family: "Oxygen", sans-serif;
}

.allVideosGrid_item_title {
  font-size: 22px;
  padding: 5px;
  font-family: "Raleway", sans-serif;
}

.allVideosGrid_item_channelName {
  font-size: 18px;
  padding: 5px;
  text-align: right;
  font-family: "Roboto", sans-serif;
}

.textAlignCenter {
  text-align: center;
}

.loadTVbutton {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  border-radius: 80px;
  font-size: 30px;
  font-family: "Source Sans Pro", sans-serif;
  background: #3D26AC;
}

.loadTVbutton i {
  display: inline-block;
}

.loadTVbutton span {
  display: inline-block;
  margin-left: 10px;
}

@media screen and (max-width:900px) {
  .allVideosGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width:700px) {
  .allVideosGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width:450px) {
  .allVideosGrid {
    grid-template-columns: 1fr;
  }
}

.backToTVbutton {
  display: none;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 15px;
  font-size: 19px;
  font-family: "Montserrat", sans-serif;
  background: #4D30D7;
}

/*----*/
body::-webkit-scrollbar {
  height: 3px;
	width: 3px;
}

body::-webkit-scrollbar-thumb {
    background: #188BEB;
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #1783DD;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-thumb:active {
    background-color: #105996;
}

body::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 3px;
}

body::-webkit-scrollbar-track:hover,
body::-webkit-scrollbar-track:active {
  background: #d4d4d4;
}
/*----*/

.loaderIMG {
  display: inline-block;
  width: 150px;
  height: 150px;
}

.extract {
  display: block;
  background: #662DCE;
  padding: 25px;
  text-align: justify;
  color: #fff;
}

.extract_container {
  display: block;
  max-width: 500px;
  margin: auto;
}

.extract_title {
  display: block;
  font-size: 28px;
  font-family: "Roboto Mono", sans-serif;
  margin-bottom: 8px;
}

.extract_subtitle {
  display: block;
  font-size: 22px;
  font-family: "Roboto Mono", sans-serif;
  margin-bottom: 8px;
}

.extract_text {
  display: block;
  font-size: 18px;
  font-family: "Oxygen", sans-serif;
  margin-bottom: 15px;
}

.getTransmitionError {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  display: block;
  text-align: center;
  color: #fff;
  padding: 5px;
}
