body.woocommerce-cart {
  overflow-x: clip;
}

.cart-content {
  padding-top: 20px;
  padding-bottom: 40px;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media only screen and (min-width: 992px) {
  .cart-content {
    padding-top: 10px;
    padding-bottom: 60px;
    margin-top: 60px;
    margin-bottom: 150px;
  }
}

.cart-process {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .cart-process {
    margin-bottom: 40px;
  }
}

.cart-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}
@media only screen and (min-width: 992px) {
  .cart-process__steps {
    gap: 20px;
  }
}

.cart-process__step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 992px) {
  .cart-process__step {
    gap: 20px;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
  }
}
.cart-process__step:not(:last-child)::after {
  font-family: "JTC Icons", sans-serif;
  content: "\f10f";
  font-size: 10px;
  color: rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-weight: normal;
}
@media only screen and (min-width: 992px) {
  .cart-process__step:not(:last-child)::after {
    font-size: 14px;
  }
}
.cart-process__step--active {
  color: black;
}

.cart-process__step--active .cart-process__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-process__step--active .cart-process__label::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F8AE43;
}
@media only screen and (min-width: 992px) {
  .cart-process__step--active .cart-process__label::after {
    width: 100px;
    height: 6px;
  }
}

.cart-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}
@media only screen and (min-width: 1200px) {
  .cart-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

.cart-main {
  flex: 1 1 0;
  min-width: 0;
}

.cart-header {
  display: none;
}
@media only screen and (min-width: 992px) {
  .cart-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px 0 20px;
    margin-bottom: 10px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: black;
  }
}

.cart-header__product {
  flex: 1;
}

.cart-header__price {
  width: 120px;
}

.cart-header__quantity {
  width: 95px;
  text-align: center;
}

.cart-header__subtotal {
  width: 140px;
  text-align: right;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 20px 20px 20px 30px;
  gap: 6px 10px;
}
@media only screen and (min-width: 992px) {
  .cart-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding: 30px 30px 30px 20px;
  }
}

.cart-item__remove {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: black;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  position: absolute;
  left: 12px;
  top: 22px;
}
@media only screen and (min-width: 992px) {
  .cart-item__remove {
    position: static;
    font-size: 30px;
    line-height: 1;
    align-self: center;
  }
}
.cart-item__remove:hover {
  color: rgba(0, 0, 0, 0.6);
}

.cart-item__image {
  flex-shrink: 0;
  grid-column: 2;
  grid-row: 1;
}
@media only screen and (min-width: 992px) {
  .cart-item__image {
    grid-column: auto;
    grid-row: auto;
  }
}
.cart-item__image a {
  display: block;
}
.cart-item__image img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px 0 10px 0;
}
@media only screen and (min-width: 992px) {
  .cart-item__image img {
    width: 150px;
    height: 120px;
    border-radius: 30px 0 30px 0;
  }
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}
@media only screen and (min-width: 992px) {
  .cart-item__info {
    flex: 1;
    gap: 12px;
  }
}

.cart-item__name {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: black;
  text-decoration: none;
}
@media only screen and (min-width: 992px) {
  .cart-item__name {
    font-size: 20px;
    line-height: 24px;
  }
}
.cart-item__name:hover {
  text-decoration: underline;
}

.cart-item__variation {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: black;
}
@media only screen and (min-width: 992px) {
  .cart-item__variation {
    font-size: 20px;
    line-height: 24px;
  }
}

.cart-item__sku {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: black;
}
@media only screen and (min-width: 992px) {
  .cart-item__sku {
    font-size: 14px;
    line-height: 16px;
  }
}

.cart-item__price {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: black;
  grid-column: 1;
  grid-row: 2;
}
@media only screen and (min-width: 992px) {
  .cart-item__price {
    grid-column: auto;
    grid-row: auto;
    width: 120px;
    flex-shrink: 0;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.52px;
  }
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  grid-column: 1;
  grid-row: 3;
}
@media only screen and (min-width: 992px) {
  .cart-item__quantity {
    grid-column: auto;
    grid-row: auto;
    width: 95px;
    flex-shrink: 0;
    justify-content: center;
  }
}
.cart-item__quantity .quantity {
  display: inline-flex;
  align-items: stretch;
}
.cart-item__quantity input.qty {
  width: 36px !important;
  height: 30px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: black;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
  padding: 0;
  -moz-appearance: textfield;
}
.cart-item__quantity input.qty::-webkit-inner-spin-button, .cart-item__quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
@media only screen and (min-width: 992px) {
  .cart-item__quantity input.qty {
    width: 50px !important;
    height: auto;
    padding: 7px 12px;
    font-size: 20px;
    line-height: 24px;
    border-radius: 4px;
  }
}
.cart-item__quantity .cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  border: 0;
  padding: 5px;
  cursor: pointer;
  font-size: 14px;
  color: black;
  transition: all 0.25s ease-out;
  height: unset !important;
}
.cart-item__quantity .cart-qty-btn--minus {
  border-radius: 4px 0 0 4px;
}
.cart-item__quantity .cart-qty-btn--plus {
  border-radius: 0 4px 4px 0;
}
@media only screen and (min-width: 992px) {
  .cart-item__quantity .cart-qty-btn {
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-size: 16px;
  }
}
.cart-item__quantity .cart-qty-btn:hover {
  opacity: 0.7;
}
.cart-item__quantity .cart-qty-btn svg {
  width: 12px;
  height: 12px;
}
@media only screen and (min-width: 992px) {
  .cart-item__quantity .cart-qty-btn svg {
    width: 16px;
    height: 16px;
  }
}

.cart-item__subtotal {
  text-align: right;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: black;
  grid-column: 2;
  grid-row: 2/4;
  align-self: end;
}
@media only screen and (min-width: 992px) {
  .cart-item__subtotal {
    grid-column: auto;
    grid-row: auto;
    align-self: center;
    width: 140px;
    flex-shrink: 0;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.52px;
  }
}
.cart-item__subtotal small {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .cart-item__subtotal small {
    font-size: 14px;
    line-height: 16px;
    margin-top: 12px;
  }
}
.cart-item__subtotal small .woocommerce-Price-amount {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
}
@media only screen and (min-width: 992px) {
  .cart-actions {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 40px;
  }
}

.cart-actions__continue {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .cart-actions__continue {
    width: auto;
  }
}

.cart-actions__update {
  display: none;
}
@media only screen and (min-width: 992px) {
  .cart-actions__update {
    display: flex;
  }
}

.cart-sidebar {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .cart-sidebar {
    width: 420px;
    flex-shrink: 0;
  }
}

.cart-sidebar__inner {
  background-color: #EEEEEE;
  border-radius: 0;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .cart-sidebar__inner {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 40px 30px;
  }
}

.cart-sidebar__checkout {
  width: 100%;
  text-align: center;
}

.cart-totals__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: black;
  text-transform: none;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .cart-totals__heading {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
  }
}
.cart-totals__heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F8AE43;
}
@media only screen and (min-width: 992px) {
  .cart-totals__heading::after {
    width: 100px;
    height: 6px;
  }
}

.cart-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid black;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: black;
}
@media only screen and (min-width: 992px) {
  .cart-totals__row {
    font-size: 20px;
    line-height: 24px;
  }
}
.cart-totals__row:last-child {
  border-bottom: 0;
}

.cart-totals__label {
  font-weight: 400;
}

.cart-totals__value {
  font-weight: 700;
  font-size: 16px;
  text-align: right;
}
@media only screen and (min-width: 992px) {
  .cart-totals__value {
    font-size: 18px;
  }
}

.cart-totals__row--total .cart-totals__label {
  font-weight: 700;
}

.cart-coupon__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.24px;
  color: black;
  text-transform: none;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .cart-coupon__heading {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
  }
}
.cart-coupon__heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F8AE43;
}
@media only screen and (min-width: 992px) {
  .cart-coupon__heading::after {
    width: 100px;
    height: 6px;
  }
}

.cart-coupon__form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.cart-coupon__input {
  flex: 1;
  padding: 7px 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: inset 2px 2px 5px 0 #d9d9d9;
}
@media only screen and (min-width: 992px) {
  .cart-coupon__input {
    font-size: 20px;
    line-height: 24px;
  }
}
.cart-coupon__input:focus {
  outline: none;
  border-color: #F8AE43;
  box-shadow: inset 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty__message {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: black;
  margin: 0 0 30px;
}

body.woocommerce-cart .woocommerce-notices-wrapper {
  margin-bottom: 20px;
  display: none;
}
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info {
  padding: 12px 20px;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  list-style: none;
  margin: 0 0 10px;
}
@media only screen and (min-width: 992px) {
  body.woocommerce-cart .woocommerce-message,
  body.woocommerce-cart .woocommerce-error,
  body.woocommerce-cart .woocommerce-info {
    font-size: 18px;
  }
}
body.woocommerce-cart .woocommerce-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
body.woocommerce-cart .woocommerce-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
body.woocommerce-cart .woocommerce-error li {
  list-style: none;
}

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