/*Name: Thirza Dado */
/*Student number: 10492682*/
/*This style program adds style features to my interactive d3 map*/


svg {
    background-color: white;
}

h1 {
    color: rgb(115, 115, 115);
    font-size: 18px;
    font-family: sans-serif;
    font-weight: bold;
    margin: 0;
    padding-bottom: 10px;
}

path:hover {
    cursor:pointer;
    stroke-width: 3;
}

div.tooltipje {
    line-height: 1;
    font: 12px sans-serif;
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 2px;
}

/* remove the navbar's default margin-bottom and rounded borders */
.navbar {
    margin-bottom: 0;
    border-radius: 0;
}

.navbar-brand-centered {
    position: absolute;
    text-align: center;
    display: block;
    left: 40%;
}

/* set black background color, white text and some padding */
footer {
    background-color: #555;
    color: white;
    padding: 15px;
}

/* on small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
    .sidenav {
    height: auto;
    padding: 15px;
    }
    .row.content {height:auto;}
}

.flexcontainer {
    display: flex;
    align-items: center;
}
@media (max-width: 320px) {
    .flexcontainer {
    display: block;
    }
}

#container {
    width: 800px;
    margin-left: 200px;
    margin-right: auto;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    overflow: hidden;
    display: block;
}

.list {
    width: 350px;
    margin-left: auto;
    margin-right: 200px;
    margin-top: 0;
    display: block;

}

.ticks {
    font: 10px sans-serif;
}

.track,
.track-inset,
.track-overlay {
    stroke-linecap: round;
}

.track {
    stroke: #000;
    stroke-opacity: 0.3;
    stroke-width: 10px;
}

.track-inset {
    stroke: #ddd;
    stroke-width: 8px;
}

.track-overlay {
    pointer-events: stroke;
    stroke-width: 50px;
    stroke: transparent;
    cursor: crosshair;
}

.handle {
    fill: #fff;
    stroke: #000;
    stroke-opacity: 0.5;
    stroke-width: 1,25px;
}

.popover{
    max-width: 100%;
}


