
body {
    max-width: 100%;
    width: 900px;
    margin: 0 auto
}

html {
    background-color: #eee;
}

gs-header {
    background-color: #006E00;
    color: white;
    border-bottom: 2px solid white;
}

gs-header a {
    text-decoration: none;
    font-size: 1.2em;
    margin-right: 1em;
    display: block;
    white-space: pre;
    color: white;
    padding: 0.5em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
    border-radius: 0.5em;
    background-color: #006E00;
}

gs-header a[current], gs-header a:hover {
    filter: invert(15%);
}

.dot {
    position: absolute;
    cursor: pointer;
    height: 2em;
    width: 2em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid white;
    transition: height 0.25s linear, width 0.25s linear, margin 0.25s linear, filter 0.125s linear;
}

.dot[chosen] {
    width: 3em;
    height: 3em;
    margin-top: -0.5em;
    margin-left: -0.5em;
}

.dot:hover {
    filter: invert(20%);
}

#coating {
    background-color: blue;
    top: 28%;
    left: 37%;
}
#stack {
    background-color: orange;
    top: 36%;
    left: 18%;
}
#handle {
    background-color: green;
    top: 49%;
    left: 81%;
}
#feet {
    background-color: brown;
    top: 36%;
    left: 55%;
}

gs-crease {
    font-size: 1.5em;
    color: black;
}

gs-fold div {
    padding: 10px;
    font-size: 1.2em;
    height: 230px;
}

gs-crease:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    height: 1em;
    width: 1em;
    content: '' !important;
}




gs-crease[for="coating"]:before {
    background-color: blue;
}
gs-crease[for="stack"]:before {
    background-color: orange;
}
gs-crease[for="handle"]:before {
    background-color: green;
}
gs-crease[for="feet"]:before {
    background-color: brown;
}



#splitter {
    background-color: orange;
    top: 10%;
    left: 61%;
}
#paint {
    background-color: blue;
    top: 45%;
    left: 30%;
}
#fence {
    background-color: green;
    top: 25%;
    left: 75%;
}
#box {
    background-color: brown;
    top: 60%;
    left: 69%;
}
#dust {
    background-color: black;
    top: 64%;
    left: 40%;
}

gs-crease[for="splitter"]:before {
    background-color: orange;
}
gs-crease[for="paint"]:before {
    background-color: blue;
}
gs-crease[for="fence"]:before {
    background-color: green;
}
gs-crease[for="box"]:before {
    background-color: brown;
}
gs-crease[for="dust"]:before {
    background-color: black;
}


.section {
    width: 90%;
    margin: 0 5%;
    cursor: pointer;
    position: relative;
}

.section_header {
    background-color: rgba(120,120,120,0.5);
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    left: 0;
    height: 2em;
    padding: 0.5em 0;
    box-sizing: border-box;
    display: block;
    margin: 0;
    transition: height 0.25s linear, padding 0.25s linear;
    text-decoration: none;
}

.section:hover .section_header {
    height: 2.5em;
    padding: 0.75em 0 !important;
}

img {
    display: block;
}