/* Mode switching: (inside width incl. scrollbar)
<472px: mobile centered layout, no logo. Lower play button
472px: flag-large displays sideways. Dropdown style with text
610px: logo shown
640px: Play button moves up insinde flag-large. More page margin. More list margin
704px: top title font
783px: .bannerpad margin
1077px: switch to 2 column mode. Banner margin
1190px: container margin
1312px: sidebar grow method change
*/
body {
	font-size: 16px;
	line-height: 1.5;
	font-family: "Open Sans", sans-serif;
	margin: 0;
	background: #f2f2f2;
	margin-bottom: 3rem;
	color: #555;
}

h1 {
	font-size: 1.8rem;
	line-height: 1.1;
	margin-bottom: 0.2em;
	margin-top: 0;
	font-weight: 700;
	color: #fff;
}

h2 {
	font-size: 1.266rem;
	line-height: 1.1;
	padding-bottom: 0.9em;
	margin-bottom: 0;
	margin-top: 0;
	font-weight: 400;
	color: #000;
}

h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #444;
}

p {
	margin-top: 0;
	margin-bottom: 0.8rem;
}

a {
	color: #00B19F;
	text-decoration: none;
}

img { border:0 }

.secondary {
	font-size: 0.9rem;
	color: #aaa;
}

* {
	box-sizing: border-box;
}

.show {
	display: block;
}

.container {
	margin-top: -24px;
	padding-top: 1.2rem;
}

@media all and (min-width: 1077px) {
	.container {
		width: 100%;
		margin: 0 auto;
		display: flex;
		padding: 1.2rem 2rem 0 2rem;
	}
	.content {
		width: 70%;
		max-width:970px
	}
}

@media all and (min-width: 1190px) {
	.container {
		width: 90%;
	}
}

.player .secondary {
	color: rgba(255, 255, 255, 0.75);
}

.thumbnail--large {
	width: 120px;
	height: 120px;
	border-radius: 10px;
	box-shadow: 0 0 5px #444;
}

.thumbnail--medium {
	width: 75px;
	height: 75px;
	border-radius: 8px;
}

.thumbnail--small {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.button-dropdown {
	display: inline-block;
	zoom: 1;
	background: transparent;
	color: #fff;
	text-align: center;
	XXfont-family: "proxima-nova", sans-serif;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.button-dropdown__content {
	position: relative;
}

.button-dropdown__content::before {
	content: "";
	position: absolute;
	width: 7px;
	height: 2px;
	background: #fff;
	transform: rotate(40deg);
	right: -1rem;
	top: 50%;
	margin-top: -1px;
	transition: all 0.15s;
}

.button-dropdown__content::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 2px;
	background: #fff;
	transform: rotate(-40deg);
	right: calc(-1rem - 5px);
	top: 50%;
	margin-top: -1px;
	transition: all 0.15s;
}

.button-dropdown.open .button-dropdown__content::before {
	transform: rotate(-40deg);
}

.button-dropdown.open .button-dropdown__content::after {
	transform: rotate(40deg);
}

.button-dropdown--text {
	padding: 0 2.375rem 0 1rem;
	transition: all 0.15s;
	color: rgba(255, 255, 255, 0.8);
	position: relative;
}

.button-dropdown--text .button-dropdown__content::before {
	background: rgba(255, 255, 255, 0.8);
}

.button-dropdown--text .button-dropdown__content::after {
	background: rgba(255, 255, 255, 0.8);
}

.button-dropdown--text:hover, .button-dropdown--text.open {
	color: #fff;
}

.button-dropdown--text:hover .button-dropdown__content::before, .button-dropdown--text.open .button-dropdown__content::before {
	background: #fff;
}

.button-dropdown--text:hover .button-dropdown__content::after, .button-dropdown--text.open .button-dropdown__content::after {
	background: #fff;
}

.button-dropdown--icon {
	padding: 0 1rem;
	position: relative;
}

@media all and (min-width: 472px) {
	.button-dropdown--icon {
		padding: 0 3.375rem 0 2rem;
		border: 2px solid rgba(255, 255, 255, 0.6);
		border-radius: 50px;
		margin: 0 0.5rem;
		transition: all 0.15s;
	}
	.button-dropdown--icon:hover, .button-dropdown--icon.open {
		background: #4ecdc4;
		border-color: #24BCAF;
	}
}

@media all and (min-width: 640px) {
	.button-dropdown--icon {
		margin: 0 1rem;    
	}
}

.button-dropdown--icon .button-dropdown__content {
	height: 1.5rem;
}

.button-dropdown--icon .button-dropdown__content--text {
	display: none;
	height: 40px;
	line-height: 40px;
}

@media all and (min-width: 472px) {
	.button-dropdown--icon .button-dropdown__content--icon {
		display: none;
	}
	.button-dropdown--icon .button-dropdown__content--text {
		display: inline-block;
		zoom: 1;
	}
}

.button-dropdown--icon .button-dropdown__content::before, .button-dropdown--icon .button-dropdown__content::after {
	display: none;
}

@media all and (min-width: 472px) {
	.button-dropdown--icon .button-dropdown__content::before, .button-dropdown--icon .button-dropdown__content::after {
		display: inline-block;
		zoom: 1;
	}
}

.button-dropdown--icon .button-dropdown__content svg {
	fill: #fff;
	width: 1.5rem;
	height: 1.5rem;
}

.button-dropdown--icon-float {
	padding: 0 1rem;
	position: relative;
}

.button-dropdown--icon-float .button-dropdown__content {
	height: 1.5rem;
}

.button-dropdown--icon-float .button-dropdown__content--text {
	display: none;
	height: 40px;
	line-height: 40px;
}

.button-dropdown--icon-float .button-dropdown__content::before, .button-dropdown--icon-float .button-dropdown__content::after {
	display: none;
}

.button-dropdown--icon-float .button-dropdown__content svg {
	fill: rgba(255, 255, 255, 0.8);
	width: 1.25rem;
	height: 1.25rem;
	transition: all 0.15s;
}

.button-dropdown--icon-float:hover .button-dropdown__content svg {
	fill: #fff;
}

.button-dropdown--icon-float.open .button-dropdown__content svg {
	fill: #fff;
}

.button-group {
	display: flex;
	width: 100%;
}

.button-group__item {
	background: transparent;
	border: 1px solid #dedede;
	color: #777;
	margin-right: -1px;
	padding: 0 1.266rem;
	height: 35px;
	width: 100%;
	transition: all 0.15s;
	cursor: pointer;
	display: inline-block;
	zoom: 1;
}

.button-group__item:first-child {
	border-radius: 4px 0 0 4px;
}

.button-group__item:last-child {
	border-radius: 0 4px 4px 0;
}

.button-group__item--active {
	background: #4ecdc4;
	color: #fff;
	border-color: #24BCAF;
}

.button-audio-control {
	width: 60px;
	height: 60px;
	min-width: 58px;
	background: #4ecdc4;
	border: none;
	border-radius: 50%;
	position: relative;
	outline: none;
	cursor: pointer;
}

.jp-stopx {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #fff;
	top: 50%;
	margin-top: -10px;
	left: 50%;
	margin-left: -10px;
}

.jp-stopx#playbtn2  {
	width: 14px;
	height: 14px;
	margin-left: -7px;
	margin-top: -7px;
}

.jp-playx {
	position: absolute;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 20px solid #fff;
	top: 50%;
	margin-top: -10px;
	left: 50%;
	margin-left: -7px;
}

.jp-playx#playbtn2  {
	margin-left: -5px;
	margin-top: -8px;
	border-left: 14px solid #fff;
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
}

.button-audio-control--small {
	width: 32px;
	height: 32px;
	min-width: 31px;
}

.button-audio-control--small .button-audio-control__stop {
	width: 10px;
	height: 10px;
	margin-top: -5px;
	margin-left: -5px;
}

@media all and (min-width: 640px) {
	.button-audio-control {
		background: transparent;
		border: 2px solid rgba(255, 255, 255, 0.6);    
		transition: all 0.2s;
	}
	.button-audio-control:hover {
		background: #4ecdc4;
		border-color: #24BCAF;
	}
}

.icon {
	width: 1rem;
	height: 1rem;
	box-sizing: content-box;
}

.icon-amazon {
	fill: #ff9900;
}

.icon-apple {
	fill: #000;
}

.icon-facebook {
	fill: #3b5998;
}

.icon-twitter {
	fill: #6cadde;
}

.flag--large {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.song-info-large {
	text-align: center;
	margin-top: 1rem;
	min-width: 320px;
	font-size:14px;
}
.main-header__float .song-info {
	font-size:10px;
}

/* ie10 fixes */
.no-flexboxlegacy  .flag div, .no-flexboxlegacy  .flag button { float:left; }
.no-flexboxlegacy  .flag--artist, .no-flexboxlegacy  .song-info-large, .no-flexboxlegacy  .flag__content { float:left; }

.clear {clear:both}

@media all and (min-width: 472px) {
	.flag--large {
		flex-direction: row;
	}
	.flag--large__image {
		padding-right: 1.5rem;
		height: 126px;
	}
	.song-info-large {
		text-align: left;
		margin-top: 0;
	}
}

.flag--artist {
	border-bottom: none;
}

.flag {
	display: flex;
	align-items: center;
	width: 100%;
}

.flag__image {
	padding-right: 1rem;
}

.flag--song .flag__content {
	border-bottom: 1px solid #eaeaea;
	flex-grow: 2;
}

.flag--icon .flag__image {
	line-height: 0;
	padding-left: 2rem;
}

.flag__content--icon {
	border-bottom: 1px solid #eaeaea;
	flex-grow: 2;
}

.list {
	margin: 0;
	padding: 1.5rem 0;
	list-style: none;
	width: 100%;
}

.list li a {
	color: #777;
}

.list li > a {
	display: inline-block;
	zoom: 1;
	padding: 0.5rem 2rem;
	color: #777;
}

@media all and (min-width: 472px) {
	.list li > a {
		font-size: 0.9rem;
		padding: 0.5rem 4rem 0.5rem 2rem;
	}
}

.list--flag {
	padding: 0;
}

.list--flag li:last-child .flag__content {
	border-bottom: 0;
}

#songhist .flag__content {
	display:table-cell;
	width: 89%;
}

#songhist .heading-group {
	float:left;
	max-width: 73%;
}

#songhist li:first-child .flag__content {
	padding-top: 0;
}

#songhist ul {
	display:table;
}

#songhist li {
	clear:both;
	display:table-row;
}

#songhist .flag__image {
	display:table-cell;
	vertical-align: top;
}

#songhist .meta__icons {
	zoom: 1;
	text-align:right;
}

.list--flag .meta .secondary {
	text-align:right;
}

.list--flag .flag--song {
	display: table;
}

.list--flag .flag__content {
	padding: 0.3rem 0;
}
@media all and (min-width: 640px) {
	.list--flag .flag__content {
		padding: 1rem 0;
	}
}

.list--flag .flag__content--icon {
	padding: .9rem 0;
}

.list--flag .meta {
	float: right;
	width: 7.1rem;
}

.list--flag .meta .icon {
	padding: 0 0 0 1rem;
	box-sizing: content-box;
	width: 1em;
	fill: #aaa;
	transition: all 0.15s;
}

.list--flag .meta .icon-amazon {
	position: relative;
	top: 2px;
}

.list--flag .meta .icon-amazon:hover {
	fill: #ff9900;
}

.list--flag .meta .icon-apple:hover {
	fill: #000;
}

@media all and (min-width: 640px) {
	.dropdown {
		width: auto;
	}
	.dropdown .flag--icon {
		transition: all 0.15s;
	}
	.dropdown .flag--icon:hover {
		background: #f2f2f2;
	}
	.dropdown .flag__content--icon {
		margin-right: 1rem;
	}
	.dropdown .flag__image {
		padding-left: 1rem;
	}
}

.dropdown {
	list-style: none;
	margin: 0 -1rem;
	width: calc(100% + 2rem);
	background: #fff;
	position: absolute;
	z-index: 10001001;
	font-size: 1rem;
	text-align: left;
	left: 0;
	margin-top: 1rem;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
	transition: all 0.15s ease-in-out;
	display: none;
}

.dropdown.open {
	display: block;
	opacity: 1;
}

@media all and (min-width: 472px) {
	.dropdown {
		margin-top: 1.5rem;
	}
}

@media all and (min-width: 640px) {
	.dropdown {
		width: auto;
	}
}

.button-dropdown--text li {
	border-left: 3px solid transparent;
}
.button-dropdown--text li:hover {
	border-color: #4ecdc4;
	background: #f2f2f2;
}

.dropdown::after {
	content: "";
	position: absolute;
	top: -7px;
	left: 2.3rem;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 7px solid #fff;
}

@media all and (min-width: 472px) {
	.dropdown::after {
		left: 1.5rem;
	}
}

.dropdown h2 {
	color: #444;
}

.dropdown--right {
	right: 0;
}

.dropdown--right::after { /*arrow*/
	right: 2.3rem;
	left: auto;
}

@media all and (min-width: 472px) {
	.dropdown--right::after {
		right: 1.5rem;
	}
}

.dropdown__section {
	padding: 1.5rem;
	clear: both;
}

.dropdown__section:nth-child(odd) {
	background: #f2f2f2;
	border-top: 1px solid #eaeaea;
}

@media all and (min-width: 640px) {
	.button-dropdown--icon .dropdown {
		left: 1rem;
		width: calc(100% + 4rem);
	}
	.button-dropdown--icon .dropdown::after {
		left: 2.3rem;
	}
	.button-dropdown--icon .dropdown--right {
		right: 1rem;
		left: auto;
	}
	.button-dropdown--icon .dropdown--right::after {
		right: 2.3rem;
		left: auto;
	}
}

#options.dropdown--right {
	width:270px;
	position: fixed;
	top: 60px;
	right: 1.5rem;
	left:auto;
}

.volume-slider {
	width: 100%;
	display: flex;
	align-items: center;
}

.volume-slider .mute {
	line-height: 0;
}

.volume-slider .icon-mute-2 {
	display: none;
}

.volume-slider.muted .icon-volume {
	display: none;
}

.volume-slider.muted .icon-mute-2 {
	display: inline-block;
	zoom: 1;
}

.volume-slider .mute svg {
	width: 1.5rem;
	height: 1.5rem;
	padding-right: 1rem;
	color: #777;
	box-sizing: content-box;
}

.volume-slider .volume-slider__slider {
	width: 100%;
	background: #dedede;
	height: 20px;
	border-radius: 40px;
	position: relative;
}

#volume-fill {
	position: absolute;
	width: 60%;
	height: 100%;
	border-radius: 40px;
	left: 0;
	top: 0;
	background: #4ecdc4;
}

#volumeknob {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	left: calc(60% - 20px);
	top: 0;
	background: #288d86;
}

.banner {
	display: none;
	position: relative;
	width:728px; }

@media all and (min-width: 744px) {
	.banner { display:block; }
	.bannerpad { margin:0 auto; }
}
@media all and (min-width: 783px) {
	.bannerpad { margin-left: 5%; }
}
@media all and (min-width: 1077px) {
	.bannerpad { margin-left:0; }
}

.banner-right {
	width:300px; /* padding: 1rem 0;  height:250px;*/
}
@media all and (min-width: 640px) {
	.banner-right { margin-top: 16px; }
}

@media all and (min-width: 640px) {
	.sidebar {
		width: 90%;
		margin: 0 auto;
	}
}

@media all and (min-width: 728px) {
	.sidebar {
		width: 80%;
		display: flex;
		justify-content: space-between;
	}
}

@media all and (min-width: 1077px) {
	.sidebar {
		width: 30%;
		margin-left: 4%;
		display: block;
		margin-top: .5rem;
	}
}

@media all and (min-width: 1312px) {
	.sidebar {
		width: 25%;
		margin-left: 10%;
	}
}

.sidebar-widget {
	padding: 1.5rem 2rem 0;
}

.sidebar-widget h2 {
	border-bottom: 1px solid #dedede;
}

.sidebar-widget p {
	color: #777;
}

.sidebar-widget__content {
	margin-top: 1rem;
}

@media all and (min-width: 640px) {
	.sidebar-widget {
		width: 50%;
		padding: 1.5rem 1rem;
	}
}

@media all and (min-width: 1077px) {
	.sidebar-widget {
		width: 100%;
		padding: 1.5rem 0;
	}
}

.player {
	position: relative;
	padding: 0 1rem 1.5rem;
	z-index: 1;
}
@media all and (min-width: 640px) {
	.player {
		padding: 0 3rem 3rem;
	}
}

.player.blur {
	background: url(60pct_black-trans.png);
	background: rgba(0,0,0,.6);
}

.playerbg {
	background: url(header-bg.jpg) center center no-repeat;
	background-size: cover;
	position: absolute;
	top:0; left:0;
	height:430px;
	width: 100%;
}
.playerbg.blur {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	filter: blur(5px);
	background-position: center center !important;
	background-size: cover !important;
}

.container::before { /* This ugly fix covers the blur edge */
	background: #f2f2f2;
	z-index: 0;
	position:absolute;
	width: 100%;
	height: 12px;
	left: 0;
	content: "";
}

.Aplayerbg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 0;
}

.main-header__content {
	position: relative;
	z-index: 200;
}

.player .button-audio-control > * {
	position: absolute;
}

.main-header__meta {
	padding-top: 1.5rem;
}

@media all and (min-width: 640px) {
	.main-header__meta {
		padding-top: 4rem;
	}
}

.main-header__float {
	display: none;
	width: 100%;
	padding: 0.5rem 3rem;
	margin: 0 -3rem;
	background: #000;
	position: fixed;
	z-index: 10001000;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	transform: translateY(-100%);
	transition: all 0.3s ease-in-out;
}

@media all and (min-width: 975px) {
	.main-header__float {
		display: block;
	}
}

.main-header__float.show {
	transform: translateY(0);
}

.main-header__float .topbar-buttons {
	align-items: center;
}

.main-header__float .logo {
	margin: 0;
}

.main-header__float .flag--float {
	width: auto;
	margin-right: 3rem;
}

.main-header__float .flag--float .flag__content {
	display: flex;
	align-items: center;
}

.main-header__float .flag--float .flag__content .button-audio-control {
	order: 0;
	margin-right: 1rem;
}

.main-header__float .flag--float h3 {
	color: #fff;
}

.main-header__float .float__meta {
	display: flex;
	align-items: center;
}

.logo {
	display: none;
	float: left;
	margin-top: -0.4rem;
	max-height: 90px;
}

@media all and (min-width: 610px) {
	.logo { display: block;}
}

.flag--large .button-audio-control {
	display: none;
}

@media all and (min-width: 640px) {
	.flag--large .button-audio-control {
		display: inline-block;
		zoom: 1;
		order: 0;
		margin-right: 1.5rem;
	}
	.song-options .button-audio-control {
		display: none;
	}
}

.main-header__topbar {
	padding: 1.5rem 0;
}

.topbar-buttons {
	display: flex;
	justify-content: space-between;
	align-content: center;
}

.topbar-buttons .dropdown {
	top: 0;
	left: 0;
	margin-top: 0;
}

.topbar-buttons .button-dropdown__content .icon {
	height: 29px;
	width: 29px;
}

@media all and (min-width: 472px) {
	.topbar-buttons .dropdown {
		top: 2.5rem;
		width: auto;
		left: 2rem;
	}
	.topbar-buttons .dropdown--right {
		right: 2rem;
		width: 200%;
		left: auto;
	}
}

@media all and (min-width: 975px) {
	.float__meta .dropdown {
		left: 10px;
		width: 400%;
	}
	.float__meta .dropdown--right {
		right: 10px;
		left: auto;
	}
}

.song-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2.25rem;
}

@media all and (min-width: 640px) {
	.song-options {
		justify-content: center;
		padding-top: 4rem;
	}
}

.cart {
	order: 1;
}

.button-audio-control {
	order: 2;
}

.share {
	order: 3;
}

.card {
	background: #fff;
	padding: 1.5rem;
	margin: 1.5rem 0.667rem;
}

@media all and (min-width: 640px) {
	.card {
		width: 90%;
		margin: 1.5rem auto;
	}
}

@media all and (min-width: 1077px) {
	.card {
		width: 100%;
		margin: 1.5rem 0;
	}
}

.card.whats-card {margin-top:0}

.card__header {
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 1.5rem;
}

.card__header h2 {
	color: #00B19F;
	display: inline-block;
	zoom: 1;
	position: relative;
}

.card__header h2::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 1px;
	width: 100%;
	background: #4ecdc4;
}

.card .flag--artist {
	margin-bottom: 1rem;
}

.card p:last-child {
	margin-bottom: 0;
}


/* adaptations */

#selector.dropdown {
	position: fixed;
	left: 4px;
	top: 68px;
	font-size:14px;
}
@media all and (min-width: 26em) {
	#selector.dropdown {
		left: 30px;
		font-size:16px;
	}
}
@media all and (min-width: 52em) {
	#selector.dropdown {
		left: 150px;
	}
}

#selector.selector_m {
	position:absolute;
	top: 48px;
	width: 23em;
}
#selector i {display:none}
#selector ul {padding:0; list-style-type:none}
#selector li {padding:0 0.6em}
#selector li a {display: inline-block; width:100%}
#selector .col2 { width:740px }
#selector .col3,
#selector .col4,
#selector .col5,
#selector .col6,
#selector .col7,
#selector .col8 { width:96% }
#selector table {
	width:100%;
	max-width: 914px;
}
#selector td {
	padding:0;
	vertical-align: top;
	min-width: 122px;
}
#selector #select2 {
	width: 23em;
	display:none;
}

#videoad, #videoad2 {
	display:none;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0; left: 0;
	background: url(80pct_black-trans.png);
	background: rgba(0,0,0,.8);
	padding-top: 20px;
	font-size:22px;
	z-index: 10009001;
	overflow:hidden;
}
#videoad > * { margin: auto }
#vmsg { text-align:center }

#synchrobox300, #synchrobox728 {
	margin-top: 0;
	margin-left: 0;
	padding: 0;
	z-index:9100;
	position:absolute;
	display:none;
	background: #777;
}
#synchrobox300 { width:300px; height:250px; margin-top: 16px; }
#synchrobox728 { width:728px; height:90px; }

.tooltip {
	display: none;
	position: absolute;
	background: #000;
	padding: 5px 4px;
	border-radius: 5px;
	bottom: -38px;
	left: 50%;
	width: 98px;
	margin-left: -54px;
	text-align: center;
	font-family: "Open Sans", Arial, sans-seirf;
	font-size: 12px;
	font-weight: 300;
	z-index: 10001002;
}

.tooltip:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #000;
	top: -5px;
	left: 50%;
	margin-left: -5px;
}

.toptitle { font-size:100% }

@media all and (min-width: 704px) {
	.toptitle { font-size:150% }
}


#song a {color: #FFF}

#current-time {
	font-size: 0.8em;
	float:none;
}

#debug {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	min-height: 20px;
	margin-bottom: -20px;
	max-width: 800px;
	text-align: center;
}

.error {
	background-color:maroon;
	color:#ddd;
	font-weight: bold;
	padding:1px 2px}
.error a{
	color: #fff;
	text-decoration: underline}

#linkbuttons {
	margin-bottom: 8px;
}
#linkbuttons a {
	width:29px; height:29px;
	display: inline-block;
	zoom: 1;
	background: url(linkicons1.png) no-repeat;
	margin:2px 5px 2px 3px;
}
#linkbuttons a.lb_fb { background-position:0 -61px;}
#linkbuttons a.lb_twitter { background-position:-29px -61px;}
#linkbuttons a.lb_youtube { background-position:-146px -61px;}
#linkbuttons a.lb_forums { background-position:-88px -61px;}
#linkbuttons a.lb_pin { background-position:-176px -61px;}
#linkbuttons a.lb_tunein { background-position:-235px -61px;}
#linkbuttons a.lb_tumblr { background-position:-264px -61px;}
#linkbuttons a.lb_playlist { background-position:-293px -61px;}
#linkbuttons a.lb_app1 { background-position:-322px -61px;}
#linkbuttons a.lb_app2 { background-position:-351px -61px;}
#linkbuttons a.lb_instagram { background-position:-380px -61px;}
#linkbuttons a.lb_vimeo { background-position:-206px -61px;}
#linkbuttons a.lb_meetup { background-position:-409px -61px;}

.powered-by {
	font-size: 10px;
}

.overlay {
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0; left: 0;
	box-sizing: border-box;
	background: url(80pct_black-trans.png);
	background: rgba(0,0,0,.8);
	padding: 5px;
	text-align: center;
	z-index: 9000;
}

#appovl { /* app download */
	margin: -105px auto 0 auto;
}
#appovl ul { Xwidth: 90%; }
#appovl li {
	margin-bottom: 30px;
	background-color:rgba(255,255,255, 0.7);
	border:1px solid #fff;
	border-radius:10px;
	width:90%;}
#appovl li > a{
	display:block;
	width:100%;
	color: #000;
	text-shadow:none;
	line-height:130px;
	font-weight: bold;
	font-size: 56px;	}

#ovgdpr {
	color: #aaa;
	padding: 3em 2em;
	font-size: 130%;
	font-weight: bold; }

#playobtn-base  {
	margin: 32px auto;
	width:210px; height:210px;
	background:url(play480.png);
	background-size: cover;
	cursor:pointer }
@media all and (max-width: 609px) {
	#ovgdpr #playobtn-base {
		margin: 16px auto;
		width:90px; height:90px;}
	#ovgdpr {
		font-size: 12pt;}
}
#playoverlay #playobtn-base { margin-top: 90px }
#playoverlay  { font-weight: bold; font-size:120%; color:#aaa }

.poppane {	
	display: none;
	overflow-y: auto;
	position: absolute;
	top: 25px; left: 0; right: 0;
	background: #333;
	color: #eee;
	border-radius: 4px;
	z-index:90;
	box-shadow: 2px 2px 22px #000, 0 0 12px #000;
}
@media all and (min-width: 640px) {
	.poppane { left: 30px; right: 30px; }
}
.poppane h2 {
	color: #eee; }

.poppane .close {
	position: absolute;
	right:0; top:0; }

.help-inner {
	margin:15px 20px;
	font-size: 15px; }

.close {
	padding: 0.55em 0.7em;
	background: #733426;
	background: rgba(227,79,45,.7);
	cursor: pointer;
	text-shadow:none; }

.close:hover { background: #662e22; }


/* Skin for jPlayer plugin */

div.jp-interface {
	position: relative;
	width:100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.iconskin {
	background-image: url(icons-white-trans.png);
	background-repeat:no-repeat;
	background-size:300px;
}

.jp-jplayer audio,
.jp-jplayer {
	width:0px;
	height:0px;
	position:absolute;
	opacity:0;
}

.jp-no-solution { /* error feedback */
	position:absolute;
	left:115px; top:8px;
	margin:0;
	width:458px;
	z-index:21;
	font-size:10pt;
	padding:6px 10px;
	background-color:#227;
	border:2px solid #FFF;
	color:#FFF;
	display:none;
}
.jp-no-solution a { color:#FF5 }

.jp-no-solution div {
	font-size:13pt;
	text-align:center;
	font-weight:bold;
}

/* @end of jPlayer */

#ccc #cc-panel hr {opacity:0; margin: 1em 0;}
#ccc-reject-settings, #ccc-icon  {display:none}
