section#chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;

  width: 100vw;
  height: 100vh;
}

.cellRight { 
  text-align: right;
  position: relative;
}

.cellCenter {
  text-align: center;
  position: relative;
}

.isLivre {
  background-color: yellow !important;
  text-align: center;
}

.cellNormal {
  padding-left: 15px;
  position: relative;
}

.redCircle::before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color:#f00 !important;
   top: 50%; 
  left: 5px;
  transform: translateY(-50%); 
}


.yellowCircle::before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: #ff0 !important;
  top: 50%;
  left: 5px;
  transform: translateY(-50%); 
}

.currency .ui-grid-cell-contents:before{
  text-align: right;
  content: 'R$';
  float: left;
}

section#chart-container header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 7rem;
  padding: 1rem 2rem;
  margin-bottom: 4rem;

  font-size: 1.6rem;
  color: #fff;
  background: #3c3c3c;
}

section#chart-container header .back-icon {
  cursor: pointer;
}

section#chart-container div#chartview {
  width: 100%;
  height: 100%;
}

section#chart-container header .filter-icon {
  cursor: pointer;
}

div#filterModal {
  position: absolute;
  right: 0;
  top: 6rem;
  width: 100%;
  max-width: 300px;
  background: #f0f0f0;
  padding: 20px;
  z-index: 99;
}

div#filterModal #input-group-graph {
  padding: 1rem;
}


div#filterModal img {
  width: 14px;
  position: absolute;
  right: 5px;
  top: 5px;
}

div#filterModal label {
  font-size: 14px;
}

div#filterModal select  {
  width: 100%;
}

div#filterModal input  {
  width: 100%;
}

div#filterModal button {
  padding: 1rem;
  background-color: #087bc5;
  color: #fff;
  cursor: pointer;
  border: 0;
  margin-top: 2rem;
}
