#cart_modal {
	position: fixed;
	background: rgba(0,0,0,0.7);
	z-index: 9999;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}
#cart_msg_area ,
#cart_progress {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#cart_msg_area {
	background: #fff;
	border-radius: 10px;
	font-weight: bold;
	padding: 1em 2em;
	max-width: 100%;
	width: 25em;
	text-align: center;
	box-sizing: border-box;
	box-shadow: 0 0 10px 1px #b7b7b7;
}
#cart_msg_area:empty {
	display:none;
}

#cart_progress::before {
	content: "\f01e";
	display: block;
	font-family: FontAwesome;
	font-size :96px;
	color: #fff;
	animation: circle 3s linear infinite;
}
#cart_msg_area:not(:empty) + #cart_progress::before {
	display: none;
}
@keyframes circle {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.add_cart_wrap {
	text-align: center;
}
.add_cart_wrap select {
	width: auto;
}

#cart_list th,
#cart_list td {
	vertical-align: middle;
}
#cart_list th {
	text-align: center;
}
#cart_list .del_cart_trigger {
	cursor: pointer;
	text-decoration: underline;
}
#cart_list .del_cart_trigger:hover {
	color: #68A341;
}
#cart_list #prices {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	font-weight:bold;
	text-align: right;
	font-size: 1.2em;
	border-top: 3px solid #000;
}
#cart_list .heading {
	width: 65%;
}
#cart_list .price {
	width: 35%;
}
#cart_list #prices .big_area {
	font-size: 1.5em;
	background: #dcdcdc;
	padding: 1em 0;
	margin: 1em 0;
}
#cart_list #about_price {
	font-weight: bold;
	text-align:right;
}
#cart_list #to_shopping {
	text-align:center;
}
#cart_list #to_shopping input {
	margin: 1em auto;
}
@media (max-width: 768px) {
	#cart_list #prices {
		font-size: 1em;
	}
	#cart_list #prices .big_area {
		font-size: 1.2em;
	}
}

#shopping_form .linkBtn {
	display: block;
	width: 10em;
	margin: 0 auto;
}
#shopping_list th {
	width: auto;
	text-align: center;
}
#shopping_list .t_right ,
#shopping_list .t_right * {
	text-align: right;
}
#shopping_list .name {
	text-align: center;
}
#shopping_list .result {
	font-weight: bold;
}
