* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
aside{
  display: inline-block;
  vertical-align: top;
  /*height: 100vh;*/
  /*overflow-y:scroll;*/
}

#side-pannel {
  background-color: #E1E2E1;
  width: 320px;
  max-width: 100%;
  position: fixed;
}
#chart-buttons {
  position: fixed;
  bottom: 0;
  background-color: #E1E2E1;
  padding: 20px;
  max-width: 320px;
}
#download button{
  margin-top: 10px;
}
.one-half {
  width: 50%;
}
#chart-list{
  height: calc(100vh - 122px);
  overflow-y: scroll;
}
#chart-list > div:nth-child(even){
  background-color: #f2f2f2;
}

#myCanvas {
  margin-left: 320px;
}

.chart {
  position: relative;
  padding: 20px;

}

.addNewOption {
  margin-top: 10px;
}

.chart__general-settings {
  display: flex;
}
.chart__legend-settings {
  margin-top: 10px;
  margin-bottom: 30px;
}
.chart__legend-settings label{
  /*margin-right: 25px;*/
}
div input[class*="__name-edit"] {
  display: none;
}

[class*="__header"] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
[class*="__buttons"] {
  display: flex;
}
[class*="__buttons"] button {
  min-width: 40px;
}

[class*="__header"] [class*="__name-heading"] {
  font-family: var(--matter-font-family, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
  color: rgba(var(--matter-onsurface-rgb, 0, 0, 0), 0.6);
  font-weight: 700;
  border: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 4px;
}
.chart [class*="__header"] [class*="__name-heading"] {
  font-size: 1.2rem;
}
.chart__option [class*="__header"] [class*="__name-heading"] {
  font-size: 1rem;
  margin-top: 5px;
}
.add-chart__buttons {
  flex-direction: column;
  align-items: flex-start;
  background: white;
  border-radius: 5px;
  box-shadow: 0 1px 65px rgba(0,0,0,0.12), 0 1px 5px rgba(0,0,0,0.24);
  display: none;
}
.chart__settings .addNewOption{
  margin-bottom: 30px;
}
.option__buttons button{
  font-size: 20px;
}

.chart__option > label  {
  margin-bottom: 10px;
}
.chart__option > label input {
  border-top-width: 15px;
}
.chart__option > label span {
  line-height: 0;
}