.slide-cart {
  position: fixed;
  top: 10px;
  right: -100%;
  width: 350px;
  height: calc(100vh - 20px);
  background: #F6F6F6;
  transition: right 0.3s ease-in-out;
  z-index: 9999999999;
  border:1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
 border-radius:10px 0 0 10px;
}


.slide-cart.open {
  right: 0;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  padding: 20px;

}

.slide-cart .woocommerce-Price-amount.amount {
  font-size: 14px;
}

.slide-cart .woocommerce-Price-amount.amount .woocommerce-Price-currencyCode {
    font-weight: 400;
    opacity: 1;
    font-size: 14px;
}

.cart-close {
  border:0;
  line-height: 1;
  background:0;
  appearance: none;
  color:#0099cc;
  font-size: 16px;
  cursor: pointer;
}

.cart-close:hover i {
  font-weight: 700;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 20px 20px;
}
.cart-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #efefef;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.cart-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.item-title {
font-size: 14px;
line-height: 1;
padding-right: 30px;
display: inline-block;
margin-bottom: 5px;
}





.item-img {
  width: 60px;
  height: auto;
  margin-right: 20px;
  border-radius:10px;
  border:1px solid #E8E8E8;
}
.item-details {
  flex: 1;
}
.item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-meta .item-qty {
    width: 100%;
border: 1px solid #E8E8E8;
background: #fff;
border-radius: 10px;
max-width: 48px;
padding: 5px 7px;
font-weight: bold;
}

.item-remove {
    background: none;
border: none;
font-size: 26px;
color: #E6194B;
cursor: pointer;
position: absolute;
top: 5px;
right: -5px;
transform: scale(1);
transition: all 250ms ease;
line-height: 0;
}

.item-remove:hover {
  transform: scale(1.3);
  
}

.cart-subtotal {
  padding: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.checkout-btn {
    display: block;
    background: #0099cc;
    border: 2px solid #0099cc;
    color: #fff;
    text-align: center;
    margin: 0 1rem 1rem;
    padding: 0 2rem;
    height: 40px;
    line-height: 36px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    top:0;
    transition: top 250ms linear;
}


.checkout-btn:hover {
  top:-3px;
  text-decoration: none;
}

.cart-loading-spinner {
  width: 30px;
  height: 30px;
  margin: 2rem auto;
  border: 4px solid #ccc;
  border-top: 4px solid #0099cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.cart-items-inner {
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  padding: 30px 20px;
  height: calc(100% - 320px);
  overflow-y: auto;
  scrollbar-width: none;     
  -ms-overflow-style: none;    
}

.cart-items-inner::-webkit-scrollbar {
  display: none;     
}

.cart-empty {
  text-align: center;
}

.cart-title {
  font-weight: bold;
}

.cart-title i {
  margin-right:10px;
}

#slide-cart .for-the-planet {
padding: 0 40px;
text-align: center;
font-size: 14px;

bottom: 20px;
width: 100%;
left: 0;
  
}

#slide-cart .for-the-planet p {
    font-size: 12px;
font-weight: 500;
line-height: 15px;
}

#slide-cart .for-the-planet a {
  color:#0199CC;
  text-decoration: none;
}


#slide-cart .for-the-planet img {
    max-width: 102px;
  margin-bottom: 10px;
  margin-top: 40px;
}








.qty-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 40px;
}

.qty-wrapper input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  text-align: left;
  width: 100%;
  margin: 0;
}

.qty-wrapper button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 12px;
  color: #333;
  display: block;
  line-height: 1;
  padding: 0;
}

.qty-wrapper button:hover {
  color: #333;
  opacity: 0.5;
}


.qty-btn.qty-btn-up {
    position: absolute;
top: 4px;
right: 6px;
}


.qty-btn.qty-btn-down {
    position: absolute;
    bottom: 4px;
    right: 6px;
}

.keep-shopping-link {
  text-align:center;
  text-decoration:none;
  display: block;
  color:#0099cc;
  transition: all 150ms linear;
  font-size:14px;
}


.keep-shopping-link:hover {
opacity: 0.5;
  text-decoration:none;
}




.qty-wrapper input[type=number]::-webkit-inner-spin-button,
.qty-wrapper input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-wrapper input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}
