/*!
// COPYRIGHT NOTICE - DO NOT REMOVE!!
//
// StreamS HiFi HTML5 MSE fMP4 HLS Audio Player
// v2.0.0.1
// 2021-06 Greg Ogonowski / Nathan Niyomtham
// Copyright ©2021 StreamS/Modulation Index LLC All Rights Reserved
// Portions Copyright of their perspective owners.
//
// This player code is released into public domain and may be freely distributed and used for both private and commercial use
// provided that this copyright notice is NOT MODIFIED or REMOVED without permission.
// It MUST ONLY be used with a StreamS HLSdirect™ Encoder sourced stream.
// Furthermore, to use this free player code, the StreamS logo and StreamS/Modulation Index LLC Copyright MUST NOT BE REMOVED or DISABLED.
// Modification to the core functionality are NOT permitted without permission.
// Modification to the appearance and/or size are permitted.
// This computer software code is protected by copyright law and international treaties.
// Any unauthorized reproduction, distribution, or use of this computer software code, or any portion of it,
// may result in severe civil and/or criminal penalties, and will be prosecuted to the maximum extent possible under law. 
// Any misuse will be cause for blacklisting and earning a special place on the StreamS/Modulation Index LLC Hall of Shame web page.
//
// No warranties are implied.
//
// Fee based support, custom implementations, and professional streaming audio encoders are available from StreamS/Modulation Index LLC.
//
// For more information contact:
// StreamS/Modulation Index LLC
// Diamond Bar, CA USA
// Website:	http://www.indexcom.com
// E-Mail:	info@indexcom.com
// Telephone:	+1 909 860-6760
*/

/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600);*/
/*@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700);*/
/*@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);*/
/*@import url(https://fonts.googleapis.com/css?family=Teko:300,400,500,600,700);*/

/* pt-sans-narrow-regular - latin */
@font-face {
  font-family: 'PT Sans Narrow';
  font-style: normal;
  font-weight: 400;
  src: url('../font/pt-sans-narrow-v12-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../font/open-sans-condensed-v15-latin-300.woff2') format('woff2');
}

/* open-sans-condensed-700 - latin */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
    url('../font/open-sans-condensed-v15-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'icomedia';
  src: url('../font/icomedia.woff2?o03r8y') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomedia' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play3:before {
  content: '\ea1c';
}

.icon-stop2:before {
  content: '\ea1e';
}

.icon-volume-mute2:before {
  content: '\ea2a';
}

.icon-volume-mute:before {
  content: '\ea29';
}

.icon-volume-low:before {
  content: '\ea28';
}

.icon-volume-medium:before {
  content: '\ea27';
}

.icon-volume-high:before {
  content: '\ea26';
}

.icon-menu:before {
  content: '\e9bd';
}

.icon-enlarge:before {
  content: '\e989';
  text-align: right;
}

.icon-shrink:before {
  content: '\e98a';
  color: #888888;
}

.btn {
  border: none;
  color: #888888;
  background-color: inherit;
  padding: 0px 0px;
  font-size: 24px;
  cursor: pointer;
  display: inline-block;
}

/*
.btn:hover {
	background: inherit;
	color: #00AAFF;	
	}
*/
.btn_play:hover {
  color: #00CCFF;
}

.btn_stop:hover {
  color: #FF0000;
}

.btn_mute:hover {
  color: #FF0000;
}

.btn_vol:hover {
  color: #FFCC00;
}

.btn_menu:hover {
  color: #00FF00;
}

.btn_enlarge:hover {
  color: #FFFFFF;
}

.btn_shrink:hover {
  color: #FFFFFF;
}

.slidecontainer {
  width: 120px;
  display: inline-block;
}

/*
// SLIDER - SOLID {}

.slider {
  -webkit-appearance: none;
  width: 100px;
  height: 12px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

 // for chrome/safari {}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 12px;
  background: #046DFF;
  cursor: pointer;
}

// for firefox {}
.slider::-moz-range-thumb {
  width: 8px;
  height: 12px;
  background: #046DFF;
  cursor: pointer;
}
*/

/* SLIDER - OUTLINE */

.slider {
  -webkit-appearance: none;
  width: 120px;
  height: 12px;
  background: #000;
  outline: none;
  border: 1px solid #d3d3d3;
  border-radius: 0px;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

/* for chrome/safari */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #000;
  cursor: pointer;
  border: 5px solid #d3d3d3;
  border-radius: 0px;
}

/* for firefox */
.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #000;
  cursor: pointer;
  border: 1px solid #d3d3d3;
  border-radius: 0px;
}


.table {
  margin-left: auto;
  margin-right: auto;
}

#table {
  max-width: 960px;
  height: auto;
}

#controls {
  max-width: 400px;
  color: #212a32;
  height: 32px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 20px;
  padding-left: 8px;
}


#page-wrap {
  margin: auto;
}



/* SCROLL MARQUEE */

.marquee {
  height: 24px;
  overflow: hidden;
  position: relative;
  background: #fefefe;
  color: #333;
  border: 0px solid #4a4a4a;
}

.marquee p {
  font-family: 'PT Sans Narrow', sans-serif;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  width: 120%;
  height: 100%;
  margin: 0;
  line-height: 24px;
  text-align: center;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: scroll-left 2s linear infinite;
  -webkit-animation: scroll-left 2s linear infinite;
  animation: scroll-left 20s linear infinite;
}

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}



button {
  display: inline-block;
  background-color: gray;
  color: black;
  outline: none;
  font-size: 24px;
}


/* DROPDOWN MENU*/

.dropbtn {
  background-color: inherit;
  color: #888888;
  padding: 0px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: inherit;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 80px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0);
  z-index: 1;
  font-size: 12px;
}

.dropdown-content a {
  color: black;
  padding: 4px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}


/* TOOLTIP */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* FULLSCREEN */
*:fullscreen *:-ms-fullscreen,
*:-webkit-full-screen,
*:-moz-full-screen {
  overflow: auto !important;
}