
.cart td {
  padding: 12px 0px 12px 15px !important;
}
.cart tr td:last-child {
  padding: 12px 15px !important;
}
.cart tr td.ps-0 {
padding-left: 0px !important;
}

.cart th {
/*background-color: #f1f1f1;*/
font-weight: 500;
font-size: 1rem;
padding: 12px 0px 12px 15px !important;
}
.modal-dialog-slideout {min-height: 100%; margin: 0 0 0 auto;/*background: #fff;*/}
.modal.fade .modal-dialog.modal-dialog-slideout {-webkit-transform: translate(100%,0)scale(1);transform: translate(100%,0)scale(1);}
.modal.fade.show .modal-dialog.modal-dialog-slideout {-webkit-transform: translate(0,0);transform: translate(0,0);display: flex;align-items: stretch;-webkit-box-align: stretch;height: 100%;}
#cart_modal .modal-fullscreen {
  max-width: 750px;
}
#cart_modal {
  cursor: url('../images/close.png') 15 15, default;
}
#cart_modal .modal-dialog {
  cursor: default;
}

#cart_modal .quantity .qty, #cart_modal .quantity .plus, #cart_modal .quantity .minus,
#cart_page .quantity .qty, #cart_page .quantity .plus, #cart_page .quantity .minus {
  font-size: 0.875rem;
  width: 26px;
  height: 36px;
}
#cart_modal .quantity .qty, #cart_page .quantity .qty {
  width: 36px;
}
#cart_modal .cart-product-price, #cart_modal .cart-product-subtotal,
#cart_page .cart-product-price, #cart_page .cart-product-subtotal {
  font-weight: 500;
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.25;
}


.single-product .product-image,
.single-product .product-image img { height: auto; }

.single-product .product-title h2 {
	font-size: 1.75rem;
	margin-bottom: 8px;
}

.single-product .product-price {
	font-size: 1.5rem;
	color: #ffd333;
	margin-bottom: 0;
}


.single-product .product-desc .line { margin: 20px 0; }




.cart .remove {
	font-size: 0.875rem;
	color: #FF0000;
}

.cart .remove:hover { color: #000; }

.cart th {
	padding: 12px 15px !important;
	color: #555;
}

.cart td {
	padding: 12px 15px !important;
	vertical-align: middle !important;
	border-color: #E5E5E5 !important;
}

.cart-product-thumbnail a {
	display: block;
	width: 68px;
}

.cart-product-thumbnail img {
	display: block;
	width: 64px;
	height: 64px;
	border: 2px solid #EEE;
}

.cart-product-thumbnail img:hover { border-color: #ffd333; }

.cart-product-name a,
.product-name a {
	font-size: 1rem;
	color: #333;
}

.cart-product-name a:hover,
.product-name a:hover { color: #666; }


.cart-product-quantity,
.cart-product-subtotal { text-align: center !important; }

.cart-product-quantity .quantity {
	margin: 0;
}


.quantity {
	display: -ms-inline-flexbox;
	display: inline-flex;
	justify-content: center;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

.quantity .qty {
	width: 50px;
	height: 40px;
	line-height: 40px;
	border: 0;
	border-left: 1px solid #DDD;
	border-right: 1px solid #DDD;
	background-color: #EEE;
	text-align: center;
	margin-bottom: 0;
}

.quantity .plus,
.quantity .minus {
	display: block;
	cursor: pointer;
	border: 0px transparent;
	padding: 0;
	width: 36px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #EEE;
	font-size: 1rem;
	font-weight: bold;
	transition: background-color .2s linear;
	-webkit-transition: background-color .2s linear;
	-o-transition: background-color .2s linear;
}

.quantity .plus:hover,
.quantity .minus:hover { background-color: #DDD; }

.quantity .qty:focus,
.quantity .plus:focus,
.quantity .minus:focus {
	box-shadow: none !important;
	outline: 0 !important;
}

.cart-product-price, .cart-product-subtotal {
  min-width: 105px !important;
}

@media (max-width: 767.98px) {

	.cart:not(.cart-totals) thead th {
		display: none;
	}

	.cart:not(.cart-totals) tbody td {
		display: block;
		width: 100%;
		border: 0;
		padding: 0 !important;
		text-align: center;
	}

	.cart:not(.cart-totals) .cart_item {
		display: block;
		position: relative;
		border: 1px solid #EEE;
		margin-bottom: 1.5rem;
		padding: 1.5rem;
	}

	.cart:not(.cart-totals) .cart_item .cart-product-remove {
		display: block;
		position: absolute;
		top: 1.25rem;
		left: auto;
		right: 1.25rem;
		width: 1.25rem;
		height: 1.25rem;
	}

	.cart:not(.cart-totals) .cart-product-thumbnail,
	.cart:not(.cart-totals) .cart-product-name,
	.cart:not(.cart-totals) .cart-product-quantity {
		margin-bottom: 1rem;
	}

	.cart:not(.cart-totals) .cart_item .cart-product-thumbnail a {
		display: inline-block;
	}

	.cart:not(.cart-totals) .cart_item .cart-product-price {
		display: none;
	}

	.cart:not(.cart-totals) .cart_item .cart-product-name a {
		font-size: 1rem;
	}

	.cart:not(.cart-totals) .cart_item .cart-product-subtotal {
		font-size: 1.25rem;
		/*color: #1ABC9C;*/
	}

	.quantity .qty {
		width: 42px;
	}

	.quantity .qty,
	.quantity .plus,
	.quantity .minus {
		font-size: 0.875rem;
  }


  #cart_modal {
    background-color: #fff;
  }

  .qty {
	padding-top: 0px;
  }

}

.quantity input {
	border-radius: 0px;
	vertical-align: middle !important;
	
}

