* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  list-style-type: none;
  text-decoration: none;
}

.chartMenu {
  /* width: 100vw; */
  /* background: #1A1A1A; */
  /* height: 120px; */
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: rgba(54, 162, 235, 1); */
}

.chartMenu p {
  /* padding: 10px; */
  font-size: 20px;
}

.chartCard {
  /* width: 100vw; */
  /* height: calc(100vh - 40px); */
  /* background: rgba(54, 162, 235, 0.2); */
  /* height: 80vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.chartBox {
  width: 700px;
  padding: 20px;
  border-radius: 20px;
  border: solid 3px rgba(54, 162, 235, 1);
  background: white;
}

#customLegend {
  margin: 0;
  padding: 0;
}

#customLegend ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

#customLegend ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-direction: row;
  margin-bottom: 5px;
  /* avoid click bug */
}

#customLegend ul li span {
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-style: solid;
  border-width: 1px;
}

#customLegend ul li p {
  margin: 0;
  padding: 0;
  color: rgba(102, 102, 102, 1);
}

#customLegend ul li.fadeText p {
  color: rgba(102, 102, 102, 0.5);
}
.chart-container {
  width: 95%;
  height: 95%;
  margin: auto;
}
/* .accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
} */
#side_nav {
  background: #000;
  min-width: 250px;
  max-width: 250px;
  transition: all 0.3s;
}
.sidebar li.active {
  background: #eee;
  border-radius: 8px;
}
.sidebar li.active a,
.sidebar li.active a:hover {
  color: #000;
}
.sidebar li a {
  color: #fff;
}
.content {
  min-height: 100vh;
  width: 100%;
}
.loginForm {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(245, 245, 245);
}
.login {
  border-radius: 20px;
  padding: 30px;
  width: 500px;
  background: white;
  height: min-content;
}
.img-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.photo-profile {
  width: 50px;
  height: 50px;
}
.img-profile {
  width: 100px;
  height: 100px;
}
.masthead {
  background-size: cover;
  min-height: 100vh;
  position: relative;
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.color-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
#password-container {
  position: relative;
  border: 1px solid black;
  background-color: red;
}
.password-toggle {
  border: 1px solid black;
}
label.required::after {
  content: "*";
  color: red;
}

@media (max-width: 768px) {
  #side_nav {
    margin-left: -250px;
    position: fixed;
    min-height: 100vh;
    z-index: 1;
  }
  #side_nav.active {
    margin-left: 0;
  }
  .chartBox {
    width: 600px;
  }
}
