.scatter-plot rect {
    fill: transparent;
}

.scatter-plot .axis path,
.scatter-plot .axis line {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
}

.scatter-plot .axisLine {
    fill: none;
    stroke: rgba(0, 0, 0, 0.5);
    stroke-width: 2px;
}

.scatter-plot :focus {
    outline: 0;
}

.scatter-plot .legend {
    cursor: pointer;
}

.scatter-plot .extent {
    fill: darkgrey;
    fill-opacity: .125;
}

.node {
    stroke: #e0e0e0;
    stroke-width: 1px;
    opacity: 0.15;
    cursor: pointer;
}

.node.overlapped.selected {
    stroke: #00000033;
    stroke-width: 4px;
}

.node.selected {
    opacity: 1 !important;
}

.node.hovered {
    opacity: 0.4;
}

.scatter-plot .legend text {
    font-size: 20px;
}

.controls {
    font-size: 14px;
    position: absolute;
    top: 15%;
    left: 80%;
}

/* Checkbox controls - used by scatter-plot and chamber-infographic */
.checkbox-container {
    display: flex;
    column-gap: 10px;
    row-gap: 0px;
    flex-wrap: wrap;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

#collisiondetection {
    margin: 4px;
}