.popup-button {
	display: flex;
	justify-content: center;
	background-color: #e50012;
	align-items: center;
	padding: 0px 20px;
	font-size: 1rem;
	color: white;
	cursor: pointer;
	max-width: 250px;
	margin: auto;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .5s;
	height: 48px;
	border-radius: 5px;
	text-decoration: none !important;
}

.popup-button:hover {
	background-color: black;
}

#popup-add_to_cart span {
	font-size: 1rem;
	color: inherit;
}

.popup-button {
	background-color: #e50012;
}

#cf7-continue {
	background-color: #333;
	color: white;
}

.popup-actions,
#popup-add_to_cart {
	margin-top: 1.5rem;
}

.popup-actions {
	display: flex;
	gap: 15px;
}

.popup-actions .popup-button {
	width: 50%;
}

@media screen and (max-width: 767px) {
	.popup-actions {
		flex-direction: column;
	}

	.popup-actions .popup-button {
		width: 100%;
	}

	.popup-actions #go_to_inquiry {
		margin-top: 8px;
	}
}

.add-to-cart_section {
	max-width: 220px;
}

.cf7-button-style {
	background-color: #e50012;
	color: white;
	-webkit-transition: background-color 0.3s ease-out;
	-moz-transition: background-color 0.3s ease-out;
	-o-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
	border-radius: 50px;
	padding: 10px 25px;
}

.cf7-button-style span {
	pointer-events: none;
}

.cf7-button-style {
	cursor: pointer;
}

.add-to-cart:hover {
	background-color: black;
}

.cf7-button-style span {
	display: block;
	text-align: center;
}

#cf7-popup-message.added {
	background-color: #d4000f
}

#cf7-popup-message.added::after {
	display: none;
}

/*mc-Inquiry*/

.mc-Inquiry {
	text-align: center;
}

/* Cart */

.inquiry-title {
	text-align: left;
	color: white;
}

#cart-wrapper {
	width: 600px;
	max-width: 100%;
	margin: 0 auto;
}

#cart {
	display: table;
	width: 100%;
}

.cart-item {
	display: flex;
	align-items: center;
	padding: 1rem;
	border: 1px #c1c1c1 solid;
	position: relative;
	border-radius: 5px;
	background: #ececec;
	margin-bottom: 5px;
}

.cart-item .item-remove {
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	border-radius: 5px;
	background: #333;
	align-items: center;
	justify-content: center;
	color: white;
}

.cart-item td {
	width: 100%;
	display: block;
	text-align: left;
	font-size: 0.8rem;
}

.cart-item_sizes ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.cart-item_sizes {
	width: 30%;
	font-size: 14px;
}

.cart-item_notes {
	font-size: 14px;
	color: #757575;
}

.cart-item_img a img {
	width: 64px;
	border-radius: 5px;
	box-shadow: 0px 0px 9px 3px #00000021;
}

.cart-item_content {
	flex: 1;
	margin-left: 1rem;
}

/* Popup */

.cf7popup-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.66);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cf7popup-wrapper .message-success {
	text-align: center;
	background: #a7eea7;
	color: #073707;
	font-size: 14px;
	padding: 10px 20px;
}

.cf7popup-wrapper .message-success a {
	font-size: 14px;
	color: #073707;
	font-weight: bold;
}

.cf7popup-close {
	position: absolute;
	right: 20px;
	top: 20px;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

.cf7popup-wrapper.active {
	opacity: 1;
	visibility: visible;
}

.cf7popup {
	width: 550px;
	max-width: 90%;
	background: white;
	border-radius: 5px;
	padding: 20px;
	opacity: 0;
	transform: translateY(50px);
	transition: all .5s ease-in-out;
}

.cf7popup-wrapper.active .cf7popup {
	opacity: 1;
	transform: translateY(0);
}

/* Popup add to cart */

.cf7popup .product-sizes {
	display: flex;
	flex-direction: column;
}

.cf7popup .product-sizes label {
	cursor: pointer;
	margin-bottom: 5px;
}

.cf7popup textarea {
	width: 100%;
	height: 150px;
	border: 1px #cecece solid;
}

.cf7popup p:first-child {
	margin-top: 0;
}

.cf7popup p {
	border-bottom: 1px #111010 solid;
	color: #0f0e0e;
}