.fwfatc {
  position: fixed;
  bottom: -400px;
  left: 0;
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
  background-color: white;
  z-index: 4;
  padding: 20px;
  transition-duration: 0.5s;
  box-shadow: rgb(230, 230, 230) 0px -5px 5px -5px;
}

.fwfatc .fwfatc-product-image img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.fwfatc .fwfatc-product-name {
  display: flex;
  gap: 15px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.fwfatc .fwfatc-price {
  margin-left: auto;
  font-size: 15px;
  font-weight: bold;
  margin-right: 20px;
}

.fwfatc .added_to_cart {
  display: none !important;
}

.fwfatc .fwfatc-variations {
  display: flex;
  gap: 15px;
}

.fwfatc select {
  padding: 5px 10px;
  border: 1px solid lightgray;
  width: 100%;
}

.fwfatc .fwfatc-quantity {
  display: flex;
  gap: 5px;
}

.fwfatc .fwfatc-quantity-button {
  border: none;
  font-size: 20px;
  background-color: #f5f5f5;
}

.fwfatc .qty {
  border: none !important;
  width: 75px;
  background-color: #f5f5f5;
}

.fwfatc input[type="number"] {
  text-align: center;
  -moz-appearance: textfield; /* Firefox: hide spinners */
}

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

.fwfatc .fwfatc_single_add_to_cart_button {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 1024px) {
  .fwfatc {
    flex-wrap: wrap;
    padding: 15px;
    gap: 15px;
  }

  .fwfatc .cart {
    width: 100%;
    margin-top: 5px;
  }

  .fwfatc .fwfatc-product-name {
    width: 70%;
    font-size: 15px;
    line-height: 16px;
  }

  .fwfatc .fwfatc-price {
    width: 25%;
    margin-right: 0;
    font-size: 16px;
    text-align: right;;
    line-height: 16px;
  }

  .fwfatc .fwfatc-quantity {
    width: 15%;
    max-width: none;
    justify-content: space-between;
  }

  .fwfatc .fwfatc-quantity-button {
    display: none;
  }

  .fwfatc .fwfatc-quantity .qty {
    width: 100%;
  }

  .fwfatc .fwfatc-variations {
    width: 100%;
  }

  .fwfatc_single_add_to_cart_button {
    flex-grow: 1;
  }

  .fwfatc .variation {
    flex-grow: 1;
  }

}

@media (max-width: 400px) {
  .fwfatc {
    gap: 5px;
  }
}