/* =============================================================
   FusionCharts Ask AI — Scoped Plugin Styles
   All rules are prefixed with #aida-chat-app to prevent
   bleed-in from the host site's theme CSS.
   ============================================================= */

/* ── Scoped box-sizing ──────────────────────────────────────── */
#aida-chat-app *,
#aida-chat-app *::before,
#aida-chat-app *::after {
  box-sizing: border-box;
}

/* ── Reset common HTML elements inside plugin ───────────────── */
#aida-chat-app h1,
#aida-chat-app h2,
#aida-chat-app h3,
#aida-chat-app h4,
#aida-chat-app h5,
#aida-chat-app h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  border: none;
  background: none;
}

#aida-chat-app p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

#aida-chat-app a {
  color: inherit;
  text-decoration: none;
  background: none;
}

#aida-chat-app ul,
#aida-chat-app ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

#aida-chat-app li {
  margin: 0;
  padding: 0;
}

#aida-chat-app button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: normal;
}

#aida-chat-app input,
#aida-chat-app textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
}

#aida-chat-app img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

#aida-chat-app pre,
#aida-chat-app code {
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

/* ── Root & main app layout ─────────────────────────────────── */
#aida-chat-app.aida-chat-redesigned {
  color: #2d3748;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Top Hero Banner ────────────────────────────────────────── */
#aida-chat-app .aida-hero-banner {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  padding: 40px 20px;
  margin-top: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

#aida-chat-app .aida-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

#aida-chat-app .aida-hero-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#aida-chat-app .aida-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
  letter-spacing: 0.3px;
  width: fit-content;
  color: #fff;
}

#aida-chat-app .aida-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  background-image: url("https://www.fusioncharts.com/public/images/chat-feedback/fc-chataIlogo-56x56.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#aida-chat-app .aida-logo-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

#aida-chat-app .aida-hero-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #fff;
}

#aida-chat-app .aida-hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
  color: #fff;
}

#aida-chat-app .aida-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#aida-chat-app .aida-hero-description {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.88;
  margin: 0;
  color: #fff;
}

#aida-chat-app .aida-hero-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#aida-chat-app .aida-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}

#aida-chat-app .aida-link:hover {
  border-bottom-color: #fff;
  opacity: 1;
}

/* ── Main content wrapper ───────────────────────────────────── */
#aida-chat-app .aida-main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

#aida-chat-app .aida-examples-section {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ── Examples container ─────────────────────────────────────── */
#aida-chat-app .aida-examples-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 30px;
  overflow-x: hidden;
}

#aida-chat-app .aida-qa-list-container,
#aida-chat-app #aida-qa-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Examples grid ──────────────────────────────────────────── */
#aida-chat-app .aida-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

#aida-chat-app .aida-example-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 140px;
}

#aida-chat-app .aida-example-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.12);
  transform: translateY(-3px);
}

#aida-chat-app .aida-example-icon {
  font-size: 28px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  line-height: 1;
  flex-shrink: 0;
}

#aida-chat-app .aida-example-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

#aida-chat-app .aida-example-text {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  flex: 1;
}

/* ── Message styling ────────────────────────────────────────── */
#aida-chat-app .aida-container-res,
#aida-chat-app .aida-container-ques {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

#aida-chat-app .aida-response {
  animation: aidaSlideIn 0.3s ease-out;
}

@keyframes aidaSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#aida-chat-app .aida-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Response box */
#aida-chat-app .aida-response-box {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 18px;
  flex: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  min-width: 0;
  overflow: hidden;
}

#aida-chat-app .aida-question-box {
  background: #f0f5ff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  overflow: hidden;
  min-width: 0;
}

#aida-chat-app .aida-question-pre {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  font-family: inherit;
  white-space: pre-wrap;
  word-break: break-word;
  background: none;
  border: none;
}

/* ── Response message content ───────────────────────────────── */
#aida-chat-app .aida-response-message {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  overflow: hidden;
  word-break: break-word;
}

#aida-chat-app .aida-response-message p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

#aida-chat-app .aida-response-message h1 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 16px 0 8px;
}

#aida-chat-app .aida-response-message h2 {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 14px 0 6px;
}

#aida-chat-app .aida-response-message h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 12px 0 6px;
}

#aida-chat-app .aida-response-message ul,
#aida-chat-app .aida-response-message ol {
  margin: 8px 0 12px 20px;
  padding: 0;
}

#aida-chat-app .aida-response-message ul {
  list-style: disc;
}

#aida-chat-app .aida-response-message ol {
  list-style: decimal;
}

#aida-chat-app .aida-response-message li {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

#aida-chat-app .aida-response-message a {
  color: #3b82f6;
  text-decoration: underline;
}

#aida-chat-app .aida-response-message a:hover {
  color: #1e40af;
}

#aida-chat-app .aida-response-message strong {
  font-weight: 700;
  color: #1e293b;
}

#aida-chat-app .aida-response-message em {
  font-style: italic;
}

#aida-chat-app .aida-response-message code {
  background: #f1f5f9;
  color: #0f172a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Monaco', 'Courier New', monospace;
}

#aida-chat-app .aida-response-message img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
  display: block;
}

/* ── Code blocks ────────────────────────────────────────────── */
#aida-chat-app .aida-response-message pre {
  position: relative;
  background: #1e293b;
  color: #e2e8f0;
  overflow-x: auto;
  overflow-y: auto;
  margin: 12px 0;
  padding: 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 100%;
  word-break: break-word;
}

#aida-chat-app .aida-response-message pre code {
  display: block;
  font-family: 'Monaco', 'Courier New', monospace;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-size: 13px;
}

/* ── Icons ───────────────────────────────────────────────────── */
#aida-chat-app .aida-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

#aida-chat-app .aida-icon-chat {
  background: #fff;
  padding: 5px;
}

#aida-chat-app .aida-fc-logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#aida-chat-app .aida-icon-chat-que {
  background: #dbeafe;
  color: #1e40af;
  font-size: 18px;
  font-weight: 700;
}

#aida-chat-app .aida-icon-cat {
  background: #e0e7ff;
  color: #4f46e5;
}

/* ── Copy button ─────────────────────────────────────────────── */
#aida-chat-app .aida-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  padding: 4px 8px;
  background: #334155;
  color: #e2e8f0;
  border: 1px solid #475569;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
}

#aida-chat-app .aida-copy-btn:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

#aida-chat-app .aida-copy-btn--success {
  background: #22c55e !important;
  border-color: #22c55e !important;
}

/* ── Loading animation ──────────────────────────────────────── */
#aida-chat-app .aida-loading-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}

#aida-chat-app .aida-loading-animation {
  width: 20px;
  height: 20px;
  border: 3px solid #e2e8f0;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: aidaSpin 1s linear infinite;
  flex-shrink: 0;
}

@keyframes aidaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#aida-chat-app .aida-loading-container p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

/* ── Input bar ──────────────────────────────────────────────── */
#aida-chat-app .aida-input-bar {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 20px 0;
  margin-top: auto;
  overflow: hidden;
  width: 100%;
}

#aida-chat-app .aida-input-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  overflow: hidden;
}

#aida-chat-app .aida-chat-question-container {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 16px;
  transition: border-color 0.2s;
}

#aida-chat-app .aida-chat-question-container:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

#aida-chat-app .aida-chat-question {
  flex: 1;
  background: transparent;
  color: #2d3748;
  resize: none;
  overflow-y: hidden;
  font-size: 14px;
  max-height: 120px;
  height: 20px;
  line-height: 1.5;
  border: none;
  outline: none;
  padding: 0;
  font-family: inherit;
  display: block;
  width: 100%;
}

#aida-chat-app .aida-chat-question::placeholder {
  color: #94a3b8;
}

/* Send button */
#aida-chat-app .aida-send-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.2s;
  padding: 0;
  margin-bottom: 2px;
}

#aida-chat-app .aida-send-btn:hover:not(.aida-send-disabled) {
  color: #3b82f6;
  transform: scale(1.1);
}

#aida-chat-app .aida-send-btn.aida-send-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#aida-chat-app .aida-send-btn svg {
  width: 20px;
  height: 20px;
}

/* Disclaimer and footer */
#aida-chat-app .aida-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  margin: 8px 0 0 0;
  line-height: 1.5;
}

#aida-chat-app .aida-footer-links {
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
}

#aida-chat-app .aida-footer-links a {
  color: #3b82f6;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

#aida-chat-app .aida-footer-links a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* ── Scrollbar styling ──────────────────────────────────────── */
#aida-chat-app .aida-custom-scrollbar::-webkit-scrollbar,
#aida-chat-app .aida-examples-section::-webkit-scrollbar {
  width: 8px;
}

#aida-chat-app .aida-custom-scrollbar::-webkit-scrollbar-track,
#aida-chat-app .aida-examples-section::-webkit-scrollbar-track {
  background: transparent;
}

#aida-chat-app .aida-custom-scrollbar::-webkit-scrollbar-thumb,
#aida-chat-app .aida-examples-section::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

#aida-chat-app .aida-custom-scrollbar::-webkit-scrollbar-thumb:hover,
#aida-chat-app .aida-examples-section::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ── Feedback modal ─────────────────────────────────────────── */
#aida-chat-app .aida-modal {
  display: none;
  position: fixed !important;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

#aida-chat-app .aida-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

#aida-chat-app .aida-modal-header {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#aida-chat-app .aida-modal-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

#aida-chat-app .aida-icon-feedback-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 16px;
}

#aida-chat-app .aida-modal-close {
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
}

#aida-chat-app .aida-modal-close:hover {
  opacity: 0.8;
}

#aida-chat-app .aida-modal-heading {
  background: #f8fafc;
  padding: 12px 20px;
  border-bottom: 1px solid #e2e8f0;
}

#aida-chat-app .aida-modal-heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

#aida-chat-app .aida-modal-body {
  padding: 20px;
}

#aida-chat-app .aida-feedback-desc {
  text-align: center;
  font-size: 14px;
  color: #475569;
  margin-bottom: 16px;
}

#aida-chat-app .aida-feedback-msg {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-align: center;
  font-size: 14px;
  display: none;
}

#aida-chat-app .aida-feedback-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

#aida-chat-app .aida-feedback-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Face rating row */
#aida-chat-app .aida-faces-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 16px 0 20px;
}

#aida-chat-app .aida-face-item {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  background: #f1f5f9;
  transition: all 0.2s;
}

#aida-chat-app .aida-face-item:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

#aida-chat-app .aida-face-item.aida-face-selected {
  background: #eff6ff;
  border-color: #3b82f6;
}

#aida-chat-app .aida-face-emoji {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

#aida-chat-app .aida-face-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

/* Feedback textarea */
#aida-chat-app #aida-feedback-text {
  width: 100%;
  height: 100px;
  resize: vertical;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #2d3748;
  display: block;
  background: #fff;
  outline: none;
}

#aida-chat-app #aida-feedback-text::placeholder {
  color: #94a3b8;
}

#aida-chat-app #aida-feedback-text:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

/* Modal actions */
#aida-chat-app .aida-modal-actions {
  text-align: center;
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

#aida-chat-app .aida-btn-primary {
  flex: 1;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  line-height: normal;
  display: inline-block;
  text-align: center;
}

#aida-chat-app .aida-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#aida-chat-app .aida-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#aida-chat-app .aida-cancel-btn {
  color: #3b82f6;
  cursor: pointer;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

#aida-chat-app .aida-cancel-btn:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #aida-chat-app .aida-hero-banner {
    margin-top: 80px;
  }
  #aida-chat-app .aida-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #aida-chat-app .aida-hero-title {
    font-size: 28px;
  }
  #aida-chat-app .aida-examples-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  #aida-chat-app .aida-hero-banner {
    padding: 30px 16px;
    margin-top: 60px;
  }
  #aida-chat-app .aida-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #aida-chat-app .aida-hero-title {
    font-size: 24px;
  }
  #aida-chat-app .aida-hero-subtitle {
    font-size: 14px;
  }
  #aida-chat-app .aida-hero-description {
    font-size: 14px;
  }
  #aida-chat-app .aida-hero-links {
    gap: 14px;
  }
  #aida-chat-app .aida-examples-container {
    padding: 24px 16px;
  }
  #aida-chat-app .aida-examples-grid {
    grid-template-columns: 1fr;
  }
  #aida-chat-app .aida-input-container {
    padding: 0 16px;
  }
  #aida-chat-app .aida-example-card {
    padding: 16px;
  }
  #aida-chat-app .aida-link {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #aida-chat-app .aida-hero-banner {
    padding: 24px 12px;
    margin-top: 40px;
  }
  #aida-chat-app .aida-hero-title {
    font-size: 20px;
  }
  #aida-chat-app .aida-hero-subtitle {
    font-size: 13px;
  }
  #aida-chat-app .aida-hero-description {
    font-size: 13px;
    line-height: 1.6;
  }
  #aida-chat-app .aida-hero-inner {
    gap: 16px;
  }
  #aida-chat-app .aida-examples-container {
    padding: 16px 12px;
  }
  #aida-chat-app .aida-input-container {
    padding: 0 12px;
  }
  #aida-chat-app .aida-example-icon {
    font-size: 24px;
  }
  #aida-chat-app .aida-example-text {
    font-size: 13px;
  }
}
