/*player style */
#playbutton{
  background-color: #e8e8e8;
  border-radius: 15px;
  border: solid 2px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:  "image image info info info"
                        "image image buttons buttons buttons";
	width: 50%;
  row-gap: 15px;
  column-gap: 15px;
	-webkit-transition: 0.25s all ease;
	-moz-transition: 0.25s all ease;
	-o-transition: 0.25s all ease;
	transition: 0.25s all ease;
}
#playbutton a{
	text-decoration: none;
	flex-basis: 70%;
}
.sc-image{
  grid-area: image;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.sc-play-img{
  width: 80%;
  height: auto;
}
.sc-play-img img{
  width: 100%;
  height: auto;
}
.sc-buttons{
  grid-area: buttons;
  margin-bottom: 10px;
}
.playCircle{
  margin-top: 1%;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	border: 1px solid;
	border-color: transparent;
	margin-right: 1%;
}
#info{
  margin-top: 2%;
  grid-area: info;
  grid-row-gap: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:  "now nowplaying nowplaying"
                        "trackinfo trackinfo trackinfo";
	height: auto;
	overflow: hidden;
 	padding: 1%;
}
.now{
  grid-area: now;
	font-size: 1.3em;
	width: 29%;
	float: left;
	margin-top: 2%;
}
.now_playing{
  grid-area: trackinfo;
	width: 100%;
	float: right;
	margin-top: 2%;
	font-size: 1.3em;
	margin-bottom: 2%;
	overflow-x: hidden;
}
.now_playing p{
  overflow-x: visible;
  white-space: nowrap;
	z-index: 0;
	font-weight: 400;
	margin: 0;
	text-align: center;
	/* Starting position */
	-moz-transform:translateX(90%);
	-webkit-transform:translateX(90%);
	transform:translateX(90%);
	-webkit-transform: translateZ(0);
	/* Apply animation to this element */
	-moz-animation: scroll-left 10s linear infinite;
	-webkit-animation: scroll-left 10s linear infinite;
	animation: scroll-left 10s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
		0% { -moz-transform: translateX(90%); }
		100% { -moz-transform: translateX(-90%); }
}
@-webkit-keyframes scroll-left {
	0% { -webkit-transform: translateX(90%); }
	100% { -webkit-transform: translateX(-90%); }
}
@keyframes scroll-left {
	0% {
		-moz-transform: translateX(90%); /* Browser bug fix */
		-webkit-transform: translateX(90%); /* Browser bug fix */
		transform: translateX(90%);
	}
	100% {
		-moz-transform: translateX(-90%); /* Browser bug fix */
		-webkit-transform: translateX(-90%); /* Browser bug fix */
		transform: translateX(-90%);
	}
}
#track_info{
  grid-area: nowplaying;
	margin-top: 2%;
  align-self: center;
	width: 100%;
	max-height: 35px;
	font-size: 1.4em;
	font-weight: 300;
	overflow-y: hidden;
	word-wrap: break-word;
  overflow-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.soundcloud_widget{
	visibility: hidden;
	width: 0;
	height: 0;
}
#playbutton:hover .playsymbol{
	border-color: transparent transparent transparent #DEDEDE;
}
.playsymbol{
 	-webkit-transition: 0.25s all ease;
	-moz-transition: 0.25s all ease;
	-o-transition: 0.25s all ease;
	transition: 0.25s all ease;
	margin-top: 10px;
	margin-left: 18px;
	cursor: pointer;
	box-sizing: border-box;
	width: 20px;
	height: 22px;
	border-style: solid;
	border-width: 20px 0px 20px 30px;
	border-color: transparent transparent transparent #fff;
}
.playsymbol:hover{
	border-color: transparent transparent transparent #202020;
}
.playsymbol.pause{
	margin-top: 14px;
	margin-left: 15px;
	height: 30px;
	border-style: double;
	border-width: 0px 0px 0px 30px;
}
