:root {
  --step-1: #17365D;
  --step-2: rgba(23, 54, 93, 0.6);
  --step-3: rgba(151, 128, 139, 0.6);
  --step-4: rgba(125, 54, 80, 0.6);
  --step-5: #7D3650;
  --blue: #17365D;
  --cell-padding: 18px;
  --cell-half-padding: 9px;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}

.hide-values .value-column:not(:nth-child(2)) .value {
  opacity: 0;
}

.container {
    max-width: 780px;
    padding: 0px;
}

.banner {
  position: relative;
}

.banner .abs-texts {
  position: absolute;
  color: #ffffff;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  text-align: center;
  padding: 7% 10%;
}

.banner .main-title {
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  margin-bottom: 90px;
}

.banner .sub-title {
  font-weight: normal;
  font-size: 12px;
  line-height: 21px;
  padding-top: 25px;
}

.banner .line {
  width: 30px;
  margin: 0 auto;
  border-top: 1.5px solid #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
}

.banner .cover-image {
  width: 100%;
  background-image: url(../images/cover-mobile.jpg);
  background-repeat: no-repeat;
  background-size: 100% 533.5px;
  min-height: 532px;
}

.banner .gradient-legend {
  display: flex;
  align-items: center;
}

.banner .gradient-legend .step {
  flex-grow: 1;
  height: 33px;
  text-align: center;
  font-weight: 300;
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  color: #ffffff;
  width: 25%;
  padding: 6px 10px;
}

.banner .gradient-legend .step:nth-child(1) {
  background-color: var(--step-1);
}

.banner .gradient-legend .step:nth-child(2) {
  background-color: var(--step-2);
}

.banner .gradient-legend .step:nth-child(3) {
  background-color: var(--step-3);
}

.banner .gradient-legend .step:nth-child(4) {
  background-color: var(--step-4);
}

.banner .gradient-legend .step:nth-child(5) {
  background-color: var(--step-5);
}

.show-values-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.show-values-text {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: var(--blue);
  margin-right: 10px;
  text-transform: uppercase;
}

.custom-control-input:checked~.custom-control-label::before,
.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: var(--blue);
    border-color: var(--blue);
}

.custom-control-input:checked~.custom-control-label::after {
    background-color: #ffffff;
}

.table-section {
  padding: 20px 15px;
}

.footer {
  padding: 30px 0px;
  text-align: center;
  background-color: var(--blue);
}