.cart-table {
  background: #f5f5f64f;
  border-radius: var(--rounded-15);
  padding-bottom: 3rem;
  overflow-x: auto;
}
.cart-table .table.table-borderless {
  min-width: 700px;
}

.cart-table .table-header th {
  color: #6e6e6e;
  font-size: 1.7rem;
}
.cart-table .table > :not(caption) > * > * {
  background: #f5f5f64f;
  padding: 1.5rem 2rem;
}
.cart-table tbody td {
  color: #000000;
  font-weight: 700;
  font-size: 1.6rem;
}
.cart-table .product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-table .quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cart-table .btn-quantity {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.cart-table .quantity-display {
  min-width: 40px;
  height: 30px;
  text-align: center;
  font-weight: 600;
  background-color: #ffffff;
  box-shadow: 0 0 8px #0000001a;
  border-radius: 4px;
}
.cart-table .btn-remove {
  cursor: pointer;
  transition: color 0.3s;
}
.cart-table .btn-remove:hover {
  color: #dc3545;
}
.cart-table .btn-minus {
  background-color: #25a2b814;
  border: 0.64px solid #25a2b84d;
}
.cart-table .price {
  text-align: center;
}

/* ///////////// PAYMENT PAGE /////////////// */
.card-dashed {
  border: 2px dashed #dc3545;
  border-radius: 15px;
  padding: 1rem;
  padding: 2rem;
}
.card-dashed a {
  color: var(--clr-primary);
  font-weight: bold;
  font-size: 2rem;
}

.flag-dropdown {
  position: absolute;
  cursor: pointer;
  background: #017d9f0d;
  border: none;
  z-index: 10;
  min-width: 90px;
  border-radius: var(--rounded-15);
}
.flag-dropdown img {
  width: 24px;
  height: 16px;
  margin-left: 5px;
}
.flag-dropdown::after {
  content: "▼";
  font-size: 10px;
  margin-right: 5px;
}

.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  width: 250px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
}
.dropdown-item img {
  width: 24px;
  height: 16px;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
}

.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-right: -1px;
  border-radius: var(--rounded-15);
}
