/*
 * Autoquip Pillar Page
 *
 * This stylesheet is loaded only on the Pillar Page template.
 * It does not use or alter the theme's legacy sidebar layout.
 */

/*========================================
  Base
========================================*/

.aq-pillar {
    --aq-pillar-navy: #051b30;
    --aq-pillar-blue: #223d72;
    --aq-pillar-red: #ef2d2d;
    --aq-pillar-heading: #082a48;
    --aq-pillar-copy: #293e53;
    --aq-pillar-sidebar-width: 260px;
    --aq-pillar-column-gap: 92px;
    --aq-pillar-article-width: 704px;
    --aq-pillar-sticky-top: 145px;

    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/*========================================
  Hero
========================================*/

.aq-pillar-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 600px;
    min-height: 600px;
    overflow: hidden;
    background: #176da7;
}

.aq-pillar-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.aq-pillar-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(6, 73, 120, 0.97) 0%,
            rgba(20, 116, 178, 0.88) 38%,
            rgba(20, 101, 158, 0.55) 66%,
            rgba(6, 31, 52, 0.08) 100%
        );
}

.aq-pillar-hero__inner {
    position: relative;
    z-index: 2;
    width: calc(100% - 92px);
    max-width: 1476px;
    margin: 0 auto;
    padding: 50px 0 70px;
}

.aq-pillar-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0 0 30px;
    color: #ffffff;
    font-family: Heebo, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.aq-pillar-breadcrumbs a,
.aq-pillar-breadcrumbs a:visited,
.aq-pillar-breadcrumbs span {
    color: #ffffff;
    text-decoration: none;
}

.aq-pillar-breadcrumbs a:hover,
.aq-pillar-breadcrumbs a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.aq-pillar-hero__title {
    width: 100%;
    max-width: 950px;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: Heebo, sans-serif;
    font-size: clamp(50px, 4.15vw, 66px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.025em;
    text-align: left;
}

.aq-pillar-hero__read-time {
    margin: 26px 0 0;
    color: #ffffff;
    font-family: Heebo, sans-serif;
    font-size: 15px;
    line-height: 1.4;
}

/*========================================
  Desktop article layout
========================================*/

.aq-pillar-body {
    width: 100%;
    background: #ffffff;
}

.aq-pillar-layout {
    display: flex;
    align-items: stretch;
    width: calc(100% - 100px);
    max-width: 1468px;
    margin: 0 auto;
    padding: 0 0 110px;
}

.aq-pillar-layout--no-toc {
    padding-left: calc(
        var(--aq-pillar-sidebar-width) +
        var(--aq-pillar-column-gap)
    );
}

.aq-pillar-sidebar {
    position: relative;
    flex: 0 0 var(--aq-pillar-sidebar-width);
    width: var(--aq-pillar-sidebar-width);
    min-width: var(--aq-pillar-sidebar-width);
    margin: 0;
    padding: 0;
    align-self: stretch;
    height: auto;
    overflow: visible;
    background: var(--aq-pillar-navy);
}

.aq-pillar-article {
    flex: 0 1 var(--aq-pillar-article-width);
    width: var(--aq-pillar-article-width);
    max-width: var(--aq-pillar-article-width);
    min-width: 0;
    margin: 0 0 0 var(--aq-pillar-column-gap);
    padding: 72px 0 0;
}

/*========================================
  Table of contents
========================================*/

.aq-pillar-toc {
    position: -webkit-sticky;
    position: sticky;
    top: var(--aq-pillar-sticky-top);
    width: 100%;
    max-height: calc(
        100vh - var(--aq-pillar-sticky-top) - 20px
    );
    margin: 0;
    padding: 36px 0 36px;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--aq-pillar-navy);
    z-index: 20;
}

.logged-in .aq-pillar-toc {
    top: calc(var(--aq-pillar-sticky-top) + 32px);
    max-height: calc(
        100vh - var(--aq-pillar-sticky-top) - 52px
    );
}

.aq-pillar-toc__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin: 0 0 13px;
    padding: 14px 16px;
    color: #ffffff;
    background: var(--aq-pillar-navy);
    font-family: "din-condensed", "DIN Condensed", sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.aq-pillar-toc__list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--aq-pillar-navy);
}

.aq-pillar-toc__item {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--aq-pillar-navy);
}

.aq-pillar-toc__item:last-child {
    margin-bottom: 0;
}

.aq-pillar-toc__link,
.aq-pillar-toc__link:link,
.aq-pillar-toc__link:visited {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    margin: 0;
    padding: 20px 28px;
    color: #ffffff;
    background: var(--aq-pillar-blue);
    border-left: 2px solid var(--aq-pillar-red);
    font-family: Heebo, sans-serif;
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    box-sizing: border-box;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.aq-pillar-toc__link:hover,
.aq-pillar-toc__link:focus {
    color: #ffffff;
    background: #365fa8;
    text-decoration: none;
}

.aq-pillar-toc__link:active {
    color: #ffffff;
    background: #426fc0;
}

.aq-pillar-toc__link.is-active,
.aq-pillar-toc__link[aria-current="true"] {
    color: #ffffff;
    background: #304f88;
}

/*========================================
  Flexible sections inside the article
========================================*/

.aq-pillar-section {
    width: 100%;
    margin: 0 0 72px;
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-margin-top: 175px;
}

.aq-pillar-section:last-child {
    margin-bottom: 0;
}

.aq-pillar-section__inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.aq-pillar-section__inner > .content,
.aq-pillar-section__inner > .content.not-card,
.aq-pillar-section__inner .inner-content-wrapper {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

/*========================================
  Simple content
========================================*/

.aq-pillar-article .simple_content .lead {
    width: 100%;
    margin: 0 0 22px;
    color: var(--aq-pillar-heading);
    font-family: Heebo, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 62.5px;
    letter-spacing: 0;
    text-align: left;
}

.aq-pillar-article .simple_content .lead::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 18px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #ef312f 0%,
        #b74756 42%,
        #338bc4 100%
    );
}

.aq-pillar-article
.simple_content
.inner-content-wrapper {
    color: var(--aq-pillar-copy);
    font-family: Heebo, sans-serif;
    font-size: 16px;
    line-height: 1.48;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper p {
    margin: 0 0 23px;
    color: var(--aq-pillar-copy);
    font-size: inherit;
    line-height: inherit;
    text-align: left;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper h2 {
    margin: 52px 0 22px;
    color: var(--aq-pillar-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
    text-align: left;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper h3 {
    margin: 48px 0 18px;
    color: var(--aq-pillar-heading);
    font-family: Heebo, sans-serif;
    font-size: 38px;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    opacity: 0.85;
    text-align: left;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper h4 {
    margin: 34px 0 16px;
    color: var(--aq-pillar-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper ul,
.aq-pillar-article
.simple_content
.inner-content-wrapper ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper li {
    margin-bottom: 8px;
    color: var(--aq-pillar-copy);
    font-size: inherit;
    line-height: inherit;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper a {
    color: var(--aq-pillar-copy);
    text-decoration: underline;
}

.aq-pillar-article
.simple_content
.inner-content-wrapper a:hover,
.aq-pillar-article
.simple_content
.inner-content-wrapper a:focus {
    color: #17479c;
}

/*========================================
  Article media
========================================*/

.aq-pillar-article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: auto;
}

.aq-pillar-article iframe,
.aq-pillar-article video {
    display: block;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
}

/*========================================
  Smaller desktop
========================================*/

@media screen and (max-width: 1200px) {
    .aq-pillar {
        --aq-pillar-sidebar-width: 240px;
        --aq-pillar-column-gap: 55px;
    }

    .aq-pillar-layout {
        width: calc(100% - 70px);
    }

    .aq-pillar-article {
        flex-basis: auto;
        width: auto;
        max-width: 704px;
    }
}

/*========================================
  Mobile
========================================*/

@media screen and (max-width: 991px) {
    .aq-pillar-hero {
        height: auto;
        min-height: 390px;
    }

    .aq-pillar-hero__inner {
        width: calc(100% - 60px);
        padding-top: 45px;
        padding-bottom: 52px;
    }

    .aq-pillar-breadcrumbs {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .aq-pillar-hero__title {
        max-width: none;
        font-size: clamp(38px, 8vw, 54px);
    }

    .aq-pillar-layout,
    .aq-pillar-layout--no-toc {
        display: block;
        width: calc(100% - 60px);
        margin: 0 auto;
        padding: 0 0 70px;
    }

    .aq-pillar-sidebar {
        display: none;
    }

    .aq-pillar-article {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 52px 0 0;
    }

    .aq-pillar-section {
        scroll-margin-top: 110px;
    }

    .aq-pillar-article .simple_content .lead {
        font-size: 42px;
        line-height: 52px;
    }

    .aq-pillar-article
    .simple_content
    .inner-content-wrapper h3 {
        font-size: 34px;
        line-height: 1;
    }
}

/*========================================
  Small mobile
========================================*/

@media screen and (max-width: 600px) {
    .aq-pillar-hero__inner,
    .aq-pillar-layout,
    .aq-pillar-layout--no-toc {
        width: calc(100% - 32px);
    }

    .aq-pillar-hero__title {
        font-size: 39px;
        line-height: 1.1;
    }

    .aq-pillar-article {
        padding-top: 42px;
    }

    .aq-pillar-section {
        margin-bottom: 55px;
    }

    .aq-pillar-article .simple_content .lead {
        font-size: 34px;
        line-height: 42px;
    }

    .aq-pillar-article
    .simple_content
    .inner-content-wrapper h3 {
        margin-top: 38px;
        font-size: 30px;
        line-height: 1.1;
    }
}

/*========================================
  Reusable gradient card
========================================*/

.aq-gradient-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 704px;
    min-height: 620px;
    margin: 0;
    padding: 72px 48px 48px;
    overflow: hidden;
    color: #ffffff !important;
    background-color: #051b30;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Top gradient bar */
.aq-gradient-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background: linear-gradient(
        90deg,
        #e62e25 0%,
        #1d315f 52%,
        #2984c1 100%
    );
}

/* Force all card text to remain white */
.aq-gradient-card,
.aq-gradient-card h1,
.aq-gradient-card h2,
.aq-gradient-card h3,
.aq-gradient-card h4,
.aq-gradient-card h5,
.aq-gradient-card h6,
.aq-gradient-card p,
.aq-gradient-card li,
.aq-gradient-card span,
.aq-gradient-card strong,
.aq-gradient-card em {
    color: #ffffff !important;
}

/*========================================
  Card heading
========================================*/

.aq-gradient-card__title,
.aq-pillar-article
.simple_content
.inner-content-wrapper
.aq-gradient-card__title {
    width: 100%;
    max-width: 608px;
    margin: 0 0 40px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: Heebo, sans-serif !important;
    font-size: 50px !important;
    font-weight: 700 !important;
    font-style: normal;
    line-height: 62.5px !important;
    letter-spacing: 0 !important;
    text-align: left;
    opacity: 1 !important;
}

/* Remove any pillar heading decoration */
.aq-gradient-card__title::before,
.aq-gradient-card__title::after {
    display: none !important;
    content: none !important;
}

/*========================================
  Card content
========================================*/

.aq-gradient-card__content {
    width: 100%;
    max-width: 608px;
    margin: 0;
    padding: 0;
    color: #ffffff !important;
    font-family: Heebo, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
    opacity: 0.85;
}

/* Override normal pillar paragraph styling */
.aq-gradient-card__content p,
.aq-pillar-article
.simple_content
.inner-content-wrapper
.aq-gradient-card__content p {
    width: 100%;
    margin: 0 0 32px !important;
    padding: 0;
    color: #ffffff !important;
    font-family: Heebo, sans-serif;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.45 !important;
    letter-spacing: 0;
    text-align: left;
    opacity: 1 !important;
}

.aq-gradient-card__content p:last-child,
.aq-pillar-article
.simple_content
.inner-content-wrapper
.aq-gradient-card__content p:last-child {
    margin-bottom: 0 !important;
}

/*========================================
  Button area
========================================*/

.aq-gradient-card__action {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 608px;
    margin-top: 40px;
    padding: 0;
}

/* Remove default form spacing */
.aq-gradient-card__form {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/*
 * Request Consultation button
 * Matches the existing navigation Get A Quote button.
 */
.aq-gradient-card__action .quote-btn.btn,
.aq-gradient-card__action .quote-btn.btn:link,
.aq-gradient-card__action .quote-btn.btn:visited,
.aq-gradient-card__action .quote-btn.btn:hover,
.aq-gradient-card__action .quote-btn.btn:focus,
.aq-gradient-card__action .quote-btn.btn:active {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 47px;

    margin: 0 !important;
    padding: 11px 30px !important;

    color: #ffffff !important;
    background: #e62e25 !important;

    border: 1px solid #e62e25 !important;
    border-top: none !important;
    border-radius: 0 0 5px 5px !important;

    font-family: "din-condensed", "DIN Condensed", sans-serif !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1 !important;
    letter-spacing: 1px !important;

    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;

    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;

    transition: all 0.3s ease-in-out;
}

/* Thin line above the button, matching the navigation button */
.aq-gradient-card__action .quote-btn.btn::before {
    content: "";
    position: absolute;
    right: -1px;
    bottom: calc(100% + 5px);
    left: -1px;
    height: 2px;
    background: #e62e25;
}

/* Keep the same red navigation-button treatment on hover */
.aq-gradient-card__action .quote-btn.btn:hover,
.aq-gradient-card__action .quote-btn.btn:focus {
    color: #ffffff !important;
    background: #f23830 !important;
    border-color: #f23830 !important;
    transform: none !important;
    box-shadow: none !important;
}

.aq-gradient-card__action .quote-btn.btn:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

/*========================================
  Pillar page spacing
========================================*/

.aq-pillar-article .aq-gradient-card {
    margin-top: 48px;
    margin-bottom: 0;
}

/*========================================
  Tablet
========================================*/

@media screen and (max-width: 991px) {
    .aq-gradient-card {
        min-height: 0;
        padding: 64px 40px 44px;
    }

    .aq-gradient-card__title,
    .aq-pillar-article
    .simple_content
    .inner-content-wrapper
    .aq-gradient-card__title {
        margin-bottom: 32px !important;
        font-size: 42px !important;
        line-height: 52px !important;
    }

    .aq-gradient-card__content,
    .aq-gradient-card__content p,
    .aq-pillar-article
    .simple_content
    .inner-content-wrapper
    .aq-gradient-card__content p {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }

    .aq-gradient-card__content p,
    .aq-pillar-article
    .simple_content
    .inner-content-wrapper
    .aq-gradient-card__content p {
        margin-bottom: 28px !important;
    }

    .aq-gradient-card__action {
        margin-top: 36px;
    }
}

/*========================================
  Mobile
========================================*/

@media screen and (max-width: 600px) {
    .aq-gradient-card {
        width: 100%;
        min-height: 0;
        padding: 52px 24px 32px;
        border-radius: 4px;
    }

    .aq-gradient-card::before {
        height: 18px;
    }

    .aq-gradient-card__title,
    .aq-pillar-article
    .simple_content
    .inner-content-wrapper
    .aq-gradient-card__title {
        margin-bottom: 26px !important;
        font-size: 34px !important;
        line-height: 42px !important;
    }

    .aq-gradient-card__content,
    .aq-gradient-card__content p,
    .aq-pillar-article
    .simple_content
    .inner-content-wrapper
    .aq-gradient-card__content p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .aq-gradient-card__content p,
    .aq-pillar-article
    .simple_content
    .inner-content-wrapper
    .aq-gradient-card__content p {
        margin-bottom: 24px !important;
    }

    .aq-gradient-card__action {
        margin-top: 30px;
    }

    .aq-gradient-card__form {
        max-width: 100%;
    }

    .aq-gradient-card__action .quote-btn.btn,
    .aq-gradient-card__action .quote-btn.btn:link,
    .aq-gradient-card__action .quote-btn.btn:visited,
    .aq-gradient-card__action .quote-btn.btn:hover,
    .aq-gradient-card__action .quote-btn.btn:focus,
    .aq-gradient-card__action .quote-btn.btn:active {
        min-height: 47px;
        padding: 11px 24px !important;
        font-size: 21px !important;
        white-space: normal;
    }

}

/*========================================
  Supporting resources lists
========================================*/

#section-id-supporting-resources .aq-resource-list {
    display: block;
    margin: 0 0 48px;
    padding-left: 28px;
    list-style: disc outside;
}

#section-id-supporting-resources .aq-resource-list li {
    display: list-item;
    margin: 0 0 14px;
    padding-left: 8px;
    color: var(--aq-pillar-copy);
    line-height: 1.45;
}

#section-id-supporting-resources .aq-resource-list li::marker {
    color: var(--aq-pillar-copy);
    font-size: 0.8em;
}

#section-id-supporting-resources .aq-resource-list a,
#section-id-supporting-resources .aq-resource-list a:link,
#section-id-supporting-resources .aq-resource-list a:visited {
    display: inline;
    color: var(--aq-pillar-copy);
    line-height: inherit;
    text-decoration: underline;
}

#section-id-supporting-resources .aq-resource-list a:hover,
#section-id-supporting-resources .aq-resource-list a:focus {
    color: #17479c;
}

/*========================================
  Final desktop table of contents behavior
========================================*/

@media screen and (min-width: 992px) {
    /*
     * Keep the sidebar column as tall as the article. The TOC begins
     * directly beneath the hero and JavaScript fixes it beneath the
     * header only after the visitor scrolls past its starting point.
     */
    #page,
    #content,
    .site-content,
    .aq-pillar,
    .aq-pillar-body,
    .aq-pillar-layout,
    .aq-pillar-sidebar {
        overflow: visible !important;
        transform: none !important;
        contain: none !important;
    }

    .aq-pillar {
        --aq-pillar-sidebar-width: 260px;
    }

    .aq-pillar-layout {
        align-items: stretch !important;
    }

    .aq-pillar-sidebar {
        position: relative !important;
        align-self: stretch !important;
        flex: 0 0 260px;
        width: 260px;
        min-width: 260px;
        height: auto !important;
        margin: 0;
        padding: 0;
        overflow: visible !important;
        background: var(--aq-pillar-navy);
        z-index: 20;
    }

    /*
     * Normal state. This keeps the TOC touching the hero before
     * scrolling begins.
     */
    .aq-pillar-toc,
    .logged-in .aq-pillar-toc {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100%;
        height: auto;
        max-height: none !important;
        margin: 0;
        padding: 36px 0 258px;
        overflow: visible !important;
        background: var(--aq-pillar-navy);
        z-index: 20;
    }

    /*
     * Fixed state added by the pillar-page Code Snippet.
     */
    .aq-pillar-toc.aq-pillar-toc--fixed {
        position: fixed !important;
        top: var(--aq-pillar-sticky-top) !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        z-index: 100;
    }

    body.logged-in .aq-pillar-toc.aq-pillar-toc--fixed {
        top: calc(
            var(--aq-pillar-sticky-top) + 32px
        ) !important;
    }

    /*
     * Stop the TOC at the bottom of the article/sidebar.
     */
    .aq-pillar-toc.aq-pillar-toc--bottom {
        position: absolute !important;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .aq-pillar-toc__heading {
        min-height: 24px;
        margin: 0 0 13px;
        padding: 0 16px;
        font-size: 24px;
        line-height: 24px;
    }

    .aq-pillar-toc__list {
        gap: 13px;
    }

    .aq-pillar-toc__link,
    .aq-pillar-toc__link:link,
    .aq-pillar-toc__link:visited {
        min-height: 43px;
        padding: 12px 28px;
        font-size: 13px;
        line-height: 19px;
    }
}

/*========================================
  Pillar page back-to-top button
========================================*/

.aq-pillar-back-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 999;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;
    margin: 0;
    padding: 0;

    color: #051b30;
    background: #ffffff;
    border: 4px solid #051b30;
    border-radius: 0;

    font-family: Heebo, sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.aq-pillar-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.aq-pillar-back-to-top:hover,
.aq-pillar-back-to-top:focus {
    color: #ffffff;
    background: #051b30;
}

.aq-pillar-back-to-top:focus-visible {
    outline: 3px solid #ef2d2d;
    outline-offset: 4px;
}

.aq-pillar-back-to-top__icon {
    display: block;
    margin-top: 8px;
    line-height: 1;
}

@media screen and (max-width: 991px) {
    .aq-pillar-back-to-top {
        right: 20px;
        bottom: 20px;
        width: 54px;
        height: 54px;
        border-width: 3px;
        font-size: 36px;
    }
}