:root {
  --main-one: #28baa7;
  --main-two: #0a9482;
  --header-bg: #07212a;

  --green: #28baa7;
  --green2: #28baa7;

  --red: #e54c67;

  --blue: #007bff;
  --orange: #ec5840;
  --ok-yellow: #017033;
}
.featured {
  background-color: var(--ok-yellow);
  color: rgb(0, 0, 0);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  line-height: normal;
  position: relative;
  font-weight: 600;
  display: inline-block;
  margin-left: 3px !important;
}
.featured::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  left: -3px;
  top: 2px;
  border-style: solid;
  border-width: 6px 6px 6px 0px;
  border-color: transparent var(--ok-yellow) transparent transparent;
}
