.tps_productAddToCart,
.tps_productAddToCartWithGlamar {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
	margin-bottom: 20px;
}

.tps_productAddToCart_price {
	text-align: center;
	padding-bottom: 20px;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 1.3px;
}

.tps_productAddToCart_buttonBox {
	align-items: center;
	justify-content: flex-end;
	display: flex;
	width: 100%;
	flex-direction: column-reverse;
}

.tps_productAddToCart_button {
	width: 100%;
	-webkit-appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	background: #000;
	border: none;
	color: #fff;
	text-align: center;
	font-size: 15px;
	white-space: nowrap;
	border-radius: 0;
	text-transform: uppercase;
	cursor: pointer;
	height: 50px;
	font-family: tps_font, sans-serif;
}

.tps_productAddToCart_button:hover {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)
}

.tps_buttonLoaderHidden {
	display: none;
}

.tps_buttonLoader {
	border: 2px solid transparent;
	border-top: 2px solid #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	animation: tps_buttonLoader_spin .5s linear infinite;
}

@keyframes tps_buttonLoader_spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.tps_productAddToCart_wishList {
	margin: 20px auto;
	font-size: 16px;
	width: max-content;
	cursor: pointer;
	display: none;
	border-bottom: 1px solid black;
}

.tps_productAddToCart_wishList:hover {
	color: #62564a;
}

.tps_productAddToCart_wishList .tps__present {
	display: none;
}

.tps_productAddToCart_wishListMobile .tps__present {
	display: none;
}

.tps_productAddToCart_inWishList .tps__notPresent {
	display: none;
}
.tps_productAddToCart_inWishList .tps__present {
	display: block;
}

.tps_productAddToCart_wishListMobile {
	height: 50px;
	display: flex;
	width: 50px;
	align-items: center;
	justify-content: center;
	background: #0e0e0e;
}

.tps_productAddToCart_wishListMobile svg {
	width: 20px;
	height: 20px;
}


.tps_productAddToCart_box {
	display: grid;
	grid-template-columns: 1fr 50px;
	width: 100%;
	grid-gap: 1px;
}

@media (min-width: 992px) {
	.tps_productAddToCart_box {
		grid-template-columns: 1fr;
		grid-gap: 0;
	}

	.tps_productAddToCart_wishListMobile {
		display: none;
	}

	.tps_productAddToCart_wishList {
		display: flex;
	}
}

@media (min-width: 1350px) {
	.tps_productAddToCart_box {
		width: fit-content;
	}

	.tps_productAddToCart_button {
		width: 240px;
	}

	.tps_productAddToCart {
		grid-template-columns: 1fr 240px;
		grid-column-gap: 20px;
		margin-bottom: 40px;
	}

	.tps_productAddToCartWithGlamar {
		align-items: start;
		grid-template-columns: 1fr 240px;
		grid-column-gap: 20px;
		margin-bottom: 40px;
	}

	.tps_productAddToCart_price {
		text-align: left;
		padding-bottom: 0;
	}
}

@media (min-width: 1800px) {
	.tps_productAddToCartWithGlamar {
		align-items: start;
		grid-template-columns: 1fr 500px;
		align-items: center;
	}

	.tps_productAddToCart_buttonBox {
		flex-direction: row;
	}
}
