.pointer {
  cursor: pointer;
}

.text-align-right {
  text-align: right;
}

.vertical-align-middle {
  vertical-align: middle;
}

.fee-label {
  width: 8rem;
  display: inline-block;
  margin-top: 10px;
}

.autocomplete {
  position: relative;
}

.autocomplete .autocomplete-list {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  margin: 0rem .75rem;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
}

.autocomplete .autocomplete-list div {
  border: 1px solid #d4d4d4;
  cursor: pointer;
}

.autocomplete .autocomplete-list div:hover {
  background-color: rgba(0, 0, 0, .03);
}

.autocomplete .autocomplete-list .autocomplete-active {
  background-color: #0d6efd;
  color: white;
}

.autocomplete .autocomplete-list .autocomplete-active:hover {
  background-color: #0d6efd;
  color: white;
}


@media screen and (max-width: 767px) {
  table#shoppingCart tbody td .form-control {
    width: 20%;
    display: inline !important;
  }

  table#shoppingCart thead {
    display: none;
  }

  table#shoppingCart td.cart-pos {
    display: none;
  }

  table#shoppingCart tbody td {
    display: inline-block;
    padding: 0.4rem;
    width: 100%;
  }

  table#shoppingCart tbody td.cart-label:before {
    content: attr(data-th);
    font-weight: bold;
    display: inline-block;
    width: 8rem;
  }


}

.bi {
  width: 1em;
  height: 1em;
}

.bi.bi-floppy-fill {
  width: 1.5em;
  height: 1.5em;
}

.tab-action {
  width: 1%;
  white-space: nowrap;
}

.tab-action a {
  text-decoration: none;
}

a.disabled {
  pointer-events: none;
  cursor: default;
  color: grey !important;
}

.prewrap {
  white-space: pre-wrap;
}