.station_row{
	
	max-width: 100%;
	margin-top: 25px;
	border-bottom: 1px solid black;
}

.play_btn{
	display: inline-block;
	width:auto;
	padding: 9px;
	margin-left: 5%;
	background: url('play.png') no-repeat;
	background-size: contain;
	background-repeat: no-repeat;
	
}

.pause_btn{
	display: inline-block;
	width:auto;
	padding: 9px;
	margin-left: 5%;
	background: url('pause.png') no-repeat;
	background-size: contain;
	background-repeat: no-repeat;
}
.station_name{
	display: inline-block;
	width: 50%;
}

.station_location{
	display: inline-block;
	width: 30%;
}

#player{
	position: fixed;
  width: 450px;
  height: 55px;
  background-color: #ffdb14;
  display: none;
  bottom: 0px;
  right: 0px;
  margin: 0px 0px 0px -8px;
  padding: 10px;
  border-top: 2px black solid;
  border-left: 2px black solid;
  text-align: center;
  z-index: 999;
}

.play{
	width:auto;
	padding: 9px;
	margin-top: 6px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	background: url('play.png') no-repeat;
	background-size: contain;
	background-repeat: no-repeat;
	
}

.pause{
	display: inline-block;
	width:auto;
	padding: 10px;
	margin-top: 6px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
	background: url('pause.png') no-repeat;
	background-size: contain;
	background-repeat: no-repeat;
	
}

#player_name{
	
	margin-top: 6px;
}

#player_location{
	display: inline-block;
}



@media only screen and (max-width: 750px){
	.station_name{
	display: inline-block;
	width: 40%;
}

	.station_location{
		display: inline-block;
		width: 40%;
	}
	#player{
		position: fixed;
		width: 100%;
		height: 55px;
		background-color: #ffdb14;
		display: none;
		bottom: 0px;
		right: 0px;
		margin: 0px 0px 0px -8px;
		border-top: 2px black solid;
		border-left: 0px black solid;
		text-align: center;
		z-index: 999;
	}
	.play_btn{
		display: inline-block;
		width:auto;
		margin: auto;
		padding: 9px;
		margin-left: 0%;
		background: url('play.png') no-repeat;
		background-size: contain;
		background-repeat: no-repeat;
		margin-right: 5px;
	}
	.pause_btn{
		display: inline-block;
		width:auto;
		margin: auto;
		padding: 9px;
		margin-left: 0%;
		background: url('pause.png') no-repeat;
		background-size: contain;
		background-repeat: no-repeat;
		margin-right: 5px;
	}
}