.cart-panel {
	display: none;
	position: fixed;
	top: 0px;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	z-index: 25;
	transition: 0.3s;
}
.cart-panel.hide {
	background-color: rgba(0,0,0,0);
}
@media(min-width: 1000px) {
	.cart-panel {
		background-color: rgba(0,0,0,0.1);
	}
}

/*
@media(min-width: 1600px) {
	.cart-panel {
		display: block;
		position: fixed;
		width: 320px;
		top: 0;
		right: 0;
		height: 100vh;
		overflow-y: unset;
		background-color: orange;
		border-left: 1px solid #ccc;
	}
}
*/

.cart-panel > .panel {
	position: relative;
	width: 85%;
	right: -15vw;
	background-color: #fff;
	height: 100vh;
	transition: 0.3s;
	padding-bottom: 100px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	border-left: 1px solid #ccc;
}
.cart-panel.hide > .panel {
	right: -100vw;
}
@media(min-width: 1000px) {
	.cart-panel > .panel {
		position: absolute;
		width: 350px;
		right: 0px;
	}
	.cart-panel.hide > .panel {
		right: -350px;
	}
}