/*! Copyright © 2024 Ask Media Group */
.ask-debug-strip {
  width: 100%;
  padding: 0px 10px;
}
.ask-debug-strip .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #FFFFFF;
  background-color: #244261;
  text-align: left;
  padding: 6px;
}
.ask-debug-strip .section-wrapper .section-toggle {
  font-weight: bold;
  background-color: #8db3e3;
  color: white;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}
.ask-debug-strip .section-wrapper .section-toggle.active,
.ask-debug-strip .section-wrapper .section-toggle:hover {
  background-color: #567fb3;
}
.ask-debug-strip .section-wrapper .section-content {
  width: 100%;
  border-collapse: collapse;
}
.ask-debug-strip .section-wrapper .section-content .header-row {
  background-color: #deeefe;
  color: #000000;
}
.ask-debug-strip .section-wrapper .section-content .header-row .header-cell {
  text-align: left;
  font-size: 13px;
  padding: 3px;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row:nth-child(even) {
  background-color: #eaf4fd;
  text-align: center;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row .body-cell {
  font-size: 16px;
  padding: 2px;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row .body-cell.align-left {
  text-align: left;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row th {
  width: 9%;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row th:nth-child(even) {
  background-color: #cde1f4;
  text-align: center;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row td {
  word-wrap: break-word;
}
.ask-debug-strip .section-wrapper .section-content .section-body .body-row td pre {
  font-size: 13px;
  text-align: left;
  overflow-x: auto;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}
.ask-debug-strip .section-wrapper .section-wrapper .section-label {
  background-color: #bed8f0;
}
.ask-debug-strip .section-wrapper .section-wrapper .section-toggle {
  font-weight: bold;
  background-color: #dbebfe;
  font-size: 13px;
  color: #000000;
}
.ask-debug-strip .section-wrapper .section-wrapper .section-toggle.active,
.ask-debug-strip .section-wrapper .section-wrapper .section-toggle:hover {
  background-color: #9dbee0;
}

@keyframes aioverview-slide {
  from {
    max-height: 0;
  }
  99% {
    max-height: 250vh;
  }
  to {
    max-height: auto;
  }
}
@keyframes aioverview-spinner {
  to {
    transform: rotate(1turn);
  }
}
.aioverview {
  margin: 5px 0;
  background: linear-gradient(180deg, var(--base-color, #ECF7FF) 0%, var(--background-color, #FFFFFF) 19.5%);
  border-radius: 20px;
  box-shadow: 0px 0px 6px 0px var(--shadow-color, #408EC940);
  margin-bottom: 30px;
  padding: 20px;
}
.aioverview .spinner {
  width: 18px;
  animation: aioverview-spinner 2.5s infinite;
  margin: 20px auto;
}
.aioverview .spinner path {
  fill: var(--spinner-color, #408EC9);
}
.aioverview .top-notice {
  margin-bottom: 20px;
}
.aioverview .top-notice,
.aioverview .bottom-notice {
  display: flex;
  color: var(--text-light-color, #4E4E4E);
  font-size: var(--font-size-disclaimer, 12px);
  line-height: var(--line-height-disclaimer, 14px);
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.aioverview .bottom-notice {
  margin-top: 10px;
}
.aioverview .paragraph {
  color: var(--text-strong-color, #02020B);
  font-size: var(--font-size-ai-paragraph, 16px);
  line-height: var(--line-height-ai-paragraph, 24px);
  margin: 10px 0 0;
}
.aioverview .suggested-articles {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.aioverview .read-more-content {
  display: none;
  overflow: hidden;
  animation: 3s ease-out forwards aioverview-slide;
}
.aioverview .read-more-button-container {
  margin-top: 10px;
  max-height: 40px;
  overflow: hidden;
  transition: 0.25s ease;
}
.aioverview .read-more {
  background-color: var(--background-color, #FFFFFF);
  border: 1px solid var(--base-color, #ECF7FF);
  border-radius: 40px;
  color: var(--text-light-color, #4E4E4E);
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  transition: background-color 1s;
}
.aioverview .read-more:hover {
  background-color: var(--base-color, #ECF7FF);
}
.aioverview .line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* Replace '2' with the number of lines you want */
}
.aioverview .article-card {
  background-color: var(--base-color, #ECF7FF);
  border-radius: 8px;
  color: inherit;
  font-size: var(--font-size-article-card, 12px);
  line-height: var(--line-height-article-card, 18px);
  padding: 10px;
  text-decoration: inherit;
  transition: background-color 1s;
}
.aioverview .article-card .card-site {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  text-transform: capitalize;
}
.aioverview .article-card .card-icon {
  height: 14px;
  margin: 2px 0;
  width: 14px;
}
.aioverview .article-card .card-title {
  color: var(--text-card-title-color, #202124);
  font-size: var(--font-size-article-card-title, 13px);
  line-height: var(--line-height-article-card-title, 18px);
  font-weight: normal;
  margin: 0;
}
.aioverview .article-card .card-description {
  margin: 0;
}

