/* BLUE */
/* YELLOW */
/* GREEN */
/* MAGENTA */
/* ORANGE */
/* BLUE */
/* DARK-BLUE */
/* WARNING RED*/
/* BLUE */
/* YELLOW */
/* GREEN */
/* MAGENTA */
/* ORANGE */
/* BLUE */
/* DARK-BLUE */
/* WARNING RED*/
/* Two-column grid with different breakpoints
 * Use break-tablet for a one-column layout from tablet down
 * Use break-desktop for a one-column layout from small desktop down
 * (Obviously, use px-flexgrid on the wrapper and px-flexgrid-item on the children)
 */
.graph-wrapper {
  margin: 5rem 0;
}

.graph-data {
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.5s;
  overflow: hidden;
}
.graph-data--show {
  max-height: 1000rem;
  visibility: visible;
}

.graph-datatable {
  margin: 2rem 0;
}
@media (max-width: 1023.5px) {
  .graph-datatable {
    display: block;
  }
}
.graph-datatable th[data-segment-color] {
  position: relative;
  padding-left: 4rem;
}
.graph-datatable th[data-segment-color]::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 3px;
  position: absolute;
  margin-left: -3rem;
  top: 2.4rem;
}
.graph-datatable th[data-segment-color][data-segment-color=blue]::before {
  background-color: #00bcee;
}
.graph-datatable th[data-segment-color][data-segment-color=orange]::before {
  background-color: #f39200;
}
.graph-datatable th[data-segment-color][data-segment-color=green]::before {
  background-color: #81c747;
}
.graph-datatable th[data-segment-color][data-segment-color=turquoise]::before {
  background-color: #66d2cc;
}
.graph-datatable th[data-segment-color][data-segment-color=purple]::before {
  background-color: #5c2d91;
}
.graph-datatable th[data-segment-color][data-segment-color=light-purple]::before {
  background-color: #ad96c8;
}
.graph-datatable th[data-segment-color][data-segment-color=yellow]::before {
  background-color: #ffca00;
}
.graph-datatable th[data-segment-color][data-segment-color=grey]::before {
  background-color: #3a3a3a;
}
.graph-datatable th[data-segment-color][data-segment-color=lightgrey]::before {
  background-color: #9c9c9e;
}
.graph-datatable th[data-segment-color][data-segment-color=magenta]::before {
  background-color: #ff418c;
}
.graph-datatable th[data-segment-color][data-segment-color=red]::before {
  background-color: #ee2e5d;
}
.graph-datatable.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.graph {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1023.5px) {
  .graph {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 639.5px) {
  .graph {
    display: block;
  }
}
.graph__cell--align-center {
  text-align: center;
}
.graph__cell--align-left {
  text-align: left;
}
.graph__cell--align-right {
  text-align: right;
}
.graph__grid-wrapper {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
  display: flex;
  flex-direction: column-reverse;
}
.graph__grid-item {
  border-top: 1px solid #cacaca;
}
.graph__grid-item-value {
  font-size: 0.8rem;
  position: absolute;
  margin-top: -1.5rem;
}
.graph__bars {
  display: inline-flex;
  align-items: flex-end;
  border-bottom: 2px solid #474747;
  min-height: 400px;
  padding: 0 2rem;
  margin-bottom: 6rem;
  position: relative;
}
@media (max-width: 1023.5px) {
  .graph__bars {
    justify-content: flex-start;
  }
}
@media (max-width: 639.5px) {
  .graph__bars {
    width: 100%;
  }
}
.graph__value--highlight {
  background-color: #f2f2f2;
}
@media (max-width: 767.5px) {
  .graph__checkbox-wrapper--diff {
    display: none;
  }
}
.graph__checkbox-wrapper--hidden {
  display: none;
}
.graph__control {
  margin: 1rem 0;
}
.graph__checkbox {
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.graph__checkbox + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
  margin-left: 0;
}
.graph__checkbox + label:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: block;
  background: #fff;
  border: 2px solid #5c2d91;
}
.graph__checkbox.invalid + label:before {
  border: 2px solid #ee2e5d;
}
.graph__checkbox + label::after {
  content: " ";
  position: absolute;
  left: 1px;
  top: 5px;
  width: 18px;
  height: 18px;
  display: block;
  z-index: 1;
  background: url("../../../../assets/images/checkmark.svg") no-repeat center center;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0);
}
.graph__checkbox:focus + label {
  outline-width: 2px;
  outline-style: solid;
  outline-color: Highlight;
}
@media (-webkit-min-device-pixel-ratio: 0) {
  .graph__checkbox:focus + label {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
}
.graph__checkbox:checked + label::after {
  opacity: 1;
  transform: scale(1);
}
.graph__checkbox:checked + label:before {
  background: #5c2d91;
  border-color: #5c2d91;
}
.graph__legend {
  list-style: none;
  padding-left: 25px;
  margin-left: 5rem;
}
@media (max-width: 1023.5px) {
  .graph__legend {
    margin-left: 0;
  }
}
.graph__legend-item {
  position: relative;
  padding: 5px 0;
}
.graph__legend-item:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: grey;
  border-radius: 3px;
  margin-left: -25px;
  margin-top: 5px;
}
.graph__legend-item--blue:before {
  background-color: #00bcee;
}
.graph__legend-item--yellow:before {
  background-color: #ffca00;
}
.graph__legend-item--grey:before {
  background-color: #3a3a3a;
}
.graph__legend-item--orange:before {
  background-color: #f39200;
}
.graph__legend-item--magenta:before {
  background-color: #ff418c;
}
.graph__legend-item--lightgrey:before {
  background-color: #9c9c9e;
}
.graph__legend-item--red:before {
  background-color: #ee2e5d;
}
.graph__legend-item--green:before {
  background-color: #81c747;
}
.graph__legend-item--purple:before {
  background-color: #5c2d91;
}
.graph__legend-item--light-purple:before {
  background-color: #ad96c8;
}
.graph__legend-item--dark-blue:before {
  background-color: #0073cf;
}
.graph__legend-item--turquoise:before {
  background-color: #66d2cc;
}
.graph__bar {
  display: flex;
  flex-direction: column-reverse;
  max-height: 5px;
  position: relative;
  margin-bottom: -1px;
}
.in-view .graph__bar {
  max-height: 2000px;
}
.graph__bar-title {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: -3.5rem;
  font-weight: 600;
  font-size: 2rem;
}
@media (max-width: 1023.5px) {
  .graph__bar-title {
    margin-bottom: -4vw;
    font-size: 2vw;
    font-weight: 400;
  }
}
.graph__bar-total {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: -3rem;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
  font-weight: 600;
}
.in-view .graph__bar-total {
  opacity: 1;
  transition: opacity 0.5s ease-in 1s;
}
.graph__bar--diff .graph__bar-total {
  margin-top: 0;
}
.graph__bar-segment {
  padding: 0 0.5rem;
  min-height: 0;
  min-width: 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 1023.5px) {
  .graph__bar-segment {
    min-width: unset;
    width: 6vw;
  }
  .graph__bars--2 .graph__bar-segment, .graph__bars--3 .graph__bar-segment {
    width: 13vw;
  }
  .graph__bars--4 .graph__bar-segment, .graph__bars--5 .graph__bar-segment {
    width: 10vw;
  }
  .graph__bars--6 .graph__bar-segment, .graph__bars--7 .graph__bar-segment {
    width: 8vw;
  }
}
.graph__bar-segment:last-of-type {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.graph__bar-segment--small .graph__bar-segment-value {
  position: absolute;
  right: 110%;
  background-color: #fff;
  z-index: 50;
  padding: 3px 5px;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.65);
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
}
@media (max-width: 639.5px) {
  .graph__bar-segment--small .graph__bar-segment-value {
    height: 6vw;
    min-width: unset;
    padding: 0 2vw;
  }
}
.graph__bar-segment--small .graph__bar-segment-value:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-width: 6px;
  margin-top: -6px;
}
.graph__bar-segment--small.graph__bar-segment .graph__bar-segment-value {
  background-color: #00bcee;
}
.graph__bar-segment--small.graph__bar-segment .graph__bar-segment-value:after {
  border-left-color: #00bcee;
}
.graph__bar-segment--small.graph__bar-segment--orange .graph__bar-segment-value {
  background-color: #f39200;
}
.graph__bar-segment--small.graph__bar-segment--orange .graph__bar-segment-value:after {
  border-left-color: #f39200;
}
.graph__bar-segment--small.graph__bar-segment--magenta .graph__bar-segment-value {
  background-color: #ff418c;
}
.graph__bar-segment--small.graph__bar-segment--magenta .graph__bar-segment-value:after {
  border-left-color: #ff418c;
}
.graph__bar-segment--small.graph__bar-segment--lightgrey .graph__bar-segment-value {
  background-color: #9c9c9e;
}
.graph__bar-segment--small.graph__bar-segment--lightgrey .graph__bar-segment-value:after {
  border-left-color: #9c9c9e;
}
.graph__bar-segment--small.graph__bar-segment--red .graph__bar-segment-value {
  background-color: #ee2e5d;
}
.graph__bar-segment--small.graph__bar-segment--red .graph__bar-segment-value:after {
  border-left-color: #ee2e5d;
}
.graph__bar-segment--small.graph__bar-segment--yellow .graph__bar-segment-value {
  background-color: #ffca00;
}
.graph__bar-segment--small.graph__bar-segment--yellow .graph__bar-segment-value:after {
  border-left-color: #ffca00;
}
.graph__bar-segment--small.graph__bar-segment--grey .graph__bar-segment-value {
  background-color: #3a3a3a;
}
.graph__bar-segment--small.graph__bar-segment--grey .graph__bar-segment-value:after {
  border-left-color: #3a3a3a;
}
.graph__bar-segment--small.graph__bar-segment--green .graph__bar-segment-value {
  background-color: #81c747;
}
.graph__bar-segment--small.graph__bar-segment--green .graph__bar-segment-value:after {
  border-left-color: #81c747;
}
.graph__bar-segment--small.graph__bar-segment--red .graph__bar-segment-value {
  background-color: #ee2e5d;
}
.graph__bar-segment--small.graph__bar-segment--red .graph__bar-segment-value:after {
  border-left-color: #ee2e5d;
}
.graph__bar-segment--small.graph__bar-segment--purple .graph__bar-segment-value {
  background-color: #5c2d91;
}
.graph__bar-segment--small.graph__bar-segment--purple .graph__bar-segment-value:after {
  border-left-color: #5c2d91;
}
.graph__bar-segment--small.graph__bar-segment--light-purple .graph__bar-segment-value {
  background-color: #ad96c8;
}
.graph__bar-segment--small.graph__bar-segment--light-purple .graph__bar-segment-value:after {
  border-left-color: #ad96c8;
}
.graph__bar-segment--small.graph__bar-segment--dark-blue .graph__bar-segment-value {
  background-color: #0073cf;
}
.graph__bar-segment--small.graph__bar-segment--dark-blue .graph__bar-segment-value:after {
  border-left-color: #0073cf;
}
.graph__bar-segment--small.graph__bar-segment--turquoise .graph__bar-segment-value {
  background-color: #66d2cc;
}
.graph__bar-segment--small.graph__bar-segment--turquoise .graph__bar-segment-value:after {
  border-left-color: #66d2cc;
}
.graph__bar-segment {
  background-color: #00bcee;
  background: linear-gradient(180deg, #00bcee 50%, #0073cf 100%);
}
.graph__bar--diff .graph__bar-segment {
  background: transparent;
  color: #00bcee;
}
.graph__bar-segment--orange {
  background-color: #f39200;
  background: linear-gradient(180deg, #f39200 50%, #da8300 100%);
}
.graph__bar--diff .graph__bar-segment--orange {
  background: transparent;
  color: #f39200;
}
.graph__bar-segment--magenta {
  background-color: #ff418c;
  background: linear-gradient(180deg, #ff418c 50%, #f40060 100%);
}
.graph__bar--diff .graph__bar-segment--magenta {
  background: transparent;
  color: #ff418c;
}
.graph__bar-segment--lightgrey {
  background-color: #9c9c9e;
  background: linear-gradient(180deg, #9c9c9e 50%, #8f8f91 100%);
}
.graph__bar--diff .graph__bar-segment--lightgrey {
  background: transparent;
  color: #9c9c9e;
}
.graph__bar-segment--red {
  background-color: #ee2e5d;
  background: linear-gradient(180deg, #ee2e5d 50%, #ec164b 100%);
}
.graph__bar--diff .graph__bar-segment--red {
  background: transparent;
  color: #ee2e5d;
}
.graph__bar-segment--yellow {
  background-color: #ffca00;
  background: linear-gradient(180deg, #ffca00 50%, #e6b600 100%);
}
.graph__bar--diff .graph__bar-segment--yellow {
  background: transparent;
  color: #ffca00;
}
.graph__bar-segment--grey {
  background-color: #3a3a3a;
  background: linear-gradient(180deg, #3a3a3a 50%, #2d2d2d 100%);
}
.graph__bar--diff .graph__bar-segment--grey {
  background: transparent;
  color: #3a3a3a;
}
.graph__bar-segment--green {
  background-color: #81c747;
  background: linear-gradient(180deg, #81c747 50%, #68a833 100%);
}
.graph__bar--diff .graph__bar-segment--green {
  background: transparent;
  color: #81c747;
}
.graph__bar-segment--red {
  background-color: #ee2e5d;
  background: linear-gradient(180deg, #ee2e5d 50%, #ec164b 100%);
}
.graph__bar--diff .graph__bar-segment--red {
  background: transparent;
  color: #ee2e5d;
}
.graph__bar-segment--purple {
  background-color: #5c2d91;
  background: linear-gradient(180deg, #5c2d91 50%, #50277e 100%);
}
.graph__bar--diff .graph__bar-segment--purple {
  background: transparent;
  color: #5c2d91;
}
.graph__bar-segment--light-purple {
  background-color: #ad96c8;
  background: linear-gradient(180deg, #ad96c8 50%, #a085bf 100%);
}
.graph__bar--diff .graph__bar-segment--light-purple {
  background: transparent;
  color: #ad96c8;
}
.graph__bar-segment--dark-blue {
  background-color: #0073cf;
  background: linear-gradient(180deg, #0073cf 50%, #0065b6 100%);
}
.graph__bar--diff .graph__bar-segment--dark-blue {
  background: transparent;
  color: #0073cf;
}
.graph__bar-segment--turquoise {
  background-color: #66d2cc;
  background: linear-gradient(180deg, #66d2cc 50%, #52ccc5 100%);
}
.graph__bar--diff .graph__bar-segment--turquoise {
  background: transparent;
  color: #66d2cc;
}
.graph__bar-segment-value {
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
@media (max-width: 1023.5px) {
  .graph__bar-segment-value {
    font-size: 2vw;
  }
}
.in-view .graph__bar-segment-value {
  opacity: 1;
  transition: opacity 0.5s ease-in 1.3s;
}
.graph__bar--bar {
  transition: all 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  margin: 0 2.5rem;
}
@media (max-width: 1023.5px) {
  .graph__bar--bar {
    margin: 0 2rem;
  }
}
@media (max-width: 639.5px) {
  .graph__bar--bar {
    margin: 0 auto;
  }
}
.graph__bar--bar:first-of-type {
  margin-left: 1rem;
}
.graph__bar--bar:last-of-type {
  margin-right: 1rem;
}
.in-view .graph__bar--bar:nth-child(3) {
  transition-delay: 0.1s;
}
.in-view .graph__bar--bar:nth-child(5) {
  transition-delay: 0.2s;
}
.in-view .graph__bar--bar:nth-child(7) {
  transition-delay: 0.3s;
}
.in-view .graph__bar--bar:nth-child(9) {
  transition-delay: 0.4s;
}
.graph__bar--diff {
  opacity: 0;
  margin: 0;
  max-width: 150px;
  transition: max-width 0.25s 0s, max-height 0.25s 0s, opacity 0.2s 0s;
  padding-top: 3rem;
  overflow: hidden;
}
.in-view .graph__bar--diff {
  opacity: 1;
  transition: max-width 0.2s 0s, max-height 0.25s 0s, opacity 0.2s 2.5s;
}
.graph__diff {
  font-weight: 600;
  position: absolute;
  color: black;
  color: #000;
  margin-left: 150px;
  left: 0;
}
.graph__diff--total {
  top: 0;
  margin-top: -3rem;
  width: 100%;
  text-align: center;
  margin-left: 137px;
}

/*# sourceMappingURL=graph.component.css.map */
