.mini_cart_item>div{
	padding-right: 20px;
	[dir="rtl"] &{
		padding-right: 0;
		padding-left: 20px;
	}
}
.remove_from_cart_button{
	position: absolute;
	top: 15px;
	right: 10px;
	display: block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background: $primary-color;
	color: $white;
	z-index: 1;
	@include border-radius(50%);
	&:hover{
		background: $color-red;
		color: $white;
	}
	[dir="rtl"] &{
		right: auto;
		left: 10px;
	}
}
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__buttons,
 {
	display: flex;
	flex-wrap: wrap;
	align-items:center;
	margin: -10px;
	> *{
		margin: 10px;
	}
}
.woocommerce-mini-cart__total {
	.woocommerce-Price-amount{
		color: $accent-color;
		text-align: end;
	}
	> *{
		flex: 0 0 calc(50% - 20px);
	}
}
.woocommerce-mini-cart__buttons{
	text-align: center;
	> *{
		flex: 0 0 calc(100% - 20px);
	}
}