html {
    font-size: 100%;
}
body {
    width: 100%;
    margin: 0;
    background: #111;
    /* text-align: center; */
    top: 0;
    /* font-family: Helvetica, Arial, sans-serif; */
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    line-height: 1.2;
    color: #ddd;
}
nav {
    width: 100%;
    position: sticky;
    top: 0;
}
nav ul {
    margin-left: 1%;
    padding: 5px;
    list-style: none;
}
nav li {
    display: inline-block;
    margin-left: 5px;
}
.page {
    width: 98%;
    margin-left: 1%;
    margin-top: 10px;
}
.spectrogram {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}
.spectrogram img {
    width: auto;
    height: 100%;
}
button, label, input, textarea, a {
    background: transparent;
    border: 1px solid #aaa;
    padding: 5px;
    border-radius: 5px;
    margin: 2px;
    color: #bbb;
}
button, label, nav a {
    border: 1px solid #111;
}
button i, label i, nav a i {
    font-size: 130%;
}
a, a:visited {
    border: 1px solid #111;
}
button:active,
label:active,
a:active {
    background: #aaa;
    color: #222;
}
input[type="text"],
input[type="password"] {
    width: 200px;
    height: 20px;
}
textarea {
    width: 98%;
    margin: 0 auto;
    margin-left: 1%;
    height: 100px;
}
input[type="text"],
input[type="password"], textarea {
    font-family: inherit;
    font-size: 90%;
}
.checkbox input[type="checkbox"],
.checkbox .checked {
    display: none;
}
.checkbox input[type="checkbox"]:checked ~ .checked
{
    display: inline-block;
}
.checkbox input[type="checkbox"]:checked ~ .unchecked
{
    display: none;
}
.rectitle {
    font-weight: bold;
}
.rectitle-header {
    font-size: 90%;
    color: #bbb;
    margin-bottom: 5px;
}
table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
}
tr {
    border-bottom: 1px solid #333;
}
td {
    word-wrap: break-word;
}
td div {
    margin-left: 8px;
}
.dir-list td {
    height: 34px;
}
audio {
    width: 100%;
}
.bindfield {
    border: 0;
    font-size: 110%;
    font-weight: bold;
}
*:focus {
    outline: none;
}
.form-centered {
    width: 250px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -125px;
    text-align: center;
}
.link-config {
    display: none;
}
.lock-shade {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(17, 17, 17, .3); */
    background-color: transparent;
    z-index: 10000;
}
@media(min-width:60em) {
    .link-config {
        display: inline-block;
    }
    .spectrogram {
        overflow-x: hidden;
    }
    .spectrogram:hover {
        overflow-x: scroll;
    }
    table {
        max-width: 1000px;
    }
    input[type="text"],
    input[type="password"] {
        width: 500px;
    }
    button:hover,
    label:hover,
    a:hover {
        background: #333;
        cursor: pointer;
    }
    button:focus,
    label:focus,
    a:focus {
        border: 1px solid #222;
    }
    .form-centered {
        width: 500px;
        margin-left: -250px;
    }
}
