.cart-item {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	width: calc(100% - 1.4em);
	border: 1px solid #ccc;
	padding: 10px;
	margin-bottom: 10px;
	background-color: rgb(255, 246, 233);
}

.tbl-cart{
	background-color: rgb(255, 246, 233);
}
  
.cart-item-top {
	display: flex;
	align-items: center;
}
  
.cart-item-image {
	width: 5.5em;
	margin-right: 1em;
}
  
.cart-item-title {
	font-weight: bold;
}

.cart-item-title a{
	text-decoration: none!important;
}
  
.cart-item-bottom {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
  
.quantity-buttons {
	margin-right: 10px;
}

.cartItemField_box {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: auto;
}
  
.cartItemField_box span {
	margin-right: 5px;
}
  
.cart-item-field {
	width: auto;
	text-align: center;
}

.unitPrice{
	color: #857257;
	margin-right: 1em;
	display: flex;
	align-items: center;
}

.totalPrice{
	color: #73542D;
	margin-right: 1em;
	display: flex;
	align-items: center;
	font-weight: 600;
}

.totalPriceBox{
	width: 100%;
	position: relative;
	margin: 0 auto;
	margin-top: 2em;
	font-size: 1em;
	text-align: center;
}

.totalPriceBox span{
	font-weight: 600;
}

.TPBActive{
	text-align: right;
	right: 30px;
	font-size: 1.5em;
}

@media screen and (max-width: 1000px){
	.TPBActive{
		text-align: center;
		right: 0px;
	}
}

/*----------------------------------------*/

.number-input-container {
	display: flex;
	align-items: center;
  }
  
  .arrow-button {
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .arrow-button button {
	appearance: none;
	background-color: transparent;
	border: none;
	color: #73542D;
	cursor: pointer;
	font-size: 18px;
	padding: 0;
  }
  
  .number-input {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
	background-color: transparent;
	border: none;
	height: 1em;
	width: 3.5em;
	padding: 1em;
	font-size: 1em;
	box-sizing: border-box;
	color: #73542D;
	font-family: Helvetica, "Helvetica Neue", Arial, "sans-serif"!important;
	font-weight: 600;
  }
  
  .number-input:focus {
	/* Add focus styles as per your preference */
	outline: none;
	/* Add other focus styles as per your preference */
  }
  
  