.cart-area{
	min-height: 74vh;
	max-height: 74vh;
	overflow-y: auto;
}

.cart-count{
	margin-bottom: 20px;
	font-size: 36px;
	font-family: 'Alata', sans-serif;
}

.cart-item .image-frame{
	height: 200px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	border-radius: 10px;
}
.cart-item .pr-title{
	font-size: 20px;
}
.cart-item .pr-quantity{
	position: relative;
}
.cart-item .pr-quantity::-webkit-inner-spin-button {
    opacity: 1
}
.cart-item .price-wrapper{
	flex-direction: column;
	display: flex;
	align-items: flex-end;
}
.cart-item .price-wrapper .price{
	font-weight: bold;
}
.cart-item .remove{
	color: black;
	font-weight: 500;
	text-decoration: none;
	transition: 0.5s ease;
	cursor: pointer;
}
.cart-item .remove:hover{
	color: green;
}

.summary-area{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	padding: 20px;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.summary-area .loader{
	display: none;
}
.summary-area.load .loader{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: white;
	opacity: 0.5;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	z-index: 10;
	transform: scale(1.5);
}
.classifields{
	font-size: 18px;
}
.classifields.total-wrapper{
	font-size: 22px;
}
.load-icon{
	animation: spin 1s linear infinite;
}

@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

@media only screen and (max-width: 1000px) {
	.cart-item .price-wrapper{
		align-items: center !important;
	}
}