/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* Defaults
**********************************************************/

body { 
    background-color:#95B4E4;
    background-image: url(background.jpg);
    color: #000000;
    font-family: Verdana, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header { 
    background-color: none;    
    color: #ffffff;
    text-align: center;
    font-family: Georgia, serif;
}

a {
    text-decoration: none;
    color: #2196F3;
}

a:hover {
    color: #376285;
    text-decoration: underline;
}

dt { 
    color: #000000;
    font-weight: bold;
}

/* Headings
**********************************************************/

h1 { 
    line-height: 230%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: right;
    padding-left: 0px;
    height: 72px;
    margin: 0;
    background-color: #294065;
    color: #ffffff;
}

h2 { 
    color: #000000;
    font-family: Georgia, serif;
}

h3 { 
    color: #000000; 
    margin-bottom: 10px;
    margin-top: 0px;
}


/* Navigation
**********************************************************/

nav { 
    font-weight: bold;
    background-color: #3D5A88;
}

nav a { 
    color: #ffffff; 
    text-decoration: none; 
}

nav a:hover {
     color: #b1c0da; 
     text-decoration: none;
    }
 
nav ul { 
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

#menu {
    display: inline;
}

#menuToggle {
    display: none;
}

/* Footer
**********************************************************/

footer { 
    background-color: #f2f2f2;
    font-size: 0.70em;
    text-align: center;
    font-style: italic;
    padding: 10px;
}

footer a { 
    text-decoration: none; 
    color: #000000; 
}

footer a:hover { 
    color: #4A6C8C; 
    text-decoration: underline;
}


/* Main
**********************************************************/

main {
    padding: 1em;
    margin-left: 0px;
    font-size: 100%;
    background-color: #f2f2f2;
}

main img { 
    float: left;
    padding-right: 20px;
    padding-bottom: 20px;
}

main ul { 
    list-style-position: inside;
}

/* Table
**********************************************************/

table {
    margin: auto;
    width: 90%;
    border-collapse: collapse;
}

table:nth-of-type(2) {
    background-color: #dfdfdf;
}

td, th {
    padding: 5px;
    border: 1px solid #dfdfdf;
}

td {
    text-align: center;
}

/* Form Elements
**********************************************************/


input, textarea {
    display: block;
    margin-bottom: 1em;
}

label {
    min-width: 8em;
    padding-right: 1em;
    padding-bottom: 2px;
}

fieldset {
    border-radius: 4px;
}

input[type=submit], input[type=reset] {
    background-color: #ffffff;
    border: 1px solid #dfdfdf;
    padding: 5px;
    border-radius: 4px;
}

input[type=submit]:active, input[type=reset]:active {
    background-color: #4b4b4b;
}

:root {
  --select-border: #bdbdbd;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}

select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1.3;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
  min-width: 90%;
}

.select select, .select::after {
  grid-area: select;
}

.select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
          clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

.textbox {
    align-items: center;
    border: 1px solid #bdbdbd;
    padding: 10px;
    border-radius: 4px;
    width: 90%;
}

textarea {
    margin: 0px -11.8125px 0px 0px; 
    height: 180px;
    border: 1px solid #bdbdbd;
    padding: 10px;
    width: 90%;
    border-radius: 4px;
}

/* Misc.
**********************************************************/

.clear { clear: both; }

.container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: flex-start;
    width: 100%;
}

.resort { 
    color: #000000;
    font-size: 1.2em;
}

.required-symbol {
    color: #f44336;
}

.block {
    padding: 10px;
    width: 96%;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    background-color: #ffffff;
}

.thumbnail {
    border-radius: 4px;
    padding: 0;
    margin-right: 10px;
    border: 1px solid #bdbdbd;
}

.subtitle {
    color: #bdbdbd;
    font-size: 12px;
}

.blacktext {
    color: #000000;
}

.list-title {
    color: #f2f2f2;
}

.item {
    text-align: center;
    padding: 10px;
}

#wrapper { 
    width: 80%;
    max-width: 1024px;
    min-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
}

#header-image {
    background-image: url(../media/home3.jpg);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    height: 300px;
}

.icon {
    color: #fff;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 8px;
    right: 15px;
    left: auto;
}

.icon-back {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 219.151 219.151' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M109.576,219.151c60.419,0,109.573-49.156,109.573-109.576C219.149,49.156,169.995,0,109.576,0S0.002,49.156,0.002,109.575 C0.002,169.995,49.157,219.151,109.576,219.151z M109.576,15c52.148,0,94.573,42.426,94.574,94.575 c0,52.149-42.425,94.575-94.574,94.576c-52.148-0.001-94.573-42.427-94.573-94.577C15.003,57.427,57.428,15,109.576,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3Cpath d='M94.861,156.507c2.929,2.928,7.678,2.927,10.606,0c2.93-2.93,2.93-7.678-0.001-10.608l-28.82-28.819l83.457-0.008 c4.142-0.001,7.499-3.358,7.499-7.502c-0.001-4.142-3.358-7.498-7.5-7.498l-83.46,0.008l28.827-28.825 c2.929-2.929,2.929-7.679,0-10.607c-1.465-1.464-3.384-2.197-5.304-2.197c-1.919,0-3.838,0.733-5.303,2.196l-41.629,41.628 c-1.407,1.406-2.197,3.313-2.197,5.303c0.001,1.99,0.791,3.896,2.198,5.305L94.861,156.507z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: cover;
}

/* Sound Audio Player 
**********************************************************/

div.control-container {
    margin-top: 10px;
    padding-bottom: 10px;
}
div.control-container div.amplitude-play-pause {
    width: 74px;
    height: 74px;
    cursor: pointer;
    float: left;
    margin-left: 10px;
}
div.control-container div.amplitude-play-pause.amplitude-paused {
    background: url("../media/play.svg");
    background-size: cover;
}
div.control-container div.amplitude-play-pause.amplitude-playing {
    background: url("../media/pause.svg");
    background-size: cover;
}
div.control-container div.meta-container {
    float: left;
    width: calc(100% - 84px);
    text-align: center;
    color: white;
    margin-top: 10px;
}
div.control-container div.meta-container span[data-amplitude-song-info="name"] {
    font-family: sans-serif;
    font-size: 18px;
    color: #fff;
    display: block;
}
div.control-container div.meta-container span[data-amplitude-song-info="artist"] {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: #fff;
    display: block;
}
div.control-container:after {
    content: "";
    display: table;
    clear: both;
}
@media screen and (max-width: 39.9375em) {
    div.control-container div.amplitude-play-pause {
        background-size: cover;
        width: 64px;
        height: 64px;
    }
    div.control-container div.meta-container {
        width: calc(100% - 74px);
    }
}
div.time-container {
    opacity: 0.5;
    font-family: 'Open Sans';
    font-weight: 100;
    font-size: 12px;
    color: #fff;
    height: 15px;
}
div.time-container span.current-time {
    float: left;
    margin-left: 5px;
}
div.time-container span.duration {
    float: right;
    margin-right: 5px;
}
progress.amplitude-song-played-progress {
    background-color: #313252;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    display: block;
    cursor: pointer;
    border: none;
}
progress.amplitude-song-played-progress:not([value]) {
    background-color: #313252;
}
progress[value]::-webkit-progress-bar {
    background-color: #313252;
}
progress[value]::-moz-progress-bar {
    background-color: #00a0ff;
}
progress[value]::-webkit-progress-value {
    background-color: #00a0ff;
}
div.bottom-container {
    background-color: #202136;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
div#single-song-player {
    border-radius: 10px;
    margin: auto;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    margin-top: 50px;
    width: 100%;
    max-width: 460px;
    -webkit-font-smoothing: antialiased;
}
div#single-song-player img[data-amplitude-song-info="cover_art_url"] {
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


/* Tablet
**********************************************************/

@media only screen and (max-width: 1024px) {
    body {
        margin: 0px;
        padding: 0px;
        background-image: none;
    }

    h1 {
        margin: 0;
    }

    nav {
        float: none;
        width: auto;
        padding: 0.01em 1em 0.01em 1.5em;
    }

    main {
        padding: 1em;
        font-size: 90%;
    }

    #wrapper {
        width: auto;
        min-width: 0;
        margin: 0;
        box-shadow: none;
    }
}

/* Mobile
**********************************************************/
@media only screen and (max-width: 768px) {
    h1 {
        height: 100%;
        font-size: 1.5em;
    }

    h3 {
        margin-top: 20px;
    }
    
    nav {
        padding: 0px;
    }

    nav a {
        display: block;
        padding: 0px;
        font-size: 1.1em;
    }

    nav a:hover {
        /* background-color: #114992; */
    }

    .block {
        width: 93%;
    }

    #desktop {
        display: none;
    }

    #mobile {
        display: inline;
        position: relative;
    }

    .container {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-content: center;
        width: 100%;
    }

    .item {
        padding: 3px;
    }

    #menuToggle {
        display: block;
        position: absolute;
        top: -37px;
        left: 15px;  
        z-index: 1;  
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    #menuToggle a {
        font-family: arial;
        text-decoration: none;
        color: #294065;
        -webkit-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }
    
    #menuToggle a:hover {
        color: #aeaeae;
    }
    
    /* The hamburger button hidden inside an input element */
    #menuToggle input {
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: -7px;
        left: -5px;  
        padding: 0;
        cursor: pointer;  
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */  
        -webkit-touch-callout: none;
    }
    
    #menuToggle label {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
    }

    #menuToggle label span {
        display: none;
    }

    #menuToggle label div {
        display: block;
        width: 30px;
        height: 2px;
        margin-bottom: 6px;
        position: relative;
        background: #ffffff;
        border-radius: 3px;  
        z-index: 1;  
        -webkit-transform-origin: 4px 0px;  
        -ms-transform-origin: 4px 0px;  
        transform-origin: 4px 0px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    
    #menuToggle label div:first-child {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
    }
    
    #menuToggle label div:nth-child(2) {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
    }

    #menuToggle input:checked + label div {
        background: #294065;
    }

    #menu {
        position: absolute;
        width: 300px;
        left: -500px;
        margin: -100px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        background: #ebebeb;
        /* border-radius: 5px; */
        border-radius: 0px 0px 10px 0px;
        border: 1px solid #bdbdbd;
        list-style-type: none;
        box-shadow: 0 4px 10px 0 #00000030,0 4px 20px 0 #00000029;
        /* Hide the menu off-screen to the left */
        left: -500px;
        -webkit-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        transition: left 0.3s ease; 
    }
    
    #menu li {
        padding: 10px 0;
        font-size: 22px;
    }

    #menuToggle input:checked ~ ul {
        left: 0;
    }
}