#language {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-inline-start: auto;
  margin-right: 15px;
  padding-left: 0;
  @media only screen and (min-width: 1200px) {
    margin-right: 0;
    padding-left: 30px;
  }
  @media only screen and (min-width: 1400px) {
    margin-right: 5px;
  }
  li {
    font-size: 16px;
    list-style: none;
    display: flex;
    position: relative;
    padding: 0 5px;
    color: var(--hf-white-100);
    font-size: 15px !important;
    &.active {
      a span {
        font-family: var(--main-font);
        font-weight: 600;
      }
     }
    a {
      color: var(--hf-white-100);
      font-size: 15px !important;
    }
    &:last-child {
      &::before {
        content: '|';
        position: relative;
        left: -5px;
        color: var(--hf-white-100);
       }
    }
  }
}

.lipidtech {
  #language {
    li {
      color: var(--hf-dark-800);
      a {
        color: var(--hf-dark-800);
      }
      &:last-child {
      &::before {
         color: var(--hf-dark-800);
       }
      }
    }
  }
}