.clearfix::after {
  content: "";
  display: table;
  clear: both; }

/*  To utilize the font mixin,

@mixin font-source-serif($size: false, $color: false, $weight: false,  $lh: false, $ls: false) {
@mixin font-source-serif-italic($size: false, $color: false, $weight: false,  $lh: false, $ls: false) {
@mixin font-source-sans($size: false, $color: false, $weight: false,  $lh: false, $ls: false) {

// @include font-source-serif(40px, $brand-v2-off-black, normal, 50px, null);
// @include font-source-sans(16px, $brand-v2-off-black, normal, 21px, 0.03em);

*/
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px; }

.display-none {
  display: none; }

.menu {
  float: left;
  margin: 0;
  padding: 0; }
  .menu li {
    float: left;
    list-style: none outside none !important; }

.text-ellipses {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 99%; }

/* mixin for multiline */
/* ============================================================================
Accordion component
============================================================================ */
/* ============================================================================
Common styles updates
============================================================================ */
/* ============================================================================
Custom styles
============================================================================ */
@media only screen and (max-width: 767px) {
  .pd-accordion {
    max-width: var(--max-width); } }

@media only screen and (min-width: 768px) {
  .pd-accordion {
    max-width: var(--max-width-md); } }

.pd-accordion__title-button {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  font-weight: var(--font-weight);
  letter-spacing: var(--letter-spacing); }
  @media only screen and (min-width: 768px) {
    .pd-accordion__title-button {
      font-weight: var(--font-weight-md);
      letter-spacing: var(--letter-spacing-md); } }
  .pd-accordion__title-button::after {
    content: "";
    -ms-transform: translate(0, 50%) rotate(45deg);
        transform: translate(0, 50%) rotate(45deg);
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-left: 1px solid #000;
    border-top: 1px solid #000; }
  .pd-accordion__title-button.collapsed::after {
    -ms-transform: translate(0, -50%) rotate(225deg);
        transform: translate(0, -50%) rotate(225deg); }

.pd-accordion__title-button-line {
  -ms-flex: 1;
      flex: 1;
  height: 1px;
  background: #e7e7e7;
  margin: 0 20px; }
  @media only screen and (min-width: 768px) {
    .pd-accordion__title-button-line {
      margin: 0 40px; } }

/*# sourceMappingURL=pd_accordion.css.map */