.logo-strip-v2-item {
  position: relative;
}
.logo-strip-v2-item figure {
  width: 100%;
  max-width: 100px !important;
  max-height: 50px;
  margin: auto;
}
.logo-strip-v2-item figure img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.logo-strip-v2-item-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  width: fit-content;
  display: flex;
  column-gap: 1px !important;
  align-items: center;
}
@media (max-width: 777px) {
  .logo-strip-v2-item-text {
    white-space: pre;
  }
}
.logo-strip-v2-item-text span {
  font-size: 12px;
  font-weight: bold;
  align-items: center;
  background-color: var(--light-blue);
  width: fit-content;
  border-radius: 100px;
  padding: 3px 8px;
  height: 20px;
  line-height: 1.2;
}
.logo-strip-v2-item-text .gb-shape {
  opacity: 0%;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 777px) {
  .logo-strip-v2-item-text .gb-shape {
    display: none;
  }
}
.logo-strip-v2-item.has-onclick-link {
  cursor: pointer;
}
.logo-strip-v2-item.has-onclick-link:hover .logo-strip-v2-item-text span.gb-shape {
  opacity: 100%;
}