@charset "UTF-8";
.chart-bars {
  display: flex; }
  .chart-bars .bar {
    height: 225px;
    width: 20%;
    border-left: 1px solid #e5e5e5;
    opacity: .75; }
    @media only screen and (max-width: 500px) {
      .chart-bars .bar {
        height: 125px; } }
    .chart-bars .bar:hover {
      cursor: pointer;
      -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
              box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
      background: #fff; }
    .chart-bars .bar:first-child {
      border-left: 0; }
    .chart-bars .bar.active_tab {
      background: #fff;
      -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
              box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
      border-left: 1px solid transparent;
      opacity: 1; }
      .chart-bars .bar.active_tab + .bar {
        border-left: 1px solid transparent; }

.chart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .chart-wrapper {
    width: 100%; }
    @media only screen and (min-width: 720px) {
      .chart-wrapper {
        width: 70%; } }
  .chart-labels-year {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e5e5e5;
    padding-top: 8px; }
    .chart-labels-year .year {
      max-width: 96px;
      -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
              box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06); }
  .chart-legend {
    text-align: left;
    margin-left: 16px;
    padding: 16px;
    padding-left: 30px;
    flex: 1;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
            box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06); }
    @media only screen and (max-width: 695px) {
      .chart-legend {
        text-align: center;
        margin: 16px 0 0 0; } }
    .chart-legend .legend-year span {
      font-weight: bold;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #4f4f4f; }
    .chart-legend .legend-year h2 {
      font-style: normal;
      font-weight: 300;
      font-size: 24px;
      line-height: 28px;
      color: #57a0d7;
      margin-top: 0; }
    .chart-legend .legend-values span {
      font-weight: 300;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: #4f4f4f; }
    .chart-legend .legend-values h2 {
      font-weight: bold;
      font-size: 18px;
      line-height: 21px;
      color: #4f4f4f;
      margin-top: 4px; }
      .chart-legend .legend-values h2:after {
        content: '€';
        margin-left: 4px; }
    .chart-legend .legend-performance {
      font-weight: bold;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0.05em;
      margin-top: -16px;
      margin-bottom: 16px; }

.legend-comissao::before {
  content: '';
  width: 14px;
  height: 7px;
  background-color: #8abde3;
  position: absolute;
  margin-left: -20px;
  border-radius: 1000px;
  margin-top: 6px; }

.legend-premio::before {
  content: '';
  width: 14px;
  height: 7px;
  background-color: #d4e6f4;
  position: absolute;
  margin-left: -20px;
  border-radius: 1000px;
  margin-top: 6px; }

.hover {
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.06); }
