body {
  overflow-x: hidden;
}

.breadcrumbs ul {
  margin: 20px 0;
}

#cart-container .cart {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  display: flex;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991.98px) {
  #cart-container .cart {
    display: block;
    padding: 0;
    padding-bottom: 0;
  }
}
#cart-container .cart__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 5px 10px;
  margin: 0px 0 25px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #cart-container .cart__title {
    margin: 0px 0 25px;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    flex-flow: row wrap;
    align-items: baseline;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 991.98px) {
  #cart-container .cart__title {
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-1-color);
  }
}
#cart-container .cart .items-wrapper {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 992px) {
  #cart-container .cart .items-wrapper {
    padding: 0 0 3rem 0;
  }
}
#cart-container .cart-details {
  position: relative;
  width: 380px;
  min-width: 200px;
  margin: 28px 0 0 0;
  border-radius: 0;
  margin-left: auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 991.98px) {
  #cart-container .cart-details {
    width: 100%;
  }
}
#cart-container .cart-details__inner {
  background: #F4F4F4;
  padding: 40px 45px 40px;
  position: sticky;
  top: 213px;
}
#cart-container .cart-details .checkout-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 2rem;
}
#cart-container .cart-details__title {
  margin: 0px 0 25px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 991.98px) {
  #cart-container .cart-details__title {
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  #cart-container .cart-details__title {
    margin: 0px 0 25px;
    font-weight: 600;
    text-align: left;
  }
}
#cart-container .cart-details > div > div {
  border-top: 1px solid rgba(185, 185, 185, 0.5);
}
#cart-container .cart-details .total-wrapper,
#cart-container .cart-details .sub-total-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 15px 0;
}
#cart-container .cart-details .total-wrapper p, #cart-container .cart-details .total-wrapper span,
#cart-container .cart-details .sub-total-wrapper p,
#cart-container .cart-details .sub-total-wrapper span {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0px;
  box-sizing: inherit;
  display: block;
}
#cart-container .cart-details .total-wrapper p,
#cart-container .cart-details .sub-total-wrapper p {
  font-weight: 600;
}
#cart-container .cart-details .total-wrapper p a,
#cart-container .cart-details .sub-total-wrapper p a {
  display: block;
}

.cart-no-items {
  text-align: center;
}
.cart-no-items__title {
  margin: 30px 0 30px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cart-no-items__title {
    margin: 30px 0 30px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
  }
}
.cart-no-items a {
  margin: 0 auto;
  display: block;
}
.cart-no-items .back-link {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
  margin-top: 1rem;
}
