* {padding: 0; margin: 0;}

body { font-family: VT323; font-size: 62.5% }

a { text-decoration: none;
}

.hidden{ display: none;}

hr {
    width: 90%;
    margin: 0 auto;
    margin-top: 3px;
    margin-bottom: 5px;
    background-color: #D3D3D3;
    border: 0 none;
    color: #999999;
    height: 1px;
}

#whole_page {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: scroll;
}


/*---------------------------
		Quote Form
---------------------------*/
.nav_red {
    color: red;
}

#form_page {
    position: absolute;
    top: 0;
    padding-top: 120px;
    width: 100%;
    margin-bottom: 100px;
    font-size: 2em;
    overflow: hidden;
}

form#quote_form {
    margin: 0 auto;
    width: 50%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#quote_tracks {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    padding: 10px;
}

#q_tracks {
    min-height: 75px;
    flex: 9;
    display:inline-block;
    white-space:nowrap;
    border: 1px solid black;
}

label.q_label {
    flex: 1;
    text-align: center;
}

#quote_fieldset {
    margin: 0 auto;
    width: 80%;
    border: none;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-around;
}

div.q_c_label {
    position: relative;
    margin: 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
}

.q_input {
    position: relative;
    flex: 9;
    padding: 5px;
    margin: 5px;
}

#q_usage {
    height: 190px;
}

.q_c_label span {
    position: absolute;
    text-align: right;
    margin: 15px 0px;
    top: 0;
    right: 8px;
    bottom: 0px;
    font-size: 1em;
    color: #E10000;
    pointer-events: none;
}

.error {}

.error:focus { 
    background-color: #FFF;
}

#buttons_fieldset {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
    padding: 10px;
}

label.q_buttons_label {
    padding: 5px;
    width: 120px;
    background-color: white;
    border: 1px solid #808080;
    text-align: center;
    cursor: pointer;
}

input.q_buttons{
    display: none;
}


/*---------------------------
		Quote boxes
---------------------------*/

ul#quote_list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
}

li.quotebox {
    position: relative;
    width: 100%;
    padding: 5px 0;
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}

.quotebox .track_details span{
    margin: 0 3px;
}

.quotebox .track_name {
    font-weight: bold;
    font-size: 1.2em;
}

.quotebox .artist_name {
    font-size: 0.8em;
}

.quotebox i {
    font-size: 1em;
    padding: 0 5px;
    cursor: pointer;
}

.quotebox i:hover {
    color: #808080;
}

