.woocommerce .quantity {
	position: relative;
	display: flex;
	align-items: center;
}
.woocommerce .quantity input.qty {
    background: transparent;
    border: 0;
    padding: 0;
	margin: 0 5px;
	text-align: center;
    line-height: 1;
    width: 35px;
    height: 30px;
	color: #000;
	-moz-appearance: textfield;
}
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.woocommerce .quantity button {
	position: relative;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 1;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	width: 10px;
	height: 30px;
}
.woocommerce .quantity button::before,
.woocommerce .quantity button.btnup::after {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    display: block;
    background: #000;
}
.woocommerce .quantity button.btndown::before,
.woocommerce .quantity button.btnup::before {
    width: 10px;
    height: 1px;
}
.woocommerce .quantity button.btnup::after {
    width: 1px;
    height: 10px;
}

.e89-wc-cart {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #000;
    font-size: 15px;
	transform: translateX(101%);
	transition: all .3s ease;
	z-index: 999999;
}
.e89-wc-cart-overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	transition: all .3s ease;
	z-index: 999998;
	opacity: 0;
	visibility: hidden;
}
body.e89-wc-cart-opened {
	overflow: hidden;
}
body.e89-wc-cart-opened .e89-wc-cart {
	transform: translateX(0);
}
body.e89-wc-cart-opened .e89-wc-cart-overlay {
	opacity: 1;
	visibility: visible;
}
.e89-wc-cart-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.e89-wc-cart a {
    color: #000;
    text-decoration: none;
}
.e89-wc-cart .header {
	flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 0;
	margin: 0 20px;
    border-bottom: 1px solid #000;
}
.e89-wc-cart .top-title {
    flex: 1;
    text-align: center;
}
.e89-wc-cart .top-title h4 {
    font-size: 1.33em;
    margin: 0;
}
.e89-wc-cart .cart-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    font-size: .93em;
}
.e89-wc-cart .cart-icon svg {
	display: inline-block;
	vertical-align: middle;
	font-size: 1.33em;
	width: 1em;
	fill: currentColor;
}
.e89-wc-cart .cart-icon .count {
    position: relative;
    margin-left: 3px;
    font-size: .7em;
    width: 1.7em;
    line-height: 1.7em;
    text-align: center;
	z-index: 1;
}
.e89-wc-cart .cart-icon .count:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: currentColor;
    opacity: .1;
    border-radius: 50%;
	z-index: -1;
}
.e89-wc-cart .close {
    flex: 0 0 auto;
	position: relative;
    display: block;
    width: 30px;
	height: 30px;
	cursor: pointer;
}
.e89-wc-cart .close:after, .e89-wc-cart .close:before {
    content: '';
    border: 2px solid #000;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
}
.e89-wc-cart .close:before {
    border-right: none;
    border-bottom: none;
    right: 7px;
}
.e89-wc-cart .close:after {
    border-left: none;
    border-top: none;
    right: 15px;
}
.e89-wc-cart .woocommerce-error {
    margin: 20px 20px 0 20px;
    border: 0;
}
.e89-wc-cart .main {
	flex: 1;
	overflow: hidden;
}
.e89-wc-cart .container {
	overflow-y: auto;
	height: 100%;
}
.e89-wc-cart .item {
	position: relative;
    display: flex;
    padding: 20px 20px 0 20px;
}
.e89-wc-cart .item:last-child {
	padding-bottom: 20px;
}
.e89-wc-cart .remove-item {
	position: absolute;
    top: 20px;
	right: 20px;
    width: 20px;
	height: 20px;
	cursor: pointer;
}
.e89-wc-cart .remove-item:after, .e89-wc-cart .remove-item:before {
    content: '';
    border: 2px solid #000;
    display: block;
    width: 6px;
    height: 6px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
}
.e89-wc-cart .remove-item:before {
    border-right: none;
    border-bottom: none;
    right: 4px;
}
.e89-wc-cart .remove-item:after {
    border-left: none;
    border-top: none;
    right: 10px;
}
.e89-wc-cart .thumbnail {
    flex: 0 0 auto;
    width: 120px;
    padding-right: 20px;
}
.e89-wc-cart .info {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    flex: 1;
    padding-right: 20px;
}
.e89-wc-cart .name {
	font-weight: 700;
}
.e89-wc-cart .info .amount {
	display: block;
    margin-bottom: 5px;
}
.e89-wc-cart .variation {
	font-size: .85em;
	line-height: 1.2;
}
.e89-wc-cart .variation dt {
    float: left;
    clear: both;
    margin-right: .25em;
    list-style: none outside;
}
.e89-wc-cart .variation dd,
.e89-wc-cart .variation dd p {
	margin: 0;
}
.e89-wc-cart .quantity {
	flex: 0 0 auto;
	margin-top: 5px;
}
.e89-wc-cart .footer {
	flex: 0 0 auto;
    margin: 0 20px 20px 20px;
    padding-top: 20px;
    border-top: 1px solid #000;
}
.e89-wc-cart .totals {
    width: 100%;
    margin-bottom: 20px;
	font-size: 1.1em;
}
.e89-wc-cart .totals th,
.e89-wc-cart .totals td {
    text-align: left;
    font-weight: 400;
    padding: 1px 0;
}
.e89-wc-cart .totals td {
	text-align: right;
}
.e89-wc-cart .totals tr.total th,
.e89-wc-cart .totals tr.total td {
	font-weight: 700;
}
.e89-wc-cart .btn {
    display: block;
    text-decoration: none;
    border: 0;
    border-radius: 0;
	line-height: 1;
	font-size: 17px;
    text-align: center;
    padding: 15px;
    background-color: #000;
    color: #fff;
}
.e89-wc-cart .btn:hover {
    background-color: #232323;
}
.e89-wc-cart .empty {
	padding: 40px 20px;
	text-align: center;
}
.e89-wc-cart .empty p {
    margin-bottom: 40px;
}

.woocommerce ul.products .added_to_cart.wc-forward {
    display: none;
}

@media (min-width: 480px) {

	.e89-wc-cart {
		max-width: 420px;
	}

}