:root {
  --cybergoals-white: #fffeff;
  --cybergoals-cream: #fff5ec;
  --cybergoals-text: #3a3735;
  --cybergoals-green: #5bd38c;
  --cybergoals-green-dark: #00843d;
  --cybergoals-forest-5: #003020;
  --cybergoals-green-deep: #00402a;
  --cybergoals-orange: #ff9c1a;
  --cybergoals-blue: #6bdaff;
  --cybergoals-blue-border: #39bdf2;
  --cybergoals-border: #d8cfc7;
}

#cybergoals {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px;
  box-sizing: border-box;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--cybergoals-border);
  border-radius: 15px;
  background: var(--cybergoals-white);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#cybergoals .cybergoals_heading,
#cybergoals .cybergoals_action,
#cybergoals .cybergoals_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cybergoals-text) !important;
}

#cybergoals,
#cybergoals * {
  box-sizing: border-box;
  font-family: "IberPangea" !important;
}

#cybergoals * {
  margin: 0;
  padding: 0;
}

#cybergoals h2,
#cybergoals h3,
#cybergoals h4,
#cybergoals p {
  font-weight: normal;
  font-style: normal;
}

#cybergoals > * {
  flex: 0 0 100%;
  width: 100%;
}

#cybergoals .cybergoals_heading {
  padding: 16px;
  border-radius: 15px;
  background: var(--cybergoals-cream);
  font-size: 16px;
  line-height: 20px;
  font-family: "IberPangeaText Bold" !important;
  font-feature-settings: 'liga' off, 'clig' off;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 6px;
}

#cybergoals .cybergoals_action,
#cybergoals .cybergoals_arrow {
  color: var(--cybergoals-forest-5) !important;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "IberPangeaText Bold" !important;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 20px;
}

#cybergoals .cybergoals_card {
  padding: 16px;
  border: 1px solid var(--cybergoals-orange);
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 16px;
}

#cybergoals .cybergoals_card_title {
  color: var(--cybergoals-green-deep) !important;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "IberPangeaText Bold" !important;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 20px;
  margin-bottom: 4px;
}

#cybergoals .cybergoals_card_text {
  color: var(--cybergoals-green-deep) !important;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 20px;
}

#cybergoals .cybergoals_action {
  flex-direction: column;
  flex-basis: calc((100% - 8px) / 2);
  width: calc((100% - 8px) / 2);
  margin-bottom: 6px;
  padding: 10px;
  background: var(--cybergoals-green);
  border-radius: 15px;
}

#cybergoals .cybergoals_action-2025 {
  margin-right: 8px;
}

#cybergoals .cybergoals_action_line {
  display: block;
}

#cybergoals .cybergoals_checks {
  padding: 8px;
  border: 1px solid #24b55d;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#cybergoals .cybergoals_check {
  width: 24px;
  height: 24px;
  display: block;
}

#cybergoals .cybergoals_arrow {
  flex-basis: calc(100% - 47px);
  width: calc(100% - 47px);
  margin-top: 22px;
  margin-right: 47px;
  margin-bottom: 18px;
  padding: 4px 40px 4px 16px;
  position: relative;
  background: var(--cybergoals-blue);
  border-radius: 14px 0 0 14px;
}

#cybergoals .cybergoals_arrow::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -47px;
  top: 50%;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 47px solid var(--cybergoals-blue);
  transform: translateY(-50%);
}

#cybergoals .cybergoals_goal {
  margin-top: 1px;
  padding: 16px;
  display: flex;
  align-items: center;
  border: 1px solid var(--cybergoals-blue-border);
  border-radius: 13px;
  color: var(--cybergoals-green-deep) !important;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "IberPangeaText" !important;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 20px;
}

@media (min-width: 700px) {
  #cybergoals .cybergoals_heading-drivers {
    order: 1;
    flex-basis: calc(35% - 4px);
    width: calc(35% - 4px);
    margin-right: 8px;
  }

  #cybergoals .cybergoals_heading-metrics {
    order: 2;
    flex-basis: calc(65% - 4px);
    width: calc(65% - 4px);
  }

  #cybergoals .cybergoals_card-driver {
    order: 3;
    flex-basis: calc(35% - 4px);
    width: calc(35% - 4px);
    margin-right: 8px;
  }

  #cybergoals .cybergoals_card-metrics {
    order: 4;
    flex-basis: calc(65% - 4px);
    width: calc(65% - 4px);
  }

  #cybergoals .cybergoals_action-2025 {
    order: 5;
  }

  #cybergoals .cybergoals_action-end {
    order: 6;
  }

  #cybergoals .cybergoals_checks {
    order: 7;
  }

  #cybergoals .cybergoals_arrow {
    order: 8;
  }

  #cybergoals .cybergoals_goal {
    order: 9;
    justify-content: center;
    text-align: center;
  }

}
