.card_v1 {
	width:270px;
	height:380px;
	margin:10px;
	background:#fff;
	box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	overflow:hidden;
	padding:10px;
}
.card_v1_img {
	width:100%; height:190px; text-align:center; overflow:hidden;border-radius:20px;
}
.card_v1_img img {width:100%;border-radius:20px;}
.card_v1_name_div {
	width:100%;
	height:70px;
	overflow:hidden;
	margin-top:15px;
	text-align:center;
	padding:0 10px;
}
.card_v1_name {
	font-weight:400;
	font-size:16px;
	line-height:0.2;
	text-align:center;
	color:#000;
	text-decoration:none;
	text-align:center;
}
.card_v1_name:hover {
	text-decoration:underline;
	color:#000;
}
.card_v1_price {
	width:35%;
	font-weight:500;
	font-size:18px;
	text-align:right;
	color:#000;
	white-space:nowrap;
}
.card_v1_btn {
	width:calc(65% - 10px);
	margin-left:10px;
}
.card_v1_btn_left {
	width:55px;
}
.card_v1_btn_left input {
	padding:10px 0;
	outline:none;
	color:#000;
	font-size:18px;
	font-weight:500;
	text-align:center;
	background: #FAFAFA;
	border-width: 3px 0px 0px 4px;
	border-style: solid;
	border-color: #B80000;
	border-radius: 10px 0px 0px 0px;
	height:33px;
}
.card_v1_minus, .card_v1_plus {
	background:#B80000;
	color:#fff;
	font-size:18px;
	font-weight:500;
	text-align:center;
	width:26px;
	height:25px;
}
.card_v1_minus:hover, .card_v1_plus:hover {
	background:#D80000;
	color:#f5f5f5;
}
.card_v1_minus {
	border-radius: 0px 2px 2px 5px;
}
.card_v1_plus {
	border-radius: 2px 0px 0px 2px;
}

.card_v1_btn_right {
	width:140px; height:58px;
	background: #D80000;
	border-radius: 0px 10px 10px 0px;
}
.card_v1_btn_right:hover {
	background:#B80000;
	color:#f5f5f5;
	cursor:pointer;
}
.card_v1_btn_right:hover > span {cursor:pointer;}
.card_v1_btn_txt {
	margin-top:10px;
	font-weight:500;
	font-size:17px;
	text-align:center;
	white-space:nowrap;
	color:#FFF;
}
.card_v1_btn_summ {
	margin-top:0;
	font-weight:400;
	font-size:14px;
	text-align:center;
	white-space:nowrap;
	color:#f5f5f5;
}
.card_v1_sk {
	color:#aaa;
	font-size:12px;
	text-align:right;
	margin-top:10px;
}

@media only screen and (max-width:880px) {
	.card_v1 {
		min-width:170px; width:calc(50% - 6px); max-width:200px;
		height:340px;
		margin:3px;
		background:#fff;
		box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.15);
		border-radius:10px;
		overflow:hidden;
		padding:10px;
	}
	.card_v1_img {
		width:100%; height:220px; border-radius:0;
	}
	.card_v1_img img {height:100%;border-radius:0;}
	.card_v1_btn {
		width:100%;
		margin-left:0;
	}
	.card_v1_price {
		width:100%;
		text-align:center;
		padding-bottom:10px;
	}
	.card_v1_price_btn {
		-webkit-box-orient:vertical;
		-webkit-box-direction:normal;
		-ms-flex-direction:column;
		flex-direction:column;
	}
	.card_v1_name {font-size:14px;}
	.card_v1_btn_txt {font-size:14px;}
}