/*! Copyright © 2026 Ask Media Group */
@keyframes wave {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skeleton-loader-box {
  height: 100px;
  width: 100%;
  margin-bottom: 20px;
}
.skeleton-loader-single-line,
.skeleton-loader .skeleton-line {
  height: 24px;
  margin-bottom: 10px;
}
.skeleton-loader-single-line.title,
.skeleton-loader .skeleton-line.title {
  max-width: min(200px, 50%);
}
.skeleton-loader-single-line.small,
.skeleton-loader .skeleton-line.small {
  margin-right: 50px;
}
.skeleton-loader-single-line.button,
.skeleton-loader .skeleton-line.button {
  border-radius: 40px;
  width: var(--readmore-width, auto);
  max-width: 110px;
  margin: 0 auto;
  height: 35px;
}
.skeleton-loader-box,
.skeleton-loader-single-line,
.skeleton-loader .skeleton-line {
  border-radius: 4px;
  background: #E5E7EB;
  background-image: linear-gradient(to right, #E5E7EB 0%, #F3F4F6 50%, #E5E7EB 100%);
  background-size: 200% 100%;
  animation: wave 2s linear infinite;
}

@keyframes aioverview-slide {
  from {
    max-height: 0;
  }
  99% {
    max-height: 250vh;
  }
  to {
    max-height: auto;
  }
}
@keyframes aioverview-spinner {
  to {
    transform: rotate(1turn);
  }
}
.aioverview {
  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: 10px;
}
.aioverview .ai-icon {
  height: 28px;
  width: 40px;
}
.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: 0;
  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 .skeleton-loader {
  display: none;
}
.page-skeleton-loading .aioverview .spinner {
  display: none;
}
.page-skeleton-loading .aioverview .skeleton-loader {
  display: block;
}
.aioverview.aioverview-flat {
  background: var(--background-color, #FFFFFF);
  box-shadow: none;
  padding: 0;
}

.related-search {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.related-search.hidden {
  display: none;
}
.related-search .sub-header {
  line-height: 16px;
  margin: 0 0 5px;
  font-weight: normal;
  border-radius: unset;
}
.related-search .sub-header-query {
  font-weight: bold;
  margin: 0 0 0 4px;
}
.related-search .related-search-links {
  display: flex;
}
.related-search .related-search-links.capitalize {
  text-transform: capitalize;
}
.related-search .related-search-links.lowercase {
  text-transform: lowercase;
}
.related-search .related-search-links.capitalizeAndUnderline {
  text-transform: capitalize;
  text-decoration: underline;
  font-size: 15px;
  color: #3300b5;
}
.related-search .related-search-links.right-icon .single-column a svg {
  position: absolute;
  right: 0;
}
.related-search .related-search-links.right-icon .column a svg {
  position: absolute;
  right: 0;
}
.related-search .related-search-links a:hover {
  text-decoration: underline;
}
.related-search .related-search-links .column {
  width: 50%;
  max-width: 50%;
  min-width: 50%;
}
.related-search .related-search-links .single-column {
  width: 100%;
}
.related-search .related-search-links .custom-button,
.related-search .related-search-links .meson-button {
  color: #1a0dab;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: fit-content;
  text-decoration: none;
  line-height: 30px;
  font-size: 16px;
  max-width: 100%;
}
.related-search .related-search-links .custom-button svg,
.related-search .related-search-links .meson-button svg {
  width: 16px;
  margin-left: 12px;
}
@media (min-width: 720px) {
  .related-search .related-search-links .custom-button svg,
  .related-search .related-search-links .meson-button svg {
    display: none;
  }
}
@media only screen and (max-width: 720px) {
  .related-search {
    border-radius: 0;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    box-shadow: 0 2px 2px #00000015;
    margin: 5px 0;
  }
  .related-search .sub-header {
    border-bottom: 1px solid #ebebeb;
    font-weight: normal;
    margin: 0;
    text-transform: uppercase;
  }
  .related-search .related-search-links {
    flex-direction: column;
  }
  .related-search .related-search-links .single-column .custom-button,
  .related-search .related-search-links .single-column .meson-button,
  .related-search .related-search-links .single-column label {
    display: flex;
    padding: 0 0 0 10px;
    border-bottom: 1px solid #ebebeb;
    height: 36px;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
  }
  .related-search .related-search-links .single-column .custom-button,
  .related-search .related-search-links .single-column .meson-button:last-child {
    border-bottom: none;
  }
  .related-search .related-search-links .column .custom-button,
  .related-search .related-search-links .column .meson-button,
  .related-search .related-search-links .column label {
    display: flex;
    padding: 0 0 0 10px;
    border-bottom: none;
    height: 36px;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
  }
}
.sem-serp-layout .rs-row .related-search.carousel .related-search-links.esque .single-column a {
  border-radius: 20px;
  height: 36px;
  padding: 3px 12px;
  margin-right: 6px;
}
.sem-serp-layout .rs-row .related-search.carousel .related-search-links.esque .rs-carousel-button.left {
  left: 177px;
  top: 3px;
}
.sem-serp-layout .rs-row .related-search.carousel .related-search-links.esque .rs-carousel-button.right {
  top: 3px;
}

.search-suggestions {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #e1e1df;
  box-shadow: none;
  z-index: 1;
}
.search-suggestions.show {
  visibility: visible;
}
.search-suggestions.hide {
  visibility: hidden;
}
.search-suggestions li {
  list-style: none;
  margin: 0;
  padding: 6px 0 6px 18px;
  cursor: default;
  display: block;
  color: #333333;
  height: 18px;
  overflow: hidden;
  text-align: left;
}
.search-suggestions li span.no-highlight {
  font-weight: normal;
}
.search-suggestions li.highlight {
  background-color: #EDEDED;
  color: #000000;
}
.search-suggestions li.highlight a {
  text-decoration: underline;
}
.search-suggestions li a {
  display: inline-block;
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}
.search-suggestions li:last-child:hover {
  border-radius: 24px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}
.search-suggestions li:last-child.highlight {
  border-radius: 24px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}
.search-suggestions .related-search {
  margin: 0;
}
.search-suggestions .related-search .sub-header {
  display: none;
}
.search-suggestions .related-search-links {
  padding: 6px 0;
}
.search-suggestions .related-search-links .meson-button {
  text-decoration: none;
  width: 100%;
  cursor: pointer;
  padding-left: 18px;
  box-sizing: border-box;
}
.search-suggestions .related-search-links .meson-button:hover {
  color: #000000;
  background-color: #EDEDED;
}
.search-suggestions .related-search-links .meson-button .label {
  color: #333333;
}
.default-search-suggestions {
  top: 57px !important;
  z-index: 9;
  border-top-color: #e8eaed;
  border-width: 1px 0px 0px;
  border-top-style: solid;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image: initial;
  background-color: white;
  border-radius: 24px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 4px 6px 0 #a0a0a0;
  left: 161px;
}
.search-box-ui .search-suggestions.default-search-suggestions {
  width: 689px;
}
@media only screen and (max-width: 1079px) {
  .search-box-ui .search-suggestions.default-search-suggestions {
    left: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .search-box-ui .search-suggestions.default-search-suggestions {
    width: calc(100% - 152px) !important;
  }
}
.fixedHeader-ss-li {
  margin: 5px 0 0 0;
  text-decoration: none;
  padding: 6px 0 6px 26px;
}
.fixedHeader-ss-li:hover {
  background-color: #EDEDED;
}
.fixedHeader-ss-li:last-child {
  border-radius: 24px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 10px;
}
.fixed-header-search-suggestions {
  width: 688px !important;
  top: 29px !important;
  border-top-color: #e8eaed;
  border-width: 1px 0px 0px;
  border-top-style: solid;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image: initial;
  background-color: white;
  border-radius: 24px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 4px 6px 0 #a0a0a0;
  left: 1px;
}
.fixed-header-search-suggestions .fixedHeader-ss-li a {
  font-size: 14px !important;
}

.search-box-ui {
  margin: 3px 3px 9px 3px;
  min-width: initial;
  width: 620px;
  box-shadow: unset;
  display: flex;
  position: relative;
}
.search-box-ui.rounded .search-input {
  border-radius: 24px 0 0 24px;
}
.search-box-ui.rounded .search-button {
  border-radius: 0 24px 24px 0;
}
.search-box-ui.rounded.image-background:hover {
  border-radius: 0%;
}
.search-box-ui.rounded.image-background .search-input {
  margin-left: 20px;
}
.search-box-ui.rounded.image-background .search-button {
  margin-right: 20px;
}
.search-box-ui.rounded.image-background .vertical-line {
  background-color: #FFFFFF;
}
.search-box-ui.centered {
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}
.search-box-ui .search-input {
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #ebebeb;
  color: #333;
  font-size: 16px;
  flex-basis: 100%;
  height: calc(40px - 2px);
  text-indent: 14px;
  order: 1;
  padding: 0;
}
.search-box-ui .search-input:focus {
  outline: none;
}
.search-box-ui .close-button {
  align-items: center;
  background-color: #FFFFFF;
  border: none;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
  color: #DDDDDD;
  display: flex;
  font-size: medium;
  padding: 0 10px;
  order: 2;
  height: 40px;
  width: 40px;
  margin: 0;
}
.search-box-ui .close-button.hidden,
.search-box-ui .close-button.hide-elements {
  display: none;
}
.search-box-ui .close-button .icon {
  width: 17px;
  height: 17px;
  display: block;
}
.search-box-ui .vertical-line {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  background-color: #FFFFFF;
  color: #dddddd;
  font-weight: 100;
  font-size: 38px;
  height: 30px;
  line-height: 26px;
  padding: 4px 0;
  order: 3;
  width: 5px;
}
.search-box-ui .vertical-line.hide-elements {
  display: none;
}
.search-box-ui .search-button {
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #ebebeb;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  outline: none;
  order: 4;
  height: 40px;
  width: 45px;
}
.search-box-ui .search-button:not(.search-button-dark):hover {
  background: #ededed !important;
}
.search-box-ui .search-button .icon {
  width: 17px;
  height: 17px;
  margin: 0 auto;
  display: block;
}
.search-box-ui .search-button .icon.orange .magnify-glass,
.search-box-ui .search-button .icon.orange path {
  fill: #F44E3F;
  stroke: #F44E3F;
}
.search-box-ui .search-suggestions {
  position: absolute;
  width: 620px;
  top: 34px;
  border-radius: 0 0 24px 24px;
  margin: 5px 0 0 0;
  box-sizing: border-box;
}
.search-box-ui:not(.search-box-ui-dark):hover {
  background: #FFFFFF;
}
.search-box-ui:hover {
  border-color: #DDDDDD;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 3px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}
.search-box-ui.ss-shown .search-input,
.search-box-ui.rs-ss-shown .search-input {
  border-bottom-left-radius: 0;
}
.search-box-ui.ss-shown .search-button,
.search-box-ui.rs-ss-shown .search-button {
  border-bottom-right-radius: 0;
}
.search-box-ui.ss-shown:hover,
.search-box-ui.rs-ss-shown:hover {
  box-shadow: none;
}
.search-box-ui.position-ss {
  position: initial;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.fixed-header .search-box-ui {
  box-sizing: border-box;
  height: 30px;
}
.fixed-header .search-box-ui .search-input {
  box-sizing: border-box;
  height: 30px;
}
.fixed-header .search-box-ui .close-button {
  height: 30px;
}
.fixed-header .search-box-ui .vertical-line {
  height: 22px;
  font-size: 26px;
  font-weight: 400;
  line-height: 20px;
  padding: 3px 0;
  width: 3px;
  background-color: #FFFFFF;
}
.fixed-header .search-box-ui .search-button {
  height: 30px;
}
.left-logo .search-box-ui {
  order: 2;
}
.right-logo .search-box-ui {
  order: 1;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .right-logo .search-box-ui {
    width: 100%;
    padding: 0 calc(10px / 2);
    margin: 0px;
    box-sizing: border-box;
  }
  .right-logo .search-box-ui:hover {
    box-shadow: none;
  }
  .right-logo .search-box-ui .search-suggestions {
    width: calc(100% - 10px);
  }
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui {
  margin-top: 29px;
  width: 690px;
  margin-left: 19px;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  min-width: initial;
  box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
  height: 43px;
  display: flex;
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui:hover {
  border-color: rgba(223, 225, 229, 0);
  background-color: #fff;
  box-shadow: 0 2px 8px 1px rgba(64, 60, 67, 0.24);
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui .shadow-search-input {
  height: 43px;
  font-size: 16px;
  text-indent: 22px;
  width: 100%;
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui .shadow-close-button {
  height: 45px;
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui .shadow-vertical-line {
  height: 45px;
  line-height: 41px;
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui .shadow-search-button {
  background-color: #fff;
  height: 45px;
  width: 57px;
}
.page-header.left-logo .search-box-ui.shadow-searchbox-ui .shadow-search-button:hover {
  background: transparent;
}
.fixed-header .search-box-ui {
  width: 690px;
  height: 27px;
  margin-top: 5px;
  margin-left: -5px;
  box-shadow: none;
  border-radius: 24px;
  margin-top: 3px;
}
.fixed-header .search-box-ui:hover {
  border-color: rgba(223, 225, 229, 0);
  background-color: #fff;
  height: 33px;
  margin-top: 5px;
}
.fixed-header .search-box-ui .search-input {
  height: 34px;
  text-indent: 22px;
  font-size: 14px;
  border-color: #dfe1e5;
}
.fixed-header .search-box-ui .close-button {
  height: 34px;
  border-top: 1px solid #dfe1e5;
  border-bottom: 1px solid #dfe1e5;
}
.fixed-header .search-box-ui .vertical-line {
  height: 32px;
  line-height: 30px;
  border-top: 1px solid #dfe1e5;
  border-bottom: 1px solid #dfe1e5;
  color: #dfe1e5;
  background-color: #FFFFFF;
  padding: 0px;
}
.fixed-header .search-box-ui .vertical-line:hover {
  font-weight: 100;
}
.fixed-header .search-box-ui .search-button {
  background-color: #fff;
  height: 34px;
  width: 55px;
  border-color: #dfe1e5;
}
.fixed-header .search-box-ui .search-button:hover {
  background: transparent;
  font-weight: 100;
}
.page-header.fixed-header {
  height: 52px;
  padding: 0px;
}
.page-header.left-logo.fixed-header .logo {
  height: 32px;
  width: unset;
  margin-left: -10px;
}

.article-category-menu-ui {
  display: flex;
  font-family: Roboto Condensed, Arial, sans-serif;
  gap: 35px;
}
.article-category-menu-ui .drawer-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.article-category-menu-ui .drawer-header-wrapper .logo {
  height: 50px;
  width: auto;
}
.article-category-menu-ui .drawer-header-wrapper .logo a {
  border: none;
  padding: 0;
}
.article-category-menu-ui .drawer-header-wrapper .logo a img {
  width: 100%;
  max-width: 100%;
}
.article-category-menu-ui .drawer-header-wrapper .close-button {
  border: none;
  background: none;
}
.article-category-menu-ui a {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: #151515;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.article-category-menu-ui a:hover,
.article-category-menu-ui a.selected {
  color: var(--font-base-color);
}
.article-category-menu-ui a img {
  width: 20px;
  height: 19px;
}
.article-category-menu-ui.drawer-open {
  gap: 0;
}

.clock {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: fixed;
  top: 20px;
}
.clock h1 {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}

.notification-center-bell {
  position: absolute;
  right: 185px;
  bottom: 15px;
}
.notification-center-bell-button {
  border: none;
  padding: 0px;
  background-color: transparent;
  cursor: pointer;
}
.notification-center-bell .badge {
  position: relative;
  top: 8px;
  left: 15px;
}
.notification-center-bell .up_arrow {
  position: absolute;
  top: 43px;
  left: 3px;
}
.notification-center-bell .whatsNew {
  width: 290px;
  height: 82px;
  border: 1px solid #FBDF50;
  border-radius: 8px;
  padding: 10px;
  top: 50px;
  position: absolute;
  left: -120px;
  box-shadow: 0px 2px 3px 0px #00000040;
  background-color: #FFFFFF;
  z-index: 10;
}
.notification-center-bell .whatsNew .new_tag {
  display: flex;
}
.notification-center-bell .whatsNew .new_tag_text {
  font-size: 14px;
  line-height: 22px;
  color: #202124;
  margin-top: 8px;
  text-align: left;
}
.notification-center-sidecar {
  position: fixed;
  z-index: 1;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  gap: 0px;
  border-radius: 2px 0px 0px 0px;
  opacity: 0;
  background-color: #FFFFFF;
  box-shadow: -6px 0px 16px -8px #00000014;
  box-shadow: -9px 0px 28px 0px #0000000D;
  box-shadow: -12px 0px 48px 16px #00000008;
}
.notification-center-sidecar.open {
  transform: translateX(-400px);
  opacity: 1;
}
.notification-center-sidecar-header {
  height: 35px;
  padding: 16px 24px 16px 24px;
  gap: 0px;
  border: 0px 0px 1px 0px;
  justify-content: space-between;
  display: flex;
  border-bottom: 1px solid #EBEBEB;
}
.notification-center-sidecar-header-text {
  width: 250px;
  height: 32px;
  gap: 8px;
  font-size: 20px;
  line-height: 34px;
  color: #202124;
}
.notification-center-sidecar-header-close {
  width: 16px;
  height: 16px;
}
.notification-center-sidecar-header-button-close {
  padding: 0px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.notification-center-sidecar-close-button {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 0px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.notification-center-sidecar-close-button-img {
  width: 16px;
  height: 16px;
}
.notification-center-sidecar-content {
  padding: 20px 24px 24px 24px;
  height: 100vh;
  overflow-y: scroll;
}
.notification-center-sidecar-content-container {
  width: 352px;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0px 2px 3px 0px #00000040;
  margin-bottom: 20px;
}
.notification-center-sidecar-content-container:last-child {
  margin-bottom: 100px;
}
.notification-center-sidecar-content-container .container-top {
  border-radius: 8px 8px 0 0;
  height: 150px;
}
.notification-center-sidecar-content-container .container-top .image {
  border-radius: 8px 8px 0 0;
  height: 150px;
}
.notification-center-sidecar-content-container-bottom {
  height: 114px;
  margin: 14px 8px 14px 8px;
}
.notification-center-sidecar-content-container-bottom-title {
  width: 219px;
  height: 15px;
  font-size: 14px;
  line-height: 22px;
  color: #202124;
}
.notification-center-sidecar-content-container-bottom-title-heading {
  font-size: 20px;
  color: #202124;
}
.notification-center-sidecar-content-container-bottom-description {
  font-size: 14px;
  color: #4D5156;
}
.notification-center-sidecar-content-container-bottom-description-text {
  color: #4D5156;
  font-size: 15px;
}
.notification-center-sidecar-content-container-bottom-tryItNow {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-align: left;
  color: inherit;
  font: inherit;
}
.notification-center-sidecar-content-container-bottom-tryItNow-text {
  color: #1A0DAB;
  font-size: 15px;
  line-height: 22px;
  margin: 6px 0 3px;
}
.notification-center-sidecar-content-container-bottom-tryItNow-copyClipboard {
  width: 14px;
  height: 14px;
  margin-left: 7px;
}
.notification-center-sidecar .grey {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #F4F1EE;
  height: 150px;
}
.notification-center-sidecar .green {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #529742;
  height: 150px;
}
.notification-center-sidecar .yellow {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #FBE190;
  height: 150px;
}
.notification-center-sidecar .calculator {
  width: 237px;
  height: 120px;
  margin-top: 12px;
  margin-left: 57px;
}
.notification-center-sidecar .time {
  width: 316px;
  height: 58px;
  margin-top: 46px;
  margin-left: 18px;
}
.notification-center-sidecar .wiki {
  width: 271px;
  height: 127px;
  margin-top: 26px;
  margin-left: 40px;
}
.notification-center-sidecar .dictionary {
  width: 265px;
  height: 114px;
  margin-top: 18px;
  margin-left: 43px;
}
.smoke-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.smoke-screen.visible {
  opacity: 1;
  pointer-events: auto;
}
.smoke-screen.show-searchbar {
  z-index: 0;
}
.popup-content {
  position: absolute !important;
  right: 0;
}
.popup-overlay {
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 786px) {
  .right-logo .search-box-ui {
    width: calc(100% - 110px);
  }
}
@media (max-width: 1024px) {
  .sem-serp-layout.google-rounded-desktop .page-header.left-logo .search-box-ui.shadow-searchbox-ui {
    width: calc(100% - 135px);
  }
  .sem-serp-layout.google-rounded-desktop .notification-center-bell {
    bottom: 10px;
  }
  .notification-center-bell {
    right: 2px;
    bottom: 18px;
  }
  .notification-center-bell .whatsNew {
    left: -290px;
  }
  .notification-center-bell .badge {
    left: 11px;
  }
}

.page-header {
  display: flex;
  align-items: center;
  top: 0px;
  height: 66px;
  padding: 7px 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
}
.page-header.top-box {
  position: absolute;
}
.page-header.bottom-box {
  position: relative;
  left: 16px;
  margin: 0 0 22px;
}
.page-header.fixed-header {
  position: fixed;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
  transition: none 0s ease 0s;
  box-shadow: rgba(32, 33, 36, 0.28) 0px 1px 6px 0px;
  width: 100%;
  height: 45px;
}
.page-header.fixed-header .logo {
  height: 30px;
}
.page-header .logo-link {
  display: block;
  height: inherit;
}
.page-header .logo-link img {
  height: inherit;
}
.page-header.right-logo .logo {
  order: 2;
  margin: auto 20px auto auto;
}
@media (min-width: 720px) and (max-width: 1079px) {
  .page-header.right-logo .logo {
    margin: auto 13px auto auto;
  }
}
.page-header.right-logo .logo-upper-right {
  position: fixed;
  top: 20px;
  right: -40px;
}
.page-header.left-logo .logo {
  height: 45px;
  order: 1;
}
.page-header.left-logo .search-box-ui {
  margin-top: 0px;
  margin-left: 0px;
}
.page-header.center-logo {
  padding: 5px 15px;
}
@media (min-width: 720px) {
  .page-header.center-logo {
    justify-content: space-around;
  }
}
@media (max-width: 719px) {
  .page-header.center-logo {
    padding: 5px;
  }
}
.page-header.center-logo .logo {
  height: 50px;
  width: 135px;
}
@media (max-width: 719px) {
  .page-header.center-logo .logo {
    height: 40px;
    width: 108px;
  }
}
@media (max-width: 719px) {
  .page-header.center-logo .logo img {
    max-width: 108px;
  }
}
.page-header.expand-search {
  justify-content: space-between;
}
.page-header.expand-search .search-box-ui {
  transition: width 0.4s ease-out;
}
.page-header.expand-search .logo {
  transition: margin 0.4s ease-out;
}
.page-header.expand-search.show-box .search-box-ui {
  width: calc(100% - 118px);
}
.page-header.expand-search.show-box .search-input {
  overflow: hidden;
}
.page-header.expand-search.show-box .logo {
  margin-left: 0;
}
.page-header.expand-search.hide-box .search-box-ui {
  width: 45px;
}
.page-header.expand-search.hide-box .search-box-ui:hover {
  box-shadow: none;
}
.page-header.expand-search.hide-box .search-input,
.page-header.expand-search.hide-box .close-button,
.page-header.expand-search.hide-box .vertical-line {
  overflow: hidden;
  border: none;
  padding: 0;
}
.page-header.expand-search.hide-box .search-button {
  border: none;
}
.page-header.expand-search.hide-box.center-logo .logo {
  margin-left: calc(52% - 67.5px);
}
@media (min-width: 895px) {
  .page-header.center-logo-right-ads .logo {
    margin-right: 19%;
  }
}
.page-header .hide-category-menu {
  display: none;
}
.page-header .hamburger-svg {
  margin-right: 30px;
}
.page-header.left-logo.fixed-header .logo {
  height: 32px;
}
.result-stats {
  position: relative;
  top: 60px;
  color: #70757a;
  display: flex;
  padding: 0 35px 0 174px;
}
.result-stats .result-count {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 28px;
  margin: 0;
}
@media only screen and (max-width: 720px) {
  .page-header.right-logo .search-box-ui {
    margin-left: 0px;
  }
  .page-header.left-logo .search-box-ui {
    margin: 0px 3px;
  }
}
.shadow-page-header {
  padding: 16px 0 20px 16px;
}
.shadow-page-header .logo {
  height: 45px;
  order: 1;
  width: 160px;
  display: flex;
  justify-content: right;
  margin-top: 20px;
  margin-left: -35px;
}

.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;
  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 .result .rating-arrow {
  display: inline-block;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #329a33;
  position: absolute;
  left: 19px;
  top: -12px;
}
.search-results .result .rating-info-sec {
  width: 350px;
  left: 39px;
  position: absolute;
  z-index: 1;
  top: -55px;
}
.search-results .result .rating-info-sec .rating-details {
  background: #329a33;
  display: flex;
  padding: 15px;
  align-items: center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.search-results .result .rating-info-sec .rating-details span {
  flex: 1;
  color: #fff;
}
.search-results .result .rating-info-sec .rating-details span .domain-label {
  font-size: 14px;
}
.search-results .result .rating-info-sec .rating-details span .rating-label {
  font-size: 36px;
  margin-top: 10px;
}
.search-results .result .rating-info-sec .rating-details img {
  width: 50px;
}
.search-results .result .rating-info-sec .rating-norton-logo {
  height: 50px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
}
.search-results .result .rating-info-sec .rating-norton-logo img {
  height: 25px;
  margin-left: 14px;
}
.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 .meson-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: auto;
  padding-top: 60px;
  padding-bottom: 30px;
  min-height: 600px;
  justify-content: center;
  column-gap: 30px;
}
.sem-serp-layout.full-height-sticky-footer .column.main {
  padding: 0;
  max-width: 700px;
  row-gap: 10px;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail {
  height: 100%;
  display: flex;
  row-gap: 10px;
}
.sem-serp-layout.full-height-sticky-footer .column.right-rail .search-results {
  flex-shrink: 1;
  padding: 10px 5px 10px 10px;
  border-radius: 15px;
  background-color: #f5f7f9;
  overflow: hidden;
  margin-top: 0;
  max-height: 312px;
}
.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 .meson-button {
    width: auto;
  }
}

p {
  margin: 0;
}
.product-ad-wrapper {
  background-color: #FFF !important;
}
.product-query {
  font-size: 18px;
  font-weight: bold;
}
.product-adslabel {
  position: relative;
  margin-left: 6px;
  max-width: 50%;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-size: 18px;
  color: #888888;
  font-weight: unset;
}
.product-ads {
  display: inline-block;
  flex-direction: row;
  max-width: 700px;
  width: 100%;
  height: auto;
  overflow: auto;
  background-color: #FFF !important;
  border: none;
  margin: 10px 0 0 0px !important;
}
.product-ads .slider {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.product-ads .slider .product-arrow {
  border: 2px solid #584e4e;
  padding: 0 1px 8px 1px;
  background-color: #FFF;
  border-radius: 50%;
  width: 30px;
  height: 25px;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
  font-size: 17px;
  opacity: 0.8;
}
.product-ads .slider .product-arrow.ad-prev {
  position: absolute;
  margin-left: 4px;
  margin-bottom: 9px;
}
.product-ads .slider .product-arrow.ad-next {
  position: absolute;
  left: 702px;
  margin-bottom: 9px;
}
.product-ads .slider .product-arrow .ad-prev:hover,
.product-ads .slider .product-arrow .ad-next:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}
.product-ads .product-wrapper {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  margin: 5px;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  display: inline-flex;
  border-radius: 0;
  background-color: #F2F2F2;
  border: 1px solid #D9D9D9;
  box-shadow: none;
  margin: 2px;
  margin-right: 7px;
}
.product-ads .product-box {
  line-height: 20px;
  padding: 5px;
  width: 127px;
  height: auto;
  width: 150px;
  height: 271px;
  background-color: #FFFFFF;
}
.product-ads .product-box a {
  text-decoration: none;
}
.product-ads .product-box .product-title {
  height: 50px;
  padding-top: 12px;
  overflow: hidden;
  line-height: 24px;
  color: #1a0dab;
  font-size: 16px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #747B81 !important;
  font-weight: 700;
  font-size: 13px !important;
  margin: 0 0 0 10px !important;
}
.product-ads .product-box .product-title:hover {
  text-decoration: underline;
}
.product-ads .product-box .product-caption {
  margin: 0 0 0 10px;
}
.product-ads .product-box .product-caption .price {
  color: #444444;
  font-weight: bold;
  margin-top: 2px;
  margin-bottom: 0px;
  font-size: 13px;
  color: #383738 !important;
}
.product-ads .product-box .product-caption .zero-price {
  font-size: 14px;
  color: #444444;
}
.product-ads .product-box .product-caption .shipping-cost {
  font-size: 14px;
  color: #4d5156;
}
.product-ads .product-box .product-caption .energy-rating {
  font-size: 14px;
  color: #4d5156;
}
.product-ads .product-box .product-caption .unit-price {
  font-size: 14px;
  color: #444444;
}
.product-ads .product-box .product-caption .seller-name {
  color: #0e7744;
  font-size: 15px;
  height: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0px;
  font-weight: 700;
  font-size: 12px !important;
  line-height: 16px;
  color: #747B81 !important;
}
.product-ads .product-box .product-caption .product-caption-installment {
  position: relative;
  line-height: 24px;
}
.product-ads .product-box .product-caption .product-caption-installment .elite-badge {
  position: absolute;
  margin-top: 4px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACV0lEQVRIDbVWMWsVQRD+5s4neRgRAkZQbI6AWNgEBCGFgmksBRERA5aKRqxMpQipFIRIEMuIglhY+AMUbAIKKqJYyIsPGwUVFBF5Yrxbv9l9e+8ud5fcER147O3s7PftzszOPMFqMhNtQQ8nATMBSARjImsu0qWOP1lEG7dwpfu9CkZKFy7s2o5fyxcJMgWDTaU2Xin4SaI7GGrN4urbj17txyLB+bEDSJJ7PO02b1RrFPmEIDiGuaXHWfswO8G56JQFBzbn9PUmwzzUFPaNfMbTb8/8lsEN9ORx/JALeVJvWX+MEYaT/iaOwPn8RWO3VJGqu4Za4xqTwNr0li+tA9wwyA9yXBo/myRAAE1FMSdyBvUnCn4G893DkGAmv43xIHZg83ytVMzv9DMPftMqjPnhF9yc6c03RBfpI2osefDp6DRxbhRRzAQJ+ELLhSClUgU+yMh0m0QBg1skEOkg3DBO8teprftoAM4NxOYNCmIQhEcx13nJHDiYIWkG3ocNYAtXjkT44G5jemwr5pe+WBKRV/1scQEd+LzELRksYvMGWhVXitkDJI9SkpH2XqZiM3ALaZSAJbdUMiSX3/y2JnVPnuLJotiH1jMfqsuyBlpjkRzpp+LqbvHgWsbbsiNwzYL1vFLsTZ43ArdYxGQjclmkzUILVKWYnVyqd3LFcMVuVj8dgXYibRZArMp1Smyx+t0tTMGefH1vmwVwiDpHnC7W/oh5+rO4/u6+31G89n9tmUqrN9k/ehd/kmF6fTc1G/1pSkfX9BfQbh3Htc7K0rJG4P7B35a/eXbpIsxv3+sAAAAASUVORK5CYII=);
}
.product-ads .product-box .product-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.product-ads .product-box .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-ads .product-box .price-drop {
  font-size: 15px;
  padding-top: 3px;
}
.product-ads .product-box .product-seller-rating {
  padding-top: 3px;
  position: relative;
}
.product-ads .product-box .product-seller-rating .star-off {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAALCAYAAAAjg+5nAAAArElEQVR42uWVPQqEMBCFx9JTeIG9gYWFhYVNbPa21rKQH3KG3MBSi+w8MSCLim1mBx4M730pMmQI0UlZaxuIHlbuPBljRugveOdcrbWOEHqRfAih9N6/eCoDa0oH0MNDBkYEz0bH4ZKgGy1gc+fTpd9srDfwCuawI1nzW7GpLiYFT/2uQe48xRgLDuaTAzMyaTz+rurqSSCTxuNJ9DvwYaCF0O9eL41PO6Ck+1+ivp8DDpnEDQAAAABJRU5ErkJggg==);
}
.product-ads .product-box .product-seller-rating .star-on {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAALCAYAAAAjg+5nAAAAuklEQVR42uWVPQ7CMAyFw8gpmJMGdsTAwMBQKT+V4LbMiOt0qsmQ5rXNAo3EGmPpSZbf5yGWrQixEsHvz5D4MWrnxWDUA/oLPnTNaTAyQshZ8vF23JI/aLLak5HP3IB8qiUPDAs+2OZKVr0zVBIYsLXz06PJqTsZFYpw8sDkidbOL03SrU0KNXifZ1A7L2KMG7Ky/26QPTxuvIid3JVWAh43Pv1dul1W4BWcukDI5ybdcuPnGyjdBqP6CBIfPIAaJRhjAAAAAElFTkSuQmCC);
}
.product-ads .product-box .product-seller-rating .star-on.star-on-yellow {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEwAAAAOCAYAAACFB/pMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo5NkJBOTIzMDEyMjA2ODExODA4M0E0QjIwQjU1ODc3NSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0RTZBQTk3RTRFQTgxMUUzQkY2QUJBNzY0QkQyMjk3QyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RTZBQTk3RDRFQTgxMUUzQkY2QUJBNzY0QkQyMjk3QyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OEQzMTk3NDg0ODIwNjgxMTgwODNBNEIyMEI1NTg3NzUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTZCQTkyMzAxMjIwNjgxMTgwODNBNEIyMEI1NTg3NzUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7H47LDAAABdUlEQVR42uyXv0vDQBTH31kRodgfkElRCepYKBV3dXFwyKKgm/4P4mxH0dHByT9FBSdFpSSjOlhx62B1sE1yeX6bFmLbpCRrrgdf3nHJ5w6+791dIpiZxi1+mxj51CoKsgpXZOZF4plTyo42jD0DOiSWRuLFU8qKyC1p5gTgZ2IuI9YQK1Rpxdu/KWajK8yT+1AZol7cjZ2pFLNBhZm5Yzi7BmeXEZcQZxBRptyV5+sHesPwK+Z9yKzzmWpsYFgtWwJwjZe1ENBXZ9hPgEsNKWlzeost1dj+M+xpagXQDTQXARLAT+nSRnabX/pqVRF2+NC/zywCeoS0AZBkx2mXVnMG10PPAQXY0FuS78QXwPw/sCuHmsUdLoy8mVPODhkmb8U8wPoAGPRdWpg94I+whVVghz4rnDaV7DaR3aJv+5eqkI5+FWpC5LSoFJUpFdjJwQnwkg6HT+HsubbHjd7wyfuluEAWjjyP9KjFVWDF+Oc7WfsTYACtTVFSZGXQtAAAAABJRU5ErkJggg==);
  width: 70px;
  height: 12.83333333px;
}
.product-ads .product-box .product-seller-rating .star-off,
.product-ads .product-box .product-seller-rating .star-on {
  position: absolute;
  width: 70px;
  height: 12.83333333px;
}
.product-ads .product-box .product-seller-rating .product-seller-rating-text {
  color: #767676;
  display: inline-block;
  font-size: 14px;
  position: relative;
  line-height: 20px;
  left: 76px;
  bottom: 3px;
}
.product-ads .product-box .product-seller-rating .product-seller-rating-text a {
  color: #767676;
}
.product-ads .product-box .product-promotion {
  font-size: 14px;
  text-decoration: none;
  line-height: 20px;
  color: #444444;
  display: block;
  user-select: none;
}
.product-ads .product-box .product-promotion .product-promotion-text {
  position: relative;
  cursor: pointer;
}
.product-ads .product-box .product-promotion .downarrow {
  border: solid #333;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  margin: 3px 9px;
  cursor: pointer;
}
.product-ads .product-box .product-promotion .offer {
  border: 1px solid #dddddd;
  display: none;
  width: 200px;
  color: #666;
  text-align: justify;
  border-radius: 2px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  font-size: 14px;
  background-color: white;
  margin: 0px;
  line-height: 22px;
}
.product-ads .product-box .product-promotion .offer .offer-sublines {
  font-size: 14px;
  color: #444444;
}
.product-ads .product-box .product-promotion .offer .offer-plaPromotionText {
  color: #444444;
  font-weight: bold;
}
.product-ads .product-box .product-promotion .offer .promotion-redeem {
  border: 1px solid #999;
  padding: 1px;
  background: #eff1f2;
  font-size: 13px;
  text-align: center;
  width: 53px;
  display: inline-block;
  color: #444444;
  margin-top: 3px;
  cursor: pointer;
}
.product-ads .product :hover {
  text-decoration: underline;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.ad-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 5px;
  justify-content: center;
}
.pla-adslabel {
  float: right;
  margin-right: 23px;
  color: #888888;
  font-size: 14px;
  line-height: 22px;
}
.label-divider {
  height: 0px;
  border: none;
  border-bottom: 1px solid #BDC1C6;
  width: 100%;
}
.yahoo-ad.yahooAds-top {
  border-bottom: none;
  padding: 0;
}
.yahoo-ad.yahooAds-bottom {
  border-top: none;
  padding: 0;
}
.yahoo-ad {
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.yahoo-ad-ad-block {
  padding: 7px 0 20px 0;
  clear: both;
  margin: 0;
  background-color: white;
}
.yahoo-ad .ad-link,
.yahoo-ad .ad-link:hover {
  display: block;
  color: #4d5156;
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
}
.yahoo-ad .ad-desc-label {
  color: #666;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0 4px 0 0;
  padding: 1px 2px 0 2px;
  font-size: 11px;
}
.yahoo-ad .ad-link-nonclickable {
  color: #4d5156;
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
}
.yahoo-ad .ad-extensions-nonclickable {
  color: #003dbf;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
}
.yahoo-ad .ad-extensions-nonclickable:hover {
  text-decoration: underline;
}
.yahoo-ad-image-container {
  float: left;
  padding: 0 8px 0 0;
  width: 75px;
  margin: 5px 0 0 0;
}
.yahoo-ad-image {
  float: left;
  height: 75px;
  width: 75px;
}
.yahoo-ad-rating-container {
  display: inline-block;
}
.yahoo-ad-description {
  margin: 0;
  width: auto;
}
.yahoo-ad-top-ad-annotation {
  width: auto;
}
.yahoo-ad .text-block-full-width {
  width: 100% !important;
}
.yahoo-ad .yahoo-ad-favicon {
  color: #4d5156;
  display: inline;
  padding: 0 5px 0 0;
}
.yahoo-ad .yahoo-ad-favicon img {
  width: 16px;
  height: 16px;
  float: left;
}
.yahoo-ad .yahoo-ad-title {
  color: #003dbf;
  font-size: 20px;
  line-height: 26px;
  font-weight: normal;
  text-decoration: none;
  position: relative;
  margin: 0;
}
.yahoo-ad .yahoo-ad-title span.text {
  margin-right: calc(3px + 35px + 0px);
  display: block;
  width: 80%;
}
.yahoo-ad .yahoo-ad-title-chevron-text {
  display: inline-block;
  margin: 0 6px 0 0;
  position: absolute;
  right: 0;
  top: 30%;
  order: 2;
}
.yahoo-ad .yahoo-ad-title-chevron-text svg {
  width: 21px;
  transform: translate(-3px, 5px);
}
.yahoo-ad .yahoo-ad-title-chevron {
  display: inline-block;
  margin-right: 0px;
  position: absolute;
  top: unset;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
}
.yahoo-ad .yahoo-ad-title:hover {
  color: #003dbf;
  font-size: 20px;
  line-height: 26px;
  text-decoration: underline;
}
.yahoo-ad .yahoo-ad-domain {
  display: flex;
  align-items: center;
}
.yahoo-ad .yahoo-ad-domain.below-title {
  width: calc(100% + 10px);
}
.yahoo-ad .yahoo-ad-domain.below-title .yahoo-ad-domain-ad-label {
  color: #0e7744;
}
.yahoo-ad .yahoo-ad-domain.below-title .yahoo-ad-domain-display-url,
.yahoo-ad .yahoo-ad-domain.below-title .yahoo-ad-domain-display-url:hover {
  color: #0e7744;
}
.yahoo-ad .yahoo-ad-domain-display-url,
.yahoo-ad .yahoo-ad-domain-display-url:hover {
  color: #4d5156;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}
.yahoo-ad .yahoo-ad-domain-display-url:hover {
  text-decoration: none;
}
.yahoo-ad .yahoo-ad-domain-ad-label {
  font-size: 13px;
  color: #4d5156;
  font-weight: unset;
}
.yahoo-ad .yahoo-ad-domain-ad-label-separator {
  vertical-align: top;
  font-weight: bold;
}
.yahoo-ad .yahoo-ad-locaiton-directions {
  text-decoration: none;
  padding-left: 3px;
}
.yahoo-ad .yahoo-ad-multi-line-site-links-vertical-view table {
  width: 100%;
}
.yahoo-ad .yahoo-ad-multi-line-site-links-vertical-view table td {
  vertical-align: text-top;
  padding: 5px 12px 5px 0px;
}
.yahoo-ad .yahoo-ad-multi-line-site-links-vertical-view table td .ml-site-link-vertical-view {
  padding: 5px 2px;
  border-top: 1px solid #DFE1E5;
}
.yahoo-ad .yahoo-ad-multi-line-site-links-vertical-view table td .ml-site-link-vertical-view .ad-site-link {
  font-size: 16px;
  line-height: 20px;
}
.yahoo-ad-chevron {
  background-color: transparent;
  color: #ffffff;
  padding: 0;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  width: 0px;
  text-align: center;
  font-weight: 500;
  opacity: initial;
  font-size: initial;
  line-height: initial;
  white-space: initial;
}
.yahoo-ad-text-block {
  display: flex;
  flex-direction: column;
  position: relative;
}
.yahoo-ad .ad-site-link,
.yahoo-ad .ad-site-link:hover {
  color: #003dbf;
  font-size: 16px;
  line-height: 22px;
}
.yahoo-ad .ad-site-link {
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.yahoo-ad .enhanced-site-link,
.yahoo-ad a.enhanced-site-link,
.yahoo-ad a.enhanced-site-link:hover,
.yahoo-ad a.enhanced-site-link:active {
  font-size: 14px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  color: #4d5156;
}
.yahoo-ad .site-link-enhanced {
  font-size: 20px;
  line-height: 26px;
}
.yahoo-ad .multi-line-site-links {
  margin: 10px 0 0 0;
}
.yahoo-ad .multi-line-site-links > ul {
  display: flex;
  flex-flow: row wrap;
}
.yahoo-ad .multi-line-site-links > ul li.ml-site-link {
  width: 50%;
  box-sizing: border-box;
  text-indent: 0%;
  padding: 0px;
  margin: 5px 0px;
}
.yahoo-ad-c2c-link {
  color: #003dbf;
  padding: 2px 5px 0 0;
  border-radius: 5px;
  line-height: 22px;
  font-size: 14px;
  text-decoration: none;
}
.yahoo-ad-c2c-link span:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAK5SURBVFhHxZdNaBQxFMergviFdy96EKx6UFA89CaT7LZbEUFYQQUpiEfPihdFTTKtWkEoIh4Ejy140YN40JPiUTx4kYr4cRD8JpkPRePL8nadzr7Z7m6b2R/8KWzy8v5NXjLJEA/NASbMm0BoWyQmzXxFmvGhMgAz7ygT7TJvMcQvgTS/aAPtqk/btRjmDyb0Fyo5JR7GmzHMH24pqOSkpsweDPMHLNkLMjkhpvQYhvkDdtAclZyUMucxzB9cmMtkckJM6kcY5g8e6hNUckqwAX7UZ+0qDPUDk8k2KnmRytlp0rynkuflZqh2w27EMH8EMrpLGcgKTnTDVbwfQ/zCRXSEMvFfJmYiqWB3/0ChroYd9LnIDFcJx67lAdv/Zt4MnFFJRekqdikXpsy+vCFYytPYPBigcB9mDcEM3cemwVARMcsaciptZxUBxf1kgSlpXlev2PXYXD5MpjvzlzZX8Ng8GMDQpawhJ6ink9hcPgdv2XWwdC8XGIKTupQLWhG1qWQrmPqeNQX6Nhrq3dilfLiIj8Hy/c2acq+UsclkGLt0RX3Gbhi/Gm+5YO1K/Kl/AqXPZA01TEn9qarMXuzSEfedbD0kpP4K/9ADqMdzQWhqTKS7Rq+bTT3fscDUdJspqCmm4uPYhSRQUR2+hb/zsXnBWH/A9CsmoxEM7Yy1dgXMyjVqMHckuCXBri24jA7nj4/FBDP3DMO7g0t9Nl9TONB8VcUBdnPP80O9mnGCcT7iEN1TUdFRqIWf5IDC3OPSnIK/KdW+mPoy5HD3aqiNp9SgS1HfhhwTd+wamImL/c4GpSUZalKV6XYo+MdUgl61LIaauM8KFPIsVfTdalkNNXEHJizj7aLC7yQvhpq4OxQcqBOQZM6d7JSBNknzHMP9wyfTHY1nu4yUOx4aJ7MwH1ozCRdBJqORfxSEqUCU/5rsAAAAAElFTkSuQmCC);
  content: " ";
  display: inline-block;
  margin-right: 7px;
}
.yahoo-ad .yahoo-ad-label {
  color: #666;
  margin: 20px 0 15px 2px;
  font-size: 14px;
  text-align: left;
  line-height: 16px;
}
.yahoo-ad .yahoo-ad-label span {
  font-weight: bold;
}
.yahoo-ad-bottom-button {
  display: inline-block;
  margin: 10px 22px 0 0;
  right: 0;
  top: 30%;
  order: 4;
  font-size: 16px;
}
.yahoo-ad-bottom-button a {
  background-color: #003DBF;
  color: #FFF;
  padding: 13px 22px;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  width: auto;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 720px) {
  .yahoo-ad .yahoo-ad-label {
    color: #666;
    margin: 20px 0 10px 2px;
    font-size: 14px;
  }
  .yahoo-ad .yahoo-ad-title {
    text-decoration: underline;
  }
  .yahoo-ad .yahoo-ad-domain.below-title {
    border-bottom: 1px solid #EBEBEB;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-left: -10px;
    padding-left: 10px;
  }
  .yahoo-ad-ad-block {
    border: 1px solid #EBEBEB;
    margin: 5px 0px;
    padding: 11px 10px 10px 10px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  }
  .yahoo-ad-title-chevron-text {
    position: relative;
  }
  .yahoo-ad-title-chevron {
    top: 0 !important;
  }
  .yahoo-ad-chevron {
    width: 100%;
    padding: 0px;
    margin: 0;
  }
  .yahoo-ad .multi-line-site-links > ul li.ml-site-link {
    width: 100%;
    border-top: 1px solid #DDDDDD;
    padding-top: 6px;
    padding-left: 0;
    padding-bottom: 6px;
    text-indent: 1%;
  }
  .yahoo-ad.product-ads {
    margin-top: 5px;
  }
  .yahoo-ad.product-ads .slider .product-arrow.ad-prev {
    margin: 0px 0px 9px 0px;
    border: 2px solid #584e4e;
    padding: 0 1px 8px 1px;
  }
  .yahoo-ad.product-ads .slider .product-arrow.ad-next {
    right: 0;
    left: unset;
    border: 2px solid #584e4e;
    padding: 0 1px 8px 1px;
  }
  .yahoo-ad.product-ads .product-title {
    color: #003dbf;
  }
  .yahoo-ad.product-ads .product-caption-seller {
    color: #0e7744;
  }
  .yahoo-ad.product-ads .product-wrapper {
    display: inline-flex;
    border-radius: 0;
    background-color: #F2F2F2;
    border: 1px solid #DDDDDD;
    box-shadow: none;
    width: 47%;
  }
  .yahoo-ad.product-ads .product-box {
    background-color: #F2F2F2;
    width: 170px;
  }
  body .l-mid-container {
    margin-top: 3px;
  }
  .yahoo-ad > .yahoo-ad-label + div {
    padding: 11px 10px 10px 10px;
  }
}

.related-search .label {
  text-transform: capitalize;
}
.sem-serp-layout.gen-yahoo-xml-pla .page-header .search-box-ui {
  width: 700px;
}
.sem-serp-layout.gen-yahoo-xml-pla .content .column.main {
  max-width: 700px;
}
.sem-serp-layout.gen-yahoo-xml-pla .content .column.main .yahoo-ad .multi-line-site-links > ul {
  padding: 0 30px;
}
.sem-serp-layout.gen-yahoo-xml-pla-carousel .yahoo-ad .ad-label .product-adslabel {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.sem-serp-layout.gen-yahoo-xml-pla-carousel .yahoo-ad .ad-label .product-adslabel .product-query {
  font-weight: normal;
}
.sem-serp-layout.gen-yahoo-xml-pla-carousel .yahoo-ad .yahoo-ad.product-ads {
  display: flex;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple {
  background-color: #F5F5F5;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .page-header {
  box-shadow: none;
  border: none;
  margin-bottom: 0;
  background-color: #4D5156;
  justify-content: center;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .page-header .logo {
  position: absolute;
  right: 0;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .page-header .search-box-ui {
  width: 684px;
  margin: 0;
  background-color: white;
  border-radius: 24px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .page-header .search-box-ui .vertical-line {
  background: #fff;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content {
  margin: 0 auto;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main {
  max-width: 764px;
  min-width: 764px;
  padding: 0;
  display: grid;
  row-gap: 30px;
  column-gap: 10px;
  grid-template-columns: [first] 65% [second] 35%;
  grid-template-rows: auto;
  grid-template-areas: "topAd topAd" "webResult relatedSeach" "bottomAd bottomAd" "pagination pagination" "footer footer";
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock {
  grid-area: topAd;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block {
  margin: 0px 0px 10px 0px;
  padding: 10px 20px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-domain .yahoo-ad-domain-ad-label,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-domain .yahoo-ad-domain-ad-label {
  color: #4ABBC0;
  font-size: 11px;
  line-height: 22px;
  text-decoration: none;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-domain .yahoo-ad-domain .yahoo-ad-domain-display-url a span,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-domain .yahoo-ad-domain .yahoo-ad-domain-display-url a span {
  color: #4ABBC0;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text {
  background-color: #661BA4;
  color: white;
  padding: 6px 13px 10px 20px;
  display: inline-block;
  border-radius: 0px;
  text-decoration: none;
  width: auto;
  text-align: center;
  font-weight: 400;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text a,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text a {
  width: auto;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-description,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-description,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-call-out,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-call-out,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-ad-smart,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-ad-smart,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .multi-line-site-links,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .multi-line-site-links {
  width: 80%;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-topAdBlock .yahoo-ad .multi-line-site-links > ul,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock .yahoo-ad .multi-line-site-links > ul {
  padding: 0 30px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results {
  grid-area: webResult;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results .results {
  padding: 0 20px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results .results .result {
  border-bottom: 1px solid #ebebeb;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results .results .result .result-title {
  padding: 0;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results .results .result .result-url {
  color: #4ABBC0;
  font-size: 14px;
  line-height: 22px;
  padding: 0 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search {
  grid-area: relatedSeach;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search .sub-header {
  font-size: 14px !important;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search .related-search-links {
  padding: 0 20px;
  display: block;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search .related-search-links .column {
  width: 100%;
  max-width: 100%;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search .related-search-links .column a {
  width: 100%;
  line-height: 32px;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
  position: relative;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search .related-search-links .column a svg {
  display: block !important;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search {
  margin: 0px;
  background-color: white;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .search-results .sub-header,
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .related-search .sub-header {
  background-color: #4D5156;
  color: white !important;
  font-size: 14px;
  padding: 10px 20px !important;
  line-height: 16px;
  margin: 0;
  text-transform: uppercase;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .outlet-bottomAdBlock {
  grid-area: bottomAd;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .pagination-ui {
  grid-area: pagination;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .main .footer {
  grid-area: footer;
}
.sem-serp-layout.gen-yahoo-xml-seeit-purple .content .right-rail .related-search {
  display: none;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .page-header .search-box-ui {
  width: 700px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main {
  max-width: 700px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .ad-label .product-adslabel,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .ad-label .product-adslabel {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .ad-label .product-adslabel .product-query,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .ad-label .product-adslabel .product-query {
  font-weight: normal;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text {
  background-color: #21A465;
  color: white;
  padding: 6px 13px 10px 20px;
  display: inline-block;
  border-radius: 21px;
  text-decoration: none;
  width: auto;
  text-align: center;
  font-weight: 400;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text a,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-title-chevron-text a {
  width: auto;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-description,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-description,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-call-out,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-call-out,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-ad-smart,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .yahoo-ad-ad-smart,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .yahoo-ad-ad-block .multi-line-site-links,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .yahoo-ad-ad-block .multi-line-site-links {
  width: 80%;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-topAdBlock .yahoo-ad .multi-line-site-links > ul,
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .outlet-bottomAdBlock .yahoo-ad .multi-line-site-links > ul {
  padding: 0 30px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .footer {
  margin-left: -174px;
  width: 100vw;
  background-color: #DFDFDF;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1079px) {
  .sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .footer {
    margin-left: calc(-1 * (var(--logo-width, 126px) + 15px));
  }
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .main .footer .footer-body {
  margin: 10px 0;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .right-rail .related-search {
  grid-area: relatedSeach;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .right-rail .related-search .sub-header {
  font-size: 14px !important;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .right-rail .related-search .related-search-links {
  display: block;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .right-rail .related-search .related-search-links .single-column {
  width: 100%;
  max-width: 100%;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .right-rail .related-search .related-search-links .single-column a {
  display: flex;
  width: 100%;
  line-height: 32px;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}
.sem-serp-layout.gen-yahoo-xml-seeit-green .content .right-rail .related-search .related-search-links .single-column a svg {
  display: block !important;
  margin-left: 0;
  margin-right: 10px;
}

