
html {
    font-family: 'Anonymous Pro', monospace;
    background: rgb(250,250,250);
    color: rgb(50,50,50);
}
@media (max-width: 640px) {
    html {
        margin-bottom: 230px;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 500;
    color: rgb(80,80,80);
}

#player {
    width: 100%;
    height: 100%;
}

#search-player {
    display: block;
    margin: auto;
}

#player-block {
    display: none;
    margin: auto;
    width: 640px;
    height: 360px;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
}
@media (max-width: 640px) {
    #player-block {
        display: none;
        width: 100%;
        height: 230px;
    }
}

#player-close {
    position: absolute;
    top: 0px;
    height: 40px;
    width: 40px;
    right: 0;
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    background: rgba(0,0,0,0.5);
    display: none;
}

#search-block {
    display: block;
    margin: auto;
    width: 640px;
}

#search-input {
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    padding: 5px;
    font-size: 18px;
}

li {
    list-style-type: none;
    font-size: 18px;
}

ul {
    margin-left: 0;
    padding-left: 0;
}

/* songs */

.youtube-link {
    width: 32px;
    height: 32px;
    background-image: url("/youtube-icon.png");
    display: inline-block;
}

.chord {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    bottom: -4px;
    width: 0;
    height: 36px;
    font-size: 14px;
    color: rgb(80, 80, 80);
}

.fingering {
    display: inline-block;
}

.frets {
    display: block;
    background: black;
    padding-right: 5px;
    margin-top: 20px;
}

.chord-name {
    display: block;
    margin: auto;
}

.harmony {
    position: relative;
    vertical-align: middle;
    display: inline-block;
    margin-right: -4px;
    margin-left: 1px;
    height: 51px;
    width: 20px;
    background-color: white;
    background-size: 1px 10px;
    background-position: bottom;
    background-image: repeating-linear-gradient(
            0deg, black, black 1px, white 1px, white);
}

.harmony .num {
    display: inline-block;
    position: absolute;
    bottom: 57px;
    width: 10px;
    height: 10px;
    text-align: center;
    left: 4px;
    font-size: 10px;
}

.string {
    display: inline-block;
    background: black;
    color: white;
    /*border: 1px solid black;*/
    border-radius: 10px;
    position: absolute;
    width: 12px;
    height: 12px;
    text-align: center;
    left: 4px;
    font-size: 10px;
    line-height: 14px;
    font-weight: bold;
}

.string-1 {
    bottom: -6px;
}

.string-2 {
    bottom: 4px;
}

.string-3 {
    bottom: 14px;
}

.string-4 {
    bottom: 24px;
}

.string-5 {
    bottom: 34px;
}

.string-6 {
    bottom: 44px;
}

.string-bare {
    bottom: -4px;
    width: 10px;
    height: 58px;
}

.mute {
    display: inline-block;
    background: transparent;
    border: none;
    color: black;
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: bold
}

.mute:after {
    content: "x";
}