.cart-link {
  color: rgb(237, 237, 237);
  font-weight: bold;
  background-color: rgb(11, 116, 169);
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.cart-link:hover {
  opacity: 0.9;
}

.shopping_cart {
  width: 22px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}


.cart-link {
  color: rgb(237, 237, 237);
  font-weight: bold;
  background-color: rgb(11, 116, 169);
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.cart-link:hover {
  opacity: 0.9;
}

.shopping_cart {
  width: 22px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}


/* Hide by default */
.cart-link-mobile {
  display: none;
}

/* Mobile floating cart */
@media (max-width: 610px) {
  .cart-link-mobile {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
        background: none !important;

        box-shadow: none !important;
  }

  .cart-link-mobile img.shopping_cart {
    width: 28px;
    height: 28px;
    margin-right: 0;
    color: rgb(237, 237, 237);
    font-weight: bold;
    background-color: rgb(11, 116, 169);
    padding: 5px 10px;
    border-radius: 5px;
  }

  #cart-count-mobile {
    position: absolute;
    top: 4px;
    right: 4px;
    background: red;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
