.tag {
  display: inline-flex;
  align-items: center;
  height: 21px;
  padding: 0 9px;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

a.tag:hover,
a.tag:focus-visible {
  color: #fff;
  text-decoration: none;
}

.tag.product-category {
  color: var(--tag-accent, var(--red-main));
  border: 1px solid var(--tag-accent, var(--red-main));
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 52%, #e8e8e8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 1px 1px rgba(0,0,0,.04);
}

a.tag.product-category:hover,
a.tag.product-category:focus-visible {
  color: var(--tag-accent, var(--red-main));
  border-color: var(--tag-accent, var(--red-main));
  background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
  text-decoration: none;
  outline: none;
}

/* =========================
   TAGS EMPRESAS
========================= */

.tag.company.real-estate {
  background:
    linear-gradient(
      to bottom,
      #b10000 0%,
      #940000 45%,
      #760000 100%
    );

  border: 1px solid #5f0000;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.tag.company.industries {
  background:
    linear-gradient(
      to bottom,
      #0171a0 0%,
      #015377 45%,
      #01354d 100%
    );

  border: 1px solid #01283a;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.tag.company.investments {
  background:
    linear-gradient(
      to bottom,
      #00784a 0%,
      #005B36 45%,
      #00361f 100%
    );

  border: 1px solid #002515;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.tag.company.logistics {
  background:
    linear-gradient(
      to bottom,
      #e26b18 0%,
      #C65000 45%,
      #8c3700 100%
    );

  border: 1px solid #6e2b00;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

.tag.company.institutional {
  background:
    linear-gradient(
      to bottom,
      #737373 0%,
      #555555 45%,
      #383838 100%
    );

  border: 1px solid #292929;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

/* =========================
   TAGS TIPOS
========================= */

.tag.type.investment {
  background:
    linear-gradient(
      to bottom,
      #3f8c56 0%,
      #24653a 100%
    );

  border: 1px solid #184728;
}

.tag.type.announcement {
  background:
    linear-gradient(
      to bottom,
      #8b96a3 0%,
      #5e6873 100%
    );

  border: 1px solid #4b545d;
}

.tag.type.job {
  background:
    linear-gradient(
      to bottom,
      #3d3d3d 0%,
      #111111 100%
    );

  border: 1px solid #000000;
}

.tag.type.opportunity {
  background:
    linear-gradient(
      to bottom,
      #c49631 0%,
      #8d6414 100%
    );

  border: 1px solid #6d4b09;
}

.custom-select {
  position: relative;
  width: 145px;
}

.custom-select-button {
  width: 100%;
  height: 28px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  background: rgba(255,255,255,.08);
  color: #f3f3f3;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.12);
  transition: background .18s ease, border-color .18s ease;
}

.select-arrow {
  min-height: 17px;
  margin-left: 10px;
  padding-left: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid currentColor;
  font-size: 0;
  line-height: 1;
  opacity: .45;
}

.select-arrow::before {
  content: "›";
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  transform: rotate(90deg);
}

.custom-select-button:hover,
.custom-select-button:focus-visible,
.custom-select.open .custom-select-button {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.14);
  outline: none;
}

.custom-select-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(#ffffff, #f7f7f7);
  border: 1px solid #c8c8c8;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 9px 18px rgba(0,0,0,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1px);
  overflow: hidden;
  z-index: 50;
  transition: opacity .16s ease, visibility .16s ease;
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  visibility: visible;
}

.custom-select.open .custom-select-button {
  border-radius: 5px 5px 0 0;
}

.custom-select-menu button {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #e4e4e4;
  background: transparent;
  color: #555;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus-visible,
.custom-select-menu button[aria-selected="true"] {
  color: #940000;
  background: #f0f0f0;
  outline: none;
}

.custom-select-menu button:last-child {
  border-bottom: none;
}
