#bag-added{
	bottom: -100%;
}


#bag-items{
	overflow-y: scroll;
	height: calc(100vh - 400px);
}

@media screen and (max-width: 495px){
	#bag-items{
		height: calc(100vh - 480px);
	}
}

#bag-items .cart-count{
	margin-bottom: 30px;
}

#bag-items .cart-item{
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 25px;
	margin-bottom: 30px;
}

#bag-items .cart-item-image{
	padding-bottom: 100%;
	position: relative;
	display: block;
}


#bag-items .cart-item-image img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#bag-items .cart-item-content{
	display: flex;
	flex-flow: column;
	gap: 5px;
}

#bag-items .cart-item-content .cart-item-remove{
	margin-top: auto;
	margin-bottom: 0;
	text-decoration: underline;
	font-size: 12px;
	cursor: pointer;
}

#bag-items .cart-item-content .cart-item-title{
	font-size: 16px;
	font-weight: bold;
	display: block;
}


#bag-items .cart-item-content .cart-item-price{
	font-size: 12px;
}