.responsive-bar-container {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 92%;
  /* depends on svg ratio, for my zebra height/width = 1.2 so padding-bottom = 50% * 1.2 = 60% */
}

.responsive-svg {
  /* svg into : object, img or inline */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* only required for <img /> */
}

.responsive-svg {
  height: 100%;
  width: 100%;
  max-width: 100%;
  position: absolute;
}

.responsive-svg .yaxis path,
.responsive-svg .yaxis line,
.responsive-svg .xaxis path,
.responsive-svg .xaxis line {
  fill: none;
  stroke: #aaa;
  shape-rendering: crispEdges;
}

.responsive-svg .tick text {
  font-size: 1em;
  font-family: "proxima-nova-condensed", sans-serif;
  fill: #333;
}

/*.responsive-svg rect {cursor:pointer;}*/

.temp-charts[role="bar"] p {
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 1rem;
}

/* D3 TIP
==========================================*/
.d3-tip {
  line-height: 1;
  font-weight: bold;
  padding: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 2px;
}

.d3-tip p {
  color: #fff;
  font-family: "proxima-nova-condensed", sans-serif;
  font-size: 0.9em;
  margin: 5px 0;
  font-weight: 400;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  content: "\25BC";
  position: absolute;
  text-align: center;
}

/* Style northward tooltips differently */
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}

.xlabel {
  font-family: "proxima-nova-condensed", sans-serif;
}

.bartext {
  font-family: "proxima-nova-condensed", sans-serif;
  /*fill:#69a32b;*/
}

/*# Mobile*/
@media only screen and (max-width: 480px) {
  .responsive-svg {
    /*top:72px;*/
    font-size: 0.9em;
  }

  .d3-tip {
    display: none;
  }
}

/*# Tablet*/
@media only screen and (min-width: 768px) {
  /* .responsive-svg{
/*	top:-40px;
 }  */
}

/*# Desktop*/
@media only screen and (min-width: 992px) {
  /* .responsive-svg{
/*	top:15px;
/* }  */
}

/*# Huge*/
@media only screen and (min-width: 1248px) {
  /* .responsive-svg{
/*	top:40px;*/
  /* }  */
}
