/** Shopify CDN: Minification failed

Line 100:0 Unexpected "}"

**/
.shipping-carriers-section {
  width: 100%;
}

.shipping-carriers-wrapper {
  text-align: center;
}

.shipping-carriers-heading {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.shipping-carriers-subheading {
  font-size: 1.5rem;
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

.shipping-carriers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipping-carriers-item {
  flex: 0 1 200px;
}

.shipping-carriers-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}

.shipping-carriers-card:hover {
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.shipping-carriers-logo {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.shipping-carriers-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}

@media screen and (max-width: 749px) {
  .shipping-carriers-heading {
    font-size: 1.8rem;
  }

  .shipping-carriers-subheading {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
  }

  .shipping-carriers-item {
    flex: 0 1 140px;
  }

  .shipping-carriers-card {
    height: 100px;
    padding: 0.75rem 1rem;
  }

  .shipping-carriers-logo {
    max-height: 65px;
  }
}
}