@charset "UTF-8";

#Cart {
	position: fixed;
	right: 0;
	top: 5%;
	font-size: 4em;
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
}

#Cart .cart-num {
	position: absolute;
	right: 5px;
	bottom: 5px;
	border-radius: 100%;
	color: #fff;
	background-color: #e60012;
	text-align: center;
	font-size: 1rem;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
}

#CartItems {
	position: fixed;
	right: 0;
	width: 100%;
	font-size: 0.9rem;
	padding: 0.5rem;
	background-color: #fff;
	border: 1px solid #aaa;
	display: none;
	margin-top: 1rem;
}

.go-form {
	display: inline-block;
	width: 100%;
	text-align: center;
	color: #fff !important;
	background-color: #e60012;
	padding: 0.2em 0;
	min-height: 2em;
	text-decoration: none;
	font-weight: bold;
}

.close-cart {
	display: inline-block;
	width: 100%;
	text-align: center;
	background-color: #ccc;
	padding: 0.2em 0;
}

.go-form:hover,
.close-cart:hover {
	opacity: 0.5;
	text-decoration: none;
}

.remove-goods {
	border-radius: 100%;
	width: 32px;
	height: 32px;
	line-height: 32px;
	cursor: pointer;
	transition: 0.2s;
}

.remove-goods:hover {
	background-color: #ccc;
}

.submit_btn.disabled,
.submit_btn.disabled:hover {
	opacity: 0.2 !important;
}

.mw_wp_form_confirm.mw_wp_form_preview .no-preview {
	display: none;
}

.cart-form {
	font-size: 1rem;
}

.to-cart {
	width: 100%;
	min-height: 4em;
	text-align: center;
	color: #fff;
	background-color: #e60012;
	border: none;
	font-weight: bold;
}
.to-cart:hover {
	opacity: 0.5;
}

#CartTable a {
	text-decoration: none;
	color: #000;
}
#CartTable a:hover {
	color: #e7b40c;
}

#CartTable .goods_thumb a:hover {
	opacity: 0.5;
}

@media (min-width: 576px) {
	#Cart {
		top: 12%;
	}
	#CartItems {
		width: 400px;
	}

	.to-cart {
		min-height: 2em;
	}
}
