.luis .main-footer {
  margin-top: auto;
}

.luis .main-footer__inner {
  background: #02354B;
  color: #fff;
  border-top: 8px solid #BCCF21;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 transparent;
  padding: 20px 0;
}

.luis .main-footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.luis .main-footer__left {
  flex: 0 0 100%;
}

.luis .main-footer__links {
  flex: 0 0 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.luis .main-footer__links li {
  display: inline-block;
}

.luis .main-footer__links li:not(:last-child) {
  margin-right: 10px;
}

@media (min-width: 768px) {
  .luis .main-footer__row {
    text-align: left;
  }
  .luis .main-footer__left, .luis .main-footer__links {
    flex: 0 0 auto;
  }
}
body.luis {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ordered-tag-modal-header {
  background-color: #02354B;
  border-bottom: 6px solid #BCCF21;
}

.bold-text {
  font-weight: bold;
}

.normal-text {
  font-weight: normal;
}

.bold-inline-text {
  font-weight: bold;
  display: inline;
}

.hidden {
  display: none;
}

.font-05em {
  font-size: 0.5em;
}

.font-075em {
  font-size: 0.75em;
}

.font-125em {
  font-size: 1.25em;
}

.pre-line-whitespace {
  white-space: pre-line;
}

.px16-px16 {
  height: 16px;
  width: 16px;
}

.height-px30 {
  height: 30px;
}

.height-px300 {
  height: 300px;
}

.max-width-px80 {
  max-width: 80px;
}

.border-right-teal {
  border-right: 1px solid #02354B;
}

.width-fit-content {
  width: fit-content;
}

.overflow-y-auto {
  overflow-y: auto;
}

.width-30-precent {
  width: 30%;
}

.display-inline {
  display: inline;
}

.z-index-2 {
  z-index: 2;
}

.position-abs-left {
  position: absolute;
  left: -9999px;
}

.cursor-pointer {
  cursor: pointer;
}

.left-px14 {
  left: 14px;
}

.left-px-16 {
  left: -16px;
}

.combinations-text {
  writing-mode: vertical-rl;
  text-orientation: sideways;
}

.text-center-25-percent {
  text-align: center;
  width: 25%;
}

.position-relative {
  position: relative;
}

.error-colour {
  color: #721C24;
}

/* Token textarea styling for managed identity token display */
.token-textarea {
  font-family: monospace;
  font-size: 12px;
}

/* Order Confirmation */
@media print {
  body {
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
    print-color-adjust: exact !important; /* Firefox */
  }
}
.confirmation-header {
  background: #02354B;
  color: #fff;
  border-left: 0;
  border-bottom: 8px solid #BCCF21;
  clip-path: polygon(2% 0%, 100% 0, 100% 100%, 0% 100%);
}

.underline {
  text-decoration: underline;
}

.order-table {
  width: 100%;
}

.order-table th, .order-table td {
  border: 4px solid #fff;
  padding: 0.5rem !important;
}

.order-table th {
  background: #4F4A49 !important;
  color: #fff;
}

.order-table td {
  background: #D7D5D4 !important;
  color: #000;
}

.details-border {
  border: 2px solid;
}

.logo {
  width: auto; /* Set the desired width */
  height: 100px; /* Set the desired height */
  object-fit: cover; /* Optional: maintain aspect ratio and cover the area */
}

.print-only {
  display: none; /* Hide by default */
}

@media print {
  .print-only {
    display: block; /* Show only in print */
  }
}