.cart-button {
  background-color: #2b2a35;
  color: white;
  padding: 8px 17px;
  border-radius: 20%;
  border-color: #fcfcfc;
}

.cart-button:hover {
  background-color: #fcfcfc;
  color: black;
  cursor: pointer;
}

#cartBtn {
  position: fixed;
  bottom: 10px;
  right: 15px;
  animation: none;
  z-index: 999;
}

#cartBtn:hover {
  animation: kreep 0.8s ease 0.5s infinite alternate;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@keyframes kreep {
  0% {
    -webkit-transform: scale(1.1, 0.9);
    transform: scale(1.1, 0.9);
  }
  50% {
    -webkit-transform: scale(0.9, 1.1) translateY(-0.5rem);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.cart-title {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

table.cart-table {
  background-color: #1D1D1B;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.cart-table td, table.cart-table th {
  border: 1px solid #AAAAAA;
  padding: 8px 6px;
}
table.cart-table tbody td {
  font-size: 13px;
  color: #FCFCFC;
}
table.cart-table thead {
  background: #AA9024;
  background: -moz-linear-gradient(top, #bfac5b 0%, #b29b3a 66%, #AA9024 100%);
  background: -webkit-linear-gradient(top, #bfac5b 0%, #b29b3a 66%, #AA9024 100%);
  background: linear-gradient(to bottom, #bfac5b 0%, #b29b3a 66%, #AA9024 100%);
  border-bottom: 2px solid #444444;
}
table.cart-table thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.cart-table thead th:first-child, .nome {
  border-left: none;
  color: #FCFCFC;
  text-align: left;
}

td.nome > a {
  color: #FCFCFC;
  text-decoration: none;
}

table.cart-table thead, .quantita {
  width: 15%;
  text-align: center;
}

table.cart-table thead, .prezzo {
  width: 15%;
  text-align: center;
}

table.cart-table thead, .azioni {
  width: 20%;
  text-align: center;
}

.remove-item-btn {
  padding: 0;
  border: none;
  background: none;
  color: #FCFCFC;
}

.checkoutBtn {
  background: #AA9024;
  background: -moz-linear-gradient(top, #bfac5b 0%, #b29b3a 66%, #AA9024 100%);
  background: -webkit-linear-gradient(top, #bfac5b 0%, #b29b3a 66%, #AA9024 100%);
  background: linear-gradient(to bottom, #bfac5b 0%, #b29b3a 66%, #AA9024 100%);
  border-bottom: 2px solid #444444;
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  padding: 15px 20px 15px 20px;
}