.cart-tab {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 250px;
  margin: 1rem 1.5rem;
  background-color: #f3f4f5;
  border-radius: 12px;
  color: #000;
  gap:10px;
  
}
.cart-tab-item {
  flex: 0 0 33%;
  max-width: 33%;
  text-align: stretch;
  position: relative;
  color: currentColor;
  list-style: none;
}
.cart-tab-link {
  background-color: transparent;
  border: solid 2px transparent;
  border-radius: 12px;
  padding: 10px 1rem;
  flex: 1;
  display: flex !important;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.cart-tab-link:is(:hover, :focus, :active, .active) {
  background-color: #e5e7e9;
  color: currentColor;
  text-decoration: none;
}
.cart-tab-link[aria-selected=true] {
  border-color: #888888;
  background-color: #fff;
  color: #000;
}
.cart-tab .f-13 {
  font-size: 0.8rem;
}
.cart-tab .font-sizepr {
  font-size: 1.3rem;
  font-weight: 600;
}