.qty-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.qty-controls {
	display: flex;
	flex-direction: row;
	height: 60px;
	width: 150px;
	padding: 8px 24px;
	justify-content: space-between;
	align-items: center;
	border-radius: 30px;
	border: 1px solid #FFF;
	background: rgba(255, 255, 255, 0.20);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(6.400000095367432px);
}

.removeFromCart {
	height: 40px;
}

.totalAmountDiv {
	display: flex;
	justify-content: end;
	font-weight: 600;
	padding: 10px;
	margin-right: 12%;
}

.placeOrderBtn {
	display: flex;
	height: 50px;
	padding: 8px 0px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 30px;
	background: #ffd166;
	border: transparent;
	font-weight: 600;
	margin-left: auto;
	margin-bottom: 20px;
	color: white;
}
.placeOrderBtn a{
	color: #2a8080;
}

/* my orders */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.disc-group{
	display: flex;
	justify-content: space-between;
}
.Qty-Div{
	display: flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px){
	.qty-controls {
	height:30px;
	width: 100px;
	padding: 8px 8px;
	}
	.placeOrderDiv{
	flex-direction: column;
	}
	.placeOrderBtn{
	height: 30px;	}
	.placeOrderDiv p{
	font-size: 12px;
	}
	.Qty-Div{
	align-items: flex-start;
	}
	.Qty-Div2{
	align-items: flex-end !important	;
	}
	.removebtn{
	justify-content: flex-end;
	}
}
	
