.pc-expandable-card .pc-presentation-container .pc-info {
  overflow-y: hidden;
}
.pc-expandable-card .pc-presentation-container .pc-info .pc-header .pc-role {
  display: block;
}
.pc-expandable-card .pc-presentation-container .pc-info .pc-header .pc-title-container .pc-line {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.pc-expandable-card .pc-toggle-card {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.pc-expandable-card .pc-toggle-card,
.pc-expandable-card .pc-toggle-card .pc-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pc-expandable-card .pc-toggle-card span {
  display: inline-block;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
.pc-expandable-card .pc-toggle-card span:hover {
  background-size: 0% 2px;
}
.pc-expandable-card .pc-toggle-card span:not(:hover) {
  background-size: 100% 2px;
}
.pc-expandable-card .pc-toggle-card .pc-icon {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.pc-expandable-card .pc-toggle-card .pc-icon .less {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pc-expandable-card .pc-full-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.pc-expandable-card .pc-full-content,
.pc-expandable-card .pc-full-content .pc-content {
  pointer-events: auto;
}
.pc-expandable-card .pc-full-content .pc-content {
  height: 100%;
  overflow-y: auto;
}
.pc-expandable-card .pc-full-content .pc-content::-webkit-scrollbar {
  width: 5px;
}
.pc-expandable-card .pc-full-content .pc-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.pc-expandable-card .pc-full-content .pc-content::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--pcWhite);
}
.pc-expandable-card:not(.pc-active) .pc-toggle-card .pc-icon .plus {
  opacity: 1;
}
.pc-expandable-card:not(.pc-active) .pc-toggle-card .pc-icon .less {
  opacity: 0;
}
.pc-expandable-card:not(.pc-active) .pc-full-content {
  opacity: 0;
}
.pc-expandable-card.pc-active {
  overflow-y: visible;
}
.pc-expandable-card.pc-active .pc-toggle-card .pc-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pc-expandable-card.pc-active .pc-toggle-card .pc-icon .plus {
  opacity: 0;
}
.pc-expandable-card.pc-active .pc-toggle-card .pc-icon .less {
  opacity: 1;
}
.pc-expandable-card.pc-active .pc-full-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media only screen and (min-width: 1025px) {
  .pc-expandable-card.pc-content-embedded .pc-presentation-container .pc-info {
    position: relative;
  }
  .pc-expandable-card:not(.pc-content-embedded) {
    position: relative;
    overflow-y: hidden;
  }
}
@media only screen and (max-width: 1024px) {
  .pc-expandable-card .pc-presentation-container .pc-info {
    position: relative;
  }
}
@media only screen and (min-width: 580px) {
  .pc-expandable-card .pc-presentation-container,
  .pc-expandable-card .pc-presentation-container .pc-info,
  .pc-expandable-card .pc-presentation-container .pc-info .pc-title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pc-expandable-card .pc-presentation-container,
  .pc-expandable-card .pc-presentation-container .pc-info,
  .pc-expandable-card .pc-presentation-container .pc-info .pc-title-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pc-expandable-card .pc-presentation-container .pc-header .pc-title-container {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pc-expandable-card .pc-presentation-container .pc-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 579px) {
  .pc-expandable-card .pc-presentation-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}