.woocommerce-cart {
	background-color: #f5f5f5;
}

.woocommerce-cart main {
	padding: 80px 0px;
}

.return-to-shop {
	display: none;
}

.woocommerce-cart main h1 {
	text-transform: uppercase;
}

.woocommerce-cart  .woocommerce {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
}

.woocommerce-cart  .woocommerce .woocommerce-notices-wrapper {
	flex: 0 0 100%;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form {
	flex: 0 0 60%;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table {
	border: none;
	border-collapse: collapse;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody {
	display: flex;
	flex-wrap: wrap;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.cart_item {
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	flex: 0 0 100%;
	padding: 40px;
	border-top: 1px solid #eaeaea;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.cart_item:first-child {
	border-top: 0;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td {
	background: none;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
}


.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-name {
	flex: 0 0 calc(70% - 24px);
	display: flex;
	align-items: center;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-name > a:first-child {
	margin-right: 15px;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-name > a img {
	width: 100px;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-name a {
	color:#111;
	font-weight: 500;
	font-family: var(--ff1);
	font-size: 16px;
}

.woocommerce-cart .plus, 
.woocommerce-cart .minus {
	background-color: var(--lightGrey);
	opacity: 1;
	font-weight: 500;
	z-index: 2;
	border: none;
	border-radius: 30px;
	color:#111 !important;
	width: 30px;
	height: 30px;
	padding: 0;
}

.woocommerce-cart .plus:hover,
.woocommerce-cart .minus:hover {
	background-color: #f0f0f0;
}

.woocommerce-cart .plus:focus, 
.woocommerce-cart .minus:focus {
	background-color: var(--lightGrey) !important;
}

.woocommerce-cart div.quantity input {
	height: 40px;
	max-width: 40px;
	padding: 0;
	border-radius: 0 !important;
	border: none !important;
	font-weight: 500;
	text-align: center;
	margin: 0;
}

.woocommerce-cart div.quantity input::-webkit-outer-spin-button,
.woocommerce-cart div.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-cart div.quantity input[type=number] {
  -moz-appearance: textfield;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-quantity {
	flex: 0 0 25%;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-subtotal {
	flex: 0 0 29%;
	flex-wrap: wrap;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-subtotal .subtotal-wrap > span.amount {
	font-size: 18px;	
	font-weight: 500;
	color:#111;
	display: block;
	flex: 0 0 100%;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-remove {
	flex: 0 0 24px;
}

.woocommerce a.remove:hover {
	background: none;
}

.woocommerce a.remove img {
	max-width: 24px;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions {
	flex: 0 0 100%;
	margin-top: 40px;
	position: relative;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon {
	flex: 0 0 calc(70% - 15px);
	float: none;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .counpon-title {
	background-color: #fff;
	border-radius: 0px;
	font-size: 15px;
	height: 40px;
	display: inline-flex;
	margin-left: 0;
	margin-right: auto;
	align-items: center;
	padding: 5px 25px;
	font-weight: 500;
	color:#111;
	cursor: pointer;
	position: relative;
	z-index: 1;
	justify-content: center;
	white-space: nowrap;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .counpon-title img {
	max-width: 16px;
	margin-left: 10px;
	transition: 0.4s;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .coupon-wrap {
	position: absolute;
	background-color: #fff;
	border-radius: 0px;
	display: flex;
	height: 40px;
	padding-left: 20px;
	width: calc(100% - 50px);
	top: 0px;
	right: 0;
	opacity: 0;
	transform: translateX(-20px);
	transition: 0.4s;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon.active .counpon-title {
	width: 40px;
	overflow: hidden;
	padding: 0;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .counpon-title {
	border: 2px solid #111;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon.active .counpon-title span {
	display: none;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon.active .counpon-title img {
	margin: 0;
	transform: rotate(-180deg);
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon.active .coupon-wrap {
	opacity: 1;
	transform: translateX(0);
	transition: 0.4s;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .coupon-wrap input {
	flex: 0 0 calc(100% - 120px);
	border: none;
	font-size: 14px;
	font-weight: 500;
	color:#111;
	background: #fff;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .coupon-wrap input::placeholder {
	color:#111;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon .coupon-wrap button.button {
	background-color:#111;
	border-radius: 0px;
	display: block;
	color: #fff;
	flex: 0 0 120px;
	font-size: 14px;
	font-weight: 500;
}

.woocommerce ul#shipping_method li {
	font-size: 14px;
}

#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination, .woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination, .woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination {
	text-align: right;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .button[name="update_cart"] {
	background-color: #111;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	background-size: 200%;
	font-weight: 500;
	text-align: center;
	border-radius: 30px;
	padding: 0px 20px;
	transition: all 0.5s ease 0s;
	margin: 0px !important;
	height: 40px;
	animation: movebg 1s linear infinite;
	flex: 0 0 30%;
	display: none !important;
}

.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .button[name="update_cart"]:disabled {
	animation: none;
}

@keyframes movebg {
   from {
	  background-position: 200%;
   }
   to { 
	background-position: 0%;
   }
}

.woocommerce-cart .cart-collaterals, 
.woocommerce-cart .cart-collaterals {
	flex: 0 0 calc(40% - 20px);
	background-color: #fff;
	padding: 30px;
}

.woocommerce .cart-collaterals .cart_totals, 
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

.woocommerce-cart .cart-collaterals h2 {
	margin-top: 0;
	text-transform: uppercase;
	font-size: 24px;
	color:#111;
}

.woocommerce-cart .cart-collaterals .shop_table {
	border-collapse: collapse !important;
	border: none;
}

.woocommerce-cart .cart-collaterals .shop_table td,
.woocommerce-cart .cart-collaterals .shop_table th {
	border-color: #eaeaea;
	background: none;
	padding: 10px 0;
}

.woocommerce-cart .cart-collaterals .shop_table th {
	color:#111;
	font-size: 12px;
}

.woocommerce-cart .cart-collaterals .shop_table td {
	text-align: right;
	font-weight: 500;
	font-size: 16px;
}

.woocommerce-cart .cart-collaterals .shop_table tr.shipping td {
	font-size: 12px;
}

.woocommerce-cart .cart-collaterals .shop_table tr.shipping td ul {
	font-size: 16px;
}

.woocommerce-cart .cart-collaterals .shop_table td a:after {
	display: none;
}

.woocommerce-cart .cart-collaterals .shop_table td a {
	color:#111;
	text-decoration: underline;
}

.woocommerce-cart .cart-collaterals .shop_table tr.order-total td strong {
	font-size: 22px;
	display: block;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.button {
	margin-bottom: 0;
	background-color: #111;
	color: #fff !important;
	font-size: 20px;
	height: 60px;
	line-height: 60px;
	text-transform: uppercase;
	background-size: 200%;
	font-weight: 500;
	text-align: center;
	border-radius: 0px;
	padding: 0px 20px;
	transition: all 0.5s ease 0s;
}

.woocommerce-cart .wc-proceed-to-checkout a.button:hover {
	background-color: #111;
}

.select2-container .select2-selection--single {
	height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
	font-size: 14px;
	font-weight: 500;
	color:#111;
	padding-left: 20px;
	padding-right: 20px;
}

.select2-container--default .select2-selection--single {
	border: 1px solid#111;
	border-radius: 0px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
	width: 16px;
	height: 16px;
	background: url(https://www.galleriapierodellafrancesca.com/wp-content/themes/galleria-piero-della-francesca-child/icons/global/select.svg);
	background-size: contain;
	background-position: center;
	opacity: 1;
	margin: 0;
	position: relative;
	top: 0;
	display: block;
}

.woocommerce form .form-row .input-text, 
.woocommerce-page form .form-row .input-text {
	border-radius: 0px;
	border-color:#111;
	font-size: 14px;
	font-weight: 500;
	color:#111;
}

.woocommerce form .form-row .input-text::placeholder, 
.woocommerce-page form .form-row .input-text::placeholder {
	color:#111;
}

.shipping-calculator-form button[name="calc_shipping"] {
	border-radius: 0px;
	margin-top: 15px;
	background:#111;
	color: #fff;
}

.woocommerce-message {
	position: fixed;
	top: calc(100% - 100px);
	width: auto;
	max-width: 800px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 !important;
	z-index: 15;
	padding: 20px;
	border: none;
	border-radius: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	font-weight: 500;
	text-align: center;
	color: #111;
	justify-content: center;
	transition: 0.3s opacity, 0.4s transform;
}

.woocommerce-remove-coupon {
	display: none;
}

.woocommerce-message:before {
	content: '';
	display: none;
}

.woocommerce-notices-wrapper .woocommerce-message a.button {
	border-radius: 0px !important;
	margin-left: 20px !important;
	background-color: #111;
	color: #fff !important;
	font-weight: 500;
	font-size: 16px;
}

.woocommerce-message.hide-msg {
	opacity: 0;
	transform: translateY(50px) translateX(-50%);
}

.shipping-message {
	display: flex !important;
	background-color: #111;
	color: #fff;
	padding: 15px;
	margin-bottom: 20px;
	font-weight: 500;
	text-align: center;
	justify-content: space-between;
	align-items: center;
	background-size: 200%;
}

.shipping-message a {
	background: #fff;
	color: #111;
	font-size: 12px;
	text-transform: uppercase;
	background-size: 200%;
	font-weight: 500;
	text-align: center;
	border-radius: 30px;
	padding: 0px 20px;
	transition: all 0.5s ease 0s;
	margin: 0px !important;
	height: 30px;
	text-decoration: none !important;
	line-height: 30px;
}

.shipping-message strong {
	color: #fff
}

.shipping-message .text.get {
	flex: 0 0 100%;
	font-weight: 500;
	font-size: 14px;
}

.shipping-message .text.get:before {
	content: '';
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	background: url(https://www.galleriapierodellafrancesca.com/wp-content/themes/galleria-piero-della-francesca-child/icons/global/check-bianco.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
}

.shipping-subtext span {
	font-weight: 400;
	font-style: italic;
	font-size: 13px;
	line-height: 1.2;
}

@media screen and (max-width: 767px) {
	.shipping-subtext span {
		font-size: 15px;
	}
	
	
}

@media screen and (max-width: 1024px) {
	
	.shipping-message .text {
		text-align: left;
	}
	
	.shipping-message .text.get {
		text-align: center;
	}
	
	.shipping-message a {
		flex: 0 0 40%;
	}
	
}

@media screen and (max-width: 768px) {
	
	.woocommerce-cart main {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	.woocommerce table.shop_table_responsive tr td::before, 
	.woocommerce-page table.shop_table_responsive tr td::before {
		display: none;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form {
		flex: 0 0 100%;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-quantity,
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-subtotal {
		flex: 0 0 50%;
		margin-top: 20px;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-name {
		flex: 0 0 100%;
		text-align: left;
	}	
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-name a {
		text-align: left;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-subtotal {
		justify-content: flex-end;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr td.product-remove {
		margin-top: 20px;
		justify-content: flex-end;
		flex: 0 0 100%;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.tr-actions .coupon {
		flex: 0 0 100%;
		margin-bottom: 20px;
	}
	
	.woocommerce-cart .cart-collaterals, 
	.woocommerce-cart .cart-collaterals {
		flex: 0 0 100%;
	}
	
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td, 
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
		background: none;
		border: none;
	}
	
	.woocommerce .cart-collaterals .cart_totals,
	.woocommerce-page .cart-collaterals .cart_totals {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 3;
		background-color: #fff;
		border-top: 1px solid #eaeaea;
		padding: 20px;
	}
	
	.woocommerce .cart-collaterals .cart_totals h2,
	.woocommerce-page .cart-collaterals .cart_totals h2,
	.woocommerce-page .cart-collaterals .cart_totals tr:not(.order-total){
		display: none;
	}
	
	.woocommerce-cart .cart-collaterals .cart_totals tr td {
		border: none;
		padding: 0;
		text-align: center !important;
		display: flex;
		justify-content: center;
	}
	
	.woocommerce-cart .cart-collaterals .cart_totals table {
		margin-bottom: 0;
	}
	
	.woocommerce-cart .cart-collaterals .cart_totals tr td .includes_tax {
		margin-left: 10px;
	}
	
	.woocommerce-cart .cart-collaterals, .woocommerce-cart .cart-collaterals {
		padding: 0;
	}
	
	.woocommerce-cart .wc-proceed-to-checkout a.button {
		font-size: 18px;
		line-height: 50px;
		height: 50px;
	}
	
	.woocommerce-cart  .woocommerce .woocommerce-cart-form table tbody tr.cart_item {
		padding: 20px;
	}
	
	html .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-left], 
	html.iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right] {
		bottom: 130px !important;
	}
	
	.shipping-message {
		flex-wrap: wrap;
	}
	
	.shipping-message .text {
		text-align: center;
	}
	
	.shipping-message a {
		flex: 0 0 1;
		white-space: nowrap;
		margin: 10px auto 0 !important;
	}
	
	.woocommerce-cart .woocommerce .woocommerce-cart-form table tbody tr td.product-subtotal {
		justify-content: flex-start;
	}
	
	.woocommerce-page table.shop_table_responsive tbody tr.shipping th {
		display: block;
		border: none;
		padding: 0;
		width: auto;
		margin-left: 5px;
		font-weight: 500;
		order: 2;
	}
	
	.woocommerce-page table.shop_table_responsive tbody tr.shipping th:before {
		content: '(';
	}
	
	.woocommerce-page table.shop_table_responsive tbody tr.shipping th:after {
		content: ')';
	}
	
	.woocommerce-page .cart-collaterals .cart_totals tr.shipping {
		display: flex;
		justify-content: center;
	}
	
	.woocommerce-page .cart-collaterals .cart_totals tr.shipping p.woocommerce-shipping-destination {
		display: none;
	}
	
	.woocommerce-page .cart-collaterals .cart_totals tr.shipping .woocommerce-shipping-calculator {
		display: none;
	}
	
	tr.cart-discount {
		display: block !important;
		margin-bottom: 10px
	}
	
	tr.cart-discount td {
		display: block !important;
	}
	
	tr.cart-discount:before {
		content: 'Codice promozionale' !important;
		display: block !important;
		font-weight: 600 !important;
		font-size: 14px !important;
		text-align: center;
	}
	
	tr.cart-discount .amount {
		margin-left: 5px;
	}
}


	
	