/*------------------------------購物車------------------------------*/
/*小購物車*/
.cart{
}
/*觸發按鈕*/
.cart__trigger {
	float: right;
	display: block;
	text-decoration: none;
}
/*觸發按鈕active*/
.cart__trigger:active,
.cart--open .cart__trigger{
	color: #002852;
	color: var(--blue-main, #002852);
}
.cart__trigger:active .cart__count {
	/* color: #002852; */
	background: #002852;
	background: var(--blue-main, #002852);
}

/*觸發-icon*/
.cart__icon-trigger {
	vertical-align: middle;
	font-size: 26px;
}
.cart__text{
	display: none;
}
/*數量*/
.cart__count {
	background: #2071aa;
	/*background: var(--blue-main, #002852);*/
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin: -1em 0 0 -1em;
	line-height: 18px;
	/* top: 1px; */
	/* right: 3px; */
	/* border: 1px solid #fff; */
	z-index: 1;
}


.cart__dropbox {
	display: none;
}

/*如果使用者之視窗寬度>=1024px，將會再載入這裡的 css。*/
@media screen and (min-width: 1024px) {
	/*小購物車*/
	.cart {
		float: right;
	}
	/*觸發按鈕*/
	.cart__trigger {
	}
	.cart__trigger:active,
	.cart__trigger:hover {
		/* color: #00b0b9; */
	}
	/*觸發按鈕active*/
	.cart--open .cart__trigger{
		background: transparent;
	}
	/*觸發-icon*/
	.cart__icon-trigger {
		font-size: 22px;
	}
	.cart__trigger:hover .cart__count {
		background: #2071aa;
		/*background: var(--blue-main, #002852);*/
	}
	/*下拉展開區*/
	.cart__dropbox {
		background: #fff;
		display: block;
		position: absolute;
		top: 100%;
		right: 0;
		width: 295px;
		max-height: 0;
		overflow: hidden;
		box-shadow: 0 5px 5px rgba(0,0,0,.07);
		font-size: 14px;
	}
	/*下拉展開區-開啟*/
	.cart--open .cart__dropbox{
		max-height: 2000px;
		padding: 18px;
	}
	/*購物車-空的*/
	.cart__dropbox-empty{
		width: 100%;
		display: none;
	}
	/*購物車-狀態-空的*/
	.cart--empty .cart__dropbox-empty{
		display: block;
		margin-bottom: 1.5em;
		text-align: center;
		color: #002852;
		color: var(--blue-main, #002852);
	}
	.cart--empty .cart__dropbox-full {
		display: none;
	}
	/*購物車-空的-文案*/
	.cart__dropbox-empty-text{
	}
	/*購物車-購物清單*/
	/* .cart__dropbox-full{
		display: none;
	} */
	/*購物車-狀態-有東西*/
	/* .cart--full .cart__dropbox-full{
		display: block;
	} */
	/* 購物車清單 */
	.cart__list {
		font-size: 14px;
	}
	.cart__list-item {
		display: flex;
		justify-content: space-between;
		line-height: 1.3;
		margin-bottom: 1.5em;
	}
	.cart__list-name {
		display: block;
		text-decoration: none;
		margin-bottom: .6em;
	}
	.cart__list-offer-text,
	.cart__list-qty-text {
		margin-right: 10px;
	}
	.cart__list-btn-del {
		flex-shrink: 0;
		width: 20px;
		height: 20px;
		text-align: right;
		
	}
	.cart__list-del-icon {
		font-size: 14px;
	}
}