.winn-logos-tabs {
  font-family: "Fixel", Sans-serif;
  color: #474747;
}

.winn-logos-tabs__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.winn-logos-tabs__tab {
  border: 1px solid #DDD;
  background: transparent;
  color: #474747;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.winn-logos-tabs__tab:hover {
  color: #474747;
  border-color: #474747;
}

.winn-logos-tabs__tab.is-active {
  color: #474747;
  border-color: #BF3131;
}
/* 
.winn-logos-tabs__tab[data-grouped="yes"] {
  position: relative;
  padding-right: 34px;
}

.winn-logos-tabs__tab[data-grouped="yes"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #BF3131;
  transform: translateY(-50%);
  opacity: .36;
}

.winn-logos-tabs__tab[data-grouped="yes"].is-active::after {
  opacity: 1;
} */

.winn-logos-tabs__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.winn-logos-tabs__grid.is-hidden,
.winn-logos-tabs__groups.is-hidden,
.winn-logos-tabs__group.is-hidden,
.winn-logos-tabs__cell.is-hidden {
  display: none;
}

.winn-logos-tabs__cell {
  position: relative;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.winn-logos-tabs__cell::before,
.winn-logos-tabs__cell::after {
  content: "";
  position: absolute;
  background: #DDD;
  pointer-events: none;
}

.winn-logos-tabs__cell::before {
  height: 1.315px;
  left: 18px;
  right: 18px;
  bottom: 0;
}

.winn-logos-tabs__cell::after {
  width: 1.315px;
  top: 18px;
  bottom: 18px;
  right: 0;
}

.winn-logos-tabs__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.winn-logos-tabs__logo img {
  max-width: var(--wlt-logo-max-width, 62%);
  max-height: var(--wlt-logo-max-height, 56%);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.winn-logos-tabs__groups {
  width: 100%;
}

.winn-logos-tabs__group {
  width: 100%;
}

.winn-logos-tabs__group + .winn-logos-tabs__group {
  margin-top: 58px;
}

.winn-logos-tabs__group-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 34px 0 36px;
}

.winn-logos-tabs__vendor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.winn-logos-tabs__vendor-logo img {
  width: auto;
  max-width: var(--wlt-vendor-logo-width, 170px);
  max-height: 96px;
  height: auto;
  object-fit: contain;
  display: block;
}

.winn-logos-tabs__group-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: #191919;
}

.winn-logos-tabs__more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.winn-logos-tabs__btn {
  border: 1px solid #BF3131;
  background: transparent;
  color: #BF3131;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: .2s ease;
}

.winn-logos-tabs__btn:hover {
  background: #BF3131;
  color: #fff;
}

.winn-logos-tabs__btn.is-hidden {
  display: none;
}

@media (max-width: 1024px) {
  .elementor-widget-winn_logos_tabs,
  .winn-logos-tabs {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .winn-logos-tabs__tabs {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .winn-logos-tabs__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .winn-logos-tabs__tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .winn-logos-tabs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .winn-logos-tabs__cell {
    height: 150px;
  }
}

@media (max-width: 640px) {
  .winn-logos-tabs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .winn-logos-tabs__cell {
    height: 140px;
  }

  .winn-logos-tabs__group-head {
    margin: 28px 0 26px;
  }

  .winn-logos-tabs__group-title {
    font-size: 18px;
  }

  .winn-logos-tabs__vendor-logo img {
    max-width: min(var(--wlt-vendor-logo-width, 170px), 70vw);
    max-height: 74px;
  }
}

@media (max-width: 380px) {
  .winn-logos-tabs__grid {
    grid-template-columns: 1fr;
  }

  .winn-logos-tabs__cell::after {
    display: none;
  }
}