@import 'vars.import.css';
* {
  box-sizing: border-box;
}
:root {
  /* Helpcenter collection overview card */
  --polly-collection-overview-container-gap: 1em;
  --polly-collection-overview-card-width: 32%;
  --polly-collection-overview-card-display: flex;
  --polly-collection-overview-card-margin: 0px 0px 10px 0px;
  --polly-collection-overview-card-padding: 1.5em;
  --polly-collection-overview-card-colour: var(--polly-font-colour--white);
  --polly-collection-overview-card-border-colour: var(--polly-grey--300);
  --polly-collection-overview-card-border-radius: var(--polly-border-radius--sm);
  --polly-collection-overview-card-border-width: var(--polly-border-width--sm);
  --polly-collection-overview-card-font-colour: var(--polly-font--dark);
  --polly-collection-overview-card-font-size: var(--polly-font-size--md);
  --polly-collection-overview-card-font-size--sm: var(--polly-font-size--xs);
  --polly-collection-overview-card-font-weight: var(--polly-font-weight--regular);
  --polly-collection-overview-card-font-weight--bold: var(--polly-font-weight--semi-bold);
  --polly-helpcenter-overview-card-link-colour: var(--polly-font-colour--link);
  --polly-helpcenter-overview-card-link-colour--hover: var(--polly-grey--50);
  --polly-helpcenter-overview-card-link-font-size: var(--polly-font-size--sm);
  --polly-helpcenter-overview-card-link-font-weight: var(--polly-font-weight--regular);
  --polly-helpcenter-overview-card-link-padding: 0.5em 0em;
  --polly-helpcenter-overview-card-link-margin: 0em;
  --polly-helpcenter-overview-card-link-line-height: var(--polly-line-height--md);
  --polly-helpcenter-overview-card-background-colour: inherit;
  --polly-helpcenter-overview-card-link-border-width: var(--polly-border-width--sm);
  --polly-helpcenter-overview-card-link-border-colour: var(--polly-grey--300);
}
/* Helpcenter collection overview */
.polly-help-collection-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--polly-collection-overview-container-gap);
}
.polly-help-collection-item {
  display: var(--polly-collection-overview-card-display);
  width: var(--polly-collection-overview-card-width);
  padding: var(--polly-collection-overview-card-padding);
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  border-radius: var(--polly-collection-overview-card-border-radius);
  border: var(--polly-collection-overview-card-border-width) solid var(--polly-collection-overview-card-border-colour);
  background: var(--polly-collection-overview-card-colour);
  color: var(--polly-collection-overview-card-font-colour);
  font-family: var(--polly-font-family);
  font-size: var(--polly-collection-overview-card-font-size--sm);
  font-style: normal;
  font-weight: var(--polly-collection-overview-card-font-weight);
}
.polly-help-collection-item h4 {
  margin: var(--polly-collection-overview-card-margin);
  font-size: var(--polly-collection-overview-card-font-size);
  font-weight: var(--polly-collection-overview-card-font-weight--bold);
}
.polly-help-collection-container .article {
  width: 100%;
  padding: var(--polly-helpcenter-overview-card-link-padding);
  margin: var(--polly-helpcenter-overview-card-link-margin);
  background-color: var(--polly-helpcenter-overview-card-background-colour);
  border: var(--polly-helpcenter-overview-card--link-border-width) solid var(--polly-helpcenter-overview-card-link-border-colour);
  color: var(--polly-helpcenter-overview-card-link-colour);
  font-family: var(--polly-font-family);
  font-size: var(--polly-helpcenter-overview-card-link-font-size);
  font-style: normal;
  font-weight: var(--polly-helpcenter-overview-card-link-font-weight);
  text-decoration-line: none;
}
.polly-help-collection-container .article:hover {
  background-color: var(--polly-helpcenter-overview-card-link-colour--hover);
}
.polly-help-collection-item ul a {
  text-decoration-line: none;
  line-height: var(--polly-helpcenter-overview-card-link-line-height);
}
/* Helpcenter v2 landing-style overrides */
.hc-theme-v2 .polly-help-collection-container {
  gap: var(--polly-hc-v2-grid-gap);
}
.hc-theme-v2 .polly-help-collection-item {
  width: var(--polly-hc-v2-card-width-desktop);
  min-height: var(--polly-hc-v2-card-min-height);
  padding: var(--polly-hc-v2-card-padding);
  gap: var(--polly-hc-v2-card-gap);
  border: var(--polly-hc-v2-border-width) var(--polly-hc-v2-border-style) var(--polly-hc-v2-border-colour);
  border-radius: var(--polly-hc-v2-border-radius);
  background: var(--polly-hc-v2-surface-card);
  box-shadow: var(--polly-hc-v2-card-shadow);
}
.hc-theme-v2.hc-v2-landing .polly-help-collection-item {
  border: 0;
}
.hc-theme-v2 .polly-help-collection-item:hover {
  box-shadow: var(--polly-hc-v2-card-shadow-hover);
  transform: none;
}
.hc-theme-v2 .polly-help-collection-item h4 {
  margin: 0;
  font-size: var(--polly-hc-v2-card-title-size);
  color: var(--polly-hc-v2-text-primary);
}
.hc-theme-v2 .polly-help-collection-item h4 i {
  width: var(--polly-hc-v2-card-icon-size);
  height: var(--polly-hc-v2-card-icon-size);
  margin-right: var(--polly-hc-v2-card-icon-gap-right);
  border-radius: var(--polly-hc-v2-card-icon-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--polly-hc-v2-surface-background, var(--polly-hc-v2-page-bg));
  color: var(--polly-hc-v2-secondary-accent);
}
.hc-theme-v2 .polly-help-collection-item p {
  margin: 0;
  color: var(--polly-hc-v2-text-secondary);
  font-size: var(--polly-hc-v2-card-body-size);
}
.hc-theme-v2 .polly-help-collection-item ul.flat {
  width: 100%;
  margin: 0;
  padding: 0;
}
.hc-theme-v2 .polly-help-collection-container .article {
  padding: 0.125rem 0;
  border: 0;
  background: transparent;
}
.hc-theme-v2 .polly-help-collection-item ul a {
  color: var(--polly-hc-v2-text-secondary);
  font-size: var(--polly-hc-v2-card-link-size);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--polly-hc-v2-card-link-gap);
  text-decoration: none;
}
.hc-theme-v2 .polly-help-collection-item ul a > span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.hc-theme-v2 .polly-help-collection-item ul a::before {
  content: "";
  width: var(--polly-hc-v2-card-bullet-size);
  height: var(--polly-hc-v2-card-bullet-size);
  border-radius: 50%;
  background: var(--polly-hc-v2-border-colour);
  flex-shrink: 0;
}
.hc-theme-v2 .polly-help-collection-item ul a:hover {
  color: var(--polly-hc-v2-primary-brand);
}
.hc-theme-v2 .polly-help-collection-item ul a:hover::before {
  background: var(--polly-hc-v2-primary-brand);
}
.hc-theme-v2 .polly-collection-top-item-type-pill-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.625rem;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  background: var(--polly-hc-v2-surface-background, var(--polly-hc-v2-page-bg));
  color: var(--polly-hc-v2-secondary-accent);
  font-size: 0.6875rem;
  line-height: 1.35;
  font-weight: var(--polly-font-weight--semi-bold);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.hc-theme-v2 .polly-help-collection-more.btn.btn-default.btn-sm {
  padding: 0;
  margin-top: auto;
  border: 0;
  background: transparent;
  color: var(--polly-hc-v2-primary-brand);
  font-size: var(--polly-hc-v2-card-cta-size);
  font-weight: var(--polly-hc-v2-card-cta-weight);
}
.hc-theme-v2 .polly-help-collection-more.btn.btn-default.btn-sm:hover {
  color: var(--polly-hc-v2-accent);
  text-decoration: none;
}
.hc-theme-v2 .polly-help-contact-box {
  width: 100%;
  min-height: auto;
}
.hc-theme-v2 .polly-help-contact-box-v2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--polly-hc-v2-contact-gap);
  padding: var(--polly-hc-v2-contact-padding);
  border-radius: var(--polly-hc-v2-border-radius);
  border: var(--polly-hc-v2-border-width) var(--polly-hc-v2-border-style) var(--polly-hc-v2-border-colour);
  background: var(--polly-hc-v2-surface-card);
  box-shadow: var(--polly-shadow--xs);
}
.hc-theme-v2.hc-v2-landing .polly-help-contact-box-v2 {
  border: 0;
}
.hc-theme-v2 .polly-help-contact-v2-main {
  display: flex;
  align-items: center;
  gap: var(--polly-hc-v2-contact-main-gap);
  flex: 1 1 auto;
}
.hc-theme-v2 .polly-help-contact-v2-icon {
  width: var(--polly-hc-v2-contact-icon-size);
  height: var(--polly-hc-v2-contact-icon-size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--polly-hc-v2-surface-background, var(--polly-hc-v2-page-bg));
  color: var(--polly-hc-v2-primary-brand);
  font-size: var(--polly-hc-v2-contact-icon-font-size);
  flex-shrink: 0;
}
.hc-theme-v2 .polly-help-contact-v2-copy h4 {
  margin: 0 0 0.18rem;
  font-size: var(--polly-hc-v2-contact-heading-size);
  font-weight: var(--polly-font-weight--semi-bold);
  color: var(--polly-hc-v2-text-primary);
}
.hc-theme-v2 .polly-help-contact-v2-copy .need_help_text {
  margin: 0;
  color: var(--polly-hc-v2-text-secondary);
  font-size: var(--polly-hc-v2-contact-subtext-size);
}
.hc-theme-v2 .polly-help-contact-v2-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--polly-hc-v2-contact-actions-gap);
  flex-shrink: 0;
}
.hc-theme-v2 .polly-help-contact-v2-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--polly-hc-v2-contact-primary-gap);
  padding: var(--polly-hc-v2-contact-primary-padding);
  border-radius: var(--polly-hc-v2-border-radius);
  border: var(--polly-border-width--sm) solid var(--polly-hc-v2-primary-brand);
  background: var(--polly-hc-v2-primary-brand);
  color: var(--polly-font-colour--white);
  font-size: var(--polly-font-size--sm);
  font-weight: var(--polly-font-weight--regular);
  text-decoration: none;
}
.hc-theme-v2 .polly-help-contact-v2-primary:hover {
  background: var(--polly-hc-v2-accent);
  border-color: var(--polly-hc-v2-accent);
  color: var(--polly-font-colour--white);
}
.hc-theme-v2 .polly-help-contact-v2-short-links {
  display: inline-flex;
  align-items: center;
  gap: var(--polly-hc-v2-contact-short-links-gap);
}
.hc-theme-v2 .polly-help-contact-v2-short-link {
  color: var(--polly-hc-v2-text-secondary);
  width: var(--polly-hc-v2-contact-short-link-size);
  height: var(--polly-hc-v2-contact-short-link-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--polly-border-width--sm) solid var(--polly-hc-v2-border-colour);
  border-radius: var(--polly-hc-v2-border-radius);
  background: var(--polly-hc-v2-surface-card);
  text-decoration: none;
}
.hc-theme-v2 .polly-help-contact-v2-extra {
  display: grid;
  gap: var(--polly-hc-v2-contact-extra-gap);
  width: 100%;
  margin-top: var(--polly-hc-v2-contact-extra-margin-top);
  padding-top: var(--polly-hc-v2-contact-extra-padding-top);
  border-top: var(--polly-border-width--sm) solid var(--polly-hc-v2-border-colour);
}
.hc-theme-v2 .polly-help-contact-v2-extra .polly-help-contact-info {
  color: var(--polly-hc-v2-text-secondary);
}
@media screen and (max-width: 960px) {
  .hc-theme-v2 .polly-help-collection-item {
    width: var(--polly-hc-v2-card-width-tablet);
  }
}
@media screen and (max-width: 750px) {
  .polly-help-collection-container .polly-help-collection-item {
    width: 47%;
  }
  .hc-theme-v2 .polly-help-collection-item {
    width: var(--polly-hc-v2-card-width-tablet);
  }
  .hc-theme-v2 .polly-help-contact-v2-main {
    align-items: center;
  }
  .hc-theme-v2 .polly-help-contact-box-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .hc-theme-v2 .polly-help-contact-v2-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 550px) {
  .polly-help-collection-container .polly-help-collection-item {
    width: 100%;
    height: auto !important;
  }
  .hc-theme-v2 .polly-help-collection-item {
    width: 100%;
  }
}
