.c-help-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2%;
  border-radius: 5px;
  width: fit-content;
  background-color: var(--color-hover-yellow);

  display: flex;

  img {
    width: 35px;
    margin-right: 1em;
  }

  p {
    font-size: 15px;
    line-height: 24px;
    color: var(--color-dark);
  }

  a {
    font-size: 15px;
    line-height: 24px;
    color: var(--color-dark);
    text-decoration: underline;
  }

  a:hover {
    color: inherit;
  }
}

.c-bold {
  font-weight: bold;
}

.c-link--destroy {
  display: flex;
  color: var(--color-red);
  font-size: 14px;

  &:hover {
    color: var(--color-red);
    text-decoration: none;
    font-weight: bold;
  }

  img {
    filter: invert(42%) sepia(36%) saturate(1989%) hue-rotate(327deg) brightness(82%) contrast(76%);
  }
}

.c-xs-hidden {
  @media (max-width: 768px) {
    display: none
  }
}

.c-fwn {
  font-weight: normal;
}

.c-font-size-l {
  font-size: 24px !important;
}

.c-bold {
  font-weight: bold !important;
}

.c-text-center {
  text-align: center;
}

.c-even {
  background: #f9f9f9;
}

.c-odd {
  background: var(--color-white);
}

.c-mb3 {
  margin-bottom: 3em !important;
}

.c-mb2 {
  margin-bottom: 2em !important;
}

.c-mb1 {
  margin-bottom: 1em !important;
}

.c-pb1 {
  padding-bottom: 1em !important;
}

.c-mt1 {
  margin-top: 1em !important;
}

.c-mt2 {
  margin-top: 2em;
}

.c-mt05 {
  margin-top: 0.5em !important;
}

.c-ml1 {
  margin-left: 1em !important;
}

.c-ml05 {
  margin-left: 0.5em !important;
}

.c-color-box {
  border-radius: 4px;
  display: flex;
  align-items: center;
  height: 42px;
  width: 42px;
  margin-top: 13px;
  padding: 0 5px;
}

.c-width-fit-content {
  width: fit-content !important;
}

.c-flex {
  display: flex;
}

.c-horizontal-fields {
  display: flex; align-items: center;
}

.c-horizontal-fields > * {
  margin-right: 0.5em;
}

.c-back {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

a.c-back__link {
  color: var(--color-dark);
  font-size: 15px;
}

a.c-back__link:hover {
  font-weight: bold;
  color: var(--color-dark);
  text-decoration: none;
}

a.c-back__link > * {
  margin-right: 1em;
}

.c-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 80em;

  .c-list-header {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0.75em;
  }

  .c-list-footer {
    margin-top: 2em;
  }

  .c-list-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.75em;
    padding-top: 0.75em;
    border-bottom: 0.063em solid #afb4ba;

    @media (min-width: 30em) {
      flex-direction: row;
      align-items: center;
    }
  }

  .c-list-item > * {
    margin-bottom: 0.5em;

    @media (min-width: 30em) {
      margin-bottom: 0;
    }
  }

  .c-list-item--even {
    background: #f9f9f9;
  }

  .c-list-item-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: #333333;

    a.c-list-item-link--primary {
      color: #333333;
      font-size: 18px;
      line-height: 28px;
      margin-right: 0.75em;
      margin-bottom: 0.2em;
    }

    a.c-list-item-link--secondary {
      color: #333333;
      font-size: 12px;
      line-height: 28px;
      margin-right: 0.75em;
      text-decoration: underline;

      &:hover {
        font-weight: normal;
        text-decoration: none;
      }
    }
  }

  .c-list-item-actions > * {
    margin-right: 0.5em;
    margin-top: 0.25em;

    @media (min-width: 30em) {
      margin-right: 1.25em;
    }
  }
}

a.c-action-icon {
  display: flex;
  align-items: center;
  height: 42px;
  border-radius: 5px;
  border: 1px solid var(--color-purple);
  margin-top: 13px;
  padding: 0 5px;
  background: var(--color-purple);

  & > img {
    width: 25px;
    height: 25px;
    filter: invert(100%) sepia(7%) saturate(1392%) hue-rotate(294deg) brightness(116%) contrast(79%);
  }

  &:hover {
    background: var(--color-white);
  }

  &:hover > img {
    filter: invert(22%) sepia(13%) saturate(2299%) hue-rotate(242deg) brightness(93%) contrast(90%);
  }
}

.c-action {
  border-radius: 20px;
  padding: 6px 7px;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;

  @media (min-width: 30em) {
    padding: 10px 12px;
    line-height: 1.428571429;
  }

  & > img {
    margin-top: -1px;
    margin-right: 0px;
    filter: invert(100%) sepia(7%) saturate(1392%) hue-rotate(294deg) brightness(116%) contrast(79%);

    @media (min-width: 30em) {
      margin-right: 4px;
    }
  }

  &:hover > img {
    filter: invert(22%) sepia(13%) saturate(2299%) hue-rotate(242deg) brightness(93%) contrast(90%);
  }

  &:hover {
    text-decoration: none;
  }

  .c-action__name {
    display: none;

    @media (min-width: 30em) {
      display: inline-block;
    }
  }
}

.c-action--default-btn {
  color: var(--color-white) !important;
  background-color: var(--color-purple);
  border: 1px solid var(--color-purple);
  border-radius: 4px;

  &:hover {
    color: var(--color-purple) !important;
    border: 1px solid var(--color-purple);
    background: var(--color-white);
  }
}

.c-action--notice-btn {
  color: var(--color-black) !important;
  background-color: silver;
  border: 1px solid silver;
  border-radius: 4px;
  font-weight: bold;

  &:hover {
    color: var(--color-black) !important;
    border: 1px solid #a9a9a9;
    background: #a9a9a9;
  }
}

.c-action--default {
  color: var(--color-purple) !important;
  background-color: var(--color-white);
  border: 1px solid var(--color-purple);

  &:hover {
    color: var(--color-white) !important;
    border: 1px solid var(--color-white);
    background: var(--color-purple);
  }

  & > img {
    filter: invert(22%) sepia(13%) saturate(2299%) hue-rotate(242deg) brightness(93%) contrast(90%);
  }

  &:hover > img {
    filter: invert(100%) sepia(7%) saturate(1392%) hue-rotate(294deg) brightness(116%) contrast(79%);
  }
}

.c-action--danger {
  color: var(--color-white) !important;
  background-color: var(--color-red);

  &:hover {
    color: var(--color-red) !important;
    border: 1px solid var(--color-red);
    background: var(--color-white);
  }
}

.c-status {
  appearance: none;
  border: 0;
  border-radius: 20px;
  padding: 5px 10px;
  display: inline-block;
  font-size: 11px;
  margin-right: 0.5em;

  @media (min-width: 30em) {
    font-size: 12px;
  }
}

.c-status--default {
  background: var(--color-purple);
  color: var(--color-white);
}

.c-status--success {
  background: #1bc47d;
  color: var(--color-white);
}

.c-status--warning {
  background: #f0ad4e;;
  color: var(--color-white);
}

