body {
    background-color: #000;
    margin: 0px;
}

#bg {
    z-index: 0;
    vertical-align: top;
}

#canvas {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 150;
}

#screen {
    position: fixed;
    background-color: #000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.25s ease;
}

#screen.show {
    opacity: 0.15;
}

#control {
    position: fixed;
    top: 8px;
    left: 8px;
    border: 1px solid #000;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    width: 250px;
    z-index: 5000;
    font: 14px "Istok Web";
    padding: 4px 8px;
    height: 350px;
    overflow-y: auto;
}

.route {
    display: block;
}

.route input {
    width: 14px;
    height: 14px;
    position: relative;
    top: 3px;
    margin: 0px;
    margin-right: 4px;
}

.quest-wrapper {
    display: none;
}

.circle {
    border-radius: 50%;
    display: inline-block;
    line-height: 90px;
    text-align: center;
    transition: opacity 0.25s ease, border 0.25s ease;
    position: absolute;
    border: 1px solid transparent;
}

.obj {
    width: 6px;
    height: 6px;
    opacity: 0;
    z-index: 200;
}

.obj.show, .clicked .obj {
    opacity: 1;
    border: 1px solid #000;
}

body.show .giv {
    opacity: 0.4;
}

.giv {
    opacity: 0.65;
    cursor: pointer;
    width: 10px;
    height: 10px;
    z-index: 300;
}

body .giv:hover, body .clicked .giv {
    opacity: 1;
}

.number {
    position: absolute;
    top: 8px;
    left: -5px;
    width: 18px;
    font: 12px "Archive";
    text-shadow: 2px 2px 0px #000;
}

/* testing */
#test-coords {
    position: fixed;
    top: 8px;
    right: 8px;
    border: 1px solid #000;
    box-shadow: 2px 2px 0px #000;
    background-color: #fff;
    min-width: 250px;
    z-index: 5000;
    font: 16px Consolas;
    padding: 4px 8px;
}