.authTab .active {
    border: 1px solid blue;
    background-color: blue;
    color: white;
}

.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-20 {
    font-size: 20px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.cart-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

@media (min-width: 992px) {
    .cart-container {
        grid-template-columns: repeat(4, 1fr);
        justify-content: start;
    }
}

.cart {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.btn.add-to-cart {
    margin-top: auto;
}

a{
    text-decoration: none !important;
}

.card-stack {
  text-decoration: none;
  color: black;
  background-color: white;
}

.card-stack:hover {
  color: white;
  background-color: black;
}

.infinite-scroll::-webkit-scrollbar{
  display: none !important;
}

.infinite-scroll{
  scrollbar-width: none !important;
}