/*! Copyright © 2025 Ask Media Group */
@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 .query-title {
  font-size: var(--font-size-title, 26px);
  color: var(--color-title, #4D5156);
  margin-top: -20px;
  margin-bottom: 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;
  width: var(--readmore-width, auto);
}
.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;
}
.aioverview.aioverview-flat {
  background: var(--background-color, #FFFFFF);
  box-shadow: none;
  padding: 0;
}

.people-also-ask {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  background: #FFFFFF;
  margin: 9px 0px 17px 0px;
  border-bottom: 1px solid #DDDDDD;
  width: 606px;
}
.people-also-ask .header-group {
  box-sizing: border-box;
  width: 606px;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
}
.people-also-ask .paa-group {
  box-sizing: border-box;
  width: 606px;
  height: auto;
  background: #FFFFFF;
  border-bottom: 1px solid #DDDDDD;
}
.people-also-ask .paa-group button {
  margin: 0;
  background-color: white;
  border: none;
  padding: 0;
}
.people-also-ask .paa-group:last-child {
  border-bottom: none;
}
.people-also-ask .heading {
  width: 145px;
  height: 23px;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
  margin: 0 0 10px 0;
}
.people-also-ask .title {
  width: 606px;
  text-decoration: none;
  text-transform: lowercase;
  cursor: pointer;
}
.people-also-ask .title p:after {
  content: '';
  position: relative;
  width: 10px;
  height: 10px;
  border: 1.5px solid;
  border-color: #000000;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-left: 0;
  border-bottom: 0;
  float: right;
  right: 0;
  margin-right: 8px;
}
.people-also-ask .title-active p:after {
  content: '';
  position: relative;
  width: 10px;
  height: 10px;
  border: 1.5px solid;
  border-color: #000000;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-left: 0;
  border-bottom: 0;
  margin-top: 6px;
  text-transform: lowercase;
  float: right;
  right: 0;
}
.people-also-ask .label {
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  overflow: hidden;
  text-overflow: clip;
  text-transform: lowercase;
  text-decoration: none;
  margin: 11px 0px 12px 0px;
}
.people-also-ask .title::first-letter {
  text-transform: uppercase;
}
.people-also-ask .paa-details {
  box-sizing: border-box;
  padding: 0px 0px 20px;
  width: 606px;
  background: #FFFFFF;
  display: block;
  height: auto;
  font-family: Roboto, sans-serif;
  text-decoration: none;
}
.people-also-ask .paa-details .paa-url {
  font-size: 16px;
  margin: 20px 0px 10px 0px;
  line-height: 22px;
  color: #4d5156;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.people-also-ask .paa-details .paa-title {
  font-size: 20px;
  line-height: 23px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}
.people-also-ask .paa-details .paa-title-link {
  text-decoration: none;
  color: #1A0DAB;
}
.people-also-ask .paa-details .paa-abstract {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #000000;
  overflow: hidden;
  display: block;
}

.search-results {
  margin: 18px 0 0 0;
}
.search-results .result {
  padding: 9px 0 17px 0;
}
.search-results .result-url {
  font-size: 14px;
  line-height: 24px;
  color: #202124;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.search-results .result-domain {
  color: #202124;
  font-size: 14px;
  display: block;
  line-height: 22px;
  white-space: nowrap;
  text-transform: capitalize;
}
.search-results .result-favicon-link {
  text-decoration: none;
  padding-right: 8px;
  display: block;
}
.search-results .result-favicon-img {
  float: left;
  margin: 6px 12px 6px 0;
  background-color: #f1f3f4;
  border: 1px solid #ecedef;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 26px;
}
.search-results .result-favicon-img-compact {
  float: left;
  background-color: #f1f3f4;
  border: 1px solid #ecedef;
  border-radius: 50%;
  height: 26px;
  width: 26px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-right: 12px;
  margin-top: 2px;
}
.search-results .result.right-web-results .result-favicon-img {
  width: 14px;
  height: 14px;
  margin: 0px 6px 0 0;
  border-radius: 14px;
  background-color: #E6E8EB;
}
.search-results .result.right-web-results .result-favicon-img img {
  width: 10px;
  height: 10px;
}
.search-results .result-title {
  padding: 5px 0;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-results .result-title-link {
  color: #1A0DAB;
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
  text-decoration: none;
}
.search-results .result-title-link:hover {
  text-decoration: underline;
}
.search-results .result-abstract {
  color: #4D5156;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.search-results .result.compact .result-url-section {
  padding-bottom: 5px;
}
.search-results .result.compact .result-domain {
  color: #202124;
  font-size: 14px;
  display: block;
  line-height: 20px;
  white-space: nowrap;
  text-transform: none;
}
.search-results .result.compact .result-url {
  font-size: 12px;
  line-height: 18px;
  color: #202124;
}
.search-results .result.compact .result-title {
  padding: 0;
}
.search-results .result.compact .result-abstract {
  color: #5f6368;
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.search-results.swap-title .result {
  display: flex;
  flex-direction: column;
}
.search-results.swap-title .result-url-section {
  order: 1;
}
.search-results.swap-title .result-url {
  color: #0E7744;
}
.search-results.swap-title .result-title {
  order: 0;
}
.search-results.swap-title .result p {
  order: 3;
}
.search-results.disable-click .result.compact .result-url-section {
  pointer-events: none;
}
.search-results .sub-header {
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  padding-top: 10px;
  font-weight: unset;
  padding-bottom: unset;
  margin: 0;
}
.no-results .heading {
  font-weight: bold;
  margin: 20px 0 0 0;
}
.no-results .text-content-title {
  margin: 20px 0 20px 0;
}
@media only screen and (max-width: 720px) {
  .search-results {
    flex: 1;
    margin: 0;
  }
  .search-results .sub-header {
    border-bottom: 1px solid #DDD;
    background-color: white;
    border-radius: 0;
    margin: 5px 0 1px 0;
    padding: 10px 0 10px 10px;
  }
  .search-results .results .result {
    background-color: white;
    border-radius: 0;
    padding: 9px 0 8px 0;
    margin: 10px 0;
  }
  .search-results .results .result:first-child {
    margin-top: 0;
    border-top: none;
  }
  .search-results .results .result-url-section {
    padding-left: 10px;
  }
  .search-results .results .result-url {
    font-size: 12px;
    line-height: 22px;
  }
  .search-results .results .result-title {
    padding: 3px 10px;
  }
  .search-results .results .result-title-link {
    font-size: 18px;
    white-space: normal;
  }
  .search-results .results .result p {
    padding-left: 10px;
    padding-right: 10px;
  }
  .search-results.swap-title .results .result-url {
    font-size: 14px;
  }
}
.rating-icon {
  width: 16px;
  height: 16px;
  margin: 6px 3px 3px 6px;
  position: absolute;
}
.constrained {
  display: inline-block;
  max-width: 96%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagination-ui {
  overflow: hidden;
  margin: 0;
  padding: 20px 0;
}
.pagination-ui.hidden {
  display: none;
}
.pagination-ui .body {
  width: 100%;
  background-color: #FFF;
}
.pagination-ui .list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: left;
  align-content: stretch;
  width: 100%;
  padding: 0;
  margin: 0;
}
.pagination-ui .list .item {
  list-style: outside none none;
  border-color: #EBEBEB;
  border-style: solid;
  border-width: 1px;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  width: 25%;
  cursor: pointer;
  text-decoration: none;
  color: #4d5156;
}
.pagination-ui .list .item.selected {
  color: #666;
  font-weight: normal;
  background: #E0E0E0 none repeat scroll 0 0;
}
.pagination-ui .list.circle-number {
  justify-content: center;
}
.pagination-ui .list.circle-number .item {
  border-radius: 50%;
  width: 30px;
  border-color: #0000;
  background-color: #0000;
  color: black;
  margin: 0 12px;
  font-weight: 700;
  border-width: 0px;
}
.pagination-ui .list.circle-number .item.previous,
.pagination-ui .list.circle-number .item.next {
  font-weight: 400;
}
.pagination-ui .list.circle-number .item.previous {
  width: 50px;
}
.pagination-ui .list.circle-number .item.selected {
  border-width: 3px;
}
.pagination-ui.pagination-rounded .list {
  gap: 10px;
}
.pagination-ui.pagination-rounded .list .item {
  border-radius: 10px;
  height: 24px;
  line-height: normal;
}
.pagination-ui.pagination-rounded .list .item .label {
  font-size: 12px;
  line-height: 25px;
}
.pagination-ui.pagination-rounded .list .selected .label {
  font-size: 12px;
  line-height: 25px;
}

.footer-item button {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
}

.dynamic-social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
.dynamic-social-links .headline {
  color: #A0A0B0;
  font-size: 1rem;
  font-family: Arial;
  line-height: 0.9375;
}
.dynamic-social-links .links-section {
  margin-top: 12px;
}
.dynamic-social-links .links-section svg {
  width: 16px;
  height: 16px;
}
.dynamic-social-links .links-section .social-link {
  display: inline-block;
  position: relative;
  height: 16px;
  padding: 8px;
  margin-right: 14px;
  border-radius: 4px;
  background: #F0F3F4;
  cursor: pointer;
}
.dynamic-social-links .links-section .social-link .custom-button {
  padding: 0px;
  border: 0px;
  height: 16px;
  cursor: pointer;
}
.dynamic-social-links .links-section .social-link .custom-button:last-child {
  margin-right: 0px;
}
.dynamic-social-links .links-section .social-link .label {
  display: none;
}
.dynamic-social-links .links-section .social-link:last-child {
  margin-right: 0px;
}
.dynamic-social-links .links-section .social-link:hover .label {
  background: #ffffff;
  box-shadow: 0 5px 25px 5px rgba(205, 210, 214, 0.5);
  border-radius: 3px;
  color: #262626;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  max-width: 300px;
  min-width: 130px;
  padding: 8px 2px 2px 2px;
  height: 28px;
  line-height: 1.5714;
  transition: all 0.3s ease;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: -4px;
  left: 105%;
  display: block;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  align-self: normal;
  align-items: center;
  flex-grow: initial;
  flex-basis: initial;
  justify-content: center;
  border-top: none;
  margin: 0;
  overflow: visible;
}
.footer.hidden {
  display: none;
}
.footer-body {
  display: initial;
  flex-flow: initial;
  justify-content: initial;
  align-items: initial;
  font-size: 0.75rem;
  margin: 0 auto 0 auto;
  width: auto;
}
.footer-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: auto;
  flex-grow: initial;
  padding: 0;
}
.footer-item {
  display: inline;
  color: #888;
  margin: 0;
  padding-left: 2px;
  white-space: nowrap;
}
.footer-item:before {
  content: "-";
  margin: 0 0.4em;
  position: relative;
}
.footer-item:first-child:before {
  display: none;
}
.footer-item-link {
  color: #888;
  text-decoration: none;
}
.footer-item-link:hover {
  text-decoration: underline;
}
.footer-item.copy-right-newline {
  width: 100%;
  text-align: center;
}
.footer-item.copy-right-newline:before {
  content: "";
}
.footer-logo-left {
  margin-bottom: 0px;
}
.footer-logo-top {
  margin-bottom: 5px;
}
.footer .horizontal-line {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  width: 100%;
}
.footer .footer-left-logo {
  padding-left: 0px;
}
.footer .footer-top-logo {
  margin-bottom: 10px;
}
.footer.footer-bottom-right {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.footer.underline .footer-item {
  text-decoration: underline;
}
.footer.underline .footer-item.copyright {
  text-decoration: none;
}
.footer.underline .footer-item.copyright .amg-text {
  font-weight: bold;
}
.footer .disclosure-container {
  color: #757575;
  position: relative;
}
.footer .disclosure-link {
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  margin-left: 5px;
}
.footer .disclosure-tooltip {
  position: absolute;
  bottom: 26px;
  right: 9px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  max-width: 300px;
  font-size: 12px;
  margin: 10px 0;
  line-height: 22px;
}
.footer .disclosure-tooltip p {
  margin: 0;
}
.footer .disclosure-close-button {
  position: absolute;
  top: 2px;
  right: 2px;
  background: none;
  border: none;
  color: #757575;
  font-size: 13px;
  cursor: pointer;
}
.footer .footer-additional-text p {
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: #757575;
  margin-top: 5px;
}
@media only screen and (max-width: 720px) {
  .footer {
    flex-flow: column wrap;
    width: 100%;
  }
  .footer-list {
    justify-content: center;
  }
  .footer .footer-additional-text p {
    text-align: center;
  }
}

.spell-check {
  margin: 6px 3px;
}
.spell-check .dym {
  color: #000000;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}
.spell-check .spell-check-result-link {
  margin: 0 5px 0 5px;
  color: #3300b5;
  font-style: italic;
}

body {
  margin: 0;
}
.sem-serp-layout {
  font-family: Roboto, Arial, sans-serif;
  background-color: #FFFFFF;
  text-align: left;
  color: #4d5156;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sem-serp-layout input {
  font-family: inherit;
}
.sem-serp-layout .page-header.right-logo .search-box-ui {
  margin-left: calc(174px - 14px);
}
.sem-serp-layout .page-header.left-logo .logo {
  width: calc(174px - 14px);
  display: flex;
  justify-content: right;
}
.sem-serp-layout .page-header.left-logo .logo a {
  margin-right: 10px;
}
.sem-serp-layout .content {
  padding-top: 60px;
  display: flex;
  flex: 1;
}
.sem-serp-layout .content .column {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.sem-serp-layout .content .column.right-rail {
  max-width: 300px;
}
@media (max-width: 895px) {
  .sem-serp-layout .content .column.right-rail {
    display: none;
  }
}
.sem-serp-layout .content .column.main {
  flex: 3;
  max-width: 606px;
  padding: 0 35px 8px 174px;
}
.sem-serp-layout .content .column.main .results-for-title {
  font-family: Roboto;
  font-size: 32px;
  font-weight: 800;
  line-height: 38px;
  text-align: center;
  color: #333333;
  margin: 26px 0 50px 0;
}
.sem-serp-layout .content .column.main-width-inc {
  max-width: 650px;
}
.sem-serp-layout .content .column.right-padding-inc {
  padding-right: 100px;
}
.sem-serp-layout.full-height-sticky-footer {
  height: 100vh;
}
.sem-serp-layout.full-height-sticky-footer .page-header .logo {
  justify-content: center;
}
.sem-serp-layout.full-height-sticky-footer .content {
  flex-grow: 1;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 30px;
  min-height: 600px;
  justify-content: center;
}
.sem-serp-layout.full-height-sticky-footer .column.main {
  overflow: auto;
  padding: 0;
  margin-right: 30px;
  max-width: 700px;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail {
  height: 100%;
  display: flex;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail .search-results {
  flex-shrink: 1;
  margin-bottom: 30px;
  padding: 10px 5px 10px 10px;
  border-radius: 15px;
  background-color: #f5f7f9;
  overflow: hidden;
  margin-top: 0;
  max-height: 350px;
  min-height: 200px;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail .results {
  overflow: auto;
  height: 100%;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail .people-also-ask {
  display: none;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail .outlet-rightRail {
  flex-grow: 0;
  flex-shrink: 0;
}
.sem-serp-layout.full-height-sticky-footer .footer .related-search {
  width: 100%;
  max-width: 1060px;
}
.sem-serp-layout.full-height-sticky-footer .footer .search-box-ui,
.sem-serp-layout.full-height-sticky-footer .footer .footer-body {
  max-width: 700px;
  padding-right: 360px;
  width: 100%;
}
.sem-serp-layout.full-height-sticky-footer .footer .search-box-ui {
  box-sizing: content-box;
  background: none;
}
.sem-serp-layout.full-height-sticky-footer .rs-ss-shown .search-input {
  border-bottom-left-radius: 24px;
}
.sem-serp-layout.full-height-sticky-footer .rs-ss-shown .search-button {
  border-bottom-right-radius: 24px;
}
@media only screen and (max-width: 1079px) {
  .sem-serp-layout .page-header.left-logo .logo {
    width: calc(var(--logo-width, 126px) + 15px);
  }
  .sem-serp-layout .page-header.left-logo .search-box-ui {
    margin-left: 0px !important;
  }
  .sem-serp-layout .page-header.right-logo .search-box-ui {
    margin-left: calc(60px - 14px);
  }
  .sem-serp-layout .content .column.main.left-logo {
    padding-left: calc(var(--logo-width, 126px) + 15px);
  }
  .sem-serp-layout .content .column.main.right-logo {
    padding-left: 60px;
  }
  .sem-serp-layout.full-height-sticky-footer .content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sem-serp-layout.full-height-sticky-footer .content .column.main {
    padding-left: 0;
  }
  .sem-serp-layout.full-height-sticky-footer .footer {
    padding: 10px 20px;
  }
  .sem-serp-layout.full-height-sticky-footer .related-search,
  .sem-serp-layout.full-height-sticky-footer .search-box-ui,
  .sem-serp-layout.full-height-sticky-footer .footer-body {
    align-self: flex-start;
  }
  .sem-serp-layout.full-height-sticky-footer .related-search {
    background: none;
    box-shadow: unset;
    border: 0;
  }
  .sem-serp-layout.full-height-sticky-footer .related-search .sub-header {
    border: 0;
  }
  .sem-serp-layout.full-height-sticky-footer .related-search .ask-button {
    width: auto;
  }
}

