.bg-transparent{
    background-color: rgba(255, 0, 0, 0.4);
}
.btn-temp {
    border-radius: 4px;
    background-color: #142b4d;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 10px;
    transition: all 0.5s;
    cursor: pointer;
}

.btn-temp span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-temp span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-temp:hover span {
    padding-right: 25px;
}

.btn-temp:hover span:after {
    opacity: 1;
    right: 0;
}
.text-temp-header{
    font-weight: bold;
    font-size: 70px;
    color: #142b4d;
}
.text-temp{
    color: #142b4d;
}

  #bar-chart {
    position: relative;
  }
  #line-chart {
    width: 500px;
    height: 300px;
    position: relative;
  }
  #bar-chart::before, #line-chart::before {
    content: "";
    position: absolute;
    display: block;
    width: 240px;
    height: 30px;
    left: 155px;
    top: 254px;
    background: #FAFAFA;
    box-shadow: 1px 1px 0 0 #DDD;
  }
  #pie-chart {
    width: 500px;
    height: 250px;
    position: relative;
  }
  #pie-chart::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 115px;
    left: 315px;
    top: 0;
    background: #FAFAFA;
    box-shadow: 1px 1px 0 0 #DDD;
  }
  #pie-chart::after {
    content: "";
    position: absolute;
    display: block;
    top: 260px;
    left: 70px;
    width: 170px;
    height: 2px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    box-shadow: 0 0 3px 4px rgba(0,0,0,0.1);
  }