.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);
}

.path-news .item-list .item::after {
  margin-top: -10px;
}
/* .path-news .listing-date {
  margin-bottom: 3px !important;
} */
.news-detail-page .item-list .item::after {
  margin-top: -15px;
}

.path-news .tags.item-list {
  margin-bottom: 0;
}

.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;
}


/* microsite */

/*Tags animation*/

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

.item:not(:nth-of-type(-n+3)) {
  display: none;
}
.item-list.tags.items-loaded .item:not(:nth-of-type(-n+3)) {
  display: flex;
}

.item-list.tags:not(.items-loaded) {
  background: linear-gradient(90deg,#e4e6eb 25%,#f0f2f5 37%,#e4e6eb 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}

.item-list.tags > * {
  opacity: 0;
}

.item-list.items-loaded > * {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
/** Tags animation ends here **/
