/* Toolkit Cards Slider */
.toolkit-cards-slider {
    margin-right: calc((100vw - 100%) / -2);
    overflow-x: auto;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.toolkit-cards-slider::-webkit-scrollbar {
    display: none;
}
.toolkit-cards-track {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
}
.toolkit-card-slide {
    flex: 0 0 280px;
}
@media (min-width: 768px) {
    .toolkit-cards-track {
        gap: 1.5rem;
    }
    .toolkit-card-slide {
        flex: 0 0 300px;
    }
}
/* /Toolkit Cards Slider */

/* Toolkit Case Study */
.case-study-card {
    display: flex;
    margin-bottom: 2rem;
    padding: 1rem;
    transition: all .3s;
}
.case-study-card h3 {
    transition: all .3s;
}
.case-study-copy {
    flex: 1;
}
.case-study-copy p:last-child {
    margin-bottom: 0;
}
.case-study-img {
    flex: 0 0 40%;
    margin-left: 1rem;
}
.case-study-img img {
    height: 100%;
    object-fit: cover;
    transition: all .3s;
    width: 100%;
}
.case-study-link {
    text-decoration: none;
}
.case-study-link:hover .case-study-card {
    filter: brightness(1.1);
}
.case-study-link:hover .case-study-card .case-study-img img {
    transform: scale(1.05);
}
.case-study-modal .modal-content {
    background: none;
    border-radius: 0;
    position: relative;
}
.case-study-modal .modal-content:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
}
.case-study-modal .modal-content:before {
    background-color: #fff;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .3;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -5;
}
.case-study-modal .modal-header {
    border: none;
}
.case-study-modal .modal-title {
    color: var(--heading-violet);
}
.case-study-modal .modal-body a {
    font-weight: 700;
}
.case-study-modal .modal-body a:hover {
    filter: brightness(1.2);
}
.case-study-modal .modal-body h1,
.case-study-modal .modal-body h2,
.case-study-modal .modal-body h3,
.case-study-modal .modal-body h4,
.case-study-modal .modal-body h5,
.case-study-modal .modal-body h6 {
    color: var(--heading-violet);
}
.case-study-modal .modal-body .inline-btn {
    background-color: var(--brand-purple);
    display: block;
    margin: 1rem 0;
    width: fit-content;
}
.case-study-modal .modal-body .inline-image {
    position: relative;
}
.case-study-modal .modal-body .inline-image .caption {
    font-size: .8rem;
    line-height: 1.2;
    padding: .5rem;
    position: relative;
}
.case-study-modal .modal-body .inline-image .caption::after {
    content: '';
    height: 100%;
    left: 0;
    opacity: .75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.case-study-modal .modal-body .inline-image .caption.blue,
.case-study-modal .modal-body .inline-image .caption.purple {
    color: #fff;
}
.case-study-modal .modal-body .inline-image .caption.blue::after {
    background-color: var(--brand-blue);
}
.case-study-modal .modal-body .inline-image .caption.purple::after {
    background-color: var(--brand-purple);
}
.case-study-modal .modal-body .inline-image .caption.yellow::after {
    background-color: var(--brand-yellow);
    color: #000;
}
.case-study-modal .modal-body .inline-image.fullWidth {
    margin: 1.25rem 0;
    width: 100%;
}
.case-study-modal .modal-body .inline-image.halfWidthLeft,
.case-study-modal .modal-body .inline-image.thirdWidthLeft {
    float: left;
    margin: 0 1.5rem 1rem 0;
    width: 50%;
}
.case-study-modal .modal-body .inline-image.halfWidthRight,
.case-study-modal .modal-body .inline-image.thirdWidthRight {
    float: right;
    margin: 0 0 1rem 1.5rem;
    width: 50%;
}
.case-study-modal .modal-body .inline-image img {
    width: 100%;
}
.case-study-modal .modal-body .inline-video {
    margin: 1.25rem 0;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}
.case-study-modal .modal-body .inline-video iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
@media (max-width: 576px) {
    .case-study-card {
        flex-direction: column;
    }
    .case-study-img {
        flex: none;
        margin-left: 0;
        margin-top: 1rem;
    }
}
@media (min-width: 767px) {
    .case-study-modal .modal-body .inline-btn {
        margin: 1.5rem 0;
    }
    .case-study-modal .modal-body .inline-image .caption {
        bottom: 0;
        font-size: .8rem;
        font-style: italic;
        left: 0;
        right: 0;
        z-index: 10;
    }
    .case-study-modal .modal-body .inline-image .caption:not(.under) {
        position: absolute;
    }
    .case-study-modal .modal-body .inline-image.halfWidthLeft {
        margin: 0 1.5rem 1rem 0;
        width: 45%;
    }
    .case-study-modal .modal-body .inline-image.halfWidthRight {
        margin: 0 0 1rem 1.5rem;
        width: 45%;
    }
    .case-study-modal .modal-body .inline-image.thirdWidthLeft {
        margin: 0 1.5rem 1rem 0;
        width: 32%;
    }
    .case-study-modal .modal-body .inline-image.thirdWidthRight {
        margin: 0 0 1rem 1.5rem;
        width: 32%;
    }
}
@media (min-width: 992px) {
    .case-study-card {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    .case-study-img {
        flex: 0 0 35%;
        margin-left: 1.5rem;
    }
    .case-study-modal .modal-body .inline-image .caption {
        font-size: .9rem;
    }
    .case-study-modal .modal-body .inline-image.fullWidth {
        margin: 1.5rem 0;
    }
    .case-study-modal .modal-body .inline-image.halfWidthLeft {
        margin: 0 2rem 2rem 0;
        width: 50%;
    }
    .case-study-modal .modal-body .inline-image.halfWidthRight {
        margin: 0 0 2rem 2rem;
        width: 50%;
    }
    .case-study-modal .modal-body .inline-image.thirdWidthLeft {
        margin: 0 2rem 2rem 0;
        width: 35%;
    }
    .case-study-modal .modal-body .inline-image.thirdWidthRight {
        margin: 0 0 2rem 2rem;
        width: 35%;
    }
    .case-study-modal .modal-content {
        padding: 1rem;
    }
}
@media (min-width: 1200px) {
    .case-study-card {
        margin-bottom: 4rem;
        padding: 2rem;
    }
    .case-study-img {
        margin-left: 2rem;
    }
    .case-study-modal .modal-body .inline-image .caption {
        line-height: 1.3rem;
    }
}
/* /Toolkit Case Study */

/* Toolkit Forms */
.toolkit-form {
    margin-top: 1rem;
}
.toolkit-form .fui-heading-h2 {
    margin-top: 1rem;
}
.toolkit-form .fui-legend,
.toolkit-form .fui-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
.toolkit-form .fui-rich-text-content * {
    color: #000;
}
.toolkit-form .fui-rich-text-toolbar * {
    color: #000;
}
.toolkit-form .fui-table {
    border-collapse: separate;
    border-spacing: 0;
}
.toolkit-form .fui-table thead {
    background-color: #ffffff3d;
}
.toolkit-form .fui-table thead:not(:has(th:not(:empty))) {
    display: none;
}
.toolkit-form .fui-table thead tr th:first-child {
    border-bottom-left-radius: 6px;
    border-left: 1px solid #c3c6ca;
    border-top-left-radius: 6px;
    padding-left: .5rem;
}
.toolkit-form .fui-table thead tr th:last-child {
    border-bottom-right-radius: 6px;
    border-right: 1px solid #c3c6ca;
    border-top-right-radius: 6px;
}
.toolkit-form .fui-table th {
    border-bottom: 1px solid #c3c6ca;
    border-top: 1px solid #c3c6ca;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    padding: .2rem .5rem;
}
.toolkit-form .fui-table tbody tr:first-child td {
    padding-top: .3rem;
}
.toolkit-form .fui-table td {
    padding: .05rem;
}
.toolkit-form .fui-table-add-btn {
    background-color: var(--brand-purple);
    color: #fff;
    margin-top: -1.5rem;
    padding-bottom: .2rem;
    padding-top: .2rem;
    transition: all .3s;
}
.toolkit-form .fui-table-add-btn:after {
    top: .45rem;
}
.toolkit-form .fui-table-add-btn:active,
.toolkit-form .fui-table-add-btn:focus,
.toolkit-form .fui-table-add-btn:hover {
    background-color: var(--brand-purple);
    color: #fff;
}
.toolkit-form .fui-table-add-btn::after,
.toolkit-form .fui-table-remove-btn::after {
    filter: brightness(0) invert(1);
}
.toolkit-form .fui-table-add-btn:hover {
    filter: brightness(1.2);
}
.toolkit-form .fui-table-remove-btn {
    background-color: var(--brand-purple);
    color: #fff;
    transition: all .3s;
}
.toolkit-form .fui-table-remove-btn:active,
.toolkit-form .fui-table-remove-btn:focus,
.toolkit-form .fui-table-remove-btn:hover {
    background-color: var(--brand-purple);
    color: #fff;
}
.toolkit-form .fui-table-remove-btn:hover {
    filter: brightness(1.2);
}
.toolkit-form .toolkit-matrix .fui-table {
    margin-bottom: 0;
}
.toolkit-form .toolkit-matrix .fui-table td:first-child {
    max-width: 200px;
    vertical-align: middle;
}
.toolkit-form .toolkit-matrix .fui-table td:first-child input:not([type="checkbox"]),
.toolkit-form .toolkit-matrix .fui-table td:first-child textarea {
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    height: auto;
    min-height: 2em;
    padding-left: 0;
    pointer-events: none;
    user-select: none;
    white-space: normal;
    width: 100%;
    word-wrap: break-word;
}
.toolkit-form .toolkit-matrix .fui-table th:not(:first-child) {
    text-align: center;
}
.toolkit-form .toolkit-matrix .fui-table td {
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .4rem .5rem;
}
.toolkit-form .toolkit-matrix .fui-table td:not(:first-child) {
    text-align: center;
    vertical-align: middle;
}
.toolkit-form .toolkit-matrix .fui-table td:not(:first-child) .fui-checkbox {
    align-items: center;
    display: flex !important;
    justify-content: center;
}
.toolkit-form .toolkit-matrix .fui-table td:not(:first-child) .fui-checkbox-label {
    display: none !important;
}
.toolkit-form .toolkit-matrix .fui-table td:not(:first-child) .fui-checkbox-input {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: #fff !important;
    border: 2px solid #999 !important;
    border-radius: 50% !important;
    cursor: pointer;
    display: block !important;
    height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    width: 20px !important;
}
.toolkit-form .toolkit-matrix .fui-table td:not(:first-child) .fui-checkbox-input:checked {
    background-color: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
}
.toolkit-form .toolkit-matrix .fui-table td:not(:first-child) .fui-checkbox-input:checked::after {
    background: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
}
.toolkit-form .fui-type-callout-field {
    background-color: #ffffffb7;
    color: #000;
    padding: .5rem;
}
.toolkit-form .fui-type-callout-field * {
    color: #000;
}
.toolkit-form .fui-type-callout-field label {
    display: none;
}
.toolkit-form .fui-type-callout-field .toolkit-callout {
    padding-left: 3rem;
    position: relative;
}
.toolkit-form .fui-type-callout-field .toolkit-callout p:last-of-type {
    margin-bottom: 0;
}
.toolkit-form .fui-type-callout-field .toolkit-callout i {
    color: var(--brand-purple);
    font-size: 2.25rem;
    left: 0;
    position: absolute;
    top: 0;
}
.toolkit-form .fui-radio input:checked+label:before {
    background-color: var(--brand-purple);
}
.toolkit-form .fui-btn {
    border: none;
    border-radius: 1000px;
    font-weight: 700;
}
.toolkit-form .fui-instructions {
    color: #fff;
    font-size: 1rem;
}
.toolkit-form .fui-captcha {
    margin: 0;
}
.toolkit-form .fui-submit {
    background-color: var(--brand-purple);
    transition: all .3s;
}
.toolkit-form .fui-submit:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.toolkit-form input,
.toolkit-form textarea {
    color: #000;
}
.toolkit-form .fui-alert-success * {
    color: green;
    font-weight: 700;
}
.toolkit-form-download-btn {
    background-color: var(--brand-purple);
    font-size: .85rem;
}
.toolkit-form-download-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.toolkit-form-download-btn.dropdown-toggle::after {
    margin-left: .5rem;
}
.toolkit-matrix-label {
    color: #fff;
    display: block;
    font-weight: 700;
    line-height: 1.3;
    padding: .2rem 0;
    white-space: normal;
    word-wrap: break-word;
}
/* /Toolkit Forms */

/* Toolkit Home */
.recently-visited-chapter {
    color: var(--heading-violet);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.toc-chap-link p {
    color: #000;
}
.toc-chap-link:hover .toc-card {
    background-color: var(--background-blue-xpale);
    box-shadow: 1px 1px 10px #ffffff80;
}
.toolkit-intro h1,
.toolkit-intro h2,
.toolkit-intro h3,
.toolkit-intro h4,
.toolkit-intro h5,
.toolkit-intro h6 {
    color: var(--heading-violet);
}
.toolkit-toc {
    position: relative;
}
.toolkit-toc:after {
    bottom: 0;
    background-image: url('/assets/core/toolkit-gradient.png');
    content: '';
    left: 15%;
    opacity: .15;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -10;
}
.toolkit-toc h2 {
    color: var(--heading-violet);
}
.webp .toolkit-toc:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.toolkit-toc .toc-card {
    background-color: #fff;
    display: flex;
    padding: 1rem;
    position: relative;
    transition: all .3s;
}
.toolkit-toc .toc-card-checkbox {
    cursor: pointer;
    font-size: 1.4rem;
    pointer-events: auto;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
}
.toc-card-preview {
    cursor: default;
    pointer-events: none;
}
.toolkit-toc .toc-card-checkbox.fa-square {
    color: var(--heading-violet);
}
.toolkit-toc .toc-card-checkbox.fa-square-o {
    color: #ffae00;
}
.toolkit-toc .toc-card-checkbox.fa-square-check {
    color: #27ad6c;
}
.toolkit-toc .toc-card .card-copy {
    align-self: center;
}
.toolkit-toc .toc-card h3 {
    color: var(--brand-blue);
    font-size: 1.2rem;
}
.toolkit-toc .toc-card .icon {
    flex: 0 0 auto;
    margin-right: 1rem;
    width: 80px;
}
.toolkit-toc .toc-card p {
    font-size: .8rem;
    margin-bottom: 0;
}
.toolkit-quick-links {
    padding: 1rem;
    position: relative;
}
.toolkit-quick-links:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .15;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
}
.toolkit-quick-links h2 {
    color: var(--heading-violet);
    font-size: 1.4rem;
    text-transform: uppercase;
}
.toolkit-quick-links .quick-link-card {
    background-color: #fff;
    margin-bottom: .5rem;
    padding: 1rem;
}
.toolkit-quick-links .quick-link-card:last-child {
    margin-bottom: 0;
}
.toolkit-quick-links .quick-link-card h3 {
    color: var(--heading-violet);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .5rem;
    text-transform: uppercase;
}
.webp .toolkit-quick-links:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
@media (min-width: 576px) and (max-width: 768px) {
    .toolkit-quick-links .ql-card-btn {
        font-size: .8rem;
        line-height: 1.1;
        padding: .15rem .8rem;
    }
}
@media (min-width: 992px) {
    .toolkit-intro {
        font-size: 1.1rem;
    }
    .toolkit-quick-links {
        padding: 1.5rem;
    }
    .toolkit-toc .toc-card {
        padding: 1.5rem;
    }
    .toolkit-toc .toc-card h3 {
        font-size: 1.2rem;
    }
    .toolkit-toc .toc-card .icon {
        margin-right: 1.2rem;
        width: 90px;
    }
    .toolkit-toc .toc-card p {
        font-size: .9rem;
    }
}
@media (min-width: 1200px) {
    .toolkit-quick-links {
        padding: 2rem;
    }
    .toolkit-toc .toc-card {
        padding: 2rem;
    }
    .toolkit-toc .toc-card h3 {
        font-size: 1.4rem;
    }
    .toolkit-toc .toc-card .icon {
        margin-right: 1.4rem;
        width: 100px;
    }
    .toolkit-toc .toc-card p {
        font-size: 1rem;
    }
}
/* /Toolkit Home */

/* Toolkit Library */
.library-chapter-group {
    margin-bottom: 1.5rem;
}
.library-chapter-heading {
    color: var(--heading-violet);
    margin-bottom: 1rem;
}
.library-edit-btn {
    background-color: var(--brand-purple);
    font-size: .8rem;
    padding: .2rem 1rem;
}
.library-edit-btn:hover,
.library-edit-btn:active,
.library-edit-btn:focus {
    background-color: var(--brand-purple);
}
.library-empty {
    color: var(--heading-violet);
    font-style: italic;
}
.library-entry-card {
    margin-bottom: .25rem;
}
.library-entry-card:first-of-type .library-entry-header {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.library-entry-card:last-child .library-entry-header {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.library-entry-chevron {
    color: #fff;
    flex-shrink: 0;
    font-size: .8rem;
    margin-left: 1rem;
    transition: transform .3s;
}
.library-entry-content {
    background: #fff;
    font-size: .95rem;
    padding: 1rem;
}
.library-entry-empty {
    color: #999;
    font-style: italic;
    margin: 0;
}
.library-entry-empty a {
    font-weight: 700;
}
.library-entry-footer {
    padding: .5rem 0 0 0;
}
.library-entry-header {
    align-items: center;
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: .5rem 1rem;
    transition: all .3s;
}
.library-entry-header:hover {
    filter: brightness(1.1);
}
.library-entry-header h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    transition: all .3s;
}
.library-entry-header[aria-expanded="true"] .library-entry-chevron {
    transform: rotate(180deg);
}
.library-tab-btn {
    border: none;
    border-radius: 0;
    color: var(--heading-violet);
    font-weight: 700;
    padding: .5rem 1.5rem;
    position: relative;
    transition: all .3s;
}
.library-tab-btn:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .15;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.library-tab-btn.active {
    color: #fff;
    position: relative;
}
.library-tab-btn.active:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
    background-position: center;
    background-size: cover;
    opacity: 1;
}
.library-tab-btn:hover {
    filter: brightness(1.1);
}
.library-tab-content {
    padding: 1rem;
    position: relative;
}
.library-tab-content:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .3;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.library-tab-desc {
    color: var(--text-black);
}
.library-roundup-field {
    margin-top: 1rem;
}
.library-roundup-field-label {
    color: var(--heading-violet);
    font-size: 1.1rem;
}
.library-roundup-table {
    width: 100%;
}
.library-roundup-table td {
    border: 1px solid #ddd;
    padding: .5rem;
}
.toolkit-resource-link .resource-card {
    background: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    color: #fff;
    transition: all .3s;
}
.toolkit-resource-link .resource-card h4 {
    color: #fff;
    font-size: 1.2rem;
}
.toolkit-resource-link:hover .resource-card  {
    filter: brightness(1.2);
}
.library-tool-link .library-tool-card {
    background: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    padding: .5rem 1rem;
    transition: all .3s;
}
.library-tool-link:hover .library-tool-card  {
    filter: brightness(1.2);
}
.webp .library-entry-header {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
@media (min-width: 992px) {
    .library-chapter-group {
        margin-bottom: 2rem;
    }
    .library-entry-header {
        padding: .6rem 1.5rem;
    }
    .library-entry-header h3 {
        font-size: 1.1rem;
    }
    .library-entry-content {
        padding: 1.5rem;
    }
    .library-tab-btn {
        font-size: 1.1rem;
        padding: .6rem 2rem;
    }
    .library-tab-content {
        padding: 1.5rem;
    }
}
@media (min-width: 1200px) {
    .library-tab-content {
        padding: 2rem;
    }
}
@media (min-width: 1400px) {
    .library-tab-content {
        padding: 2.5rem;
    }
}
/* /Toolkit Library */

/* Toolkit Notes */
.toolkit-notes-canvas {
    background: #DDEAFB;
    background: linear-gradient(to bottom right, #DDEAFB, #E6DCFA);
    display: flex;
    flex-direction: column;
    width: 60%!important;
}
.toolkit-notes-canvas h1,
.toolkit-notes-canvas h2,
.toolkit-notes-canvas h3,
.toolkit-notes-canvas h4,
.toolkit-notes-canvas h5,
.toolkit-notes-canvas h6 {
    color: var(--heading-violet);
}
.toolkit-notes-canvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}
.toolkit-notes-canvas .subchap-notes,
.toolkit-notes-canvas .fui-i,
.toolkit-notes-canvas .fui-form,
.toolkit-notes-canvas .fui-form-container,
.toolkit-notes-canvas .fui-page,
.toolkit-notes-canvas .fui-page-container,
.toolkit-notes-canvas .fui-row,
.toolkit-notes-canvas .fui-field,
.toolkit-notes-canvas .fui-field-container,
.toolkit-notes-canvas .fui-input-wrapper,
.toolkit-notes-canvas .fui-rich-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}
.toolkit-notes-canvas .fui-rich-text-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: .5rem;
}
.toolkit-notes-canvas .fui-rich-text-toolbar {
    background: #fff;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
}
.toolkit-notes-canvas .fui-rich-text-toolbar .autosave-status {
    margin-left: auto;
    padding: .2rem .8rem;
}
.toolkit-notes-canvas .fui-row-empty {
    flex-grow: 0;
}
.toolkit-notes-canvas .fui-btn-wrapper {
    flex-grow: 0;
    flex-shrink: 0;
}
.toolkit-notes-canvas .fui-captcha {
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
}
.toolkit-notes-canvas .fui-submit {
    background-color: var(--brand-purple);
    border: none;
    border-radius: 1000px;
    transition: all 3s;
}
.toolkit-notes-canvas .fui-submit:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.toolkit-notes-btn-wrapper {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.toolkit-notes-btn {
    align-items: center;
    background-color: var(--brand-purple);
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: .5rem;
    position: sticky;
    top: 1rem;
}
.toolkit-notes-btn i {
    font-size: 1.2rem;
}
.toolkit-notes-btn .label {
    font-size: .7rem;
}
@media (min-width: 992px) {
    .toolkit-notes-canvas {
        width: 35%!important;
    }
    .toolkit-notes-btn {
        padding: 1rem;
    }
    .toolkit-notes-btn i {
        font-size: 1.6rem;
    }
    .toolkit-notes-btn .label {
        font-size: .8rem;
    }
}
/* /Toolkit Notes */

/* Toolkit Preview */
.toolkit-banner {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    padding: 1rem 0;
}
.toolkit-banner h1 {
    font-weight: 400;
}
.toolkit-banner * {
    color: #fff;
    margin-bottom: 0;
}
.toolkit-btn,
.toolkit-btn:active,
.toolkit-btn:hover,
.toolkit-btn:focus {
    background-color: var(--brand-purple)!important;
}
.toolkit-btn.xl-btn {
    font-size: 1.5rem;
    padding: .5rem 2rem;
}
.webp .toolkit-banner {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.toolkit-hero {
    background: var(--background-gray);
    position: relative;
}
.toolkit-hero .hero-btn,
.toolkit-hero .hero-btn:active,
.toolkit-hero .hero-btn:focus {
    background-color: var(--brand-purple)!important;
}
.toolkit-hero-img {
    display: none;
}
.toolkit-icon-img-section .icon-list-item {
    align-items: center;
    display: flex;
    margin-bottom: .5rem;
}
.toolkit-icon-img-section .icon-list-item:last-child {
    margin-bottom: 0;
}
.toolkit-icon-img-section .icon-list-item .icon {
    flex: 0 0 auto;
    margin-right: 1rem;
    width: 50px;
}
.toolkit-icon-img-section .purple-behind {
    margin-bottom: 1rem;
    margin-top: 1rem;
    position: relative;
}
.toolkit-icon-img-section .purple-behind:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    bottom: -1rem;
    content: '';
    display: block;
    opacity: .7;
    position: absolute;
    right: 20%;
    top: -1rem;
    width: 60vw;
    z-index: -10;
}
.toolkit-icon-img-section.section-align-right .purple-behind:after {
    left: 20%;
    right: unset;
}
.toolkit-posts-section.bg-purple:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    opacity: .15;
}
.webp .toolkit-posts-section.bg-purple:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.toolkit-posts-section .quote-card i {
    color: var(--brand-blue);
    font-size: 2rem;
    opacity: .5;
    text-align: center;
}
.toolkit-posts-section .quote-card .attribution-copy {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
}
.toolkit-posts-section .quote-card .quote-copy {
    font-style: italic;
    text-align: center;
}
.toolkit-posts-section.bg-purple .post-card {
    background: white;
}
.webp .toolkit-icon-img-section .purple-behind:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.toolkit-signup-modal .fui-alert-success {
    margin-bottom: 3rem;
}
.toolkit-signup-modal .modal-heading {
    margin-bottom: 1rem;
}
.toolkit-signup-modal .modal-content {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    border-radius: 0;
    color: #fff;
    padding: 1rem;
}
.toolkit-signup-modal .modal-content .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    right: .7rem;
    top: .3rem;
}
.toolkit-signup-modal .modal-content .close-btn:after {
    content: '\f00d';
    display: inline-block;
    font: var(--fa-font-solid);
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.toolkit-signup-modal .modal-content label {
    color: #fff;
}
.toolkit-signup-modal .modal-content label a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}
.toolkit-signup-modal .modal-content .fui-submit {
    background-color: var(--brand-purple);
    border: none;
    border-radius: 100px;
    font-weight: 700;
}
.toolkit-signup-modal .modal-content .formie-recaptcha-placeholder {
    height: 0;
    margin: 0;
    overflow: hidden;
}
.toolkit-signup-modal .modal-content .tab-switch {
    bottom: 1rem;
    position: absolute;
    right: 1rem;
}
.toolkit-signup-modal .tab-switch {
    color: #fff;
    font-weight: 700;
}
.webp .toolkit-signup-modal .modal-content {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
@media (min-width: 576px) {
    .toolkit-hero-img {
        background-size: cover;
        bottom: 0;
        display: block;
        left: 50%;
        position: absolute;
        right: 0;
        top: 0;
    }
}
@media (min-width: 992px) {
    .toolkit-banner {
        padding: 1.5rem 0;
    }
    .toolkit-hero-copy {
        font-size: 1.1rem;
    }
    .toolkit-icon-img-section .purple-behind {
        margin-bottom: 1.75rem;
        margin-top: 1.75rem;
    }
    .toolkit-icon-img-section .purple-behind:after {
        bottom: -1.75rem;
        top: -1.75rem;
    }
    .toolkit-posts-section .quote-card i {
        font-size: 4rem;
    }
    .toolkit-signup-modal .modal-content {
        padding: 1.5rem;
    }
    .toolkit-signup-modal .modal-content .tab-switch {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
@media (min-width: 1200px) {
    .toolkit-icon-img-section .purple-behind {
        margin-bottom: 2.5rem;
        margin-top: 2.5rem;
    }
    .toolkit-icon-img-section .purple-behind:after {
        bottom: -3rem;
        top: -3rem;
    }
    .toolkit-signup-modal .modal-content {
        padding: 2rem;
    }
    .toolkit-signup-modal .modal-content .tab-switch {
        bottom: 2rem;
        right: 2rem;
    }
}
/* /Toolkit Preview */

/* Toolkit Subchapter */
.toc-subchapter.active .toc-subchapter-link:after,
.active .toc-chapter-link:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    opacity: .2;
}
.subchap-nav-link {
    background-color: var(--brand-purple);
    color: #fff;
    transition: all .3s;
}
.subchap-nav-link:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.btn.subchap-nav-link:active,
.btn.subchap-nav-link:focus {
    background-color: var(--brand-purple)!important;
}
.subchap-wrapper {
    background: #DDEAFB;
    background: linear-gradient(to bottom right, #DDEAFB, #E6DCFA);
    display: flow-root;
    position: relative;
    z-index: 0;
}
.subchap-title {
    color: var(--heading-violet);
}
.subchap-title-num {
    align-items: center;
    background-color: var(--brand-purple);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .55em;
    height: 1.8em;
    justify-content: center;
    vertical-align: .25em;
    width: 1.8em;
}
.toc-chapter-link {
    color: var(--heading-violet);
    display: block;
    font-weight: 700;
    margin-bottom: .2rem;
    line-height: 1.2;
    padding: .3rem 3rem .3rem .6rem;
    position: relative;
    transition: all .3s;
    width: 100%;
}
.toc-chapter-link:after {
    background-color: #ffffffb0;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s;
    z-index: -10;
}
.toc-chapter-link:hover {
    color: var(--brand-blue);
}
.toc-chapter-link:hover:after {
    background-color: #fff;
}
.toc-nav-close-btn {
    display: none;
}
.toc-subchapter-link {
    color: #000;
    display: block;
    font-size: .9rem;
    font-weight: 400;
    margin: 0 0 .2rem 1rem;
    line-height: 1.2;
    padding: .2rem 2rem .2rem .5rem;
    position: relative;
    transition: all .3s;
    width: calc(100% - 1rem);
}
.toc-subchapter-link:after {
    background-color: #ffffffb0;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s;
    z-index: -10;
}
.subchap-callout-block {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    padding: 1rem;
}
.subchap-callout-block * {
    color: #fff;
}
.webp .subchap-callout-block {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.subchap-callout-block .inline-btn {
    background-color: var(--brand-purple);
}
.subchap-callout-block .inline-btn:hover {
    background-color: var(--brand-purple);
}
.subchap-copy-block {
    background: #fff;
    margin-bottom: 2rem;
    padding: 1rem;
}
.subchap-copy-block h1,
.subchap-copy-block h2,
.subchap-copy-block h3,
.subchap-copy-block h4,
.subchap-copy-block h5,
.subchap-copy-block h6 {
    color: var(--heading-violet);
}
.subchap-copy-block .inline-image.fullWidth {
    margin: 1rem 0;
    width: 100%;
}
.subchap-copy-block .inline-image img {
    width: 100%;
}
.subchap-copy-block table td {
    border: 1px solid var(--brand-blue);
    padding: .5rem;
    vertical-align: top;
}
.webp .toc-subchapter.active .toc-subchapter-link:after,
.webp .active .toc-chapter-link:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.subchap-nav-desktop-home {
    bottom: calc(100% + .1rem);
    left: 0;
    position: absolute;
}
.subchap-nav-desktop-home a {
    color: var(--heading-violet);
    transition: all .3s;
}
.subchap-nav-desktop-home a:hover {
    color: var(--brand-blue);
}
.toc-toggle-btn,
.toc-toggle-btn:active,
.toc-toggle-btn:focus {
    background-color: #fff;
    border-radius: 0;
    color: var(--heading-violet);
    font-size: .8rem;
}
.toc-toggle-btn i {
    font-size: 2rem;
}
.toc-subchapter-link:hover {
    color: var(--brand-blue);
}
.toc-subchapter-link:after {
    pointer-events: none;
}
.toc-checkbox-toggle {
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
}
.toc-chapter-link:after {
    pointer-events: none;
}
.toc-chapter-checkbox-toggle {
    cursor: pointer;
    pointer-events: auto;
    z-index: 2;
}
.toc-checkbox {
    position: absolute;
    right: .6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.toc-checkbox.fa-square {
    color: var(--heading-violet);
}
.toc-checkbox.fa-square-o {
    color: #ffae00;
}
.toc-checkbox.fa-square-check {
    color: #27ad6c;
}
.toc-chapter-chevron {
    font-size: .7rem;
    position: absolute;
    right: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s;
}
.toc-chapter-link[aria-expanded="true"] .toc-chapter-chevron {
    transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 992px) {
    .toc-nav {
        background-image: url('/assets/core/toolkit-gradient.png');
        padding: .5rem;
        position: absolute;
        width: 200px;
        z-index: 100;
    }
    .toc-nav-close-btn {
        color: var(--heading-violet);
        display: block;
        font-size: 1.5rem;
        padding: .3rem .6rem;
        text-align: right;
    }
    .toc-chapter-link:after,
    .toc-subchapter-link:after {
        background-color: #ffffffda;
    }
    .toc-toggle-btn {
        padding: .3rem .6rem;
        position: relative;
        z-index: 1;
    }
    .wepb .toc-nav {
        background-image: url('/assets/core/toolkit-gradient.webp');
    }
    .toc-toggle-wrap {
        z-index: 99;
    }
}
@media (min-width: 992px) {
    .subchap-callout-block {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
    }
    .subchap-copy-block {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
    }
    .subchap-copy-block table td {
        padding: 1rem;
    }
}
@media (min-width: 1200px) {
    .subchap-callout-block {
        margin-bottom: 3rem;
        padding: 2rem;
    }
    .subchap-copy-block {
        margin-bottom: 3rem;
        padding: 2rem;
    }
}
@media (min-width: 1400px) {
    .subchap-copy-block {
        padding: 3rem;
    }
}
/* /Toolkit Subchapter */

/* Toolkit Nav Form List */
.toc-form-item {
    margin-left: 1.5rem;
    margin-top: -.2rem;
    margin-bottom: .2rem;
}
.toc-form-link {
    color: #555;
    display: block;
    font-size: .8rem;
    padding: .1rem .5rem;
    position: relative;
    transition: all .3s;
}
.toc-form-link:hover {
    color: var(--brand-blue);
}
.toc-form-link:before {
    content: '–';
    margin-right: .3rem;
}
/* /Toolkit Nav Form List */

/* Toolkit Subchapter Add Ins */
.subchap-copy-block .inline-callout {
    padding: .5rem;
    position: relative;
    isolation: isolate;
    margin-bottom: 1rem;
}
.subchap-copy-block .inline-callout.bg-brightPurple:after {
    background-color: var(--brand-purple);
    background-image: none;
    opacity: .2;
}
.subchap-copy-block .inline-callout.bg-blue:after {
    background-color: var(--brand-blue);
    background-image: none;
    opacity: .3;
}
.subchap-copy-block .inline-callout.bg-yellow:after {
    background-color: var(--brand-yellow);
    background-image: none;
    opacity: .4;
}
.subchap-copy-block .inline-callout p:last-of-type {
    margin-bottom: 0;
}
.subchap-copy-block .inline-callout:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .1;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
}
.subchap-copy-block .inline-callout:before {
    background-color: #fff;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -11;
}
.subchap-copy-block .inline-btn {
    display: block;
    margin: 1rem 0;
    width: fit-content;
}
.subchap-copy-block .inline-image {
    position: relative;
}
.subchap-copy-block .inline-image .caption {
    font-size: .8rem;
    line-height: 1.2;
    padding: .5rem;
    position: relative;
}
.subchap-copy-block .inline-image .caption::after {
    content: '';
    height: 100%;
    left: 0;
    opacity: .75;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.subchap-copy-block .inline-image .caption.blue,
.subchap-copy-block .inline-image .caption.purple {
    color: #fff;
}
.subchap-copy-block .inline-image .caption.yellow: {
    color: #000;
}
.subchap-copy-block .inline-image .caption.blue::after {
    background-color: var(--brand-blue);
}
.subchap-copy-block .inline-image .caption.purple::after {
    background-color: var(--brand-purple);
    color: #fff;
}
.subchap-copy-block .inline-image .caption.yellow::after {
    background-color: var(--brand-yellow);
    color: #000;
}
.subchap-copy-block .inline-image.fullWidth {
    margin: 1.25rem 0;
    width: 100%;
}
.subchap-copy-block .inline-case-study {
    position: relative;
    padding-top: 3.5rem;
}
.subchap-copy-block .inline-case-study img {
    position: absolute;
    top: .5rem;
    left: .5rem;
    width: 2.5rem;
}
.subchap-copy-block .inline-image.halfWidthRight,
.subchap-copy-block .inline-image.thirdWidthRight,
.subchap-copy-block .inline-callout.halfWidthRight,
.subchap-copy-block .inline-callout.thirdWidthRight,
.subchap-copy-block .inline-case-study {
    float: right;
    margin: 0 0 1rem 1.5rem;
    width: 50%;
}
.subchap-copy-block .inline-image img {
    width: 100%;
}
@media (min-width: 767px) {
    .subchap-copy-block .inline-case-study {
        margin: 0 0 1.5rem;
    }
    .subchap-copy-block .inline-callout.halfWidthRight {
        margin: 0 0 1.5rem;
    }
    .subchap-copy-block .inline-callout.thirdWidthRight {
        margin: 0 0 1rem 1.5rem;
        width: 32%;
    }
    .subchap-copy-block .inline-btn {
        margin: 1.5rem 0;
    }
    .subchap-copy-block .inline-image .caption {
        bottom: 0;
        font-size: .8rem;
        font-style: italic;
        left: 0;
        right: 0;
        z-index: 10;
    }
    .subchap-copy-block .inline-image .caption:not(.under) {
        position: absolute;
    }
    .subchap-copy-block .inline-image.halfWidthRight {
        margin: 0 0 1.5rem;
    }
    .subchap-copy-block .inline-image.thirdWidthRight {
        margin: 0 0 1rem 1.5rem;
        width: 32%;
    }
}
@media (min-width: 992px) {
    .subchap-copy-block .inline-callout {
        padding: 1rem;
    }
    .subchap-copy-block .inline-case-study {
        margin: 0 -4rem 2rem 2rem;
        padding-top: 1rem;
        padding-left: 4.5rem;
    }
    .subchap-copy-block .inline-case-study img {
        top: 1rem;
        left: 1rem;
    }
    .subchap-copy-block .inline-callout.halfWidthRight {
        margin: 0 -4rem 2rem 2rem;
    }
    .subchap-copy-block .inline-imcalloutage.thirdWidthRight {
        margin: 0 0 2rem 2rem;
        width: 35%;
    }
    .subchap-copy-block .inline-image .caption {
        font-size: .9rem;
    }
    .subchap-copy-block .inline-image.fullWidth {
        margin: 1.5rem 0;
    }
    .subchap-copy-block .inline-image.halfWidthRight {
        margin: 0 -4rem 2rem 2rem;
    }
    .subchap-copy-block .inline-image.thirdWidthRight {
        margin: 0 0 2rem 2rem;
        width: 35%;
    }
}
@media (min-width: 1200px) {
    .subchap-copy-block .inline-callout {
        padding: 1.25rem;
    }
    .subchap-copy-block .inline-case-study {
        margin: 0 -5rem 2rem 2rem;
        width: 60%;
        padding-top: 1.25rem;
        padding-left: 4.75rem;
    }
    .subchap-copy-block .inline-case-study img {
        top: 1.25rem;
        left: 1.25rem
    }
    .subchap-copy-block .inline-callout.halfWidthRight {
        margin: 0 -5rem 2rem 2rem;
        width: 60%;
    }
    .subchap-copy-block .inline-callout.thirdWidthRight {
        margin: 0 -5rem 2rem 2rem;
        width: 38%;
    }
    .subchap-copy-block .inline-image .caption {
        line-height: 1.3rem;
    }
    .subchap-copy-block .inline-image.halfWidthRight {
        margin: 0 0 2rem 2rem;
        width: 60%;
    }
    .subchap-copy-block .inline-image.thirdWidthRight {
        margin: 0 0 2rem 2rem;
        width: 38%;
    }
}
@media (min-width: 1400px) {
    .subchap-copy-block .inline-case-study {
        margin: 0 -6rem 2rem 2rem;
        width: 65%;
        padding-top: 1.5rem;
        padding-left: 6rem!important;
    }
    .subchap-copy-block .inline-case-study img {
        top: 1.5rem;
        left: 1.5rem;
        width: 3.5rem;
    }
    .subchap-copy-block .inline-callout.halfWidthRight {
        margin: 0 -6rem 2rem 2rem;
        width: 65%;
    }
    .subchap-copy-block .inline-callout.thirdWidthRight {
        margin: 0 -6rem 2rem 2rem;
        width: 40%;
    }
    .subchap-copy-block .inline-callout {
        padding: 1.5rem;
    }
    .subchap-copy-block .inline-image.halfWidthRight {
        margin: 0 0 2rem 2rem;
        width: 65%;
    }
    .subchap-copy-block .inline-image.thirdWidthRight {
        margin: 0 0 2rem 2rem;
        width: 40%;
    }
}
/* /Toolkit Subchapter Add Ins */

/* Toolkit Survey Builder */
.survey-accordion {
    margin-bottom: .5rem;
}
.survey-builder {
    margin-bottom: 2rem;
}
.survey-control-btn {
    background: none;
    border: 1px solid #fff;
    font-size: .85rem;
    font-weight: 400;
}
.survey-control-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.survey-field-card {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    color: #000;
    margin-bottom: .5rem;
    padding: .75rem 1rem;
    position: relative;
    isolation: isolate;
}
.survey-field-card * {
    color: #000;
}
.survey-field-card:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .4;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
    transition: all .3s;
}
.survey-field-checkbox {
    color: var(--brand-purple);
    cursor: pointer;
    font-size: 1.4rem;
    isolation: isolate;
    position: relative;
    transition: all .3s;
}
.survey-field-checkbox::after {
    background: #fff;
    content: '';
    height: 65%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    z-index: -1;
}
.survey-field-checkbox:hover {
    filter: brightness(1.2);
}
.survey-field-checkbox-wrapper {
    align-items: flex-start;
    display: flex;
    flex-shrink: 0;
    margin-left: .75rem;
    padding-top: .1rem;
}
.survey-field-content {
    flex: 1;
}
.survey-field-group {
    border: 2px solid var(--brand-blue);
    border-radius: 6px;
    margin-bottom: .5rem;
    padding: .5rem;
}
.survey-field-group .survey-field-card:last-child {
    margin-bottom: 0;
}
.survey-field-header {
    display: flex;
}
.survey-field-input {
    margin-top: .25rem;
}
.survey-field-options {
    margin-top: .25rem;
    padding-left: .5rem;
}
.survey-field-title {
    font-weight: 700;
    margin: 0;
}
.survey-long-text-box {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
    height: 60px;
    width: 100%;
}
.survey-matrix-cell {
    color: var(--heading-violet);
    text-align: center;
}
.survey-matrix-row-label {
    font-weight: 700;
}
.survey-matrix-table {
    border-collapse: collapse;
    font-size: .85rem;
    margin-top: .5rem;
    width: 100%;
}
.survey-matrix-table td,
.survey-matrix-table th {
    border: 1px solid #fff;
    padding: .4rem .6rem;
}
.survey-matrix-table thead th {
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.survey-matrix-table thead tr {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.webp .survey-matrix-table thead tr {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
.survey-matrix-wrapper {
    overflow-x: auto;
}
.survey-option {
    align-items: center;
    display: flex;
    gap: .5rem;
    margin-bottom: .15rem;
}
.survey-option i {
    color: var(--heading-violet);
    font-size: .8rem;
}
.survey-save-btn {
    background-color: var(--brand-purple);
    font-size: .85rem;
}
.survey-save-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.survey-section {
    margin-bottom: .25rem;
}
.survey-section-actions {
    align-items: center;
    display: flex;
    gap: .5rem;
}
.survey-section-body {
    background-color: #fff;
    padding: .75rem;
}
.survey-section-checkbox {
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all .3s;
}
.survey-section-checkbox:hover {
    filter: brightness(1.2);
}
.survey-section-chevron {
    font-size: .8rem;
    transition: transform .3s;
}
.survey-section-header {
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    position: relative;
    padding: .6rem 1rem;
    transition: all .3s;
    isolation: isolate;
    overflow: hidden;
    transition: all .3s;
}
.survey-section-header:before {
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .4;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -11;
}
.survey-section-header:after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .4;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
    transition: all .3s;
}
.survey-section-header[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.survey-section-header:hover {
    border: 1px solid #ccc;
}
.survey-section-header:hover:after {
    opacity: .8;
}
.survey-section-header[aria-expanded="false"] .survey-section-chevron {
    transform: rotate(180deg);
}
.survey-section-title {
    font-size: 1.1rem;
}
.survey-short-text-line {
    border-bottom: 1px solid #fff;
    height: 1.5rem;
    width: 100%;
}
.survey-text-block,
.survey-text-block * {
    color: #000;
    margin-bottom: .5rem;
    padding: .25rem .5rem;
}
.survey-text-block p:last-child {
    margin-bottom: 0;
}
.webp .survey-section-header:after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
@media (min-width: 992px) {
    .survey-field-card {
        padding: 1rem 1.25rem;
    }
    .survey-section-body {
        padding: 1rem;
    }
    .survey-section-header {
        padding: .75rem 1.25rem;
    }
    .survey-section-title {
        font-size: 1.2rem;
    }
}
/* /Toolkit Survey Builder */

/* Survey Save Dropdown */
.survey-save-dropdown {
    background-color: var(--background-blue);
    border: none;
    border-radius: 6px;
    min-width: auto;
}
.survey-save-dropdown .dropdown-item {
    color: var(--heading-violet);
    font-size: .85rem;
    font-weight: 700;
    padding: .4rem 1rem;
}
.survey-save-dropdown .dropdown-item:hover {
    background: none;
    color: var(--brand-blue);
}
.survey-save-btn.dropdown-toggle::after {
    margin-left: .5rem;
}
/* /Survey Save Dropdown */

/* Toolkit Collapsible Blocks */
.subchap-collapse-header {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: all .3s;
}
.subchap-collapse-header h2 {
    margin: 0;
}
.subchap-collapse-header:hover {
    filter: brightness(1.1);
}
.subchap-collapse-chevron {
    color: #fff;
    flex-shrink: 0;
    font-size: .1.5rem;
    margin-left: 1rem;
    transition: transform .3s;
}
.subchap-collapse-header[aria-expanded="true"] .subchap-collapse-chevron {
    transform: rotate(180deg);
}
/* /Toolkit Collapsible Blocks */

/* Library Accordion Controls */
.library-accordion-controls .library-collapse-all-btn,
.library-accordion-controls .library-expand-all-btn,
.library-accordion-controls .library-collapse-all-btn:focus,
.library-accordion-controls .library-expand-all-btn:focus,
.library-accordion-controls .library-collapse-all-btn:active,
.library-accordion-controls .library-expand-all-btn:active {
    border: 1px solid #fff;
    background: none!important;
    color: #fff;
    font-size: .8rem;
    padding: .2rem 1rem;
    transition: all .3s;
}
.library-accordion-controls .library-collapse-all-btn:hover,
.library-accordion-controls .library-expand-all-btn:hover {
    background-color: var(--brand-purple)!important;
    border-color: var(--brand-purple);
    border: none;
    font-size: .8rem;
    padding: .2rem 1rem;
}
/* /Library Accordion Controls */

/* Library Download */
.library-download-btn {
    background-color: var(--brand-purple);
    font-size: .8rem;
    padding: .2rem 1rem;
}
.library-download-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.library-download-btn.dropdown-toggle::after {
    margin-left: .5rem;
}
.library-download-dropdown {
    background-color: var(--background-blue);
    border: none;
    border-radius: 6px;
    min-width: auto;
}
.library-download-dropdown .dropdown-item {
    color: var(--heading-violet);
    font-size: .85rem;
    font-weight: 700;
    padding: .4rem 1rem;
}
.library-download-dropdown .dropdown-item:hover {
    background: none;
    color: var(--brand-blue);
}
/* /Library Download */

/* Visual Map */
.visual-map {
    position: relative;
}
.visual-map-actions {
    flex-wrap: wrap;
}
.visual-map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    user-select: none;
    z-index: 5;
}
.visual-map-ctrl-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    height: 36px;
    justify-content: center;
    padding: 0;
    transition: all .3s;
    width: 36px;
}
.visual-map-ctrl-btn i {
    color: var(--brand-blue);
    font-size: .9rem;
}
.visual-map-ctrl-btn:hover {
    background: var(--background-blue-xpale);
    border-color: var(--brand-blue);
}
.visual-map-download-btn {
    background-color: var(--brand-purple);
    font-size: .85rem;
}
.visual-map-download-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.visual-map-download-btn.dropdown-toggle::after {
    margin-left: .5rem;
}
.visual-map-line {
    stroke: #ccc;
    stroke-dasharray: 6 4;
    stroke-width: 1;
}
.visual-map-overlay {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.visual-map-region-label {
    color: var(--heading-violet);
    font-size: 1rem;
    font-weight: 700;
    opacity: .4;
    pointer-events: none;
    position: absolute;
    white-space: nowrap;
    z-index: 3;
}
.visual-map-save-btn {
    background: none;
    border: 1px solid #fff;
    font-size: .85rem;
}
.visual-map-save-btn:hover {
    background-color: var(--brand-purple);
    border-color: var(--brand-purple);
}
.visual-map-svg {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}
.visual-map-tile {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 2px;
    cursor: grab;
    isolation: isolate;
    min-width: 100px;
    max-width: 200px;
    padding: .5rem .75rem;
    position: absolute;
    touch-action: none;
    transition: box-shadow .2s;
    z-index: 15;
}
.visual-map-tile::before {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    border-radius: inherit;
    bottom: -1px;
    content: '';
    left: -1px;
    opacity: .2;
    position: absolute;
    right: -1px;
    top: -1px;
    transition: opacity .2s;
    z-index: -1;
}
.visual-map-tile:hover::before {
    opacity: .4;
}
.visual-map-tile:hover {
    z-index: 16;
}
.visual-map-tile.dragging {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    cursor: grabbing;
    z-index: 100;
}
.visual-map-tile.dragging::before {
    opacity: .5;
}
.visual-map-tile-add {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.visual-map-tile-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: .6rem;
    height: 22px;
    justify-content: center;
    opacity: 0;
    padding: 0;
    position: absolute;
    transition: opacity .2s;
    width: 22px;
    z-index: 2;
}
.visual-map-tile-btn i {
    color: var(--brand-blue);
    font-size: .6rem;
}
.visual-map-tile-btn:hover {
    background: var(--background-blue-xpale);
    border-color: var(--brand-blue);
}
.visual-map-tile-delete {
    right: -10px;
    top: -10px;
}
.visual-map-tile-text {
    color: #000;
    cursor: text;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.3;
    min-height: 1em;
    outline: none;
    text-align: center;
}
.visual-map-tile-text * {
    color: #000 !important;
    font-size: .8rem !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.visual-map-tile:hover .visual-map-tile-btn {
    opacity: 1;
}
.visual-map-toolbar {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    position: absolute;
    right: .75rem;
    top: .75rem;
    z-index: 20;
}
.visual-map-viewport {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: grab;
    height: 450px;
    overflow: hidden;
    position: relative;
}
.webp .visual-map-tile::before {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
@media (max-width: 767px) {
    .visual-map-tile {
        max-width: 140px;
        min-width: 80px;
    }
    .visual-map-tile-text {
        font-size: .7rem;
    }
    .visual-map-viewport {
        height: 350px;
    }
}
@media (min-width: 992px) {
    .visual-map-viewport {
        height: 500px;
    }
}
/* /Visual Map */

/* Toolkit Form Download */
.toolkit-form-download-btn {
    background-color: var(--brand-purple);
    font-size: .85rem;
}
.toolkit-form-download-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
.toolkit-form-download-btn.dropdown-toggle::after {
    margin-left: .5rem;
}
.toolkit-form-with-download .fui-btn-wrapper .fui-submit {
    order: -1;
}
.toolkit-form-download {
    order: 1;
}
/* /Toolkit Form Download */

/* Collapse Footer */
.subchap-collapse-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: .5rem;
}
.subchap-collapse-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: .8rem;
    opacity: .6;
    padding: .25rem .5rem;
    transition: all .3s;
}
.subchap-collapse-close:hover {
    opacity: 1;
}
/* /Collapse Footer */

/* Rich Text Field */
.toolkit-form .fui-type-rich-text-field label.fui-label {
    display: none;
}
.fui-rich-text-output ul {
    margin: 0 0 .5rem;
    padding-left: 1.5rem;
}
.fui-rich-text-output li {
    margin-bottom: 0;
}
.fui-rich-text-output li p {
    margin-bottom: 0;
}
.fui-rich-text-output p:last-child {
    margin-bottom: 0;
}
/* /Rich Text Field */

/* Survey Callout */
.survey-callout-block {
    background-color: #ffffffb7;
    border-radius: 0;
    color: #000;
    margin-bottom: .5rem;
    padding: .75rem;
}
.survey-callout-block .toolkit-callout {
    padding-left: 3rem;
    position: relative;
}
.survey-callout-block .toolkit-callout i {
    color: var(--brand-purple);
    font-size: 2.25rem;
    left: 0;
    position: absolute;
    top: 0;
}
.survey-callout-block .toolkit-callout p:last-of-type {
    margin-bottom: 0;
}
.survey-callout-block * {
    color: #000;
}
/* /Survey Callout */

/* Library Matrix Table */
.library-roundup-table th {
    background-color: var(--background-blue);
    color: var(--heading-violet);
    font-size: .85rem;
    font-weight: 700;
    padding: .4rem .6rem;
    text-align: center;
}
.library-roundup-table th:first-child {
    text-align: left;
}
.library-roundup-table .text-center {
    text-align: center;
}
/* /Library Matrix Table */

/* Library Empty Form Fields */
.library-roundup-table-empty td {
    background-color: #f8f8f8;
    height: 2rem;
}
.library-roundup-option {
    align-items: center;
    display: flex;
    gap: .5rem;
    margin-bottom: .25rem;
}
.library-roundup-option i {
    color: var(--heading-violet);
    font-size: .85rem;
}
.library-empty-cell {
    min-width: 80px;
}
/* /Library Empty Form Fields */

/* Autosave Status */
.autosave-status {
    border-radius: 1000px;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: .35rem 1.2rem;
    white-space: nowrap;
}
.autosave-status-toolbar {
    background: none !important;
    border-radius: 0;
    color: #333 !important;
    font-weight: 400;
    margin-left: auto;
    padding: 0 .5rem;
}
.autosave-btn-wrapper {
    bottom: 10px;
    position: sticky;
    z-index: 10;
}
/* /Autosave Status */

/* Toolkit Signup Notice */
.toolkit-signup-notice {
    background-color: #fff1d9;
    border: solid 1px #e2980e;
    color: #e2980e;
    font-weight: 700;
    padding: 1rem;
    margin-bottom: .5rem;
}
/* Toolkit Signup Notice */

/* Roundup Aggregator (subchapter) */
.subchap-callout-block .roundup-aggregator {
    margin-top: 1rem;
}
.subchap-callout-block .roundup-aggregator * {
    color: var(--text-black);
}
.subchap-callout-block .roundup-aggregator .library-chapter-heading {
    color: #fff;
    font-size: 1.5rem;
}
.subchap-callout-block .roundup-aggregator .library-entry-header {
    background-image: none;
    isolation: isolate;
    position: relative;
}
.subchap-callout-block .roundup-aggregator .library-entry-header::before {
    background-color: #fff;
    border-radius: inherit;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -11;
}
.subchap-callout-block .roundup-aggregator .library-entry-header::after {
    background-image: url('/assets/core/toolkit-gradient.png');
    background-position: center;
    background-size: cover;
    border-radius: inherit;
    bottom: 0;
    content: '';
    left: 0;
    opacity: .15;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -10;
}
.subchap-callout-block .roundup-aggregator .library-entry-header h3,
.subchap-callout-block .roundup-aggregator .library-entry-chevron {
    color: var(--heading-violet);
}
.subchap-callout-block .roundup-aggregator .library-roundup-field-label {
    color: var(--heading-violet);
}
.subchap-callout-block .roundup-aggregator .library-roundup-table th {
    color: var(--heading-violet);
}
.subchap-callout-block .roundup-aggregator .library-edit-btn,
.subchap-callout-block .roundup-aggregator .library-download-btn {
    color: #fff;
}
.subchap-callout-block .roundup-aggregator .library-download-dropdown .dropdown-item {
    color: var(--heading-violet);
}
.subchap-callout-block .roundup-aggregator .library-download-dropdown .dropdown-item:hover {
    color: var(--brand-blue);
}
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-expand-all-btn,
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-collapse-all-btn,
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-expand-all-btn:focus,
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-collapse-all-btn:focus,
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-expand-all-btn:active,
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-collapse-all-btn:active {
    background: none !important;
    border: 1px solid #fff;
    color: #fff;
    font-size: .8rem;
    padding: .2rem 1rem;
}
.subchap-callout-block .roundup-aggregator .library-accordion-controls .btn i,
.subchap-callout-block .roundup-aggregator .library-download-btn i {
    color: #fff;
    margin-right: .35rem;
}
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-expand-all-btn:hover,
.subchap-callout-block .roundup-aggregator .library-accordion-controls .library-collapse-all-btn:hover {
    background-color: var(--brand-purple) !important;
    border-color: var(--brand-purple);
    color: #fff;
}
.webp .subchap-callout-block .roundup-aggregator .library-entry-header::after {
    background-image: url('/assets/core/toolkit-gradient.webp');
}
/* /Roundup Aggregator (subchapter) */

/* Fui Repeat Button */
.toolkit-form .fui-repeater-add-btn{
    background-color: var(--brand-purple);
    color: #fff;
}
.toolkit-form .fui-repeater-add-btn:hover {
    background-color: var(--brand-purple);
    filter: brightness(1.2);
}
/* /Fui Repeat Button */

/* Toolkit Contact Nav */
.toc-contact-link {
    color: var(--heading-violet);
    display: block;
    font-weight: 400;
    padding: .3rem 0;
    transition: all .3s;
}
.toc-contact-link:hover {
    filter: brightness(1.2);
}
.toc-contact.active .toc-contact-link {
    color: var(--heading-violet);
}
/* /Toolkit Contact Nav */

/* Formie Group Accordions */
.toolkit-form-group-accordions .fui-type-group > .fui-fieldset {
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 6px;
    padding: 0;
}
.toolkit-form-group-accordions .fui-group-toggle {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 1.4rem;
    justify-content: space-between;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: all .3s;
    width: 100%;
}
.toolkit-form-group-accordions .fui-group-toggle:hover {
    filter: brightness(1.1);
}
.toolkit-form-group-accordions .fui-group-chevron {
    flex-shrink: 0;
    font-size: 1rem;
    margin-left: 1rem;
    transition: transform .3s;
}
.toolkit-form-group-accordions .fui-group-toggle[aria-expanded="true"] .fui-group-chevron {
    transform: rotate(180deg);
}
.toolkit-form-group-accordions .fui-group {
    border: none;
}
.toolkit-form-group-accordions .fui-group-collapse {
    display: none;
    padding: 0 1.25rem 1.25rem;
}
.toolkit-form-group-accordions .fui-group-collapse.fui-group-open {
    display: block;
}
.toolkit-form-group-accordions .fui-group-toggle[aria-expanded="false"] {
    margin-bottom: 0;
}
/* /Formie Group Accordions */

/* Signup Chooser */
.signup-chooser {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}
.toolkit-signup-modal .modal-content .tab-switch.signup-chooser-btn {
    background-color: #ffffffc1!important;
    border-radius: .5rem;
    color: var(--brand-purple);
    font-size: 1.1rem;
    padding: 2rem 1.5rem;
    position: static;
}
.toolkit-signup-modal .modal-content .tab-switch.signup-chooser-btn:hover {
    background-color: #fff!important;
}
.login-existing-instructions {
    margin-bottom: 1rem;
}
/* /Signup Chooser */