*,
:after,
:before {
    box-sizing: border-box
}

body {
    background-color: #0D1117;
    font-family: Helvetica, Arial;
    font-size: 13px;
    line-height: 1.5;
    padding: 0;
    text-rendering: optimizeSpeed
}

body,
h1,
h3 {
    margin: 0
}

p {
    margin-bottom: 5px;
    margin-top: 5px
}

.show {
    visibility: visible !important
}

.hide {
    display: none !important
}

.clear {
    clear: both
}

#header {
	color: #FFFF;
	margin: 10px auto;
    padding-left: 5px;
    text-align: center;
}

#header > p {
    font-size: 15px;
    font-weight: 700;
}

.button {
    min-width: 60px;
    padding: 0 10px
}

#note {
    background-color: #000;
    color: #fff
}

#note {
    margin-bottom: 10px !important;
    padding: 5px;
    text-align: center
}

#loading,
#note {
    font-weight: 700
}

#container {
    margin: 0 auto;
    max-width: 600px;
}

#stations {
    margin: 10px;
    min-width: 300px;
}

#loading {
    color: #FFFF;
    font-size: 20px;
    padding-left: 10px;
}

.station {
	display: flex;
	background-color: #161B22;
	color: rgb(201, 209, 217);
	margin-bottom: 10px;
    padding: 0px;
    border: 0px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.station > img {
	width: 60px;
    height: 60px;
	display: block;
}

.station > .info {
	margin: 10px;
    margin-right: 0px;
}

.station > .info > p {
	margin-top: 2px;
	margin-bottom: 0px;
}

.station > .info > .title {
	font-size: 18px;
	font-weight: bold;
}

.sticky {
    position: sticky;
    top:0;
}

#player {
	overflow: hidden;
	min-height: 250px;
	position: relative;
    background-color: #0D1117;
}

#player > .info {
	position: relative;
	z-index: 1;
	text-align: center;
	margin: 10px;
	margin-top: 20px;
}

#player-title {
	font-size: 18px;
	font-weight: bold;
	color: rgb(201, 209, 217);
}

#player > .info > #count {
	color: rgb(201, 209, 217);
    font-weight: bold;
}

#player > .info > img {
	width: 100px;
	margin: 0 auto;
}

#player > .controls {
	position: relative;
	z-index: 1;
    color: rgb(201, 209, 217);
    font-size: 30px;
    text-align: center;
    margin-bottom: 5px;
}

#player > .background {
	background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: blur(20px) brightness(0.6);
    filter: blur(20px) brightness(0.5);
    transform: scale(1.2);
	min-height: 250px;
	position: absolute;
	top: 0;
	width: 100%;
}

button#play, button#pause {
    background-color: transparent;
    border: 0px;
    color: rgb(201, 209, 217);
    font-size: 25px;
    cursor: pointer;
}

#error_note {
    font-weight: 700;
    background-color: #8c0000;
    color: #fff;
    padding: 5px;
    text-align: center;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(font/material-icons.woff2) format('woff2');
}
  
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}