:root {
	--main-bg-color: #222;
    --dark-bg-color: #1b1b1b;
    --blue: #49667f;
    --light-text: #d1d1d1;
    --grey-text: #787878;
}

.myrtle {color: #366B6B}
.jet {color: #3B3B3B}
.cadet {color: #739999}
.dred {color: #290909}
.red {color: #803E3E}
.italic {font-style: italic}
.bold {font-weight: bold}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 1.7em;
    font-size: 13px;
    background-color: var(--main-bg-color);
	color: var(--grey-text);
    font-family: 'Source Sans Pro Bold',Helvetica,Arial,sans-serif;
}

a, a:visited {
    color:var(--blue);
}

a.error, a.error:visited{
    color:red;
}

p, li, h1, h2, h3, h4, h5, h6 {
    color: var(--grey-text);
    font-weight: bold;
	line-height: 1.3;
}

h1 {
	font-size:34px;
}

ul {
	background-color: var(--dark-bg-color);
	padding:10px;
	border-radius:5px;
	list-style-type: none;
}

li {
	line-height:2;
}

audio {
    filter: grayscale(1) invert(100%);
    height: 30px;
}

audio:active {
	border:none;
}

#nav {
	position:fixed;
	top:0;
	width:100%;
	background-color: #2a2a2a;
	padding: 10px 30px 10px 0px;
	z-index:1;
}

#nav a {
	color:#787878;
	text-decoration: none;
	font-size: 1.3em;
    line-height:31px;
	padding:16px 15px;
}

#nav a:hover{
    background-color:var(--blue);
    color: var(--light-text) !important;
}

#nav .pure-form-aligned .pure-control-group {
    margin:0;
}

#menu {
	display:inline;
	margin-top:10px;
}

#navsearch {
    text-align:right;
}

#burger {
	display: none;
    position: absolute;
    right: 0;
    top: 0px;
    padding:10px 20px !important;
}

#albumart {
    height: auto;
    width: auto;
    max-width: 250px;
    max-height: 250px;
    display: block;
    margin: auto;
	-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent) , to(rgba(250, 250, 250, 0.1)));

}

#player {
	margin-top:5px;
}
#upcoming ul {
	list-style-type: none;
}

#last-played ul {
	list-style-type: none;
}

#infobox {
    display:none;
    background-color: var(--dark-bg-color);
	border: 2px solid var(--blue);
	border-radius:10px;
    width: auto;
    max-width: 250px;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 25%;
	z-index:2;
}

.message {
    background-color: var(--dark-bg-color);
    border: 2px solid var(--blue);
    border-radius:4px;
    padding: 5px;
    margin-bottom:10px;
}

.message .error {
    color:red;
}

.message .success {
    color:green;
}

.centered {
	text-align:center;
}

.checkbox {
    padding:.5em .6em;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius:4px;
}

.underline {
	border-bottom: 2px solid var(--blue);
}

.frontbox {
	padding:5px;
}

.pl-box {
    border-bottom: 2px solid var(--main-bg-color);
}

.pl-box:hover {
    border-bottom: 2px dotted var(--blue);
}

.content-wrapper {
    width: 100%;
	max-width:1200px;
	margin:auto;
	margin-top:55px;

}

.content {
    padding: 1em 1em 3em;
}

.content-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align:center;
}
.text-right {
    text-align:right;
}

.l-box{
    padding:5px;
}

.top-25 {
    margin-top:25px;
}
.top-25-vh {
    margin-top:25px;
}

/* Buttons */
.sasu-button-primary {
    background-color: var(--blue);
    color: var(--light-text) !important;
}

.button-wide {
    width:100%;
    margin:5px;
}

/* Progressbar */

.progress-bar {
    width: 100%;
    background-color: var(--dark-bg-color);
    border-radius: 3px;
}
.progress-bar-fill {
    display: block;
    height: 22px;
    background-color: var(--blue);
    border-radius: 3px;
    transition: width 500ms ease-in-out;
}

/* Checkbox */

input[type="checkbox"] {
  display:none;
}
input[type="checkbox"] + label::after {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--blue);
  background-color: var(--dark-bg-color);
  display: block;
  content: "";
  float: right;
  margin-left: 5px;
}
input[type="checkbox"]:checked+label::after {
  box-shadow: inset 0px 0px 0px 3px var(--dark-bg-color);
  background-color: var(--blue);
}

input{
	background-color: var(--dark-bg-color) !important;
	border: 2px solid var(--blue) !important;
	color: var(--light-text);
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

input[type=submit]{
	border:none !important;
	background-color: var(--blue) !important;
}

@media screen and (min-width: 1024px) {
	.top-25-vh {
		margin-top:25vh;
	}

}

@media screen and (max-width:1023px) {
	#burger {display:block}
	#menu {display:none}
	#menu a {display:block}
    #navsearch {display:none}

}

@media only screen and (max-width: 480px) {
	#headsearch{width:100%;}
	.pure-form-aligned .pure-control-group label {
		width: 10em;
	}
}
