svg {
    height: 50%;
    width: 100%;
    border: 1px solid #ccc;
}

.line-bar-container {
    height: 20%;
}

.axis .domain {
    stroke: none;
}

.x line {
    stroke: white;
}

.tooltip {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    background: #eee;
    max-width: 250px;
}

.tip-header {
    border-bottom: 2px solid white;
    padding: 0.9rem 1rem;
}

.tip-body {
    padding: 0.2rem 0;
}

h3 {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.tip-info {
    margin: 0;
    padding: 0.3rem 1em;
    font-size: 0.8em;
}

.tip-info:nth-of-type(even) {
    background: #e0e0e0;
}

.controls {
    display: flex;
    flex-direction: row;
    justify-content: center;    
    width: 100%;
    height: 100%;
}

.button {
    height: 100%;
    width: 20%;
    margin: 2% 0%;
}

.button:hover {
    background: #ffbbb3;
    box-shadow: inset 0 0 6px 2px rgba(255, 30, 30, 0.393);
}

.button:focus {
    background: #ffbbb3;
}

.button:not(:last-child) {
    margin-right: 1%;
}

.y line {
    stroke: #09155238;
    stroke-width: 2px;
}

.selector {
    margin: 1em 0em;
    display: flex;
    flex-direction: row;
    justify-content: center;    
}

.select {
    border:2px solid #e3e3e3;    
    border-radius:3px;
    color:#616263;
    overflow: hidden;     
    height: fit-content;
    width: fit-content;
    position: relative;
    display: block;
    margin: 0em 1em;
}

select{       
    width: 30em;
    text-align: center;
    border: 0;
    font-size: 1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select:after {
    content:"▼";    
    padding: 0.5em 1em;
    position: absolute; right: 10px; top: 0;    
    z-index: 1;
    text-align: center;
    height: 100%;      
    pointer-events: none;
    box-sizing: border-box;   
}

@media screen and (max-width: 736px) {
    .controls {
        flex-direction: column;
    }
    .button {
        width: 100%;
    }

    .selector {
        flex-direction: column;
    }
}

li {
    text-align: left;
}