/* Thermostats & Gateways Compatibility Checker – Figma-style (teal, progress, cards) */

:root {
  --tgcc-teal: #008871;
  --tgcc-teal-dark: #0f766e;
  --tgcc-gray: #B3B3B3;
  --tgcc-gray-light: #E0E0E0;
  --tgcc-gray-text: #5A5A5A;
  --tgcc-border: #d1d5db;
}

.tgcc-wrap {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #2d3748;
  -webkit-font-smoothing: antialiased;
}

.tgcc-wrap button,
.tgcc-wrap input[type="button"],
.tgcc-wrap input[type="submit"] {
  border-radius: 6px !important;
  padding: 0.6rem 2rem !important;
  outline: none !important;
  box-shadow: none !important;
}

.tgcc-wrap button:focus,
.tgcc-wrap button:focus-visible,
.tgcc-wrap input[type="button"]:focus,
.tgcc-wrap input[type="button"]:focus-visible,
.tgcc-wrap input[type="submit"]:focus,
.tgcc-wrap input[type="submit"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.tgcc-wrap button.tgcc-btn-back {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  color: #505B69;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
}

.tgcc-wrap button.tgcc-card {
  padding: 1rem !important;
}

.tgcc-wrap button.tgcc-modal-close {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.tgcc-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.tgcc-wizard-header {
  display: flex;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
  gap: 0.75em;
  margin-bottom: 0.5em;
}

.tgcc-wizard-header .tgcc-steps-nav {
  flex: 1;
  min-width: 0;
}

.tgcc-progress-bar-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tgcc-progress-bar {
  position: relative;
  width: 75%;
  min-width: 200px;
  max-width: 400px;
  height: 4px;
  background: var(--tgcc-gray-light);
  border-radius: 2px;
  overflow: visible;
}

.tgcc-progress-percent {
  position: absolute;
  bottom: calc(100% + 4px);
  left: var(--tgcc-progress-pct, 0%);
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--tgcc-gray-text);
  line-height: 1;
  white-space: nowrap;
}

.tgcc-progress-bar-fill {
  height: 100%;
  background: var(--tgcc-teal);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.tgcc-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: #505B69;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
  outline: none;
  flex-shrink: 0;
}

.tgcc-btn-back:hover {
  color: #505B69;
  opacity: 0.8;
}

.tgcc-back-icon {
  display: inline-flex;
}

.tgcc-back-icon svg {
  display: block;
  width: 10px;
  height: 18px;
}

.tgcc-steps-nav {
  width: 100%;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
}

.tgcc-steps-nav-result {
  margin-bottom: 1em;
}

.tgcc-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  width: 80%;
  box-sizing: border-box;
}

.tgcc-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  color: var(--tgcc-gray);
  box-sizing: border-box;
}

.tgcc-step-item.tgcc-step-upcoming {
  cursor: default;
  pointer-events: none;
}

.tgcc-step-item.tgcc-step-hidden {
  display: none !important;
}

.tgcc-step-top {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 24px;
}

.tgcc-step-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tgcc-gray);
  border: none;
  flex-shrink: 0;
  display: block;
  box-sizing: border-box;
}

.tgcc-step-connector {
  margin-left: 70%;
  width: 60%;
  max-width: 60%;
  height: 2px;
  background: var(--tgcc-gray);
  border-radius: 2px;
  flex: 0 0 auto;
  min-width: 0;
}

.tgcc-step-connector-last {
  flex: 0;
  width: 0;
  min-width: 0;
  overflow: hidden;
}

.tgcc-step-item.tgcc-step-done .tgcc-step-marker {
  background: #009883;
  border: 1px solid var(--tgcc-teal-dark);
  color: #fff;
}

.tgcc-step-item.tgcc-step-done .tgcc-step-connector {
  background: var(--tgcc-teal);
}

.tgcc-step-item.tgcc-step-current .tgcc-step-marker {
  background: #fff;
  border: 2px solid var(--tgcc-teal);
  color: var(--tgcc-teal);
}

.tgcc-step-item.tgcc-step-current .tgcc-step-connector {
  background: var(--tgcc-teal);
}

.tgcc-form-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.tgcc-steps-content {
  width: 100%;
  min-width: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.tgcc-panel {
  margin-bottom: 0;
  padding: 0 0 1.25em 0;
  border: none;
}

.tgcc-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8em;
  color: #000;
  padding: 1em 0 0.5em 0;
  margin: 0;
  display: block;
  text-align: center;
}

.tgcc-panel-entry .tgcc-section-title,
.tgcc-panel-entry .tgcc-section-subtitle {
  white-space: pre-line;
}

.tgcc-section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #2d3748;
  margin: 0 0 1.25em 0;
  display: block;
  text-align: center;
}

.tgcc-section-intro {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #2d3748;
  margin: 0 0 0.5em 0;
  display: block;
  text-align: center;
}

/* Identify your unit: serial number input */
.tgcc-serial-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1em 0 0;
  width: 100%;
}

.tgcc-serial-input {
  width: 100%;
  max-width: 100%;
  padding: 0.75em 1em;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #000;
  background: #f5f5f5;
  border: none !important;
  box-shadow: none !important;
  border-radius: 6px !important;
  outline: none !important;
  box-sizing: border-box;
  margin-bottom: 0.75em;
  -webkit-appearance: none;
  appearance: none;
}

.tgcc-serial-input::placeholder {
  color: #9ca3af;
}

.tgcc-serial-input:focus {
  background: #f5f5f5;
  border: none !important;
  box-shadow: none !important;
  border-radius: 6px !important;
  outline: none !important;
}

.tgcc-serial-help-link {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #000 !important;
  text-decoration: underline !important;
  cursor: pointer;
  margin: 0 0 1.5em 0;
  min-height: 0;
}

.tgcc-serial-help-link:hover,
.tgcc-serial-help-link:focus,
.tgcc-serial-help-link:visited {
  color: #000 !important;
}

/* Serial help – inline view (replaces form content, not a popup) */
.tgcc-serial-help-view {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
}

.tgcc-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  font-size: 0;
  line-height: 0;
  color: #5A5A5A;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgcc-modal-close:hover {
  color: #000;
}

.tgcc-modal-close-icon {
  display: block;
  width: 12px;
  height: 12px;
}

.tgcc-modal-close:hover .tgcc-modal-close-icon {
  filter: brightness(0);
}

.tgcc-modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8em;
  color: #000;
  padding: 1em 0 1em 0;
  margin: 0;
  display: block;
  text-align: center;
}

.tgcc-modal-section {
  margin-bottom: 1.5em;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: 0 1em;
  align-items: start;
}

.tgcc-modal-section:last-of-type {
  margin-bottom: 0;
}

.tgcc-modal-section-title {
  grid-column: 1 / -1;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125em;
  color: #000;
  margin: 0 0 0.75em 0;
  text-align: left;
}

.tgcc-modal-section-image {
  width: 100%;
  min-height: 150px;
}

.tgcc-modal-section-img-placeholder {
  width: 100%;
  height: 150px;
  background: #f0f0f0;
  border-radius: 6px;
}

.tgcc-modal-section-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.tgcc-modal-section-text {
  min-width: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #2d3748;
  line-height: 1.5;
  margin: 0;
}

.tgcc-modal-section-text br {
  display: block;
  content: "";
  margin-top: 0.25em;
}

.tgcc-modal-footer {
  margin-top: 1.5em;
  padding-top: 1.25em;
  text-align: center;
}

.tgcc-modal-back-link {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #767676 !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  min-height: 0;
}


.tgcc-modal-back-chevron {
  font-weight: 400;
}

/* Serial found / not found modals */
.tgcc-serial-modal {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
}

.tgcc-serial-found-model,
.tgcc-serial-not-found-message {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #333;
  margin: 0 0 0.5em 0;
  text-align: center;
}

.tgcc-modal-footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  justify-content: center;
  margin-top: 1.5em;
  padding-top: 1.25em;
}

.tgcc-modal-footer-buttons .tgcc-btn {
  padding: 0.6em 1.25em;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  font-weight: 400;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
}

.tgcc-modal-footer-buttons .tgcc-btn-primary {
  background: var(--tgcc-teal) !important;
  color: #fff !important;
  border-color: var(--tgcc-teal);
}

.tgcc-modal-footer-buttons .tgcc-btn-primary:hover {
  background: var(--tgcc-teal-dark) !important;
  color: #fff !important;
}

.tgcc-modal-footer-buttons .tgcc-btn-secondary {
  background: #fff !important;
  color: #555 !important;
  border-color: var(--tgcc-border);
}

.tgcc-modal-footer-buttons .tgcc-btn-secondary:hover {
  background: #f5f5f5 !important;
  color: #333 !important;
}

/* Identify your unit: dropdown select */
.tgcc-select-wrap {
  margin: 1em 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tgcc-select {
  width: 100%;
  padding: 0.75em 2.5em 0.75em 1em;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #2d3748;
  background: #fff;
  border: 1px solid var(--tgcc-border);
  border-radius: 6px;
  cursor: pointer;
  appearance: none;
  background-image: url("images/arrow-dropdown.svg");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 19px 11px;
}

.tgcc-select:focus {
  outline: none;
  border-color: var(--tgcc-teal);
}

.tgcc-select option {
  padding: 0.5em;
}

/* Entry: two choice buttons side by side */
.tgcc-entry-choices,
.tgcc-choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin: 1em 0;
}

.tgcc-choice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  outline: none;
  border: 2px solid transparent;
  background: #fff;
  min-width: 180px;
}

.tgcc-choice-btn.tgcc-choice-active {
  border-color: var(--tgcc-teal);
  color: var(--tgcc-teal);
}

.tgcc-choice-btn.tgcc-choice-active:hover,
.tgcc-choice-btn.tgcc-choice-active:focus {
  background: #fff !important;
  color: var(--tgcc-teal) !important;
  outline: none;
}

.tgcc-choice-btn.tgcc-choice-active.tgcc-selected {
  background: #B0E4DD !important;
  border-color: var(--tgcc-teal);
  color: var(--tgcc-teal-dark);
  font-weight: 400;
}

.tgcc-choice-btn.tgcc-choice-disabled {
  background: #D9D9D9 !important;
  border-color: #D9D9D9;
  color: #B3B3B3 !important;
  cursor: not-allowed;
}

/* Select Features: two options + extra detail list */
.tgcc-choices-features {
  flex-direction: row;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1.5em;
}

.tgcc-step-extra-detail {
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0.5em;
}

.tgcc-extra-detail-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: #2d3748;
  margin: 0 0 0.5em 0;
}

.tgcc-extra-detail-list {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  color: #2d3748;
  margin: 0;
  padding-left: 1.25em;
  line-height: 1.5;
}

.tgcc-extra-detail-list li {
  margin-bottom: 0.35em;
}

/* Cards (thermostats, color with images later) */
.tgcc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25em;
  justify-items: center;
  margin: 1em 0;
  max-width: 100%;
}

.tgcc-cards[data-step-id="color"] {
  margin: 1em 5em;
}

.tgcc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem !important;
  border: 2px solid #B3B3B3;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-width: 140px;
  box-sizing: border-box;
}

.tgcc-card.tgcc-card-enabled {
  border: 2px solid #B3B3B3;
  color: var(--tgcc-teal);
}

.tgcc-card.tgcc-card-enabled:hover,
.tgcc-card.tgcc-card-enabled:focus {
  border-color: var(--tgcc-teal);
  background: #fff !important;
  color: var(--tgcc-teal) !important;
  box-shadow: none;
  outline: none;
}

.tgcc-card.tgcc-card-enabled:hover .tgcc-card-label,
.tgcc-card.tgcc-card-enabled:focus .tgcc-card-label {
  color: #008871 !important;
}

.tgcc-card.tgcc-card-enabled.tgcc-selected {
  border: 2px solid #008871;
  background: #fff !important;
  color: #008871;
  font-weight: 600;
}

.tgcc-card.tgcc-card-enabled.tgcc-selected .tgcc-card-label {
  color: #008871 !important;
  font-weight: 600;
  text-align: left;
 
}

.tgcc-card.tgcc-card-disabled {
  background: #D9D9D9 !important;
  border: 2px solid #B3B3B3;
  color: #B3B3B3 !important;
  cursor: not-allowed;
}

.tgcc-card.tgcc-card-disabled .tgcc-card-label {
  color: #B3B3B3 !important;
  font-weight: 600;
  text-align: left;
}

.tgcc-card-img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 0.5em;
  display: block;
}

.tgcc-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  text-align: left;
  color: #B3B3B3;
  display: block;
  width: 100%;  
  line-height: 0.95em;
}

/* Step actions: Back + Continue */
.tgcc-step-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.25em;
  flex-shrink: 0;
  margin-top: auto !important;
}

.tgcc-btn-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 2em;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: #008871 !important;
  color: #fff !important;
}

.tgcc-btn-continue:hover:not(:disabled),
.tgcc-btn-continue:focus,
.tgcc-btn-continue:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.tgcc-btn-continue:hover:not(:disabled) {
  background: #006d5d !important;
  color: #fff !important;
}

.tgcc-btn-continue:disabled {
  background: #D9D9D9 !important;
  color: #B3B3B3 !important;
  cursor: not-allowed;
}

/* Results screen */
.tgcc-result {
  font-family: 'Poppins', sans-serif;
}

.tgcc-result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25em;
  margin: 1.5em 5em;

}

@media (max-width: 600px) {
  .tgcc-result-cards {
    margin: 1.5em 0;
  }
}

.tgcc-result-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--tgcc-border);
  border-radius: 6px;
  padding: 1rem;
  text-align: left;
  min-height: 240px;
}

.tgcc-result-card-img-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75em;
}

.tgcc-result-card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.tgcc-result-card-text {
  margin-top: auto;
  flex-shrink: 0;
}

.tgcc-result-card--no-gateway {
  justify-content: center;
}

.tgcc-result-card--no-gateway .tgcc-result-card-text {
  margin-top: 0;
}

.tgcc-result-card-title {
  font-weight: 600;
  font-size: 1em;
  color: #000;
  margin: 0 0 0.25em 0;
}

.tgcc-result-card-detail {
  font-size: 0.95em;
  color: #000000;
  margin: 0;
}

.tgcc-result-card-no-gateway {
  font-weight: 600;
  font-size: 1em;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center !important;
  width: 100%;
  box-sizing: border-box;
}


.tgcc-result-summary-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3em;
  color: #000;
  margin: 1.5em 0 0.75em 0;
  text-align: center;
}

.tgcc-result-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75em;
  margin: 1em 5em;
}

.tgcc-result-flow-line {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}

.tgcc-result-flow-line-sep {
  width: 100%;
  height: 0;
  border-top: 1px solid var(--tgcc-border);
  margin: 0.25em 0;
}

.tgcc-result-flow-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tgcc-result-flow-item strong {
  font-size: 1em;
  font-weight: 600;
  color: #000;
}

.tgcc-result-flow-item span {
  font-size: 0.8em;
  color: var(--tgcc-gray-text);
}

.tgcc-serial-found-gen {
  text-align: center;
  font-size: 0.9em;
  color: var(--tgcc-gray-text);
  margin-top: 0.25em;
}

.tgcc-result-flow-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--tgcc-teal);
  font-weight: bold;
  font-size: 1.2em;
}

.tgcc-result-flow-arrow-img {
  display: block;
  width: 25px;
  height: 18px;
}

/* TEST ONLY: remove .tgcc-result-test-selection block for production */
.tgcc-result-test-selection {
  margin: 2em 0;
  padding: 1em;
  background: #f5f5f5;
  border: 1px dashed #999;
  border-radius: 6px;
  font-size: 0.9em;
}
.tgcc-result-test-selection-title {
  margin: 0 0 0.5em 0;
  font-size: 1em;
  color: #666;
}
.tgcc-test-selection-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}
.tgcc-test-selection-table th,
.tgcc-test-selection-table td {
  text-align: left;
  padding: 0.35em 0.5em;
  border-bottom: 1px solid #ddd;
}
.tgcc-test-selection-table th {
  font-weight: 600;
  color: #555;
}

.tgcc-result-cta-wrap {
  text-align: center;
  margin: 2em 0;
}

.tgcc-btn-order-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2em;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #fff !important;
  background: var(--tgcc-teal) !important;
  border: none !important;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.tgcc-btn-order-now:hover {
  background: var(--tgcc-teal-dark) !important;
  color: #fff !important;
}

/* Request view (Order Now) – same structure as tgcc-serial-help-view */
.tgcc-request-view {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
}

.tgcc-request-view-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.tgcc-request-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tgcc-request-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tgcc-teal);
}

.tgcc-request-progress-dot-dashed {
  width: 12px;
  height: 8px;
  border-radius: 0;
  background: transparent;
  border: 2px dashed var(--tgcc-teal);
}

.tgcc-request-form-view .tgcc-btn-back.tgcc-request-view-back {
  margin-bottom: 0.5rem;
}

.tgcc-request-view-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: var(--tgcc-gray-text);
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.tgcc-request-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.tgcc-request-form-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9em;
  color: #000;
  margin-bottom: 0.35em;
  font-weight: 600;
}

.tgcc-required {
  color: #c00;
}

.tgcc-request-form-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  border: none !important;
  border-radius: 6px;
  background: #ECECEC;
  box-shadow: none !important;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.tgcc-request-form-field input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.tgcc-request-form-actions {
  text-align: center;
}

.tgcc-request-form-actions .tgcc-btn-submit {
  background: var(--tgcc-teal) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.75em 2.5em !important;
  font-weight: 400;
  cursor: pointer;
}

.tgcc-request-form-actions .tgcc-btn-submit:hover {
  background: var(--tgcc-teal-dark) !important;
}

.tgcc-request-form-actions .tgcc-btn-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.tgcc-request-form-error {
  margin-bottom: 0.75em;
  padding: 0.5em 0.75em;
  background: #fee;
  color: #c00;
  font-size: 0.9em;
  border-radius: 4px;
}

/* Thank you view */
.tgcc-request-thankyou-view {
  text-align: center;
}

.tgcc-request-thankyou-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8em;
  color: var(--tgcc-teal);
  margin: 0 0 0.75em;
}

.tgcc-request-thankyou-message {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  color: #2d3748;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.tgcc-request-thankyou-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.tgcc-request-thankyou-actions .tgcc-btn-finish,
.tgcc-request-thankyou-actions .tgcc-btn-check-compatibility {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75em 2.5em !important;
  font-weight: 400;
  cursor: pointer;
}

.tgcc-request-thankyou-actions .tgcc-btn-finish {
  background: var(--tgcc-teal) !important;
  color: #fff !important;
  border: none !important;
}

.tgcc-request-thankyou-actions .tgcc-btn-check-compatibility {
  background: var(--tgcc-gray) !important;
  color: #fff !important;
  border: none !important;
}

.tgcc-request-thankyou-actions .tgcc-btn-check-compatibility:hover {
  background: #999 !important;
}

/* Hide close (X) button in request view (form and thank you) */
.tgcc-request-view .tgcc-request-view-close {
  display: none !important;
}

@media (max-width: 640px) {
  .tgcc-steps-list {
    width: 100%;
  }
  .tgcc-request-thankyou-message br.tgcc-thankyou-br {
    display: none;
  }
  .tgcc-result-flow {
    margin-left: 0;
    margin-right: 0;
  }
  .tgcc-section-title,
  .tgcc-modal-title {
    font-size: 1.4em;
  }
  .tgcc-request-form-grid {
    grid-template-columns: 1fr;
  }
  .tgcc-request-thankyou-title {
    font-size: 1.4em;
  }
  .tgcc-entry-choices,
  .tgcc-choices {
    flex-direction: column;
    align-items: center;
  }
  .tgcc-choice-btn {
    width: 100%;
    max-width: 280px;
  }
  .tgcc-panel-entry .tgcc-entry-choices {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .tgcc-panel-entry .tgcc-entry-choices .tgcc-choice-btn {
    width: 100%;
    max-width: none;
  }
  .tgcc-panel[data-step="ltch120_features"] .tgcc-choices {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .tgcc-panel[data-step="ltch120_features"] .tgcc-choices .tgcc-choice-btn {
    width: 100%;
    max-width: none;
  }
  .tgcc-cards {
    grid-template-columns: 1fr;
  }
  .tgcc-panel[data-step="thermostat"] .tgcc-cards {
    grid-template-columns: 1fr 1fr;
  }
  .tgcc-panel[data-step="thermostat"] .tgcc-cards .tgcc-card {
    min-width: 0;
    max-width: 100%;
  }
  .tgcc-card-label,
  .tgcc-card.tgcc-card-enabled.tgcc-selected .tgcc-card-label,
  .tgcc-card.tgcc-card-disabled .tgcc-card-label {
    text-align: center;
  }
  .tgcc-result-card-text {
    text-align: center;
  }
  .tgcc-result-flow-line {
    flex-direction: column;
    gap: 1em;
  }
  .tgcc-result-flow-arrow {
    transform: rotate(90deg);
  }
  .tgcc-result-flow-item {
    align-items: center;
  }
  .tgcc-serial-help-view .tgcc-modal-title {
    text-align: center;
  }
  .tgcc-serial-help-view .tgcc-modal-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .tgcc-serial-help-view .tgcc-modal-section-title {
    grid-column: 1;
    margin-top: 1em;
    margin-bottom: 0.5em;
    text-align: left;
  }
  .tgcc-serial-help-view .tgcc-modal-section-image {
    width: 100%;
    min-height: 180px;
  }
  .tgcc-serial-help-view .tgcc-modal-section-img-placeholder {
    min-height: 180px;
  }
  .tgcc-serial-help-view .tgcc-modal-section-text {
    text-align: left;
  }
  .tgcc-serial-help-view .tgcc-modal-footer {
    text-align: center;
  }
  .tgcc-serial-help-view .tgcc-modal-back-link {
    font-size: 0.9em;
    color: var(--tgcc-gray-text) !important;
  }
}
