* {
  box-sizing: border-box;
}

.bar-chart {
  margin: 0 auto;
  max-width: 1300px;
  margin-left: 32px;
  position: relative;
}

.bar-chart h1 {
  text-align: center;
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
}

.bar-chart .row {
  position: relative;
  line-height: 1.25em;
  margin-bottom: 2em;
  height: 320px;
}

.bar-chart .row .segment {
  flex: 1 100%;
  display: flex;
  position: relative;
  align-content: center;
  align-self: flex-end;
}

.bar-chart .row .segment:after {
  content: "";
  display: block;
  width: 100%;
  bottom: 0;
  position: absolute;
  height: 1px;
  background-color: #414245;
  z-index: -1;
}

.bar-chart .label {
  display: block;
  font-size: 0.7em;
  text-align: center;
}

/* X Axis */
.bar-chart .x-axis {
  display: flex;
  padding: 0 2em 0 0.5em;
  height: 100%;
  margin-bottom: 3.5em;
  direction: ltr;
  padding-bottom: 14px;
  border-left: 3px solid #000000;
  border-bottom: 3px solid #000000;
}

.bar-chart .x-axis .year {
  flex: 1;
  position: relative;
}

.bar-chart .x-axis .year .col {
  display: flex;
  height: 100%;
  margin: 0 8%;
  position: relative;
}

.bar-chart .x-axis .year .col .bar {
  flex: 1;
  background-color: #00aba9;
  align-self: flex-end;
  position: relative;
  margin: 0;
  height: 0px;
  transition: height, 1s ease;
  transition-duration: 1s;
  border-radius: 0 50px 0 0;
}

.bar-chart .x-axis .year .col .bar[style*=height] {
  min-height: 2px;
}

.bar-chart .x-axis .year .col .bar.negative {
  align-self: flex-start;
  top: 100%;
}

.bar-chart .x-axis .label {
  padding: 0.5em 0.25em 0;
  border: 1px solid black;
  border-bottom: 2px solid black;
  border-top: 0px;
  top: 320px; /* 320 + 8*/
  position: absolute;
  line-height: 1.25em;
  width: 100%;
}

.bar-chart .x-axis .year:first-child .label {
  border-left: 2px solid black;
}

.bar-chart .x-axis .year:last-child .label {
  border-right: 2px solid black;
}

.bar-chart .x-axis .label span.bar_title, .bar-chart .x-axis .label a, .bar-chart .x-axis .m_label a {
  text-decoration: none;
  font-family: "Rubik", Sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #000000;
  min-height: 56px;
  display: block;
}

.bar-chart .x-axis .label a .name {
  display: none;
}

.bar-chart .x-axis .label .download_icons, .bar-chart .x-axis .m_label .download_icons {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.bar-chart .x-axis .label .download_icons a, .bar-chart .x-axis .m_label .download_icons a {
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 3px;
}

.bar-chart .x-axis .label .download_icons a.download, .bar-chart .x-axis .m_label .download_icons a.download {
  background-image: url(../images/download_icon.svg);
}

.bar-chart .x-axis .label .download_icons a.open, .bar-chart .x-axis .m_label .download_icons a.open {
  background-image: url(../images/see_icon.svg);
}

.bar-chart .x-axis .label .download_icons a.send, .bar-chart .x-axis .m_label .download_icons a.send {
  background-image: url(../images/send_icon.svg);
}

.bar-chart .x-axis .year .col .bar .tooltip,
.bar-chart .x-axis .year .col .bar .tooltip:after {
  display: block;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.bar-chart .x-axis .year .col .bar .tooltip {
  bottom: 0.5em;
  font-size: 0.75em;
  padding: 2px 5px;
  font-family: "Rubik", Sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-align: center;
}

/* Y Axis */
.bar-chart .y-axis {
  display: flex;
  height: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  width: 100%;
  padding: 0 1.5em 0 0.25em;
}

.bar-chart .y-axis .label {
  margin: auto auto auto -2.9em;
  width: 2.5em;
  font-family: "Rubik", Sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  padding-right: 0;
  padding-left: 0.5em;
}

.bar-chart .m_year {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.bar-chart .m_year .m_col {
  flex-basis: 40%;
  margin-right: 10px;
}

.bar-chart .m_year .m_col .m_bar {
  display: block;
  height: 60px;
  margin-left: auto;
  border-radius: 0 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-chart .m_year .m_col .m_bar .tooltip {
  display: block;
  bottom: 1em;
  padding: 2px 5px;
  font-family: "Rubik", Sans-serif;
  font-weight: bold;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-align: center;
  max-width: 60px;
  margin-left: auto;
}

.bar-chart .m_year .m_label {
  flex-basis: 60%;
  text-align: center;
}

.bar-chart .x-axis .m_label a {
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
}

.bar-chart .x-axis .m_label .download_icons {
  display: flex;
  justify-content: space-around;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .bar-chart {
    margin-left: 0px;
  }
  .bar-chart .row {
    height: auto;
    margin-bottom: 0;
  }
  .bar-chart .x-axis .year .col .bar .tooltip {
    font-size: 12px;
    line-height: 18px;
  }
  .bar-chart .x-axis .label a {
    font-size: 12px;
    line-height: 14px;
  }
  .bar-chart .x-axis {
    flex-direction: column;
    padding: 0;
    margin-bottom: 0;
    border-left: none;
    border-bottom: none;
  }
  .bar-chart .x-axis .label a, .bar-chart .x-axis .m_label a {
    min-height: auto;
    display: initial;
  }
}
.bar {
  -webkit-print-color-adjust: exact;
}

.download_icons a {
  -webkit-print-color-adjust: exact;
}

@media print {
  @page {
    size: A4 landscape;

  }
  .bar-chart .x-axis{
    padding: 0;
    direction: rtl;
  }
}
@media print {
  @page :footer {
      display: none
  }

  @page :header {
      display: none
  }
  .elementor-location-header{
    display: none;
  }
  .elementor-location-footer{
    display: none;
  }
}

.nrUl{
  color: rgb(37, 64, 143);
  font-family: "Arial", Sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  

 
}
.nrUl .ulTitle{
  margin-bottom: 10px;
  display: inline-block;
}

.nrUl li{
  color: rgb(37, 64, 143);
  font-family: "Arial", Sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 3px;
}