body {
    color: rgba(39,46,51,1);
    margin: 0;
    padding: 0;
}

h1 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-align: center;
        margin: 3em 0 1.5em;
}
h2.header-subtitle {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    text-align: center;
}
form {
    margin: 4em 0;
}
label {
    display: inline-block;
    height: 0;
    color: gray;
}
fieldset {
    appearance: none;
    border: none;
    margin: 0;
    padding: 0;
}
.page-wrapper {
    margin: 2em auto;
    max-width: 688px;
}
.title-area {
    display: block;
    width: 100%;
    text-align: center;
}
.title-area img {
    max-width: 19.5em
}
#upload-image-area, .main-form-area {
    width: 19.5em;
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
}
#upload-image-area {
    margin: 0 3em 3em 0;
    border: 12px solid rgba(138,173,150,0.35);
    box-sizing: border-box;
    height: 19.5em;
    width: 19.5em;

}
#upload-image-area > div {
    text-align: center;
    padding: 4em 0;
}
.hidden {
    display: none;
}
.cover-art-preview {
    width: 100%;
    height: 100%;
}
input[type=file] {
    display: none;
}
input[type=file] + label {
    height: unset;
}
input[type=text], textarea, select {
    font-size: 1em;
    box-sizing: border-box;
    display: block;
    width: 19.5em;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    padding: 0.5em 1em;
}
input[type=text] {
    border-width: 1px;
    border-style: none none solid none;
    border-color: rgba(0,0,0,0.2);
}
input[type=text]:focus {
    border-bottom-color: rgba(42,42,89,1);
}
input[type=text] + label {
    position: relative;
    top: -2em;
    height: 0;
    padding-left: 1rem;
    transition: 0.2s
}
select + label {
    position: relative;
    padding-left: 1rem;
    top: -5rem;
    font-size: 0.7em;
}

input[type=text]:focus + label, input[type=text]:not([value=""]) + label {
    top: -3.5rem;
    font-size: 0.7em;
}
table textarea {
    width: 100%;
}
textarea {
    resize: none;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-bottom: 1em;
}
textarea:focus {
    border-color: rgba(42,42,89,1);
}
.textarea-label, #form-station-rating-area p {
    padding-left: 1rem;
    font-size: 0.7em;
}
select {
    font-size: 1em;
    width: 19.5em;
    height: 3.5em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(img/iconography/dropdown-arrow.svg);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-top: 0.5em;
}
option {
    padding: 0.5em;

}
.checkbox-area {
    display: block;
    flex-flow: row;
    padding: 1em 1em 1em 0;
}
.checkbox-area input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    vertical-align: top;
    font-size: 1em;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    width: 1.5em;
    height: 1.5em;
    padding: 0;
    margin: 0;
}
input[type=checkbox]:checked {
    background-image: url(/img/iconography/checkmark.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 80% 80%;

}
.checkbox-area label {
    display: inline-block;
    //flex: 1 0 auto;
    max-width: 16em;
    vertical-align: top;
    padding-left: 0.5em;
    height: unset;
}
input[type=button], a.button-1, a.button-2, .button-1, .button-2 {
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5em;
    padding: 1em 2em;
    font-weight: 700;
    margin: 1em;
    text-decoration: none;
}
.button-1 {
    background-color: rgba(138,173,150,1);
    color: white;
    min-width: 40%;
}
.button-2 {
    border: 1px solid rgba(0,0,0,0.2);
    color: rgba(42,42,89,1);
    min-width: 40%;
    text-align: center;
}
.cta-area {
    text-align: center;
    margin: 3em auto;
    padding-bottom: 5em;
}
#test-stream-button {
    margin: 0 0 2em;
}
/* STATION RATINGS STYLE */
input[type=radio] {
    font-size: 1em;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
input[type=radio]::before {
    display: inline-block;
    font-size: 2rem;
    color: rgba(138,173,150,1);
    content: '\2665';
}
input[type=radio]:checked::before {
    color: rgba(138,173,150,1);
}
input[type=radio]:checked ~ input[type=radio]::before {
    color: lightgray;
    font-size: 2rem;
    width: 2rem;
    content: '\00b7';
    text-align: center;
}
table {
    width: 100%;
}
td {
    font-size: 0.7rem;
    line-height: 1rem;
    height: 64px;
    overflow: hidden;
    padding: 0.5rem;
}
@media screen and (max-width: 688px) {
    .page-wrapper {
        margin: 2em 1em;
    }
    #upload-image-area {
        margin: 0 0 3em;
    }
}
