.linechart_container {
  width: 450px;
  margin: 0 auto; }

.line-chart .axis path,
.line-chart .axis line {
  fill: none;
  stroke: #e0e0e0;
  shape-rendering: crispEdges;
  stroke-width: 2px; }
.line-chart .tick line {
  stroke-width: 1px; }
.line-chart .x.axis .tick line {
  /* display:none;*/ }
.line-chart .y.axis .domain {
  display: none; }
.line-chart .axis text {
  fill: #555;
  font-size: 16px;
  font-weight: 400; }
.line-chart .line {
  fill: none;
  stroke-width: 2px; }
.line-chart .linechart {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: 30px auto 80px auto;
  position: relative; }
.line-chart .linechart_tooltip {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: none;
  font-size: 15px;
  left: 130px;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 95px;
  z-index: 10;
  border-radius: 10px;
  font-weight: 600;
  pointer-events: none; }

.line-chart p {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 28px;
  color: #777;
  cursor: pointer;
  margin: 0 10px;
  display: inline-block; }
.line-chart .selectedMenuItem {
    color:#333;
  border-bottom: 4px solid #e1e1e1; }

@media only screen and (max-width: 650px) {
  .linechart_container {
    width: 350px;
    margin: 0 auto; } }
@media only screen and (max-width: 450px) {
  .line-chart p {
    font-size: 14px;
    line-height: 22px;
    margin:5px 10px;
  }
  .linechart_container {
    width: 300px;
    margin: 0 auto; }

  .line-chart .x.axis .tick text {
    font-size: 11px; }
  .line-chart .y.axis .tick text {
    font-size: 11px; } }

@media only screen and (max-width: 400px) {
  .linechart_container {
    width: 220px;
    margin: 0 auto; 
  }
}