

.tabbed-content--tabs button, .tabbed-content--tabs button:after {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1); }

.tabbed-content--has-bg {
  isolation: isolate;
  border-radius: var(--block-border-radius, 16px); }



.tabbed-content {
  display: block; }
  .tabbed-content-wrapper .section-header p {
    color: var(--color-body, #2c2d2e); }
  .tabbed-content--has-bg {
    padding: 25px;
    background: var(--color-bg, var(--bg-body, #f5f5f5)); }
    @media only screen and (min-width: 1068px) {
      .tabbed-content--has-bg {
        padding: 55px; } }
  .tabbed-content--scroll {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    transform: translateZ(0px); }
    .tabbed-content--scroll s {
      z-index: 10; }
  .tabbed-content--tabs {
    display: block;
    text-align: left;
    min-width: 100%;
    white-space: nowrap;
    overflow-x: scroll; }
    .tabbed-content--tabs::-webkit-scrollbar {
      display: none; }
    .tabbed-content--tabs button {
      display: inline-flex;
      align-items: center;
      min-height: 29px;
      color: rgba(var(--color-tabs), 0.6);
      margin-right: 40px;
      font-size: 1.25rem;
      font-weight: var(--font-body-medium-weight, 500);
      padding: 2px 0 5px;
      position: relative;
      z-index: 2; }
      .tabbed-content--tabs button:after {
        content: "";
        display: block;
        height: 2px;
        width: 100%;
        background: rgba(var(--color-tabs), 1);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 3;
        transform: scale(0, 1);
        transform-origin: left center; }
      .tabbed-content--tabs button svg {
        fill: rgba(var(--color-tabs), 0.6);
        margin-right: 11px;
        width: 15px;
        height: auto; }
      .tabbed-content--tabs button:hover {
        color: rgba(var(--color-tabs), 1);
        opacity: 1; }
      .tabbed-content--tabs button.active {
        opacity: 1;
        color: rgba(var(--color-tabs), 1); }
        .tabbed-content--tabs button.active:after {
          transform: scale(1, 1); }
        .tabbed-content--tabs button.active svg {
          fill: rgba(var(--color-tabs), 1); }
    .tabbed-content--tabs.tabs-center {
      text-align: center; }
      .tabbed-content--tabs.tabs-center button {
        margin: 0 17px; }
    .tabbed-content--tabs.tabs-right {
      text-align: right; }
      .tabbed-content--tabs.tabs-right button {
        margin: 0 0 0 34px; }
  .tabbed-content.text-size--small {
    font-size: 0.9375rem; }
  .tabbed-content.text-size--large {
    font-size: 1.1875rem; }
  .tabbed-content--content {
    display: none;
    color: var(--color-body, #2c2d2e); }
    @media only screen and (min-width: 768px) {
      .tabbed-content--content {
        column-count: var(--columns, 1); } }
    .tabbed-content--content.active {
      display: block; }
