:root {
    --background: #070505;
    --color: #f8f4e5;
    --link-color: #996600;
    --hover-color: #666666;
    --highlight-color:  #f0d0a1;
    --alt-color: #e0c081;
    --bio-background: #3e3e3e;
}

html, body{
    display: block;
}

body {
    background: var(--background);
    color: var(--color);
}

div {
    font-family: "Noto Sans", "Trebuchet MS", sans-serif, Arial;
    line-height: 1.4;
    display: block;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--link-color);
}

a:hover {
    color: var(--hover-color);
}


/* --------------------------------------- */

input[type="checkbox"] {
    display: none;
}

.as-toggle {
    display: block;
    cursor: pointer;
}

.as-label-toggle {
    display: block;
    cursor: pointer;
    padding: 2rem;
    font-size: 0.9rem;
}

.as-label-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--color);

  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.as-past-events-content {
    max-height: 0px;
    overflow: auto;
    transition: max-height .25s ease-in-out;
}

.as-toggle:checked + .as-label-toggle + .as-past-events-content {
  max-height: 50vh;
}

.as-toggle:checked + .as-label-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.as-toggle:checked + .as-label-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* --------------------------------------- */

.as-em {
    font-style: italic;
}

.as-more {
    font-weight: 800;
}

.as-c {
    color: var(--highlight-color);
}

/* --------------------------------------- */

.font-size-yet-more {
    font-size: 118%;
    line-height: 2.1em;
}

.font-size-more {
    font-size: 112%;
    line-height: 1.9em;
}

.font-size-less {
    font-size: 90%;
    line-height: 1.3em;
}

.superscript {
    font-size: 0.7em;
    vertical-align: top;
}

/* --------------------------------------*/

.as-container { /* class for top-level elements, e.g. header, main, footer, specifying ideal width */
    width: 85%; 
    margin: 0 auto; 
    position: relative;
    overflow: hidden;
}

.as-top { /* set the vertical space from bottom of the menu to the top of first main element */
    margin: 1rem auto 0 auto;
}

.as-gap-1 {
    margin: 3rem auto 0 auto;
}

.as-gap-2 {
    margin: 2rem auto 0 auto;
}

.as-gap-3 {
    margin: 1.5rem auto 0 auto;
}

.as-middle {
    margin: 0 auto;
    text-align: center;
    clear: both;
}

.as-middle-80 {
    margin: 0 auto;
    text-align: center;
    clear:both;
    width: 80%;
}

.as-middle-60 {
    margin: 0 auto;
    text-align: center;
    clear:both;
    width: 60%;
}

.as-middle-40 {
    margin: 0 auto;
    text-align: center;
    clear:both;
    width: 40%;
}

/******************************* */

.future {
    display:inline-block;
    width: 100%;
}
.past {
    display:inline-block;
    width: 100%;
}
.future {
    color: #ffffff;
}
.present {
    color: #ffffff;
}
.past-5 {
    color: #888888;
}
.past-5 > a {
    color: #888888;
}
.past-4 > a {
    color: #999999;
}
.past-4 {
    color: #999999;
}
.past-3 > a {
    color: #aaaaaa;
}
.past-3 {
    color: #aaaaaa;
}
.past-2 > a {
    color: #cccccc;
}
.past-2 {
    color: #cccccc;
}
.past > a {
    color: #dddddd;
}



/****************************** */

.as-text-left {
    text-align: left;
    display: inline-block;
    margin-left: auto;
}

.as-text-right {
    display: inline;
    text-align: right;
    margin-left: 3em;
    float: right;
    padding-right: 4px;
    margin-right: auto;
}

.as-alt-text {
    color: var(--alt-color);
    font-size: 105%;
}
.as-a {
    color: var(--alt-color);
    font-size: 105%;
}
.as-about div {
    padding: 0 1rem 0 1rem;
}
.bio {
    background: var(--bio-background);
    border-radius: 1rem;
    margin: 1rem;
    padding: 1rem;
    text-align: left;
}
.bio img {
    float: right;
    margin-left: 1rem;
}
.bio div {
    padding-bottom: 0.5rem;
    font-size: 0.9rem;
}
.bio-name {
    color: var(--alt-color);
    font-weight: 800;
}
.bioflex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.bioflex-item {
    max-width: 30rem;
}

.gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.gallery-item {
    order: 2;
    flex-shrink: 1;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    -moz-animation: ifadein 1400ms; /* Firefox < 16 */
    -ms-animation: ifadein 1400ms; /* Internet Explorer */
    -o-animation: ifadein 1400ms; /* Opera < 12.1 */
    animation: ifadein 1400ms;
}

@keyframes ifadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* -------------------------------------------- */

.as-audio {
    margin: 1rem auto;
    padding: 1rem 0%;
    border-radius: 15px;
}

.as-active {
	background: #996600;
	background: linear-gradient(#bbbbbb, #f8f4e5);
	width: 62%;
	margin: 0px auto;
	border-radius: 2px;
	position: relative;
	height: 6px;
	bottom: 2px;
}


/******************************************/
/* Audio Player */

audio {
    visibility: hidden;
    width: 0;
    height: 0;
}
#audioplayer {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
#playbutton {
    width: 32px;
    height: 32px;
    background-color: Transparent;
    border: none;
}
#progress {
   background: rgba(190, 190, 190, 0.6);
   background: -webkit-linear-gradient(bottom, rgba(190, 190, 190, 1), rgba(100, 100, 100, 0.3), rgba(190, 190, 190, 1));
   background: -o-linear-gradient(bottom, rgba(190, 190, 190, 1), rgba(190, 190, 190, 0.3), rgba(190, 190, 190, 1));
   background: -moz-linear-gradient(bottom, rgba(190, 190, 190, 1), rgba(190, 190, 190, 0.3), rgba(190, 190, 190, 1));
   background: linear-gradient(bottom, rgba(190, 190, 190, 1), rgba(190, 190, 190, 0.3), rgba(190, 190, 190, 1));
   height: 8px;
   width: 0;
}
#progressbar {
    display: inline;
    border: none;
    background: rgba(100, 100, 100, 0.4);
    background: -webkit-linear-gradient(bottom, rgba(100, 100, 100, 1), rgba(100, 100, 100, 0.3), rgba(100, 100, 100, 1));
    background: -o-linear-gradient(bottom, rgba(100, 100, 100, 1), rgba(100, 100, 100, 0.3), rgba(100, 100, 100, 1));
    background: -moz-linear-gradient(bottom, rgba(100, 100, 100, 1), rgba(100, 100, 100, 0.3), rgba(100, 100, 100, 1));
    background: linear-gradient(bottom, rgba(100, 100, 100, 1), rgba(100, 100, 100, 0.3), rgba(100, 100, 100, 1));
    color: #fff;
    min-width: 30%;
}
#playtitle {
    line-height: 1;
    font-size: 0.9rem;
    color: var(--alt-color);
}
#playback {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.3em;
}
#playback > div {
    margin: 6px;
}
#playback-under {
    height: 3px;
    background-color: rgba(140, 140, 140, 0.6);
}
.playlist-element {
    font-size: 0.9rem;
    cursor: default;
    text-align: center;
}
.playlist-separator {
	height: 1px;
	background-color: rgba(140, 140, 140, 0.6);
}

.video {
    max-width: 640px;
    max-height: 360px;
}
/* ---------------------------------------*/


#as-summary {
    color:  #f0d0a1;
}

#id-header #as-summary {
    padding: 24px 20px 14px 20px;
    margin: 20px auto 0px auto;
    font-style: italic;
}
#ticketing {
    min-width: 400px;
    margin-bottom: 16px;
}
#as-gigs {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
#as-gigs ul {
    padding: 0;
    margin: 0;
    text-align: justify;
}
#as-gigs li div {
    font-size: 0.9rem;
}
#as-promo-menu li {
	width: 50%;
}

#fader {
    margin: 0 auto;
    position: relative;
}

#fader #first-slide {
    opacity: 1;
    display: block;
    margin: 0 auto;
}

#fader img {
    margin: 0 auto;
    opacity: 0;
    display: none;
}

#fader img {
    -webkit-transition: opacity 1.5s ease-in;
    -moz-transition: opacity 1.5s ease-in;
    -wo-transition: opacity 1.5s ease-in;
    -ms-transition: opacity 1.5s ease-in;
}

#wbi-photo-credit * {
    display: inline-block;
    font-size: 80%;
}
