.cart-container{
    width: 80%;
    min-height: 50vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.product-container{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  margin: 2rem auto;
  padding-bottom: 2rem;
}

.product{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-data{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin: 2rem auto;
    padding-bottom: 2rem;
    gap: 50px;
}

.modify-product-quantity{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  border-radius: 5px;
  border: 1px solid black;
  width: 20px;
  height: 20px;
}

.price-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.extra-options{
  margin-top: 1rem;
  display: flex;
  justify-content: left;
  width: 62%;
}

.payment-info{
    font-size: 24px;
    width: 40%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border: 2px solid #63A8D4;
    border-radius: 5px;
    padding: 10px;
}

.shipping-options{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shipping-options *{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 23%;
}

.payment-info-text{
  display: flex;
  justify-content: space-between;
}

.cart-img-container{
    width: 20%;
}

.input-postal-code{
    width: 30%;
    height: 28px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: 2.5rem;
}

.product-text{
    font-size: 24px;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: left;
}

.product-info{
    font-size: 24px;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: left;
}

.product-quantity{
    position: relative;
    font-size: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price{
    font-size: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#button-payment-process{
    width: 80%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: auto;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: var(--paymentButton);
}

.empty-cart{
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 30px;
}

#postal-code-msg{
  font-size: 18px;
}

.error-msg-stock{
    font-size: 14px;
    color: red;
    position: absolute;
    top: 80%;
    min-width: 120px;
}

.button-quantity{
    background-color: white;
    border: none;
    padding: 0px 6px 8px 6px !important;
  }

#shipping-cost{
    padding-left: 2rem;
}

@media screen and (max-width: 1300px) {
    .payment-info{
        font-size: 20px;
    }

    #button-payment-process{
        width: 80%;
        height: 40px;
        margin: auto auto;
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .product{
        display: flex;
        flex-direction: column;
        margin: auto auto;
    }

    .product-data{
        flex-direction: column;
        gap: 0px;
    }

    .price-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 35px;
    }

    .cart-container{
        width: 80%;
        min-height: 50vh;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .cart-img-container{
        width: 100%;
    }

    .product-info{
        max-width: 100%;
    }

    .payment-info{
        width: 80%;
        font-size: 20px;
        margin: auto auto;
        gap: 10px;
    }



    #button-payment-process{
        width: 80%;
        height: 40px;
        margin: auto auto;
        font-size: 18px;
    }
    .shipping-options *{
      width: 85%;
      }
}
    