.item-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* display: inline-block */
  margin-bottom: 12px;
}

.item-list .item::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 10px;
  background-color: var(--border-color-4);
}

.item.extra-tag-item:has(+ .show-more-tag):after,
.item:not(.extra-tag-item):has(+ .extra-tag-item.hidden-tag-item):after {
  margin-right: 0px;
  background: transparent;
}

.item-list .item:last-child:after {
  display: none;
}

.item-list .item,
.item-list .item a {
  color: var(--black);
  font-family: var(--primary-font);
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  /* display: inline; */
}

.item-list .item a:hover {
  color: var(--primary-color);
}

.item-list .item:first-child {
  font-weight: 700;
}

.item-list .item:not(:first-child) {
  color: var(--black-2);
}

.item-list.no-highlight .item:first-child {
  font-weight: 400;
}

.item-label {
  color: var(--black);
  font-family: var(--primary-font);
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 10px;
}

.tags.item-list {
  margin-bottom: 15px;
  row-gap: 5px;
}

.tags.item-list .item {
  color: var(--black-1);
  font-family: var(--primary-font);
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.show-more-tag {
  cursor: pointer;
  color: var(--primary-color);
}

.show-more-tag::before {
  /* content: '...'; */
  color: var(--primary-color);
  margin-right: 0.5em;
}

.show-more-tag .more-less-text {
  text-decoration: underline;
  color: var(--primary-color);
  font-size: 0.75rem;
}

.show-more-tag:hover .more-less-text {
  text-decoration: none;
}

.view-member-profile-detail-page .item-list .item,
.item-list .item a {
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
}

.view-member-profile-detail-page .item-list .item.listing-type {
  font-size: 13px !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
}
.view-member-profile-detail-page .item-list .item {
  font-size: 12px !important;
  text-transform: capitalize !important;
  color: var(--black-1) !important;
}

.listing-with-portrait-img .listing-content-block {
  width: 100%;
}

/* .user-logged-in .type.item-list {
  width: calc(100% - 30px);
} */

.user-logged-in span.td-meta-item::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 10px;
  background-color: var(--border-color-4);
}

.user-logged-in span.td-meta-item:last-child::after {
  content: none;
  display: none;
}

/* .user-logged-in .item-list {
  display: inline-block
} */

/* microsite */

.microsite-homepage .item-list {
  overflow-y: auto;
  height: 100vh;
}
