.cart-sidebar {
	position: fixed;
	top: 0px;
	right: -450px;
	width: 335px;
	height: 100vh;
	z-index: 5;
	background: #fff;
	-webkit-box-shadow: -15px 0px 25px 0px rgba(0, 0, 0, 0.15);
	box-shadow: -15px 0px 25px 0px rgba(0, 0, 0, 0.15);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.cart-sidebar.active {
	right: 0px;
	z-index: 1000;
}

.cart-header {
	padding: 18px 25px;
	text-align: center;
	position: relative;
	border-bottom: 1px solid var(--border)
}

.cart-total {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: flex-start;
}

.cart-total i {
	font-size: 20px;
	margin-right: 8px;
	color: #B99B3C;
}

.cart-total span {
	font-weight: 900;
	color:#B99B3C;
	text-transform: capitalize
}

.cart-close {
	position: absolute;
	top: 50%;
	right: 0px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.cart-close i {
	width: 35px;
	height: 35px;
	font-size: 18px;
	line-height: 35px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	color: #333;
	background: #F3EFE7;
	text-shadow: var(--primary-tshadow);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.cart-close i:hover {
	color: #fff;
	background: #B99B3C;
}

.cart-list {
	height: 100%;
	padding: 0px 15px;
	max-height: calc(100vh - 210px);
	overflow-y: scroll
}

.cart-item {
	padding: 15px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	border-bottom: 1px solid var(--border)
}

.cart-item:hover .cart-media button {
	-webkit-transform: scale(1);
	transform: scale(1)
}

.cart-item:last-child {
	border-bottom: none
}

.cart-media {
	position: relative;
	margin-right: 25px
}

.cart-media a img {
	width: 100px;
	border-radius: 8px
}

.cart-media button {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.2);
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.cart-media button i {
	width: 32px;
	height: 32px;
	font-size: 18px;
	line-height: 32px;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	color:#ff3838;
	background: rgba(255, 255, 255, 0.9);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s;
	padding-top: 6px;
}

.cart-media button i:hover {
	color: var(--white);
	background: var(--red)
}

.cart-info-group {
	width: 100%
}

.cart-info {
	margin-bottom: 13px
}

.cart-info h6 {
	font-weight: 400;
	text-transform: capitalize
}

.cart-info h6 a {
	color: var(--heading)
}

.cart-info p {
	font-size: 14px
}
.product-add {
    margin-left:21px;
	width: 70%;
	font-size: 15px;
	padding: 5px 0px;
	border-radius: 6px;
	text-align: center;
	text-transform: capitalize;
	color: #B99B3C;
	background: #F3EFE7;
	text-shadow: var(-primary-tshadow);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}
.product-add:hover{
    transform: translateY(-3px);
    color: #F3EFE7;
	background: #B99B3C;
}
.product-add i {
	font-size: 14px;
	margin-right: 5px
}

.product-action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: normal;
	display: none
}

.product-action button i {
	width: 35px;
	height: 35px;
	font-size: 14px;
	line-height: 32px;
	border-radius: 6px;
	text-align: center;
	display: inline-block;
	color:#333;
	background: #f5f5f5;
	text-shadow: var(--primary-tshadow);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}
.product-action button i:hover {
	color: var(--white);
	background: #B99B3C
}

.product-action input {
	width: 100%;
	font-size: 15px;
	margin: 0px 5px;
	padding: 6px 0px;
	border-radius: 6px;
	text-align: center;
	color: var(--white);
	background: #B99B3C;
	text-shadow: var(--primary-tshadow);
	width: 35px;
}
.modal-body .product-action input{
    width: auto;
}
.cart-sidebar input, button {
    border: none;
    outline: none;
    background: none;
}
.product-action button i:hover {
	color:#fff;
	background:#B99B3C;
}

.product-action input {
	width: 100%;
	font-size: 15px;
	margin: 0px 5px;
	padding: 6px 0px;
	border-radius: 6px;
	text-align: center;
	color: #fff;
	background: #B99B3C;
	text-shadow: var(--primary-tshadow);
	width: 35px;
}

.cart-action-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.product-card:hover .product-add {
    color: #fff;
    background: #119744;
}
.cart-action-group .product-action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.cart-action-group .product-action button i {
	width: 30px;
	height: 30px;
	font-size: 12px;
	line-height: 30px;
	border-radius: 5px
}

.cart-action-group .product-action input {
	width: 45px;
	height: 30px;
	font-size: 14px;
	border-radius: 5px;
	color: #B99B3C;
	background:#f5f5f5;
}

.cart-action-group h6 {
	font-weight: 500;
	color: #B99B3C;
}

.cart-footer {
	padding: 20px 15px 0px;
	text-align: center;
	-webkit-box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px -3px 7px 0px rgba(0, 0, 0, 0.08)
}
.coupon-btn {
	font-weight: 500;
	margin-bottom: 20px;
	color: #B99B3C;
	text-shadow: var(--primary-tshadow)
}

.coupon-btn:hover {
	text-decoration: underline
}

.coupon-form {
	padding: 3px;
	border-radius: 8px;
	margin-bottom: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid var(--border);
	-webkit-box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 7px 13px 0px rgba(0, 0, 0, 0.1);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s;
	display: none
}

.coupon-form:focus-within {
	border-color: #B99B3C
}

.coupon-form input {
	width: 100%;
	height: 38px;
	padding: 0px 15px
}

.coupon-form button span {
	width: 100px;
	height: 38px;
	font-size: 14px;
	line-height: 38px;
	border-radius: 8px;
	display: block;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	background: #B99B3C
}
.coupon-form  button[type='submit']{
	padding:0;
}
.cart-checkout-btn {
	padding: 10px 0px;
	border-radius: 8px;
	background:#B99B3C;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.cart-checkout-btn:hover {
	background: #B99B3C;
}

.checkout-label {
	width: 100%;
	height: 30px;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.3px;
	text-align: center;
	text-transform: capitalize;
	color:#fff;
}

.checkout-price {
	padding: 0px 25px;
	letter-spacing: 0.3px;
	color:#fff;
	border-left: 1px solid var(--border)
}
@media only screen and (max-width: 768px){
.cart-sidebar {
width:250px !importnat;
height: 90vh !important;
}
}