/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
    height: 100%;
}

/* Makes the sample page fill the window. */
#map-wrapper {
    height: 100%;
    width:  100%;
    margin:  0;
    padding: 0;
    top:  300px;
    left: 0;
    position: absolute;
}

#mapContainer {
    position: static;
}

#overlay {
    position: absolute;
    top:  0;
    left: 0;
    z-index: 20000;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#overlayImage {
    opacity: 0.8;
}

#crosshairs {
    opacity: 1.0;
    position: absolute;
    top:  -10px;
    left: -10px;
    z-index: 20010;
}

.slider-selection {
    background: #BABABA;
}

.control-content {
    height: 300px;
    margin-top: 20px;
}


.param-widget {
    padding-left: 10px;
    padding-right: 10px;
}

circle.control-point {
    fill: red;
    fill-opacity: 0.25;
}

circle.control-point:hover {
    stroke: yellow;
    stroke-width: 2px;
}

.all-maps {
    display: inline-block;
    width:  100%;
    height: 100%;
}

.map-div {
    height: 100%;
    margin: 0;
    padding: 0;
}

#overlay canvas {
    position:absolute;
    left:0;
    top:0;
}

#overlay svg {
    position:absolute;
    left:0;
    top:0;
}

#overlay svg * {
    position:absolute;
}

.right-click-menu {
    position: absolute;
    background: #eee;
    color: #666;
    font-weight: bold;
    border: 1px solid #999;
    font-family: sans-serif;
    font-size: 16px;
    box-shadow: 1px 3px 3px rgba(0, 0, 0, .3);
    margin-top: -10px;
    margin-left: 10px;
    cursor: pointer;
    width: 250px;
    display: inline-block;
    text-align: center;
}

.right-click-menu-mobile {
    font-size: 24px;
    width: 320px;
    line-height: 1.5;
}

.right-click-menu:hover {
    background: white;
}

.delete-menu {
    position: absolute;
    background: white;
    padding: 3px;
    color: #666;
    font-weight: bold;
    border: 1px solid #999;
    font-family: sans-serif;
    font-size: 12px;
    box-shadow: 1px 3px 3px rgba(0, 0, 0, .3);
    margin-top: -10px;
    margin-left: 10px;
    cursor: pointer;
}
.delete-menu:hover {
    background: #eee;
}

.menu-mobile {
    font-size: 24px;
    line-height: 1.5;
}

