/* 購物車全域樣式 */
.center-vertically {
  padding-top: 40px;
}
button {
  width: 150px;
  background-color: black;
  color: white;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
input[type="text"] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 10px;
}
input[type="password"] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 10px;
}
input[type="email"] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 10px;
}
input[type="tel"] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 10px;
}
/* 數量按鈕 */
.st_quantity_div {
  display: flex;
  width: 200px !important;
}
.st_quantity_btn {
  display: block;
  width: 60px !important;
  height: 30px;
  border: 1px solid black;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}
.plus {
  width: 30px !important;
  height: 30px;
  border: 1px solid black;
  text-align: center;
  background-color: black;
  color: aliceblue;
  font-weight: bolder;
  font-size: 20px;
  padding-top: 0px;
  cursor: pointer;
}
.milus {
  width: 30px !important;
  height: 30px;
  border: 1px solid black;
  text-align: center;
  background-color: black;
  color: aliceblue;
  font-weight: bolder;
  font-size: 20px;
  cursor: pointer;
}
/* 隱藏數字輸入欄位箭頭 */
/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
