.annual-report-header{
  margin-bottom: 40px;
}

.annual-report-header .title{
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  text-align: center;
  letter-spacing: 0.015em;
  color: #191919;
  margin-bottom: 0px;
  width: 100%;
}

.annual-report-header .subtitle{
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #666666;
  margin-top: 0px;
  width: 100%;
}

.annual-report-container{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* Componennt spacing */
.annual-report {
  margin-bottom: 4rem;
  flex:40%;
  margin: 30px;
  display: inline-block;
}

/* Bar height */
.annual-report .animation-grid .surplus-bar,
.annual-report .animation-grid .old-bar {
  display: block;
  height: 8px;
}

.annual-report .animation-grid {
  display: grid;
  grid-template-columns: fit-content(7ch) 1rem auto 1.5rem 7rem;
  grid-auto-rows: .625rem 20px;
}

/* New data for animation: surplus-bar of current year / surplus result */
.annual-report .animation-grid .surplus-bar-wrap {
  grid-column: 3/4;
  grid-row: 1;
  overflow: hidden;
}

.annual-report .animation-grid .old-bar-wrap {
  grid-column: 3/4;
  grid-row: 3;
  overflow: hidden;
}

.annual-report .animation-grid .surplus-bar-wrap {
  grid-column: 3/11;
}
.annual-report.years-comparison .animation-grid .surplus-bar-wrap {
  align-self: center;
}

.annual-report .animation-grid .surplus-bar {
  background: #0072EF;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 3s;
}
.annual-report .animation-grid .new-label {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #32373E;
}
.annual-report .surplus-result {
  color: #32373E;
  font-size: 2rem;
  font-weight: 700;
}
.annual-report .surplus-result .surplus-percentage {
  opacity: 0;
  transition: opacity 2s;
}

.annual-report .surplus-result .surplus-percentage{
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: flex-end;
  text-align: right;
  letter-spacing: 0.01em;
  color: #32373E;
  float: right;
  padding-left: 4px;
}

.annual-report .surplus-result .surplus-percentage.unit{
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 31px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.005em;
  color: #32373E;
}

.annual-report .surplus-result .surplus-text {
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.01em;
  color: #32373E;
  float: left;
  clear: both;
}
.annual-report .surplus-result {
  opacity: 1;
}

.annual-report .animation-grid .old-bar {
  background: #99D6FF;
  width: 0; /* this value is calculated by JS */
  transform: translateX(-100%);
  transition: transform 3s;
}
.annual-report .animation-grid .old-bar-wrap {
  grid-column: 3/11;
}
.annual-report.years-comparison .animation-grid .old-bar {
  align-self: center;
}

.annual-report .animation-grid .old-label {
  align-self: center;
  grid-column: 1/2;
  -ms-grid-column: 1/2;
  grid-row: 3;
  -ms-grid-row: 3;
  margin-bottom: -1px;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: flex-end;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #32373E;
}

.annual-report .bg-report-name {
    font-size: 2rem;
    font-weight: 700;
    color: #282a2c;
    margin-bottom: 36px;
    display: block;
    overflow: hidden;
}

.annual-report.years-comparison .animation-grid .old-bar,
.annual-report.years-comparison .animation-grid .surplus-bar-wrap {
  grid-column: 3/10;
}

.annual-report .surplus-number {
  margin-top: 20px;
  color: #32373E;
  transition: opacity 2s;
  opacity: 0;
}

.annual-report .surplus-number .report-value {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #32373E;
}

.annual-report .surplus-number .report-volume {
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #32373E;
  margin-left: 4px;
}

.annual-report .surplus-number .report-currency {
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #32373E;
  padding-left: 4px;
}

.annual-report.years-comparison p.revenue {
  text-align: right;
  color: #32373E;
  transition: opacity 2s;
  opacity: 0;
  line-height: 1;
}

.annual-report.years-comparison .years-comparison-title {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.25;
  color: #282a2c;
}

/* responsive Breakpoint Values S, M */
@media only screen and (max-width: 768px) {
  .annual-report-container{
    display: block;
  }

  .annual-report {
    display: block;
    margin-bottom: 50px;
  }
}
