
/* ===============================
** Chart operators (below chart)
================================== */

.chart-wrapper {
    
    background-color: white;
    position: relative;
}

.chart-svg {
  height:calc(100% - 80px);
  width: 100%;
  position: absolute;
  top:40px;
  background-color: transparent;
}

.chart-svg-relative-size {
  height:calc(80%);
  width: 100%;
  position: absolute;
  top:10%;
  background-color: transparent;
}


.chart-heading {
    width: 100%;
    height: 40px;
    background-color: transparent;
    position: absolute;
    top: 0px; 
    left: 0px; 
}

.chart-explanation {
    width: 50%;
    /*height: 40px; don't give hwith--> allow to build height from bottom*/
    background-color: transparent;
    position: absolute;
    bottom: 0px; 
    left: 0px;
}

.chart-operators-parent {
    width: 100%;
    height: 40px;
    background-color: transparent;
    position: absolute;
    bottom: 0px; 
}

.chart-operator {
    width: 30px;
    padding: 0px 3px 10px;
    height: 30px;
    background-color: transparent;
    float:right;
}


/* ===============================
** Data filtering
================================== */

.filter-and-icon-wrapper {
    background-color: transparent;
    float: right;
    height:36px;
    width:100%;
}

.filter-icon {
    width: 30px;
    padding: 3px 4px;
    height: calc(100% - 6px);
    background-color: transparent;
    float:right;

}

span.neutral-color {
  border: solid var(--col-greys-n);
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 0px;
  margin: 20% 30%;
  width: 30%;
  height: 30%;
  background-color: transparent;
}

span.brand-color {
  border: solid var(--col-brand);
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 0px;
  margin: 20% 30%;
  width: 30%;
  height: 30%;
  background-color: transparent;
}


.arrow-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.arrow-left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.arrow-up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.arrow-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}


.drop-sub-heading {
  background-color: var(--col-greys-l3);
  position: relative;
  width: 260px;
  height: 38px;
  cursor: pointer;
}

.drop-down-border {

  border-bottom: 2px solid var(--col-greys-l2); 
}

.drop-heading {
  border-bottom: 2px solid var(--col-brand); 
  background-color: white;
  position: relative;
  width: 260px;
  height: 34px;
  cursor: pointer;
}



.drop-heading-txt {
  float:left;
  padding-left: 10px;
  height: 100%;
  position: relative;
}

.drop-heading-icon {
  background-color: ;
  float:right;
  height: 34px;
  width: 34px;
}

.drop-down-wrapper {
  position:relative;
  background-color: lightgrey;
  width: 260px;
}
.drop-down-popper {
  position:relative;
  z-index: 5;

}

.dropdown-link {
  width: 250px;
  background-color: var(--col-greys-l3);
  padding: 5px 0px 5px 10px;
  cursor: pointer;

}
.dropdown-link:hover {
  background-color: var(--col-greys-l2);
}

.pop-wrapper {
  position: absolute;
  box-shadow: 0px 0px 5px var(--col-main-l1);
  margin-bottom: 40px;
  z-index: 5;

}

