﻿/*!
// COPYRIGHT NOTICE - DO NOT REMOVE!!
//
// StreamS HiFi HTML5 MSE fMP4 HLS Audio Player
// v2.1.0.1
// 2023-04 Greg Ogonowski / Nathan Niyomtham
// Copyright ©2023 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:#CCCCCC;
  background-color: inherit;
  padding: 0px 0px;
  font-size: 16px;
  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;
  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;
}

/* 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: 6px;
  height: 6px;
  background: #000;
  cursor: pointer;
  border: 4px solid #d3d3d3;
  border-radius: 0px;
}


//table {
//	margin-left:auto;
//	margin-right:auto;
//}

//#table {
//   max-width:960px;
//   height:auto;
//	background-color: rgba(255, 0, 0, 0.0);
//	background-image: url('../img/Image_Default.jpg');
//	background-size: auto;
//	background-position: center;
//	background-repeat: no-repeat;
//}

#controls {
   max-width:400px;
   color: #212a32;
   height: 32px;
   padding-top: 10px;
   padding-bottom: 0px;
   padding-left: 8px;
//   border: dotted yellow 1px;
}

#metadata_image {
  height: 320px;
  vertical-align: bottom;
  padding-top: 4px;
  padding-left: 4px;
  padding-right: 12px;
  border-top: solid 2px;
  border-top-color: rgba(121, 193, 66, 1.0);
  border-bottom: solid 2px;
  border-bottom-color: rgba(121, 193, 66, 1.0);
  background-color: rgba(121, 193, 66, 0.20);
//  border: dotted yellow 1px;
}

#metadata {
  width: 420px;
  vertical-align: middle;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 250px;
  border-top: solid 2px;
  border-top-color: rgba(121, 193, 66, 1.0);
  border-bottom: solid 2px;
  border-bottom-color: rgba(121, 193, 66, 1.0);
  background-color: rgba(121, 193, 66, 0.05);
//  border: dotted yellow 1px;
}

body, html {
	  height: 99%;
//	  width: 90%;
	  margin: 0;
	  overflow: hidden;
	zoom: 1;
//	background-color: DimGray;
	background-color: Black;
//	background-position: center center;
	}

.imageBg {
	  position: relative;
	  background-image: url("../img/Image_Default.png");
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
//	  background-color: rgba(0, 0, 0, 1.0);
	  height: 100%;
	  max-height:440px;
	  width: 100%;
	  filter: blur(50px);
	  opacity: 0.7;
	}

.content {
	  position: absolute;
	  left: 50%;
	  top: 2%;
//	  width: 50%;
//	  background-color: rgba(256, 256, 256, 0.0);
//	  border: dotted red 1px;
	}

.content2 {
          position: relative;
	  left: -50%;
//	  border: dotted cyan 1px;
	}

.image {
	width:320px;
	height:auto;
//	max-width:100%;
//	max-width:960px;
	max-height:440px;
	padding:1%;
/*	opacity:1; */
/*	-moz-transition: opacity 2s; /* Firefox 4 */
/*	-webkit-transition: opacity 2s; /* Safari and Chrome */
/*	-o-transition: opacity 2s; */
/*	transition: opacity 2s; */
	animation: fadein 2000ms;
	vertical-align: top;
	}
	
    @keyframes fadein {
      from { opacity: 0; }
      to { opacity: 1; }	
	}

#verticaltop {
  vertical-align: top;
  padding: 5px;
  }

#verticalbottom {
  vertical-align: bottom;
  padding: 5px;
  height: 5%;
  max-height: 20px;
  }

#topheader {
  width: 430px;
  vertical-align: top;
  padding-right: 10px;
  border-top: solid 2px;
  border-top-color: rgba(121, 193, 66, 1.0);
//  border-bottom: solid 2px;
  border-bottom-color: rgba(121, 193, 66, 1.0);
  background-color: rgba(121, 193, 66, 0.05);
//  border: dotted yellow 1px;
  }

#bottomfooter {
  vertical-align: bottom;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  height: 32px;
  max-height: 20px;
  background-color:rgba(121, 193, 66, 0.05);
  border-bottom: solid 2px;
  border-bottom-color: rgba(121, 193, 66, 1.0);
//  border: dotted yellow 1px;
//  vertical-align:top;
  }

#pad1 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 4.0vw;
  max-font-size: 18px;
  min-font-size: 12px;
  text-align: right;
  padding-top: 4px;
//  padding-right: 1px;
  color: #FFFFFF;
  white-space: normal;
/*  text-overflow: ellipsis; */
/*  overflow: hidden; */
  width: 430px;
  text-shadow: black 2px 2px 4px;
  }

#pad2 {
  font-family: 'Open Sans Condensed', sans-serif;  
  font-weight: 400;
  font-size: 2.4vw;
  max-font-size: 18px;
  min-font-size: 8px;
  text-align: right;
  color: #FFFFFF;
  white-space: normal;
/*  text-overflow: ellipsis; */
/*  overflow: hidden; */
  width: 430px;
  text-shadow: black 2px 2px 4px; 
  }

#pad3 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 4vw;
  max-font-size: 32px;
  max-width: 32em;  
  white-space: normal;
  text-align: left;
  color: #FFFFFF;
  width: 420px;
  text-shadow: black 2px 2px 4px;
    display: inline-block;
    animation: fadeIn linear 10s;
  -webkit-animation: fadeIn linear 10s;
  -moz-animation: fadeIn linear 10s;
  -o-animation: fadeIn linear 10s;
  -ms-animation: fadeIn linear 10s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

#pad4 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 4vw;
  max-font-size: 24px;
  white-space: normal;
  text-align: left;
  color: #FFFFFF;
  width: 420px;
  text-shadow: black 2px 2px 4px;
  }

#pad5 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 400;
  font-size: 5.5vw;
  max-font-size: 18px;
  min-font-size: 12px;
  white-space: normal;  
  text-align: left;
  color: #FFFFFF;
  width: 420px;
  text-shadow: black 2px 2px 4px;
  }

#pad6 {
  font-family: 'Open Sans Condensed', sans-serif;  
  font-weight: 400;
  font-size: 2.4vw;
  max-font-size: 12px;
  min-font-size: 8px;
  white-space: normal;  
  text-align: right;
  color: #AAAAAA;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 420px;
  text-shadow: black 2px 2px 4px;
  }

#pad7 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 5.5vw;
  max-font-size: 18px;
  min-font-size: 12px;
  text-align: right;
  color: #AAAAAA;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 420px;
  text-shadow: black 2px 2px 4px;
//  padding-right: 18px;
  }

#pad8 {
  font-family: 'PT Sans Narrow', sans-serif;  
  font-weight: 400;
  font-size: 2.4vw;
  max-font-size: 12px;
  min-font-size: 8px;
  text-align: right;
  color: #AAAAAA;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  padding-left: 6px;
  padding-right: 18px;
  width: 420px;
  text-shadow: black 2px 2px 4px;
  }

#copyright {
  font-family: 'PT Sans Narrow', sans-serif;  
  font-weight: 400;
  font-size: 2.4vw;
  max-font-size: 12px;
  min-font-size: 8px;
  text-align: right;
  color: #AAAAAA;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  width: 300px;
  }
  
#logo1 {
	width:120px;
	height:32px;
/*	margin-left: auto; */
/*	margin-right: auto; */
	vertical-align: top;
	opacity:1;
	float:left;
}

#logo2 {
	width:390px;
	height:15px;
	max-width:120px;
	max-height:15px;
	margin-left: auto;
	margin-right: auto;
	vertical-align: top;
	padding:0%;
	opacity:1;
}

/*#page-wrap {
/*	margin: auto;
/*	}



/* SCROLL MARQUEE */

.marquee {
	height: 24px;
	overflow: hidden;
	position: relative;
	background: #000000;
	color: #aaaaaa;
	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: 8px;
}


/* 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;
}