@charset "utf-8";
.currency-input {
  display: flex;
  align-items: center;
  font-size: 1.1em;
}

.currency-symbol {
  margin-right: 4px;
}
.styled-table input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1em;
  width: 100%;
}

.styled-table input:focus {
  outline: none;
}
body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  color: black;
  font-size: 20px;
}
#container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 1);
  border-radius: 20px;
}
/* Headings with rem-based sizes */
h1 {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
}
h2 {
  font-size: 1.75rem;
  font-weight: bold;
}
h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.header-img-wrapper {
  padding: 20px;
}
#headerimg {
  max-width: 600px;
  height: auto;
  display: block;
  width: 100%;
  border-radius: 0px;
  /*
  box-shadow: 0 0 12px rgba(0, 0, 0, 1);
	*/
}
.header-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.header-title {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 20px;
  margin: 5px;
  font-size: 2vw;
  font-weight: bold;
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav {
  overflow: hidden;
  display: flex;
  justify-content: center;
  background-color: #333;
  border-radius: 20px;
}
section {
  padding-left: 20px;
  padding-right: 20px;
}
.divider {
  border: none;
  border-top: 3px solid #15b3e3;
  margin: 10px 20px;
}
.formdivider {
  border: none;
  border-top: 3px solid #15b3e3;
  margin: 10px 0px;
}
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
form input, form textarea {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.hidden-field {
  display: none;
}
.message {
  text-align: center;
  font-weight: bold;
}
.grecaptcha-badge {
  visibility: hidden;
}
/* Unified button styles */
button, form button, #error-message button {
  background-color: #f0f0f0;
  color: #222;
  padding: 12px 24px;
  font-size: 16px;
  border: 3px solid #15b3e3;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 12px #15b3e3;
  transition: all 0.5s ease-in-out;
}
button:hover, form button:hover, #error-message button:hover {
  background-color: #555;
}
#error-message {
  background-color: #ffeeee;
  border: 1px solid #cc0000;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
  text-align: center;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  max-width: 100%;
  margin: 20px auto;
}
/* Media Queries */
@media screen and (max-width: 1200px) {
  #container {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  body {
    font-size: 18px;
  }
  #container {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
  }
  #container {
    width: 100%;
  }
  .header-title {
    font-size: 4vw;
  }
  .form-wrapper {
    padding: 10px;
  }
  form input, form textarea {
    font-size: 15px;
  }
  .br-sm::after {
    content: "\\A";
    white-space: pre;
  }
  .logo-img {
    max-width: 80%;
    width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
  }
}
.br-sm::after {
  content: "";
  display: inline;
}
.youtube-lazy {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  background-color: #000;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 1);
}
.youtube-lazy img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.youtube-play-button {
  position: absolute;
  width: 88px;
  height: 68px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('images/youtube-play.png') center center no-repeat;
  background-size: contain;
}
.intake-form-wrapper {
  margin: 0 auto;
}
/* Toggle Switch Base */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-top: 10px;
}
/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* Slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}
/* Slider circle */
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
/* Checked state */
.switch input:checked + .slider {
  background-color: #15b3e3;
}
.switch input:checked + .slider:before {
  transform: translateX(26px);
}
.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.toggle-label {
  font-size: 16px;
  font-weight: bold;
}
.intake-field-wrapper {
  max-width: 600px;
}
.styled-checkbox {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
}
.styled-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.styled-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 4px;
}
.styled-checkbox input:checked ~ .checkmark {
  background-color: #15b3e3;
  border-color: #15b3e3;
}
.styled-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.styled-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.styled-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.radio-option {
  margin-bottom: 1em;
}
.radio-container {
  display: flex;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  transition: border-color 0.3s, background-color 0.3s;
  background-color: #f9f9f9;
}
.radio-container input[type="radio"] {
  display: none;
}
.radio-content {
  width: 100%;
}
.radio-container:hover {
  border-color: #999;
}
.radio-container input[type="radio"]:checked + .radio-content {
  background-color: #e6f2ff;
  border-radius: 6px;
  border-left: 5px solid #0077cc;
  padding-left: 10px;
}
.file-preview {
  margin-top: 10px;
}
.file-preview img {
  max-width: 200px;
  margin: 5px 0;
  display: block;
}
.file-preview button {
  margin-top: 5px;
  display: inline-block;
}
.filmstrip-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  margin-bottom: 20px;
}
.filmstrip-gallery img {
  height: 80px;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s ease;
}
.filmstrip-gallery img:hover {
  transform: scale(1.05);
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-image-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.modal-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 8px;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}
.modal-nav.left {
  left: 0;
}
.modal-nav.right {
  right: 0;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2em;
  color: white;
  cursor: pointer;
}
.filmstrip-wrapper {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden; /* this hides overflow, but is fine if arrows sit outside */
}
.filmstrip-gallery {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.filmstrip-gallery img {
  width: 33vw;
  max-width: 200px;
  height: calc(33vw * 0.75); /* 4:3 aspect ratio */
  max-height: 150px;
  margin-right: 5px;
  display: inline-block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 1);
}
.filmstrip-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  color: #15b3e3;
  cursor: pointer;
  padding: 8px;
  font-size: 100px;
  user-select: none;
}
.filmstrip-arrow.left {
  left: 0;
}
.filmstrip-arrow.right {
  right: 0;
}
/* Hide arrows on mobile */
@media (max-width: 768px) {
  .filmstrip-arrow {
    display: none;
  }

  .filmstrip-gallery::-webkit-scrollbar {
    height: auto;
  }

  .filmstrip-gallery::-webkit-scrollbar-track {
    background: initial;
  }

  .filmstrip-gallery::-webkit-scrollbar-thumb {
    background-color: initial;
  }

  .filmstrip-gallery {
    scrollbar-width: auto; /* Firefox */
    scrollbar-color: auto; /* Firefox */
  }
}

.filmstrip-gallery::-webkit-scrollbar {
  display: none;
}
.filmstrip-gallery {
  -ms-overflow-style: none;  /* IE 10+ */
  scrollbar-width: none;     /* Firefox */
}
.image-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #15b3e3;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10000;
}
.modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #15b3e3;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10000;
}


@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Styled <select> dropdowns */
form select {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  appearance: none; /* removes default styling in Chrome */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
}

/* Ensure label text stays aligned */
label select {
  display: block;
}
table.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

table.styled-table th, table.styled-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

table.styled-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

table.styled-table tr:hover {
  background-color: #f5f5f5;
}

a.btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #15b3e3;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

a.btn:hover {
  background-color: #1198c4;
}
.inventory-scroll {
  overflow-x: auto;
  max-width: 100%;
}

.callout-box {
  background: #f5f5f5;
  border-left: 4px solid #000;
  padding: 20px;
  max-width: 900px;
  margin: 20px auto;
}
.capabilities-grid ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px 40px;
  padding-left: 20px;
}
.emphasis-line {
  font-style: italic;
  text-align: center;
  margin: 30px auto;
  color: #333;
}
.section-alt {
  background: #fafafa;
}
.capabilities-list {
	text-align: left;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  list-style-position: outside;
}

.capabilities-list li {
  margin-bottom: 0.75em;
}

.capability-feature {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 20px 24px;
  border-left: 4px solid #000;
  background: #f8f8f8;
}

.capability-feature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05em;
  letter-spacing: 0.02em;
}

.capability-feature p {
  margin: 0;
  line-height: 1.7;
}
.capabilities-list li::marker {
  color: #666;
}
.capability-feature,
.regulatory-feature {
  border-left: 4px solid #000;
  padding-left: 20px;
  background: #f8f8f8;
}
.language-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 50px;
  line-height: 1;
}

.language-toggle a {
  text-decoration: none;
}


.language-toggle a:hover {
  opacity: 0.8;
}
/* Mobile fix */
@media (max-width: 800px) {
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .language-toggle {
    position: static;      /* remove absolute positioning */
    margin-top: 8px;
    font-size: 25px;
  }
@media print {
  input {
    border: none !important;
    outline: none !important;
  }

  button {
    display: none;
  }
}
	
	#signature-pad {
  touch-action: none; /* Critical for modern browsers */
}