.sales-list-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 1rem;
}
.sales-list-categories svg {
  height: 1.4rem;
}
.sales-list-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #efefef;
  text-decoration: none;
  padding: 1rem 0rem;
}
.sales-list-categories a:hover {
  font-weight: bold;
}
.sales-list-categories a:hover svg {
  fill: var(--secondary);
}
.sales-list-categories li:first-of-type a {
  border-top: none;
}

.cart {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}
@media (min-width: 1024px) {
  .cart {
    left: 30rem;
  }
}
.cart__footer {
  color: white;
  display: flex;
  background: var(--secondary);
  border-top: 1px solid var(--secondary-alt);
  height: 5.5rem;
}
.cart__footer button,
.cart__footer a {
  flex: 1;
  color: white;
  text-align: center;
  font-size: 1.8rem;
  line-height: 5rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.1s all;
}
.cart__footer button {
  border: none;
  background: var(--secondary);
}
.cart__footer button:hover {
  background: #7bb8b8;
}
.cart__footer a {
  display: block;
  background: var(--secondary-alt);
  text-decoration: none;
}
.cart__footer a svg {
  position: relative;
  transition: 0.2s all;
  left: 0;
}
.cart__footer a:hover {
  color: black;
  background: var(--primary);
}
.cart__footer a:hover svg {
  left: 1rem;
}
.cart__items {
  height: 0;
  overflow-y: scroll;
  background: var(--secondary);
  transition: 0.1s ease-in;
}
.cart__item {
  color: white;
  display: flex;
  justify-content: space-between;
}
.cart__item p,
.cart__item a {
  border: 1px solid var(--secondary-alt);
  border-top: 0;
}
.cart__item p {
  flex: 1;
  padding: 1rem 1.5rem;
  margin: 0;
  display: flex;
  line-height: 1;
  align-items: center;
}
@media (min-width: 1024px) {
  .cart__item p {
    padding: 1.5rem 3rem;
  }
}
.cart__item p em {
  font-style: normal;
}
.cart__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  border-left: none;
  border-right: none;
  color: white;
}
.cart__item a:hover {
  background: var(--secondary-alt);
  color: white;
}
.cart__item-quantity {
  min-width: 6rem;
  padding-right: 2rem;
}
.cart__item-quantity svg {
  height: 1.2rem;
}
.cart__item-quantity small {
  font-size: 1.8rem;
  margin-right: 0.5rem;
}
.cart.active .cart__items {
  height: 100vh;
  height: -webkit-fill-available;
  padding-top: 6.5rem;
}
@media (min-width: 1024px) {
  .cart.active .cart__items {
    padding-top: 0;
    height: calc(100vh - 5rem);
  }
}
.cart.active .cart__footer button svg {
  transform: rotate(180deg);
}
