.pi-cart.fixed-cart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 48px;
    left: 0;
    background-color: #fff;
    z-index: 999999;
    overflow: hidden;
    max-height: 0;
    transition: all 0.1s ease-in-out;
}
.pi-cart.fixed-cart.open {
    max-height: 100vh
}
.pi-footer-links {
    position: fixed;
    overflow: hidden;
    height: 48px;
    bottom: 0;
    left: 0;
    z-index: 999999;
    right: 0;
    display: flex;
    background-color: #81d742;
}
.cart-total-items {
    position: absolute;
    background-color: #fff;
    color: #333;
    padding: 0 5px;
    line-height: 24px;
    font-family: Arial;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
    min-width: 24px;
    font-weight: 500;
    left: calc(50% + 15px);
    box-shadow: 0 1px 2px #333;
}
.cart-total-items[data-qunatity="0"] {
    display: none;
}
.pi-footer-links ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.pi-footer-links ul li {
    flex: 1;
    height: 100%;
    width: 100%;
    position: relative;
}

.pi-footer-links ul li a {
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-decoration: none;
    bottom: 0;
    display: flex;
    transition: all 0.1s ease-in-out;
}

.pi-footer-links ul li a:before {
    margin: auto;
    font-size: 28px;
}

.pi-footer-links ul li a:hover {
    background-color: rgba(0,0,0,0.15);
}

.cart-header {
    background-color: #81d742;
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding: 0 5px;
}

.pi-cart-close {
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 28px;
    margin: 0;
    padding: 10px;
}

.pi-row {
    display: flex;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pi-quantity {
    display: flex;
    flex-direction: column;
    width: 40px;
    text-align: center;
}

.pi-image {
    max-width: 72px;
    max-height: 72px;
}
.pi-image img {
    width: 100%;
    height: 100%;
}

.pi-product-info {
    width: calc(100% - 60px);
    padding: 0 10px;
}

.pi-product-title {
    margin: 0;
    font-size: 14px;
    color: #a59e9a;
}

.pi-cart-data {
    color: #a59e9a;
    max-height: calc(100vh - 100px);
    overflow: auto;
}

.pi-quantity .plus {
    margin: auto auto 0 auto;
    display: none;
}

.pi-quantity .minus {
    margin: 0 auto auto auto;
    display: none;
}

.pi-quantity:hover .plus, .pi-quantity:hover .minus {
    background-color: #81d742;
    height: 15px;
    color: #fff;
    line-height: 15px;
    cursor: pointer;
    display: block;
    padding: 0 7px;
    font-size: 18px;
}

.pi-quantity .quantity {
    margin: auto;
}

.pi-quantity:hover .quantity {
    margin: 0 auto;
}

.cart-actions {
    display: flex;
}

.cart-actions a {
    margin: 10px;
    flex: 1;
    text-align: center;
    background-color: #81d742;
    color: #fff !important;
    border-radius: 4px;
    line-height: 40px;
    text-decoration: none !important;
}

.cart-total {
    font-size: 16px;
    display: flex;
}

.cart-total p {
    flex: 1;
    margin: 10px;
    font-weight: bold;
}

.cart-total p.total {
    text-align: right;
}

.pi-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 48px;
    background-color: rgba(0,0,0,0.5);
    bottom: 0;
    display: none;
}
.pi-cart.is-loading .pi-loader {
    display: flex;
}
.loading {
    margin: auto;
    color: #fff;
    font-size: 32px;
}
.pi-cart-data h4 {
    margin: 0;
    padding-left: 10px;
}

.pi-cart h4, .pi-cart p {
    font-size: 11px;
    font-weight: 400;
    color: #333;
}

.pi-remove {
    padding: 0;
    background-color: #aa843a;
    min-height: 14px;
    line-height: 1px;
    width: 14px;
    border-radius: 50%;
    box-shadow: none;
    margin-left: 5px;
    font-size: 10px;
    margin-top: -6px;
}

h4.pi-product-title {
    float: left;
}

.pi-cart .woocommerce-Price-amount.amount, .pi-cart span.woocommerce-Price-currencySymbol {
    background-color: transparent !important;
    color: #333 !important;
    font-size: 12px !important;
    width: auto !important;
}

.pi-cart del {
    text-decoration: none !important;
}
li.select2-results__option[id$="-ASAP"],
li.select2-results__option[id*="-ASAP "] {
    display:none;
}
.woocommerce-mini-cart__buttons.buttons .button.wc-forward:not(.checkout) {
    display: none !important;
}
@media(min-width: 769px) {
    .pi-footer-links {
        display: none;
    }
    .pi-cart.fixed-cart {
        bottom: 0;
        left: auto;
        width: 320px;
    }
    .pi-cart-data {
        max-height: calc(100vh - 50px);
    }
}