.orders-container {
  display: flex;
  flex-direction: column;
  gap: 36px;

  font-family: var(--font-secundary);
}

.list-orders {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.list-orders .item-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  padding: 8px 14px;
  background: #fff;
  box-shadow: 0 10px 36px rgba(0, 0, 0, .2)
}

.list-orders .item-order>div {
  width: 100%;
  max-width: 150px;
}

.item-order .title {
  font-size: 14px;
  margin-bottom: 12px;
}

.item-order .value {
  display: flex;
  flex-direction: column;
}

.item-order .value .duome-price-card {
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;

  text-align: left;

  border: none;
  background: transparent;
}

.item-order .value .duome-price-card .price-label {
  color: #000;
  font-weight: normal;
}

.item-order .value .duome-price-container {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.item-order .value .duome-price-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.item-order .value .duome-price-pix {
  padding: 0;
  background: transparent;
  text-align: left;
}

.item-order .value .duome-price-pix .price-value {
  color: var(--green-store);
}

.item-order .value .duome-price-pix .price-label {
  display: none;
}

.item-order .value>strong,
.item-order .value .duome-price-card .price-value {
  font-size: 12px;
  font-weight: normal;
}

.item-order .value>span {
  font-size: 14px;
}

.item-order .action {
  text-align: center;
}

.item-order .action a {
  text-decoration: none;
  text-wrap: nowrap;
  color: #000;
}

.footer-order {
  margin-bottom: 124px;
}

.footer-gap-24 {
  gap: 24px;
}

.footer-order .total-order {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 14px;
  font-weight: normal;
  color: #000;
}

.total-order .total-value {
  font-size: 28px;
  font-weight: bold;
  color: var(--green-store);
}

.button--order {
  padding: 4px 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: auto;
  height: 36px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 6px;
  background: var(--green-store);
  color: #fff;
}

.button--order.disabled {
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed;
}

.form-custom-quantity .quantity input[type=number] {
  max-width: 128px;
  padding: 6px;
}