/*!
// COPYRIGHT NOTICE - DO NOT REMOVE!!
//
// StreamS HiFi HTML5 MSE fMP4 HLS Audio Player
// v3.0.0.2
// 2025-03 Greg Ogonowski / Nathan Niyomtham
// Copyright ©2025 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 and the StreamS logos are NOT MODIFIED or REMOVED without permission.
// 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.
//
// 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
*/

@font-face {
  font-family: 'PT Sans Narrow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/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('../fonts/font-open-sans-condensed-v15-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  src: local(''),
    url('../fonts/font-open-sans-condensed-v15-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'icomedia';
  src: url('../fonts/font-icomedia.woff2') 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: #CCCCCC;
  background-color: inherit;
  padding: 0px 0px;
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
}

/*
    .btn:hover {
      background: inherit;
      color: #00AAFF;	
      }
    */
/*
    .btn_play {color: #FF0000;}
    */

.btn_play {
  animation: blink 1.5s linear infinite;
}

@keyframes blink {
  20% {
    opacity: 0;
  }
}

.btn_play:hover {
  color: #00CCFF;
}

.btn_stop {
  color: #00CCFF;
}

.btn_stop:hover {
  color: #FF0000;
}

.btn_mute:hover {
  color: #FF0000;
}

.btn_muted {
  color: #ff3c00;
}

.btn_muted: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;
}


/* INPUT SLIDER =============================================================== */
/*
    input[type="range"] {
      margin: auto;
      appearance: none;
      position: relative;
      overflow: hidden;
      height: 12px;
      width: 128px;
      cursor: pointer;
      border-radius: 0;
    }

    ::-webkit-slider-runnable-track {
      background: #aaa;
    }

    ::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 0px;
      height: 40px;
      background: #aaa;
      box-shadow: -200px 0 0 200px #fa0;
      border: 0;
    }

    ::-moz-range-track {
      height: 40px;
      background: #aaa;
    }

    ::-moz-range-thumb {
      background: #aaa;
      height: 40px;
      width: 20px;
      border: 3px solid #999;
      border-radius: 0 !important;
      box-shadow: -200px 0 0 200px #fa0;
      box-sizing: border-box;
    }
*/




/* 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;
    }
    
    .slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 8px;
      height: 12px;
      background: #046DFF;
      cursor: pointer;
    }
    
    .slider::-moz-range-thumb {
      width: 8px;
      height: 12px;
      background: #046DFF;
      cursor: pointer;
    }
    */

/* SLIDER - OUTLINE - Gradient ================================================ */

.slider {
  width: 120px;
  height: 12px;
  background: #000;
  background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FF4F4F 100%);
  outline: none;
  border: 1px solid #d3d3d3;
  border-radius: 0px;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

/* 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;
}

/* firefox */
.slider::-moz-range-thumb {
  width: 6px;
  height: 6px;
  background: #000;
  cursor: pointer;
  border: 4px solid #d3d3d3;
  border-radius: 0px;
}

/* SLIDER - OUTLINE - Solid =================================================== */

.slider2 {
  margin: auto;
  appearance: none;
  position: relative;
  overflow: hidden;
  height: 12px;
  width: 120px;
  cursor: pointer;
  border-radius: 0;
}

.slider2::-webkit-slider-runnable-track {
  background: #ac0101;
}

.slider2::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0px;
  height: 40px;
  background: #ac0101;
  box-shadow: -200px 0 0 200px #fa0;
  border: 3px solid #777;
}

.slider2::-moz-range-track {
  height: 40px;
  background: #ac0101;
}

.slider2::-moz-range-thumb {
  background: #fa0;
  height: 40px;
  width: 0px;
  border: 3px solid #777;
  border-radius: 0 !important;
  box-shadow: -200px 0 0 200px #fa0;
  box-sizing: border-box;
}

/* SLIDER - OUTLINE - Solid =================================================== */

.slider1 {
  margin: auto;
  appearance: none;
  position: relative;
  overflow: hidden;
  height: 12px;
  width: 120px;
  cursor: pointer;
  border-radius: 0;
}

.slider1::-webkit-slider-runnable-track {
  background: #aaa;
}

.slider1::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0px;
  height: 40px;
  background: #aaa;
  box-shadow: -200px 0 0 200px #fa0;
  border: 3px solid #777;
}

.slider1::-moz-range-track {
  height: 40px;
  background: #aaa;
}

.slider1::-moz-range-thumb {
  background: #aaa;
  height: 40px;
  width: 0px;
  border: 3px solid #777;
  border-radius: 0 !important;
  box-shadow: -200px 0 0 200px #fa0;
  box-sizing: border-box;
}





body {
  background-color: #222;
  font-family: arial;
  font-style: normal;
  font-size: 16px;
}

div {
  margin: 10px;
  width: calc(100% - 40px);
  vertical-align: middle;
  padding-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 2px;
  /* max-height: 250px; */
  border-top: solid 1px;
  border-top-color: rgba(0, 192, 255, 1.0);
  border-bottom: solid 1px;
  border-bottom-color: rgba(0, 192, 255, 1.0);
  background-color: rgba(0, 192 255, 0.05);
  /* background-color: rgba(0, 0, 0, 1); */
  font-family: arial;
  font-style: normal;
  font-size: 16px;
}

.button_stop {
  display: inline-flex;
  align-items: center;
  height: 24px;
  width: 56px;
  background-color: #00AAff;
  border: none;
  color: white;
  padding: 0px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 0px 2px;
  cursor: pointer;
}

.button_play {
  display: inline-flex;
  align-items: center;
  height: 24px;
  width: 56px;
  background-color: #00AAff;
  border: none;
  color: white;
  padding: 0px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 0px 2px;
  cursor: pointer;
}

.button_play:disabled,
.button_play[disabled] {
  background-color: #333;
  color: #666666;
}

.button_stop:disabled,
.button_stop[disabled] {
  background-color: #333;
  color: #666666;
}



/* SELECTOR =================================================================== */

select {
  margin: 4px;
  width: 600px;
  padding: 5px 35px 5px 5px;
  font-size: 14px;
  font-weight: bold;
  border: 0px solid #CCC;
  border-radius: 0em;
  /* display: inline-block; */
  height: 30px;
  /*   -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; */
  cursor: pointer;
  outline: none;
  background: #000;
  /* background: url(https://db2.indexcom.com/favicon.ico) 96% / 15% no-repeat #aaa; */
  color: #0bf;
  content: "\2B9F";
}

.select_test0 {
  background: #0bf;
  color: #000;
}

.select_test1 {
  background: #ff0000;
  color: #000;
}

.select_test2 {
  background: #000;
  color: #f00;
}

.select_test3 {
  background: #000;
  color: #ffd000;
}

.select_test4 {
  background: #ffd000;
  color: #000;
}

.select_test5 {
  background: #000;
  color: #00ff00;
}

.select_test6 {
  background: #00ff00;
  color: #000;
}

/* ============================================================================ */

.url {
  height: 56px;
  padding-top: 8px;
  color: gray;
}

.sr {
  padding-top: 12px;
  float: right;
  align-items: right;
  text-align: right;
  padding-right: 0px;
  color: red;
  font-size: 18px;
}

#pts {
  padding-left: 10px;
  color: gray;
}

.footer {
  border-top: solid rgb(0, 192, 255) 0px;
  border-bottom: solid rgb(0, 192, 255) 0px;
  width: calc(100% - 40px);
  height: 48px;
  background-color: rgba(0, 192, 255, 0.0);
  text-align: right;
  padding-top: 0px;
  padding-right: 4px;
  padding-left: 0px;
  display: flex;
  align-items: center;
}

.logo {
  border-top: solid rgb(0, 192, 255) 0px;
  border-bottom: solid rgb(0, 192, 255) 0px;
  width: 120px;
  height: 32px;
  padding-top: 0px;
  vertical-align: bottom;
  opacity: 1;
  float: left;

  margin-left: 0px;
  margin-right: 12px;
}

/* 
    img {
    margin-left: 0px;
    margin-right: 12px;
    } */

.copyright {
  border-top: solid 1px;
  padding-top: 0px;

  color: gray;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;
}

.audioAnalyser {
  background-color: rgba(0, 0, 0, 1);
  height: 524px;
  width: calc(100% - 20px);
  padding: 0px 0px 0px 0px;
  vertical-align: top;
  position: relative;
  border-top: solid 1px;
  border-top-color: rgba(0, 192, 255, 1.0);
  border-bottom: solid 1px;
  border-bottom-color: rgba(0, 192, 255, 1.0);
}

#id3 {
  padding-left: 10px;
  color: gray;
  font-size: 12px;
  overflow-wrap: break-word;
}

.id3 {
  padding-top: 8px;
  height: 150px;
  padding-left: 10px;
  color: gray;
}

/* METADATA =================================================================== */

.metadata {
  border-top: solid 0px;
  border-bottom: solid 0px;
  /* padding-left: 0px;
      padding-top: 0px; */
  padding-bottom: 0px;
  color: gray;
  font-family: arial;
  font-size: 16px;
  font-weight: bold;
}

#name {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#description {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#artist {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

/*
      animation: fadeIn linear 5s;
      }
      @keyframes fadeIn {
        0% {opacity:0;}
        50% {opacity:0;}
        100% {opacity:1;}
      }
*/

#title {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#album {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#year {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#acompaniment {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#group {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#composer {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#category {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#duration {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#isrc {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#dev {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#enc {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#aot {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#adr {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#asr {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ach {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#crd {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#apg {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#cue {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#comment {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_01 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_02 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_03 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_04 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_05 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_06 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_07 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}

#ext_08 {
  color: white;
  font-family: arial;
  font-size: 16px;
  font-weight: normal;
}



/* IMAGE TRANSITION - Fade ==================================================== */
/*
.image {
	width:100%;
	height:auto;
//	max-width:100%;
//	max-width:960px;
	padding:1%;
	animation: fadein 1000ms;
	vertical-align: top;
	}
    @keyframes fadein {
      from { opacity: 0; }
      to { opacity: 1; }	
    }
*/

/* IMAGE TRANSITION - Rotate Perspective Horiz ================================ */
/*
.image {
	height:auto;
	max-width: 320px !important;
	max-height: 400px;
	padding: 1%;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-iteration-count: 1;
    animation-name: flip;
    }
    @keyframes flip {
      0% { transform: perspective(320px) rotateY(0); }
      100% { transform: perspective(320px) rotateY(360deg); }
    }
*/

/* IMAGE TRANSITION - Slide In Vert =========================================== */
/*
.image {
    overflow: hidden;
    position: relative;
    transform: translateY(-100%);
    width: 320px;
    max-height: 320px;
    animation: slide 1.5s forwards;
    animation-delay: 0s;
    }
    @keyframes slide {
      100% { transform: translateY(0%); }
    }
*/

/* IMAGE TRANSITION - Zoom-Blur =============================================== */
/*
.image {
    animation-timing-function: ease-in-out;
    animation-duration: 1.0s;
    animation-direction: alternate;
    animation-iteration-count: 1;
    height: 320px;
    max-width: 320px !important;
    animation-name: zoomblur;
}
    @keyframes zoomblur {
      0% { filter: blur(15px); transform: scale(0); }
      100% { filter: blur(0px); transform: scale(1); }
}
*/

/* IMAGE TRANSITION - Zoom ==================================================== */
/*
.image {
    animation-timing-function: ease-in-out;
    animation-duration: 1.0s;
    animation-direction: alternate;
    animation-iteration-count: 1;
    height: 320px;
    max-width: 320px !important;
    animation-name: zoom;
}
    @keyframes zoom{
      0% { transform: scale(0); }
      100% { transform: scale(1); }
}
*/

/* IMAGE TRANSITION - Blur ==================================================== */
/*
.image {
  animation-timing-function: ease-in-out;
  animation-duration: 1.0s;
  animation-direction: alternate;
  animation-iteration-count: 1;
  height: 320px;
  max-width: 320px !important;
  padding: 1%;
  animation-name: blur;
}
  @keyframes blur {
    0% { filter: blur(15px); }
    100% { filter: blur(0px); }
}
*/


.image {
  height: 320px;
  vertical-align: bottom;
  padding-top: 4px;
  padding-left: 4px;
  padding-right: 12px;
  border-top: solid 2px;
  border-top-color: rgba(0, 192, 255, 0.0);
  border-bottom: solid 2px;
  border-bottom-color: rgba(0, 192, 255, 0.0);
  background-color: rgba(0, 192, 255, 0.0);

  animation-timing-function: ease-in-out;
  animation-duration: 0.5s;
  animation-direction: alternate;
  animation-iteration-count: 1;
  height: 320px;
  max-width: 320px !important;
  padding: 1%;
  animation-name: blur;
}

@keyframes blur {
  0% {
    filter: blur(15px);
  }

  100% {
    filter: blur(0px);
  }
}


.labels {
  color: gray;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;
}

.controls {
  display: flex;
  color: gray;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;
}

.controls1 {
  width: 360px;
  border-top: none;
  border-bottom: none;
  color: gray;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;
}

.controls2 {
  width: 360px;
  border-top: none;
  border-bottom: none;
  color: gray;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;
}

.controls3 {
  width: 360px;
  border-top: none;
  border-bottom: none;
  color: gray;
  font-family: arial;
  font-size: 12px;
  font-weight: normal;
}