.main-cart-page{
	padding: 20px 0px;
}

.cart_body .cart_row {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 4px 20px #ccc;
}

.cart_row .cart_product {
    width: 100%;
    display: flex;
    align-items: center;
}

.cart_row .cart_product .cart_image {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_row .cart_product .cart_image img {
    height: 65px;
}

.cart_row .cart_product .cart_info {
    vertical-align: top;
    display: flex;
    gap: 20px;
    padding-left: 30px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.cart_row .cart_product .cart_info .cart_name {
    width: 60%;
}

.cart_row .cart_product .cart_info .cart_name a{
	color: #000;
	font-size: 18px;
	font-weight: bold;
	line-height: 26px;
}

.cart_row .cart_product .cart_info .grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart_product .cart_prices .cart-price {
    color: #15963d;
    font-size: 24px;
    font-weight: bold;
    line-height: 26px;
}

.cart_select .input-group-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.cart_select .input-group-btn .items-count {
    height: 25px;
    width: 25px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #15963d;
    background-color: #15963d;
}

.cart_select .input-group-btn .items-count.qty-plus {
    color: #15963d;
    background-color: transparent;
}

.cart_select .input-group-btn .qty-num {
    width: 65px;
    height: 25px;
    color: #fff;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #15963d;
    background-color: #15963d;
}


.cart_subtotal{
	display: flex;
	align-items: center;
	justify-content: space-between;
    border-radius: 5px;
    box-shadow: 0px 4px 20px #ccc;
    margin-bottom: 30px;
}

.cart_subtotal .cart_quantity{
	padding: 20px;
	width: 40%;
	text-align: center;
	border-right: 1px solid #D9D9D9;
}

.cart_subtotal .cart_total{
	padding: 20px;
	width: 60%;
	text-align: center;
}

.cart_subtotal .cart_total .cart_totle{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cart_subtotal h4{
	color: #000;
	font-size: 18px;
	font-weight: bold;
	line-height: 26px;
	text-align: center;
	margin-bottom: 30px;
}

.cart_subtotal span{
	color: #15963d;
	font-size: 24px;
	font-weight: bold;
}

.field__input-btn-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.field__input-btn-wrapper .field__input-wrapper{
	flex-grow: 1;
	position: relative;
}

.field__input-btn-wrapper .field__input {
    border-radius: 8px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 7px 15px;
    border: 1px #ccc solid;
    height: 45px;
    background-color: #fff;
    color: #333;
}

.field__input-btn-wrapper .field__input::focus{
	box-shadow: initial;
}

.field__input-btn-wrapper .field__input-btn {
    width: auto;
    margin-left: 10px;
    white-space: nowrap;
    color: #fff;
    height: 45px;
    font-size: 16px;
    font-weight: bold;
    padding: 7px 15px;
    border-radius: 8px;
    background-color: #15963d;
}

.note_cart{
	margin: 30px 0px;
}

.note_cart label{
	color: #000;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}

.note_cart .form-control{
	/* height: 167px; */
	height: 100px;
	border: 1px solid #AEAEAE;
	border-radius: 13px;
}

.payment_cart{
	margin-bottom: 30px;
}

.payment_cart h4{
	color: #000;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}

.payment_cart .content-box{
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px;
}

.payment_cart .content-box label{
	color: #000;
	font-size: 16px;
	margin-bottom: 0px;
}

.info_cart{
	margin-bottom: 30px;
}

.info_cart .form-group label{
	width: 120px;
	color: #000;
	font-size: 16px;
	justify-content: start;
}

.info_cart .form-group .form-control{
	display: block;
	flex-grow: 1;
}

.main-cart-page .note{
	color: #000;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 30px;
}

.btn_cart{
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
}

.btn_cart .btn{
	width: 50%;
	color: #EC2C37;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 30px;
	text-transform: uppercase;
	border: 1px solid #15963d;
	border-radius: 30px;
}

.btn_cart .btn.btn-order{
	color: #fff;
	background-color: #15963d;
}

.btn_cart .btn:hover{
	color: #fff;
	background-color: #EC2C37;
}

.btn_cart .btn.btn-order:hover{
	background-color: #15963d;
	border-color: #15963d;
}