/**
* @description Iterates over the $space-gap values and creates a class for each one.
* @param {list} $space-gap - A list of space gap values.
*/
.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.tab-carousels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.25rem;
  padding: 0 15px;
}
@media (max-width: 768.98px) {
  .tab-carousels .products-carousel {
    padding: 0;
  }
}
.tab-carousels.margins-enabled {
  margin-top: 4rem;
}
.tab-carousels__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.tab-carousels__tabs-tab {
  border-bottom: 2px solid #d9d9d9;
  color: #e4002b;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0.8125rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 769px) {
  .tab-carousels__tabs-tab {
    font-size: 1.5rem;
    padding: 0 1.5rem;
  }
}
.tab-carousels__tabs-tab:hover {
  border-color: #e4002b;
}
.tab-carousels__tabs-tab.disabled {
  border-color: #d9d9d9;
  color: #d9d9d9;
}
.tab-carousels__tabs-tab.active {
  border-bottom: 4px solid #e4002b;
  color: #4d4c53;
}
.tab-carousels__content {
  margin-top: 1.5rem;
}
.tab-carousels__content .einstein-carousel-title {
  display: none;
}

/*# sourceMappingURL=tabCarousels.css.map*/