/*BALANCE SHEET */


#container-balance-sheet {
  border-radius: 15px;
  display: flex;
  flex-direction: column;

}

.p-numbers-balancesheet {
  text-align: right;
  color: #33404D;
}

/* TAB BALANCE SHEET*/


.buttons-container {
  display: flex;
}

.tab-button {
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid whitesmoke;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
  color: grey;
  margin-right: 10px;


}

.tab-button:hover {
  background-color: white;
  color: #33404D;
  border: 1px solid whitesmoke;

}

.tab-button.active {
  background-color: white;
  color: #33404D;
  border: 1px solid whitesmoke;

}

.tab-content {
  justify-content: space-around;
  width: 100%;
  display: none;
  border: 1px solid whitesmoke;
  border-radius: 0 15px 15px 15px;
  background-color: rgba(255, 255, 255, 0.1);

  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.1), inset -5px -5px 5px rgba(255, 255, 255, 0.1);



}

.tab-content:first-child {
  display: block;
}

#tab1 {
  display: flex;
}

.tab-content.show {
  display: block;
}

.column-left {
  width: 50%;
}

.column-right {
  width: 50%;
}

.container-text-chart-balance-sheet {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 50%;
  padding: 20px;
  min-height: 450px;

}



.container-text-numbers-balance-sheet {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}



#pieChartAssets,
#pieChartLiabilities {
  padding: 50px;

}

.container-chart-balance-sheet {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 512px;
  margin: auto;
}


#container-balance-sheet hr {
  border: none;
  border-top: 1px solid whitesmoke;
  width: 100%;
  margin: 0 auto;
}


