/**
    Converts a specific size in PX to REM based on Base Font Size

    @param $size {number} The desired size to convert expressed in PX
*/
/**
    Encode a color
    @TODO: Need more info about this mixin
*/
/**
    Make an element take the full width of the viewport
*/
/**
    Create a Font Awesome icon, from a provided unicode

    @param $unicode {string} the value of the desired icon to insert
*/
/**
    Use to declare font size and font weight

    @param $pixels {number} The desired size of the font
    @param $weight {number} The desired weight of the font
*/
/**
    Convert some text, to a bold font weight
*/
h1,
.h1 {
  font-family: var(--header-font-family);
  font-weight: var(--header-font-weight);
  margin-top: var(--header-margin-top);
  margin-bottom: var(--header-margin-bottom);
  line-height: var(--header-line-height);
  color: var(--header-color);
  font-size: var(--h1-size-mobile);
}
@media screen and (min-width: 768px) {
  h1,
.h1 {
    font-size: var(--h1-size-desktop);
  }
}

h2,
.h2 {
  font-family: var(--header-font-family);
  font-weight: var(--header-font-weight);
  margin-top: var(--header-margin-top);
  margin-bottom: var(--header-margin-bottom);
  line-height: var(--header-line-height);
  color: var(--header-color);
  font-size: var(--h2-size-mobile);
}
@media screen and (min-width: 768px) {
  h2,
.h2 {
    font-size: var(--h2-size-desktop);
  }
}

h3,
.h3 {
  font-family: var(--header-font-family);
  font-weight: var(--header-font-weight);
  margin-top: var(--header-margin-top);
  margin-bottom: var(--header-margin-bottom);
  line-height: var(--header-line-height);
  color: var(--header-color);
  font-size: var(--h3-size-mobile);
}
@media screen and (min-width: 768px) {
  h3,
.h3 {
    font-size: var(--h3-size-desktop);
  }
}

h4,
.h4 {
  font-family: var(--header-font-family);
  font-weight: var(--header-font-weight);
  margin-top: var(--header-margin-top);
  margin-bottom: var(--header-margin-bottom);
  line-height: var(--header-line-height);
  color: var(--header-color);
  font-size: var(--h4-size-mobile);
}
@media screen and (min-width: 768px) {
  h4,
.h4 {
    font-size: var(--h4-size-desktop);
  }
}

h5,
.h5 {
  font-family: var(--header-font-family);
  font-weight: var(--header-font-weight);
  margin-top: var(--header-margin-top);
  margin-bottom: var(--header-margin-bottom);
  line-height: var(--header-line-height);
  color: var(--header-color);
  font-size: var(--h5-size-mobile);
}
@media screen and (min-width: 768px) {
  h5,
.h5 {
    font-size: var(--h5-size-desktop);
  }
}

p,
span {
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  font-size: var(--p-size-mobile);
}
@media screen and (min-width: 768px) {
  p,
span {
    font-size: var(--p-size-desktop);
  }
}

b,
strong {
  font-family: var(--body-bold-font-family);
  font-weight: var(--body-bold-font-weight);
  font-size: var(--p-size-mobile);
}
@media screen and (min-width: 768px) {
  b,
strong {
    font-size: var(--p-size-desktop);
  }
}

.help-page {
  font-size: 1rem;
  line-height: 1.75rem;
}
.help-page h1,
.help-page h2,
.help-page h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  text-transform: uppercase;
  margin: 0;
}
.help-page span,
.help-page p {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
.help-page .content-wrapper {
  margin: 1rem 0 4rem;
}
.help-page .header-content {
  padding: 0 1.5rem 1rem;
  border-bottom: 0.0625rem solid #CBCBCB;
}
.help-page .header-content h1,
.help-page .header-content h2,
.help-page .header-content h3 {
  margin: 0 0 0.25rem;
}
@media (max-width: 991.98px) {
  .help-page .header-content {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .help-page .header-content {
    border: none;
  }
}
@media (min-width: 992px) {
  .help-page .content-wrapper {
    padding: 1.5rem;
  }
  .help-page .header-content {
    padding: 0 0 1rem;
    margin-bottom: 20px;
  }
  .help-page .collapsible-container {
    padding: 0;
    border: none;
    margin-bottom: 2.5rem;
  }
  .help-page .collapsible-container .collapse-btn {
    pointer-events: none;
  }
  .help-page .collapsible-container .collapse-btn .icon {
    display: none;
  }
  .help-page .collapsible-container .collapse {
    display: block;
  }
  .help-page .help-content-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .help-page .help-content-list > * {
    width: 33.33333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    padding: 0 0.375rem;
  }
}
@media (min-width: 1200px) {
  .help-page .header-content {
    margin-bottom: 1.5rem;
  }
}

.help-page.container {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.help-page.container .help-search-wrapper form {
  margin-bottom: 0;
}
.help-page.container .help-page-contact-options p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.help-page.container .help-page-contact-options p a {
  text-decoration: underline;
}
.help-page.container .experience-help-helpArticleCTAs {
  margin-bottom: 0.625rem;
}
.help-page.container .experience-help-helpArticleCTAs .editorialRichText-component-container {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  background-color: #F6F6F6;
}
.help-page.container .experience-help-helpArticleCTAs .editorialRichText-component-container p {
  font-family: Roboto;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: left;
}
.help-page.container .experience-commerce_layouts-mobileGrid2r1c .experience-help-contactOptionMarathon {
  margin-top: 2.5rem;
}
@media (max-width: 991.98px) {
  .help-page.container .search-bar-help, .help-page.container .content-wrapper {
    width: 100%;
  }
  .help-page.container .content-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .help-page.container .search-bar-help, .help-page.container .content-wrapper {
    width: 75%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .help-page.container .r-align-contact-icon img {
    float: right;
  }
  .help-page.container .r-align-contact-container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}