.showCartButton {
  position: relative;
}

.showCartButton .fa-shopping-cart {
  cursor: pointer;
}

.showCartButton .fa-shopping-cart:hover {
  color: #00809f;
}

#NoItems {
  width: 20px;
  height: 20px;
  background-color: #00809f;
  color: #ffffff !important;
  text-align: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  z-index: 1;
  line-height: 20px;
  position: absolute;
  left: 24px;
}

.CartHolder {
  background-color: #ffffff;
  border: 1px solid #d3d3d3;
  width: 450px;
  height: calc(100vh - 200px);
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: -1px;
}

  .ff-holder {
    height: calc(100vh - 240px) !important;
  }

  .cart-summary-close {
    float: left;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #d3d3d3;
  }

.CartHolder .cart-summary-close .fa {
  line-height: 1;
  padding: 0;
}

.CartHolder .cart-summary-close .close {
  font-size: 20px;
}

.cart-summary-header {
  float: left;
  width: 100%;
  padding: 15px 30px;
  line-height: 20px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

.cart-summary-header .header-title {
  float: left;
  width: 60%;
  font-size: 20px;
  text-align: left;
}

.cart-summary-header .header-qty {
  float: left;
  width: 10%;
  text-align: center;
}

.cart-summary-header .header-price {
  float: left;
  width: 20%;
  text-align: center;
}

.cart-summary-items {
  float: left;
  width: 100%;
  overflow-y: auto;
  height: calc(100vh - 430px);
}

.cart-summary-items .cart-summary-item {
  float: left;
  width: 100%;
  padding: 15px 30px;
  border-bottom: 1px solid #eee;
}

.cart-summary-items .cart-summary-item .item-image {
  float: left;
  width: 20%;
  text-align: left;
}

.cart-summary-items .cart-summary-item .item-name {
  float: left;
  width: 40%;
  text-align: left;
}

.cart-summary-items .cart-summary-item .item-qty {
  float: left;
  width: 10%;
  font-weight: bold;
  text-align: center;
}

.cart-summary-items .cart-summary-item .item-price {
  float: left;
  width: 20%;
  font-weight: bold;
  text-align: center;
}

.cart-summary-subtotal {
  float: left;
  width: 100%;
  padding: 15px 30px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  font-weight: bold;
  text-align: right;
  background-color: white;
}

.cart-summary-subtotal .subtotal-label {
  margin-right: 10px;
}

.cart-summary-button {
  float: left;
  width: 100%;
  padding: 15px 30px;
  background-color: white;
}

.btn-view-cart {
  color: #fff !important;
  padding: 15px !important;
  background-color: #00809f;
}

.cart-summary-bottom-container {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.cart-summary-items::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f5f5f5;
}

.cart-summary-items::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

.cart-summary-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #cccccc;
}
.product-remove {
  float: left;
  width: 10%;
  text-align: center;
  cursor: pointer;
}

.cart-summary-item .product-remove .fa {
  font-size: 20px;
  vertical-align: top;
  line-height: 1;
}

.NoItemsGlow {
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #00809f;
  animation: glow 1.5s linear infinite alternate;
}

@keyframes glow {
  to {
    box-shadow: 0px 0px 3px 3px #02a9be;
  }
}
