.woocommerce .quantity {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 4px;
    max-width: max-content;
}
.woocommerce .quantity input.qty {
    background: transparent;
    border: 0;
    padding: 0;
    text-align: center;
    font-size: .95em;
    line-height: 1em;
    padding-top: .05em;
    width: 70px;
    height: 40px;
    -moz-appearance: textfield;
    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;
    line-height: 1em;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    width: 30px;
    height: 40px;
}
.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: .8em;
    height: 2px;
}
.woocommerce .quantity button.btnup::after {
    width: 2px;
    height: .8em;
}

.e89-cart-btn {
    cursor: pointer;
    transition: all .3s ease;
}

.e89-wc-cart {
	position: relative;
    display: inline-block;
}
.e89-wc-cart-container {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #F7F2ED;
    color: #000;
    top: 100%;
    right: 0;
    width: calc(100vw - 20px);
    max-width: 320px;
    height: 3000px;
    max-height: calc(100vh - 150px);
    z-index: 999999;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    margin-top: 15px;
}
body.e89-wc-cart-opened .e89-wc-cart-container {
    display: flex;
}
.e89-wc-cart-container::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 10px;
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #F7F2ED;
}

.e89-wc-cart .header {
	flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-top: 10px;
	margin: 0 15px;
}
.e89-wc-cart .top-title {
    flex: 1;
    text-align: right;
    line-height: 1;
}
.e89-wc-cart .top-title .close {
    font-size: 14px;
    cursor: pointer;
}
.e89-wc-cart .top-title h4 {
    font-size: 1.2em;
    letter-spacing: .05em;
    margin: 0 0 0.25em 0;
    color: #3c2770;
}

.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;
    margin: 10px 15px 40px 15px;
}
.e89-wc-cart .remove-item {
	position: absolute;
    bottom: 0;
	right: 0;
    line-height: 1;
	cursor: pointer;
}
.e89-wc-cart .remove-item i {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 6px;
    transition: all .3s ease;
}
/*.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: 60px;
    padding-right: 20px;
}
.e89-wc-cart .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}
.e89-wc-cart .name {
    flex: 0 0 auto;
    width: 100%;
    padding-right: 20px;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}
.e89-wc-cart .name a {
    color: #000;
}
.e89-wc-cart .info .amount {
	display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #000;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.e89-wc-cart .variation {
    width: 100%;
	font-size: 14px;
	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;
    line-height: 1;
}
.e89-wc-cart .quantity::before {
    content: "Cantidad:";
    margin-right: 5px;
    font-size: 14px;
}
.e89-wc-cart .quantity button {
    height: 26px;
    width: 26px;
    font-size: .6em;
}
.e89-wc-cart .quantity input.qty {
    width: 40px;
    height: 26px;
    font-size: 13px;
}
.e89-wc-cart .footer {
	flex: 0 0 auto;
    padding: 20px 15px;
    background-color: #fff;
}
.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;
    text-transform: uppercase;
}
.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: 1024px) {
    
    .e89-wc-cart-container {
        max-height: 70vh;
    }

}