/* Apply Form Chatbot v1.0 — styles. Loaded via Webflow Head Custom Code. */
.osc-cb-host, .osc-cb-host *, .osc-cb-host *::before, .osc-cb-host *::after {
  box-sizing: border-box;
  font-family: inherit;
}

.osc-cb-host {
  position: fixed;
  z-index: 999998;
  pointer-events: none;
}

.osc-cb-host > * {
  pointer-events: auto;
}

.osc-cb-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: auto;
  height: 56px;
  padding: 0 20px;
  border-radius: 28px;
  background: var(--brand--brand-100, #EC7A2D);
  color: var(--swatch--background-white, #fff);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.osc-cb-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.osc-cb-launcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 767px) {
.osc-cb-launcher {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 0;
    border-radius: 0;
    justify-content: center;
  }

}

.osc-cb-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 380px;
  height: 600px;
  max-height: calc(100vh - 48px);
  background: var(--swatch--background-white, #fff);
  border: 1px solid var(--neutral--neutral-300, #d9d9d9);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 767px) {
.osc-cb-panel {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 92dvh;
    max-height: 92dvh;
    border-radius: 16px 16px 0 0;
  }

}

.osc-cb-panel-header {
  padding: 16px;
  border-bottom: 1px solid var(--neutral--neutral-200, #ececec);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.osc-cb-panel-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--swatch--text-white-section, #1a1a1a);
}

.osc-cb-panel-progress {
  font-size: 12px;
  color: var(--swatch--text-white-alternative, #999);
  margin-top: 2px;
}

.osc-cb-close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swatch--text-white-alternative, #999);
  font-size: 22px;
  line-height: 1;
}

.osc-cb-close-btn:hover {
  background: var(--neutral--neutral-100, #f5f5f5);
}

.osc-cb-back-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--swatch--text-white-alternative, #555);
  margin-right: 8px;
  font-size: 20px;
  line-height: 1;
  font-family: inherit;
}

.osc-cb-back-btn:hover {
  background: var(--neutral--neutral-100, #f5f5f5);
  color: var(--swatch--text-white-section, #1a1a1a);
}

.osc-cb-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.osc-cb-message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.osc-cb-message-bot {
  align-self: flex-start;
  background: var(--neutral--neutral-100, #f5f5f5);
  color: var(--swatch--text-white-section, #1a1a1a);
  border-bottom-left-radius: 4px;
}

.osc-cb-message-user {
  align-self: flex-end;
  background: var(--brand--brand-100, #EC7A2D);
  color: var(--swatch--background-white, #fff);
  border-bottom-right-radius: 4px;
}

.osc-cb-message a {
  color: inherit;
  text-decoration: underline;
}

.osc-cb-panel-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--neutral--neutral-200, #ececec);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  max-height: 50%;
  overflow-y: auto;
}

.osc-cb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.osc-cb-chips-stacked {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.osc-cb-chips-stacked .osc-cb-chip {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
}

.osc-cb-chip {
  padding: 8px 14px;
  border-radius: 18px;
  background: var(--swatch--background-white, #fff);
  border: 1.5px solid var(--neutral--neutral-300, #d9d9d9);
  color: var(--swatch--text-white-section, #1a1a1a);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s ease;
  font-family: inherit;
}

.osc-cb-chip:hover {
  border-color: var(--brand--brand-100, #EC7A2D);
  background: var(--neutral--neutral-100, #f5f5f5);
}

.osc-cb-chip-active {
  background: var(--brand--brand-100, #EC7A2D);
  color: var(--swatch--background-white, #fff);
  border-color: var(--brand--brand-100, #EC7A2D);
}

.osc-cb-chip-secondary {
  background: transparent;
}

.osc-cb-chip-main {
  display: block;
  font-weight: 500;
}

.osc-cb-chip-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: normal;
  color: var(--swatch--text-white-alternative, #777);
  line-height: 1.3;
}

.osc-cb-chip:hover .osc-cb-chip-subtitle {
  color: var(--swatch--text-white-section, #1a1a1a);
}

.osc-cb-chip-active .osc-cb-chip-subtitle,
.osc-cb-chip:active .osc-cb-chip-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.osc-cb-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--neutral--neutral-300, #d9d9d9);
  background: var(--swatch--background-white, #fff);
  color: var(--swatch--text-white-section, #1a1a1a);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}

.osc-cb-input:focus {
  border-color: var(--brand--brand-100, #EC7A2D);
}

.osc-cb-input-error {
  border-color: #d32f2f;
}

.osc-cb-textarea {
  min-height: 90px;
  resize: vertical;
}

.osc-cb-error-text {
  color: #d32f2f;
  font-size: 12px;
  margin-top: 4px;
}

.osc-cb-counter {
  font-size: 12px;
  color: var(--swatch--text-white-alternative, #999);
  margin-top: 4px;
  text-align: right;
}

.osc-cb-counter-warn {
  color: #d32f2f;
}

.osc-cb-phone {
  display: flex;
  gap: 8px;
}

.osc-cb-phone-dial {
  flex: 0 0 auto;
  min-width: 90px;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1.5px solid var(--neutral--neutral-300, #d9d9d9);
  background: var(--swatch--background-white, #fff);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.osc-cb-phone-input {
  flex: 1;
}

.osc-cb-actions {
  display: flex;
  gap: 8px;
}

.osc-cb-btn-primary {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--brand--brand-100, #EC7A2D);
  color: var(--swatch--background-white, #fff);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  transition: opacity 0.15s ease;
}

.osc-cb-btn-primary:hover {
  opacity: 0.92;
}

.osc-cb-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.osc-cb-btn-secondary {
  padding: 12px 16px;
  border-radius: 10px;
  background: transparent;
  color: var(--swatch--text-white-section, #1a1a1a);
  border: 1.5px solid var(--neutral--neutral-300, #d9d9d9);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
}

.osc-cb-search {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 8px 0;
}

.osc-cb-search-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--neutral--neutral-200, #ececec);
  background: var(--neutral--neutral-100, #f5f5f5);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.osc-cb-summary {
  background: var(--neutral--neutral-100, #f5f5f5);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.osc-cb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--neutral--neutral-200, #ececec);
}

.osc-cb-summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.osc-cb-summary-label {
  color: var(--swatch--text-white-alternative, #777);
  font-size: 12px;
}

.osc-cb-summary-value {
  color: var(--swatch--text-white-section, #1a1a1a);
  font-weight: 500;
  text-align: right;
}

.osc-cb-edit-link {
  color: var(--brand--brand-100, #EC7A2D);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.osc-cb-loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--neutral--neutral-300, #d9d9d9);
  border-top-color: var(--brand--brand-100, #EC7A2D);
  border-radius: 50%;
  animation: osc-cb-spin 0.8s linear infinite;
}

@keyframes osc-cb-spin {
to {
    transform: rotate(360deg);
  }

}

.osc-cb-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  align-self: flex-start;
  background: var(--neutral--neutral-100, #f5f5f5);
  border-radius: 14px;
}

.osc-cb-typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral--neutral-400, #b3b3b3);
  animation: osc-cb-typing-bounce 1.4s infinite ease-in-out;
}

.osc-cb-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.osc-cb-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes osc-cb-typing-bounce {
0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }

30% {
    transform: translateY(-6px);
    opacity: 1;
  }

}

.osc-cb-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
}

.osc-cb-check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--brand--brand-100, #EC7A2D);
}

.osc-cb-check-row span {
  font-size: 14px;
  line-height: 1.4;
  color: var(--swatch--text-white-section, #1a1a1a);
}

.osc-cb-fade-in {
  animation: osc-cb-fade 0.25s ease;
}

@keyframes osc-cb-fade {
from {
    opacity: 0;
    transform: translateY(4px);
  }

to {
    opacity: 1;
    transform: translateY(0);
  }

}

