.lhl-select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  padding: 15px 40px 15px 20px;
  cursor: pointer;
  border: none;
  background-color: rgba(236, 103, 26, 0.1);
  background-image: url("https://lhl-dev.vhlab.co.uk/images/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.lhl-select::-ms-expand {
  display: none;
}

.basket-loader {
  -webkit-animation: spinner 1s linear infinite;
          animation: spinner 1s linear infinite;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

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

.page-alert {
  color: #fff;
  background-color: #cf1313;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  z-index: 1001;
}

.padding-small {
  padding: 1.5rem;
}

.page-alert_inner-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.page-alert_close {
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 0.2rem;
  transition: background-color 0.3s;
}

.text-color-darkorange {
  color: #db5735;
}

.stripe-wrapper {
  padding: 11px 15px;
  border: 1px solid #d9d9d9;
}

.button-2.loading {
  color: transparent;
  position: relative;
}
.button-2.loading:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  margin-top: -9px;
  margin-left: -8px;
  width: 15px;
  height: 15px;
  border: 3px solid #333;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: loading-spinner 0.75s linear infinite;
  animation: loading-spinner 0.75s linear infinite;
}
.button-2.loading:hover:after {
  border-color: #fff;
  border-right-color: transparent;
}
.button-2:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.order-table {
  text-align: left;
  border-collapse: collapse;
  min-width: 650px;
}
.order-table td,
.order-table th {
  border: 2px solid #e9e9e9;
  padding: 10px;
}
.order-table td:first-child,
.order-table th:first-child {
  padding-left: 15px;
  padding-right: 15px;
}
.order-table thead .primary {
  border: 2px solid #e9e9e9;
}
.order-table thead .primary th {
  border: 0px;
  font-weight: 400;
}
.order-table thead .primary th:first-child {
  font-size: 20px;
}
.order-table thead .secondary th {
  font-weight: 500;
}
.order-table tfoot th {
  text-align: right;
  font-weight: 400;
}
.order-table tfoot td.italic {
  font-weight: 100;
  font-style: italic;
}
.order-table tfoot tr.payments td {
  padding: 0px;
}
.order-table tfoot tr.payments td table {
  border-collapse: collapse;
  width: 100%;
  background: #fff9f5;
  text-align: left;
}
.order-table tfoot tr.payments td table th,
.order-table tfoot tr.payments td table td {
  border: 0px;
}
.order-table tfoot tr.payments td table th {
  text-align: left;
  padding: 20px 10px 10px;
  font-size: 20px;
}
.order-table tfoot tr.payments td table td {
  padding: 5px 10px 20px;
}

@-webkit-keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loading-spinner {
  100% {
    transform: rotate(360deg);
  }
}
