@import url('https://fonts.googleapis.com/css2?family=ZCOOL+QingKe+HuangYou');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800;900&amp;display=swap');


article h1.notion-heading {
    font-family: 'ZCOOL QingKe HuangYou', sans-serif !important;
}

.notion-ai-block {
    border: 2px solid #dfd5e8;
    padding: 18px 12px;
    border-radius: 6px;
    margin-top: 2px;
    margin-bottom: 4px;
}

.notion-ai-block__with-content {
    border: none;
    transition: all 200ms;
    padding: 0px;
}

.notion-ai-block__icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: rgb(188, 161, 207);
    flex-shrink: 0;
    backface-visibility: hidden;
    position: relative;
    margin-right: 10px;
}

.notion-ai-block__no-content {
    display: flex;
    align-items: center;
    color: var(--color-text-gray);
}

.notion-anchor {
    color: inherit;
    text-decoration: none;
    visibility: hidden;
}

.notion-audio {
    width: 100%;
}

.notion-audio audio {
    width: 100%;
    outline: none;
}

.notion-bookmark {
    margin: 4px 0;
    border-radius: var(--bookmark-border-radii);
    border: var(--bookmark-border);
    /* padding: 12px 14px 14px; */
    transition: background 120ms ease-in 0s;
}

.notion-bookmark:hover {
    background: var(--color-ui-hover-bg);
}

.notion-bookmark>a {
    color: inherit;
    text-decoration: none;
    display: flex;
}

.notion-bookmark__content {
    overflow: hidden;
    flex: 4 1 180px;
    padding: var(--bookmark-padding);
}

.notion-bookmark__title {
    margin: 0;
    margin-bottom: 2px;
    line-height: 1.25rem;
    font-size: 0.875rem;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notion-bookmark__description {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1rem;
    opacity: 0.6;
    height: 2rem;
    overflow: hidden;
}

.notion-bookmark__link {
    display: flex;
    align-items: center;
    margin-top: 6px;
}

.notion-bookmark__link p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notion-bookmark__cover {
    flex: 1 1 180px;
    display: block;
    position: relative;
    width: 500px;
    height: 6.75rem;
}

.notion-bookmark__cover img {
    display: block;
    object-fit: cover;
    border-radius: var(--bookmark-image-border-radii);
    width: 100%;
    height: 100%;
}

/************/
/** MOBILE **/
/************/
.static-renderer.mobile .notion-bookmark__cover {
    width: 300px;
}

@media only screen and (max-width: 680px) {
    .notion-bookmark__cover {
        width: 300px;
    }
}

.notion-breadcrumb {
    height: 45px;
    display: flex;
    align-items: center;
    background-color: #fff;
    width: 100%;
    background-color: var(--color-bg-default);
}

.notion-navbar .notion-breadcrumb {
    z-index: 30;
    top: 0;
    position: sticky;
    background: transparent;
}

.notion-breadcrumb>a {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 3px 6px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
    height: 24px;
}

.notion-breadcrumb>a.has-icon {
    padding: 2px 6px;
}

.notion-breadcrumb__item {
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    padding: 3px 6px;
}

.notion-breadcrumb__item:hover {
    background-color: var(--color-ui-hover-bg);
    border-radius: 4px;
}

.notion-breadcrumb__item.has-icon .notion-breadcrumb__title {
    margin-inline-start: 6px;
}

.notion-breadcrumb__icon {
    border-radius: 3px;
    display: block;
    object-fit: cover;
}

.notion-breadcrumb__divider {
    color: var(--color-text-default-light);
    margin: 0px 2px;
    cursor: default;
    font-size: 0.875rem;
}

.notion-breadcrumb__dots {
    padding: 3px 6px;
    color: inherit;
    font-size: 14px;
}

.notion-breadcrumb__ellipsis {
    cursor: pointer;
    font-weight: normal;
    user-select: none;
}

.notion-breadcrumb__dropdown-option-arrow {
    color: #ccc;
    margin-right: 4px;
}

.notion-breadcrumb__dropdown-option-title {
    margin-left: 4px;
    width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.notion-caption {
    padding: 6px 2px;
    color: var(--color-text-default-light);
    font-size: 0.875rem;
}

.notion-callout {
    display: flex;
    margin-top: 2px;
    margin-bottom: 4px;
    border: 1px solid transparent;
    overflow: hidden;
    padding: var(--callout-padding);
    border-radius: var(--callout-border-radii);
    box-shadow: var(--callout-shadow);
}

.notion-callout.border {
    border: var(--callout-border);
}

.notion-callout__icon {
    min-width: 1.5rem;
    width: 1.8rem;
    display: var(--callout-icon-display);
    position: relative;
    top: 2px;
}

.notion-callout__icon .notion-icon {
    width: 1.3rem;
    font-size: 1.3rem;
    line-height: 1.3rem;
}

.notion-callout__content {
    margin-inline-start: 8px;
    overflow: hidden;
    width: 100%;
}

/* Callouts set border color to match BG */
.notion-callout.bg-gray-light.border {
    border-color: var(--color-bg-gray-light);
}

.notion-callout.bg-brown-light.border {
    border-color: var(--color-bg-brown-light);
}

.notion-callout.bg-orange-light.border {
    border-color: var(--color-bg-orange-light);
}

.notion-callout.bg-yellow-light.border {
    border-color: var(--color-bg-yellow-light);
}

.notion-callout.bg-green-light.border {
    border-color: var(--color-bg-green-light);
}

.notion-callout.bg-blue-light.border {
    border-color: var(--color-bg-blue-light);
}

.notion-callout.bg-purple-light.border {
    border-color: var(--color-bg-purple-light);
}

.notion-callout.bg-pink-light.border {
    border-color: var(--color-bg-pink-light);
}

.notion-callout.bg-red-light.border {
    border-color: var(--color-bg-red-light);
}

.notion-checkbox {
    display: flex;
    align-items: center;
}

.notion-checkbox>svg {
    width: 1rem;
    height: 1rem;
    fill: inherit;
}

.notion-checkbox.checked {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    background: var(--color-checkbox-bg);
}

.notion-checkbox.checked>svg {
    width: 0.75em;
    height: 0.75em;
    fill: white;
}

.notion-collection-card__property .notion-checkbox {
    width: 0.75rem;
    height: 0.75rem;
}

.notion-code pre {
    color: black;
    background-color: var(--color-code-bg);
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    overflow-wrap: normal;
    tab-size: 4;
    hyphens: none;
    margin: 10px 0;
    direction: ltr;
    overflow: auto;
    padding: var(--code-padding);
    border-radius: var(--code-border-radii);
}

.notion-code code {
    color: rgb(55, 53, 47);
    background: none;
    font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.4rem;
    text-align: left;
    white-space: pre-wrap;
    word-spacing: normal;
    word-break: normal;
    overflow-wrap: normal;
    tab-size: 4;
    hyphens: none;
}

.notion-code.no-wrap code {
    white-space: pre;
}

.notion-collection-board {
    width: 100%;
    display: grid;
    padding-bottom: 4px;
    overflow-x: scroll;
    border-top: var(--collection-header-border);
    gap: var(--collection-card-gap);
}

.notion-collection-board.grouped {
    overflow-x: visible;
}

.notion-collection-board.no-border-top {
    border-top: 0px;
}

.notion-collection-board__column {
    width: 100%;
    padding: 4px;
    border-radius: 5px;
}

.notion-collection-board__column-header {
    width: 100%;
    margin: 2px;
    margin-bottom: 6px;
}

.notion-collection-board__item {
    margin-bottom: 8px;
}

.notion-collection-calendar {
    margin-bottom: 50px;
}

.notion-collection-calendar__header,
.notion-collection-calendar__header-date-controls {
    display: flex;
    align-items: center;
}

.notion-collection-calendar__header {
    justify-content: space-between;
    height: 42px;
}

.notion-collection-calendar__header-date {
    font-weight: 600;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 0.875rem;
}

.notion-collection-calendar__header-date-back,
.notion-collection-calendar__header-date-forward,
.notion-collection-calendar__header-date-today {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: background 20ms ease-in 0s;
    flex-shrink: 0;
    border-radius: 3px;
    height: 24px;
}

.notion-collection-calendar__header-date-back:hover,
.notion-collection-calendar__header-date-forward:hover,
.notion-collection-calendar__header-date-today:hover {
    background-color: var(--color-ui-hover-bg);
}

.notion-collection-calendar__header-date-back,
.notion-collection-calendar__header-date-forward {
    width: 24px;
    padding: 5px;
}

.notion-collection-calendar__header-date-today {
    white-space: nowrap;
    font-size: 0.875rem;
    line-height: 1.2;
    min-width: 0px;
    padding-left: 6px;
    padding-right: 6px;
}

.notion-collection-calendar__week-days {
    display: flex;
    padding: 2px 0px 8px 0px;
    box-shadow: var(--color-border-dark) 0px 1px 0px;
}

.notion-collection-calendar__week-day-item {
    flex-grow: 1;
    flex-basis: 0px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-default-light);
}

.notion-collection-calendar__row {
    position: relative;
    display: flex;
    min-height: 124px;
    box-shadow: var(--color-border-dark) -1px 0px 0px;
    overflow: hidden;
}

.notion-collection-calendar__date {
    flex: 1 0 0px;
    border-right: 1px solid var(--color-border-dark);
    border-bottom: 1px solid var(--color-border-dark);
    cursor: default;
}

.notion-collection-calendar__date.first {
    margin-top: 1px;
}

.notion-collection-calendar__date.weekend {
    background: var(--color-calendar-weekend-bg);
}

.notion-collection-calendar__date-number {
    position: relative;
    font-size: 0.875rem;
    top: 4px;
    right: 10px;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: right;
    transition: color 100ms ease-out 0s;
}

.notion-collection-calendar__date-number.today {
    float: right;
    right: 4px;
    text-align: center;
    background-color: var(--color-text-red);
    width: 1.5rem;
    border-radius: 50%;
    color: var(--color-card-bg);
}

html[dir=rtl] .notion-collection-calendar__date-number.today {
    float: left;
}

.notion-collection-calendar__date-number.inactive {
    color: var(--color-text-default-light);
}

.notion-collection-calendar__item-wrapper {
    position: absolute;
    width: 100%;
    margin-top: 30px;
}

.notion-collection-calendar__item {
    margin: 0px 10px;
}

.notion-collection-calendar__item .notion-semantic-string {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notion-collection-calendar .notion-collection-calendar__item.overflowRight {
    margin-left: 0;
}

.notion-collection-calendar .notion-collection-calendar__item.overflowLeft {
    margin-right: 0;
}

.notion-collection-calendar .notion-collection-calendar__item.overflowRight>* {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.notion-collection-calendar .notion-collection-calendar__item.overflowLeft>* {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.notion-collection-calendar__item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/************/
/** MOBILE **/
/************/
@media (max-width: 546px) {
    .notion-collection-calendar__date {
        border-right: none;
    }

    .notion-collection-calendar__date.weekend {
        background: none;
    }

    .notion-collection-calendar__row {
        min-height: 0;
        box-shadow: none;
    }

    .notion-collection-calendar__date-number {
        top: 0;
        right: 0;
        text-align: center;
    }

    .notion-collection-calendar__date {
        text-align: center;
    }

    .notion-collection-calendar__date.no-border {
        border-bottom: none;
    }

    .notion-collection-calendar__date-number.today {
        float: none;
        right: 0;
        display: inline-block;
    }

    .notion-collection-calendar__date-number {
        margin-top: 8px;
    }

    .notion-collection-calendar__event-dot-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 4px;
    }

    .notion-collection-calendar__event-dot {
        position: relative;
        width: 8px;
        height: 8px;
        background: #bbb;
        border-radius: 50%;
    }
}

.notion-collection-card {
    width: 100%;
    height: 100%;
    transition: background 120ms ease-in 0s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: var(--color-card-bg);
    /* 10:7 */
    /* padding-top: 70%; */
    padding: var(--collection-card-padding);
    border-radius: var(--collection-card-border-radii);
    box-shadow: var(--collection-card-shadow);
}

.notion-collection-card.no-click {
    cursor: default;
}

.notion-collection-card.border-radius-right-0 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.notion-collection-card.border-radius-left-0 {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

/* .notion-collection-card.no-click:hover {
background: var(--color-card-bg);
} */
@supports not (display: grid) {
    .notion-collection-card {
        margin-top: 16px;
    }
}

.notion-collection-card:hover {
    background: var(--color-card-bg-hover);
}

a.notion-collection-card {
    color: inherit;
    text-decoration: none;
}

.notion-collection-card a.notion-collection-card__anchor {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    color: transparent !important;
    user-select: none;
}

.notion-collection-card a.notion-collection-card__anchor:hover {
    color: transparent !important;
}

.notion-collection-card .notion-property__title {
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    font-size: var(--collection-card-title-size);
    padding: var(--collection-card-title-padding);
}

.notion-collection-card .notion-property__title .notion-property__title__icon-wrapper {
    display: var(--collection-card-icon-display);
    float: left;
    margin-top: 1px;
    margin-inline-end: 5px;
}

html[dir=rtl] .notion-collection-card .notion-property__title .notion-property__title__icon-wrapper {
    float: right;
}

.notion-collection-card.calendar .notion-property__title {
    padding: 3px 6px;
}

.notion-collection-card.calendar .notion-collection-card__content {
    padding: 0px 6px 1px 6px;
}

.notion-collection-card .notion-property__title .notion-icon {
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.notion-collection-card .notion-property__relation .notion-icon__page {
    min-width: 18px;
    min-height: 18px;
}

.notion-collection-card__cover {
    min-height: 115px;
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.notion-collection-card__cover.only-cover {
    border-bottom: 0px;
}

.notion-collection-card__cover img {
    width: 100%;
    height: 210px;
    /* TODO: possibly remove or use fill */
    object-fit: cover;
    padding-bottom: 1px;
}

.notion-collection-card__cover picture img {
    height: 100%;
}

.notion-collection-card__cover.small {
    min-height: var(--collection-card-cover-height-small);
    height: var(--collection-card-cover-height-small);
}

.notion-collection-card__cover.medium {
    min-height: var(--collection-card-cover-height-medium);
    height: var(--collection-card-cover-height-medium);
}

.notion-collection-card__cover.large {
    min-height: var(--collection-card-cover-height-large);
    height: var(--collection-card-cover-height-large);
}

.notion-collection-card__cover.contain img {
    object-fit: contain;
    /* object-fit: cover; */
}

.notion-collection-card__content {
    padding: var(--collection-card-content-padding);
}

.notion-collection-card__property-list {
    margin-top: 8px;
    font-size: 0.75rem;
    overflow: hidden;
}

.notion-collection-card__content .notion-property__text {
    max-width: 95%;
}

.notion-collection-list__item-content .notion-property__text,
.notion-collection-card__content .notion-property__text {
    overflow: hidden;
    text-overflow: ellipsis;
}

.board .notion-collection-card__content {
    padding-inline-end: 10px;
}

.notion-collection-card__content.no-title {
    padding-top: 8px;
}

.notion-collection-card__content .notion-property__select {
    width: 100%;
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notion-collection-card__content .notion-property__select .notion-pill {
    max-width: calc(100% - 10px);
}

.notion-collection-card__content .notion-property__relation .notion-semantic-string {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.notion-collection-card__content .notion-property__relation .notion-page__icon {
    margin-inline-start: 0px;
}

.notion-collection-card__property {
    min-height: 24px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.gallery .notion-collection-card__property .notion-semantic-string {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 4px;
}

.notion-collection-card__property .notion-semantic-string .resource {
    top: 0px;
}

.notion-collection-card__property .notion-property__url {
    z-index: 20;
}

.notion-collection-card__property .notion-property__checkbox {
    display: flex;
    align-items: center;
}

.notion-collection-card__property .notion-property__checkbox .notion-checkbox {
    margin-right: 5px;
}

.notion-collection-group__board {
    overflow-x: scroll;
    padding: 25px;
}

.notion-collection-group__header {
    width: 100%;
    display: grid;
    grid-gap: 16px;
    gap: 16px;
}

.notion-collection-group__section-header:not(.no-border) {
    cursor: pointer;
    position: relative;
    border-top: 1px solid #eee;
    padding: 15px 8px;
}

.notion-collection-group__section-header.no-border {
    position: relative;
    padding: 15px 8px;
}

.notion-collection-group__section.open:not(.board) {
    margin-bottom: 55px;
}

.notion-collection-group__section-toggle {
    position: absolute;
    left: -25px;
    transform: translateY(-3px);
}

/************/
/** MOBILE **/
/************/
@media (max-width: 546px) {
    .notion-toggle__trigger.notion-collection-group__section-toggle {
        position: inherit;
        left: 0px;
        margin-right: 8px;
        transform: translateY(-3px);
    }

    .notion-collection-group__section-header.no-border,
    .notion-collection-group__section-header:not(.no-border) {
        display: flex;
        padding-left: 0px;
    }
}

.notion-collection-gallery {
    display: grid;
    grid-auto-rows: 1fr;
    padding-top: 16px;
    padding-bottom: 4px;
    border-top: var(--collection-header-border);
    gap: var(--collection-card-gap);
}

.notion-collection-gallery.no-border-top {
    border-top: 0px;
}

.notion-collection-gallery.small {
    grid-template-columns: repeat(auto-fill, minmax(var(--collection-card-cover-size-small), 1fr));
}

.notion-collection-gallery.medium {
    grid-template-columns: repeat(auto-fill, minmax(var(--collection-card-cover-size-medium), 1fr));
}

.notion-collection-gallery.large {
    grid-template-columns: repeat(auto-fill, minmax(var(--collection-card-cover-size-large), 1fr));
}

.notion-collection-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: hidden;
    padding: 6px 0px;
    border-top: var(--collection-header-border);
}

.notion-collection-list.no-border-top {
    border-top: 0px;
}

.notion-collection-list__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 1px 0px;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    position: relative;
    padding: var(--collection-list-item-padding);
    border-radius: var(--collection-list-item-border-radii);
}

.notion-collection-list__item-content .notion-property__text {
    max-width: 180px;
}

.notion-collection-list__item:hover {
    background-color: var(--color-ui-hover-bg);
}

.notion-collection-list__item.no-click {
    cursor: default;
}

.notion-collection-list__item .notion-property__title {
    overflow: hidden;
}

.notion-collection-list__item .notion-property__title .notion-icon {
    margin-inline-end: 2px;
}

.notion-collection-list__item-title {
    display: flex;
    min-width: 240px;
}

.notion-collection-list__item-title .notion-icon {
    margin-inline-end: 3px;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.notion-collection-list__item .notion-property__title .notion-semantic-string {
    display: flex;
    align-items: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    margin-inline-end: 32px;
    margin-inline-start: 4px;
}

.notion-collection-list__item .notion-property__title .notion-property__title__icon-wrapper {
    display: flex;
    margin-inline-end: 6px;
}

.notion-collection-list__item .notion-property__title__icon-wrapper .notion-icon.text {
    object-fit: contain;
    line-height: 1rem;
}

.notion-collection-list__item .notion-property.notion-property__title .notion-semantic-string>span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notion-collection-list__item .notion-property__title .notion-semantic-string>span {
    border-bottom: 1px solid hsl(45deg, 8%, 85%);
}

.notion-collection-list__item-anchor {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.notion-collection-list__item-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.notion-collection-list__item-property .notion-property__select {
    /* 3px + 3px (margin of span) = 6px (desired) */
    display: flex;
    /* padding: 3px 0px; */
}

.notion-collection-list__item-property .notion-property__select .notion-pill {
    font-size: 0.875rem;
    padding: 1px 6px;
}

.notion-collection-list__item-property {
    padding: 3px 4px;
    line-height: 1.5;
    z-index: 10;
}

.notion-collection-list__item-property .notion-property__url {
    font-size: 0.75rem;
    z-index: 20;
}

.notion-collection-list__item-property .notion-property__url a {
    white-space: nowrap;
}

.notion-collection-list__item-property .notion-semantic-string {
    white-space: nowrap;
}

.notion-collection-list__item-property .notion-property__text {
    font-size: 0.875rem;
}

.notion-collection-list__item-property .notion-property__relation {
    font-size: 0.875rem;
}

.notion-collection-list__item-property .notion-property__date {
    font-size: 0.75rem;
}

.notion-collection-list__item-property .notion-property__relation .notion-page__icon {
    margin-inline-start: 0px;
}

.notion-collection-list__item-property .notion-property__relation .notion-page>div:hover {
    background: none;
}

/************/
/** MOBILE **/
/************/
@media (max-width: 546px) {
    .notion-collection-list__item {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--color-border-default);
        padding: 10px 1px;
    }

    .notion-collection-list__item .notion-property__title {
        margin-bottom: 4px;
    }

    .notion-collection-list__item .resource .notion-page__title .notion-semantic-string {
        white-space: nowrap;
    }
}

.notion-property__title {
    display: flex;
    align-items: center;
    font-family: var(--primary-font);
}

.notion-property__title .notion-semantic-string {
    font-weight: 500;
}

.notion-property__title .notion-property__title__icon-wrapper {
    align-items: center;
    justify-content: center;
    height: 1.25rem;
    width: 1.25rem;
}

.notion-property__title__icon-wrapper .notion-icon.text {
    object-fit: contain;
    line-height: 1.5rem;
}

.notion-property__title .notion-icon {
    font-size: 1.2rem;
    line-height: 1rem;
}

.notion-property__date {
    white-space: nowrap;
}

.notion-property__date .notion-semantic-string {
    white-space: nowrap;
}

.notion-property__number__progress-bar-wrapper,
.notion-property__number__progress-ring-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: flex-start;
}

.notion-collection-card .notion-property__number__progress-bar-wrapper,
.notion-collection-card .notion-property__number__progress-ring-wrapper {
    width: 70%;
}

.notion-property__number__progress-bar {
    border-radius: 1000px;
    background-color: var(--color-bg-gray);
    overflow: hidden;
    width: 100%;
    height: 4px;
}

.notion-property__number__progress-bar.show-value {
    flex: 0 0 60%;
}

.notion-property__number__progress-bar div {
    height: 100%;
}

.notion-property__number__progress-ring {
    height: 20px;
    width: 20px;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.notion-property__number__progress-value {
    margin-right: 8px;
}

.notion-collection-table {
    width: 100%;
    /* TODO: sometimes font-size should be removed */
    font-size: 0.875rem;
    /* No double border */
    border-collapse: collapse;
    /* Force the table respects widths set on <th> */
    table-layout: fixed;
    /* Make space between table and scrollbar */
    margin-bottom: 10px;
    border-top: var(--collection-header-border);
}

.notion-collection-table.wrap-cells .notion-collection-table__cell.title .notion-semantic-string {
    white-space: inherit;
}

.notion-collection-table.wrap-cells .notion-collection-table__cell .notion-semantic-string {
    white-space: pre-wrap;
}

.notion-collection-table__cell.person .individual {
    display: inline-flex;
}

.notion-collection-table__cell.person .individual-with-image {
    display: flex;
}

.notion-property__person>.notion-semantic-string>span {
    margin-right: 10px;
}

.notion-property__person .individual-with-image {
    display: flex;
    align-items: center;
}

.notion-property__person .individual-with-image>span {
    margin-left: 6px;
    border-radius: 100px;
}

.notion-property__person>.notion-semantic-string {
    display: flex;
}

.notion-collection-table__cell.person .notion-property__person .notion-semantic-string {
    display: flex;
    flex-wrap: wrap;
}

.notion-collection-table td,
.notion-collection-table th {
    /* For <th> and unknown <td> */
    height: 2rem;
    overflow: hidden;
    word-break: break-word;
    padding: var(--collection-table-cell-padding);
    border: 1px solid var(--color-border-dark);
}

.notion-collection-table td {
    vertical-align: top;
    padding: 6px 8px;
}

.notion-collection-table td:first-of-type,
.notion-collection-table th:first-of-type {
    border-inline-start: none;
}

.notion-collection-table td:last-child,
.notion-collection-table th:last-child {
    border-inline-end: none;
}

.notion-collection-table th {
    text-align: start;
    font-weight: normal;
    color: var(--color-text-default-light);
    /* Default width, which may be overridden by inline style attr. */
    width: 200px;
}

.notion-collection-table .notion-checkbox {
    width: 1rem;
    height: 1rem;
}

.notion-collection-table__wrapper {
    overflow-x: auto;
}

.notion-collection-table__wrapper .notion-property__title .notion-property__title__icon-wrapper {
    display: flex;
    margin-inline-end: 6px;
    margin-top: 2px;
}

.notion-collection-table__cell {
    padding: 6px 8px;
    line-height: 1.5;
}

.notion-collection-table__cell .notion-semantic-string {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.notion-collection-table__cell .notion-semantic-string a {
    opacity: 1;
}

.notion-collection-table__cell .notion-semantic-string .individual {
    color: var(--color-text-default);
}

.notion-collection-table__cell.title {
    margin-inline-end: auto;
}

.notion-collection-table__cell.title .notion-icon {
    font-size: 1.3rem;
    line-height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notion-collection-table__cell.title .notion-semantic-string {
    display: flex;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.notion-collection-table__cell.title>a {
    color: inherit;
    text-decoration: none;
    display: flex;
}

.notion-collection-table__cell.title>a .notion-semantic-string>span {
    border-bottom: 1px solid hsl(45deg, 8%, 85%);
}

.notion-collection-table__cell.title>a:hover .notion-semantic-string>span {
    border-bottom: 1px solid hsl(45deg, 8%, 55%);
}

.notion-collection-table__cell.title.no-click .notion-semantic-string {
    cursor: default;
}

.notion-collection-table__cell.relation .resource .notion-page>div {
    display: flex;
}

.notion-collection-table__cell.number {
    text-align: flex-end;
}

.notion-collection-table__cell.select,
.notion-collection-table__cell.multi_select {
    /* 3px + 3px (margin of span) = 6px (desired) */
    padding: 3px 8px;
}

.notion-collection-table__cell.select .notion-pill,
.notion-collection-table__cell.multi_select .notion-pill {
    font-size: 0.875rem;
    padding: 1px 6px;
}

.notion-collection-table__head-cell.title {
    min-width: 240px;
}

.notion-collection-table__cell.relation .notion-semantic-string {
    white-space: normal;
}

.notion-collection-table__cell .notion-semantic-string .resource {
    top: 0px;
}

.notion-collection-table__toggle-wrapper {
    display: flex;
    align-items: center;
}

.notion-collection-table__sub-item-row {
    --table-sub-item-padding: 24px;
}

.notion-collection__header-wrapper {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 1px;
    gap: 6px;
    font-family: var(--primary-font);
}

.notion-collection-page .notion-collection__header-wrapper {
    margin: 0.5rem 0px 0.3rem 0px;
}

@media (min-width: 547px) {
    .notion-collection-page .notion-dropdown__menu-wrapper {
        left: 40px;
    }
}

.notion-collection__header {
    line-height: 1.75;
    font-size: var(--heading3-size);
    font-weight: 700;
    margin: 0;
    padding: 3px 2px;
    display: flex;
    align-items: center;
}

.notion-collection__header:hover>.notion-anchor {
    visibility: visible;
}

.notion-collection__header-icon {
    margin-inline-end: 10px;
    line-height: 1;
    display: flex;
}

.notion-column-list {
    display: flex;
    flex-wrap: wrap;
}

.notion-column-list.full-width {
    width: calc(100vw - var(--scrollbar-width));
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: center;
    line-height: 0px;
}

.notion-column {
    padding: 12px 0;
    word-break: break-word;
    display: flex;
    flex-direction: column;
}

.notion-column>.notion-heading:first-of-type {
    margin-top: 2px;
}

/************/
/** MOBILE **/
/************/
.static-renderer.mobile .notion-column {
    width: 100% !important;
    margin-inline-start: 0 !important;
}

@media only screen and (max-width: 680px) {
    .notion-column {
        width: 100% !important;
        margin-inline-start: 0 !important;
    }
}

.notion-divider {
    width: 100%;
    margin: 8px 0px;
    border-bottom: var(--divider-border);
}

.notion-google-drive>a {
    flex-direction: column;
}

.notion-google-drive__cover {
    display: block;
    position: relative;
    padding-bottom: 55%;
    width: 100%;
    min-height: 100px;
    height: 0;
    margin: 0 auto;
}

.notion-google-drive .notion-bookmark__content {
    flex: 1;
}

.notion-google-drive .notion-bookmark__description {
    height: auto;
}

.notion-dropdown__menu {
    font-weight: 10px;
    transform: translate(-40%, 0px);
    z-index: 40;
    overflow: hidden;
    background: var(--color-card-bg);
    border-radius: 4px;
    position: absolute;
    min-width: 340px;
    max-width: calc(100vw - 24px);
    top: 8px;
    box-shadow: rgba(15, 15, 15, 0.05) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 3px 6px, rgba(15, 15, 15, 0.2) 0px 9px 24px;
}

.notion-breadcrumb .notion-dropdown__menu {
    z-index: 40;
    top: 10px;
    min-width: 200px;
    max-width: 280px;
}

.notion-dropdown__menu.animate-in {
    animation: dropdown-animation-in 120ms ease forwards;
}

.notion-dropdown__menu.animate-out {
    animation: dropdown-animation-out 120ms ease forwards;
}

.notion-breadcrumb .notion-dropdown__menu.animate-in {
    animation: breadcrumb-dropdown-animation-in 120ms ease forwards;
}

.notion-breadcrumb .notion-dropdown__menu.animate-out {
    animation: breadcrumb-dropdown-animation-out 120ms ease forwards;
}

.notion-dropdown__menu.initial-state {
    z-index: -1;
    opacity: 0;
    transform: scale(0);
}

.notion-dropdown__menu-wrapper {
    position: relative;
}

.notion-dropdown__button {
    display: flex;
    align-items: center;
    border-radius: 3px;
    padding: 2px 6px;
    font-weight: 600;
    cursor: pointer;
}

.notion-dropdown__button:hover {
    background-color: var(--color-ui-hover-bg);
}

.notion-dropdown__button-title {
    margin: 0px 4px;
}

.notion-dropdown__menu-header b {
    font-weight: 600;
}

.notion-dropdown__menu-header {
    font-size: 15px;
    padding: 12px 14px 5px 14px;
}

.notion-dropdown__option-list {
    padding: 6px 0px;
}

.notion-dropdown__option {
    display: flex;
    align-items: center;
    padding: 5px 14px;
    cursor: pointer;
    gap: 6px;
}

.notion-dropdown__option p {
    font-size: 15px;
}

.notion-dropdown__option-icon {
    font-size: 0px;
}

.notion-dropdown__option:hover {
    background-color: var(--color-ui-hover-bg);
}

@keyframes dropdown-animation-in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes dropdown-animation-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        z-index: -1;
        opacity: 0;
        transform: scale(0.9);
    }
}

@keyframes breadcrumb-dropdown-animation-in {
    0% {
        opacity: 0;
        transform: transformY(-40%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: transformY(-40%) scale(1);
    }
}

@keyframes breadcrumb-dropdown-animation-out {
    0% {
        opacity: 1;
        transform: transformY(-40%) scale(1);
    }

    100% {
        z-index: -1;
        opacity: 0;
        transform: transformY(-40%) scale(0.9);
    }
}

/************************************/
/** MOBILE **************************/
/************************************/
@media (max-width: 546px) {
    .notion-dropdown__menu {
        left: 0px;
        min-width: 240px;
    }

    .notion-dropdown__menu.animate-out {
        user-select: none;
        pointer-events: none;
    }

    .notion-dropdown__menu.initial-state {
        user-select: none;
        pointer-events: none;
    }
}

.notion-embed {
    width: 100%;
    align-self: center;
}

.notion-embed__content {
    display: flex;
    position: relative;
}

.notion-embed__loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(247, 246, 245);
    border-radius: 2px;
    z-index: 1;
}

.notion-embed__container__wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.notion-embed__container__wrapper.align-start {
    justify-content: start;
}

.notion-embed__container__wrapper.align-end {
    justify-content: end;
}

.notion-embed__container {
    position: absolute;
    min-height: 100px;
    max-width: 100%;
    height: 0;
    margin: 0 auto;
}

.notion-embed__container__external_object {
    min-height: 100px;
    margin: 0 auto;
}

.notion-embed__container>iframe {
    position: absolute;
    inset-inline-start: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
    border-radius: var(--embed-border-radii);
}

.notion-column-list .notion-embed {
    align-self: start;
}

.notion-column-list .notion-embed__container {
    margin: initial;
}

.notion-equation {
    position: relative;
    display: inline-flex;
    color: inherit;
    fill: inherit;
    user-select: none;
    transition: background 20ms ease-in 0s;
    -webkit-user-select: all;
    -moz-user-select: all;
    user-select: all;
    border-radius: var(--equation-border-radii);
}

.notion-equation__block {
    display: flex;
    flex-direction: column;
    overflow: auto;
    width: 100%;
    max-width: 100%;
    padding: 4px 8px;
    margin: 4px 0;
    cursor: pointer;
}

.notion-equation__block:hover {
    background: var(--color-ui-hover-bg);
}

.katex-display .katex {
    padding-inline-end: 32px;
}

.katex>.katex-html {
    white-space: normal;
}

.notion-external-object__avatar-wrapper {
    height: fit-content;
    position: relative;
}

.notion-external-object__avatar {
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.notion-external-object__avatar.circular {
    border-radius: 100%;
}

.notion-external-object__avatar.no-avatar {
    background-color: var(--color-bg-gray);
}

.notion-external-object__avatar-icon {
    position: absolute;
    width: 14px;
    height: 14px;
    right: -3px;
    bottom: -2px;
    filter: drop-shadow(white 0px 0px 1px) drop-shadow(white 0px 0px 1px) drop-shadow(white 0px 0px 1px);
}

.notion-external-object__avatar-wrapper,
.notion-external-object picture,
.notion-external-object-placeholder picture,
.notion-external-object__presentation-wrapper {
    font-size: 0px;
}

.notion-external-object,
.notion-external-object-placeholder {
    margin: 4px 0px;
    border: 1px solid var(--color-border-dark);
    border-radius: 4px;
    overflow: hidden;
}

.notion-external-object a,
.notion-external-object-placeholder a {
    text-decoration: none;
    color: #000;
}

.notion-external-object-placeholder {
    background-color: var(--color-bg-gray);
}

.notion-external-object__attributes {
    padding: 10px;
    display: flex;
    align-items: center;
}

.notion-external-object__attributes:hover {
    background-color: var(--color-bg-gray-light);
}

.notion-external-object__details {
    font-size: 14px;
    color: black;
    margin-left: 10px;
    overflow: hidden;
}

.notion-external-object__title {
    font-weight: 500;
}

.notion-external-object__title-row,
.notion-external-object__sub-details {
    display: flex;
    align-items: center;
}

.notion-external-object__title-detail,
.notion-external-object__subtitle {
    color: var(--color-text-gray);
}

.notion-external-object__title-detail {
    margin-left: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.notion-external-object__subtitle {
    margin-top: 2px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notion-asana .notion-external-object__subtitle,
.notion-slack .notion-external-object__subtitle {
    margin: 0px 6px;
}

.notion-slack .notion-slack__channel {
    margin-left: 0px;
}

.notion-external-object__color {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 4px;
}

.notion-external-object__presentation {
    height: 100%;
    max-height: 256px;
    object-fit: contain;
}

.notion-grid .notion-external-object__presentation,
.notion-pitch .notion-external-object__presentation {
    width: 100%;
    height: 500px;
}

.notion-external-object__title-status {
    color: initial;
    margin-left: 6px;
}

.notion-external-object__divider {
    height: 1px;
    width: 100%;
    background: var(--color-border-dark);
}

.notion-external-object__message {
    margin: 4px 0px 6px 0px;
}

.notion-external-object__mention-details {
    color: initial;
    display: flex;
    align-items: center;
}

.notion-file {
    color: inherit;
    text-decoration: none;
    border-radius: 3px;
}

.notion-file:hover {
    background: var(--color-ui-hover-bg);
}

.notion-file>div {
    display: flex;
    padding: 5px 0;
    margin: 2px 0;
    transition: background 120ms ease-in 0s;
    border-radius: var(--file-border-radii);
}

.notion-file__icon {
    margin-inline-start: 2px;
    margin-inline-end: 4px;
    width: 1.5rem;
    text-align: center;
}

.notion-file__title {
    line-height: 1.5rem;
}

.notion-file__size {
    margin-inline-start: 6px;
    color: var(--color-text-default-light);
    font-size: 0.75rem;
}

.notion-heading {
    font-weight: var(--heading-weight);
    margin-bottom: 0px;
    padding: 3px 2px;
    position: relative;
    font-family: var(--primary-font);
}

.notion-heading .notion-semantic-string {
    line-height: 1.3em;
}

.notion-heading:hover>.notion-heading__anchor {
    visibility: visible;
}

.notion-heading .notion-heading__anchor {
    position: absolute;
    inset-inline-start: 0px;
    top: -60px;
}

.notion-heading.toggle {
    margin: 0;
}

h1.notion-heading {
    font-size: var(--heading1-size);
}

h2.notion-heading {
    font-size: var(--heading2-size);
    font-weight: 600;
}

h2.notion-heading:not(.toggle) {
    margin-top: 1rem;
}

h3.notion-heading {
    font-size: var(--heading3-size);
}

h3.notion-heading:not(.toggle) {
    margin-top: 0.75rem;
}

h4.notion-heading {
    font-size: var(--heading4-size);
    line-height: 1.8125em;
}

h5.notion-heading {
    font-size: var(--heading5-size);
    line-height: 1.846em;
    color: #888;
}

.notion-header {
    width: 100%;
    margin-bottom: 16px;
    padding: 240px 0 !important;
    font-family: var(--primary-font);
}

.notion-header__cover {
    overflow: hidden;
    position: relative;
    height: var(--header-cover-height);
    max-height: calc(100vh - var(--navbar-height));
    display: var(--header-display);
}

.notion-header__cover-image {
    object-fit: cover;
    width: 100%;
}

.notion-header__cover.no-cover {
    max-height: 140px;
    height: 140px;
}

.notion-header.collection .notion-header__cover.no-cover {
    max-height: 0;
    height: 0;
}

.notion-header.collection .notion-header__cover {
    max-height: 24vh;
    height: 24vh;
}

.notion-header__content {
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
}

.notion-header__content .notion-header__title-wrapper {
    margin-top: 96px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.notion-header__content.max-width {
    max-width: var(--layout-max-width);
    margin: auto;
}

.notion-header__content.no-cover.has-icon-image .notion-header__title-wrapper {
    margin-top: 142px;
}

.notion-header__content.no-cover.has-icon .notion-header__title-wrapper {
    margin-top: 84px;
}

.notion-header__content.no-icon.has-cover .notion-header__title-wrapper {
    margin-top: 48px;
}

.notion-header__content.no-cover.no-icon .notion-header__title-wrapper {
    margin-top: 0px;
}

.notion-header__content.has-cover.has-icon .notion-header__title-wrapper {
    margin-top: 74px;
}

.notion-header.collection .notion-header__content.no-cover.no-icon .notion-header__title-wrapper {
    margin-top: 44px;
}

.notion-header.collection .notion-header__title-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 44px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.notion-header__title {
    font-weight: 700;
    padding: 2px;
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: var(--title-size);
    line-height: var(--title-size);
    min-height: 48px;
    white-space: pre-wrap;
    word-break: break-word;
    text-align: var(--header-title-align);
    display: var(--header-display);
}

.notion-header__title .notion-semantic-string {
    word-break: break-word;
}

.notion-header__description {
    margin-top: 6px;
    font-size: 12px;
}

.notion-header__icon-wrapper {
    font-size: 78px;
    line-height: 78px;
    position: absolute;
    padding: 3px;
    bottom: 40px;
    display: var(--header-display);
}

.notion-header__icon-wrapper.has-icon-image {
    bottom: 40px;
    margin: 11px auto;
    width: 125px;
    height: 125px;
}

.notion-header__icon-wrapper.has-cover.has-icon {
    top: -112px;
    margin: auto;
}

.notion-header__icon-wrapper.has-cover.has-icon-image {
    top: -180px;
}

.notion-header__icon-wrapper.no-cover.has-icon-image {
    top: -182px;
    margin: 3px auto;
}

.notion-header__icon-wrapper.no-cover.has-icon {
    top: -124px;
}

.notion-header__icon-wrapper.has-icon,
.notion-header__icon-wrapper.has-icon-image {
    inset: var(--header-icon-align);
    text-align: var(--header-title-align);
}

.notion-header__icon {
    width: 125px;
    height: 125px;
    border-radius: 3px;
    object-fit: cover;
}

.notion-header.collection .notion-header__icon {
    width: 35px;
    height: 35px;
}

.static-renderer.mobile .notion-header__cover {
    height: 200px;
    max-height: 200px;
}

.static-renderer.mobile .notion-header__cover.no-cover {
    max-height: 90px;
    height: 90px;
}

.static-renderer.mobile .notion-header__content .notion-header__title-wrapper {
    margin-top: 100px;
}

.static-renderer.mobile .notion-header__content.no-icon .notion-header__title-wrapper {
    margin-top: 56px;
}

.static-renderer.mobile .notion-header__icon-wrapper.has-cover.has-icon-image {
    top: -178px;
}

.static-renderer.mobile .notion-header__content,
.static-renderer.mobile .notion-header__collection-content {
    padding-left: var(--padding-left-mobile);
    padding-right: var(--padding-right-mobile);
}

@media (max-width: 546px) {
    .notion-header__cover {
        height: 200px;
        max-height: 200px;
    }

    .notion-header__cover.no-cover {
        max-height: 90px;
        height: 90px;
    }

    .notion-header__content .notion-header__title-wrapper {
        margin-top: 100px;
    }

    .notion-header__content.no-icon .notion-header__title-wrapper {
        margin-top: 56px;
    }

    .notion-header__icon-wrapper.has-cover.has-icon-image {
        top: -178px;
    }

    .notion-header__content,
    .notion-header__collection-content {
        padding-left: var(--padding-left-mobile);
        padding-right: var(--padding-right-mobile);
    }
}

.notion-icon {
    /* For emoji */
    text-align: center;
    /* For image */
    border-radius: 3px;
    /* padding: 1.1px; */
}

img.notion-icon {
    display: block;
    object-fit: cover;
}

.notion-icon__page {
    min-width: 20px;
    min-height: 20px;
    fill: inherit;
    opacity: 0.8;
}

.notion-icon__copy {
    width: 16px;
    height: 16px;
    display: block;
    fill: inherit;
    flex-shrink: 0;
    backface-visibility: hidden;
    padding-inline-end: 4px;
}

.notion-image {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: center;
    line-height: 0px;
}

.notion-image.align-start {
    align-self: start;
}

.notion-image.align-end {
    align-self: end;
}

.notion-image.full-width {
    width: calc(100vw - var(--scrollbar-width));
    overflow-x: hidden;
}

.notion-image.full-width img {
    /* 15px is scrollbar */
    width: calc(100vw - var(--scrollbar-width));
    object-fit: cover;
}

.notion-image.full-width>figcaption {
    padding: 6px 26px;
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
}

.super-content.max-width .notion-image.full-width>figcaption {
    max-width: var(--layout-max-width);
    margin: auto;
}

.notion-image.page-width {
    width: 100%;
    max-width: 100%;
}

.notion-image.page-width img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--image-border-radii);
}

.notion-image.page-width>figcaption {
    padding: 6px 2px;
}

.notion-image.normal {
    /* text-align: center; */
    max-width: 100%;
}

.notion-image.normal img {
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--image-border-radii);
}

.notion-image.normal>figcaption {
    padding: 6px 2px;
}

.static-renderer.mobile .notion-image.full-width>figcaption {
    padding-left: var(--padding-left-mobile);
    padding-right: var(--padding-right-mobile);
}

@media (max-width: 546px) {
    .notion-image.full-width>figcaption {
        padding-left: var(--padding-left-mobile);
        padding-right: var(--padding-right-mobile);
    }
}

.notion-link {
    text-decoration: none;
}

.notion-link:not(.color-default, .color-gray, .color-brown, .color-orange, .color-yellow, .color-green, .color-blue, .color-purple, .color-pink, .color-red) {
    color: inherit;
}

.notion-semantic-string .notion-link>div {
    padding: 1px 2px;
}

.notion-semantic-string .notion-link>div {
    border-radius: 4px;
}

.notion-bulleted-list {
    margin: 2px 0;
    padding-inline-start: calc(1.5em + 4px);
    line-height: 1.5;
}

.notion-bulleted-list.circle {
    list-style-type: circle;
}

.notion-bulleted-list.disc {
    list-style-type: disc;
}

.notion-bulleted-list.square {
    list-style-type: square;
}

.notion-numbered-list {
    margin: 2px 0;
    padding-inline-start: calc(1.5em + 4px);
    line-height: 1.5;
}

.notion-callout .notion-numbered-list {
    padding-inline-start: calc(1.5em + 10px);
}

.notion-list-item {
    margin: 2px 0;
    padding-top: 3px;
    padding-bottom: 3px;
}

.notion-navbar {
    height: 45px;
    padding: 0px 14px;
    display: flex;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 30;
    color: var(--navbar-text-color);
    background: var(--navbar-background-color);
}

.notion-navbar>a {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 3px 6px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
    height: 24px;
}

.notion-navbar>a.has-icon {
    padding: 2px 6px;
}

.notion-navbar>a:hover {
    background-color: var(--color-ui-hover-bg);
    border-radius: 4px;
}

.notion-navbar__button {
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    opacity: 0.7;
    transition: opacity 200ms ease-in-out;
    stroke: var(--navbar-text-color);
}

.notion-navbar__button:hover {
    opacity: 1;
}

.notion-navbar__actions {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.notion-icon__search-path {
    fill: var(--navbar-text-color);
}

.notion-navbar__title {
    line-height: 1.25em;
    font-size: 0.875rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: calc(40vw - 66px);
    font-family: var(--primary-font);
}

.notion-navbar .single .notion-navbar__title {
    max-width: calc(80vw - 66px);
}

/************/
/** MOBILE **/
/************/
.static-renderer.mobile .notion-navbar {
    box-shadow: var(--color-border-dark) 0px 1px 0px;
}

.static-renderer.mobile .notion-navbar__title {
    max-width: calc(50vw - 66px);
}

@media (max-width: 546px) {
    .notion-navbar {
        box-shadow: var(--color-border-dark) 0px 1px 0px;
    }

    .notion-navbar__title {
        max-width: calc(50vw - 66px);
    }
}

.notion-root {
    display: flex;
    flex-direction: column;
}

.notion-root.full-width {
    width: 100%;
}

/* .notion-page.small {
line-height: 1.5;
}

.notion-page > div {
display: flex;
transition: background 120ms ease-in 0s;
padding: 3px 0;
padding-inline-end: 4px;
border-radius: 5px;
}

.notion-page > div:hover {
background: var(--color-ui-hover-bg);
}

.notion-page__icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
min-width: 1.3em;
padding: 1.1px;
margin: 2px 6px;
}

.notion-page__icon.small {
margin: 0px 6px;
} */
.notion-page {
    text-decoration: none;
    cursor: pointer;
    margin: 1px 0;
    border-radius: 5px;
    display: var(--page-display);
    /* line-height: 1.8; */
}

.notion-property .notion-page {
    display: unset;
}

.notion-page:not(.emoji) {
    vertical-align: middle;
}

.notion-page.small {
    line-height: 1.5;
}

.notion-page>div {
    display: flex;
    transition: background 120ms ease-in 0s;
    padding: 3px 0px 3px 5px;
    padding-inline-end: 4px;
}

.notion-page>div:hover {
    background: var(--color-ui-hover-bg);
}

.notion-page__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.3em;
    padding: 1.1px;
    line-height: 1.2em;
    margin-right: 0.3em;
}

.notion-page__icon span {
    display: flex;
}

h1 .notion-page__icon div {
    width: 1.875rem !important;
    height: 1.875rem !important;
}

h2 .notion-page__icon div {
    width: 1.5rem !important;
    height: 1.5rem !important;
}

h3 .notion-page__icon div {
    width: 1.25rem !important;
    height: 1.25rem !important;
}

.notion-page__title {
    overflow: hidden;
    text-overflow: ellipsis;
}

.notion-page__subtitle {
    font-size: 14px;
    color: var(--color-text-gray);
}

.notion-page__title.has-details {
    width: 100%;
    display: flex;
    align-items: center;
}

.notion-page__title.has-details .notion-semantic-string {
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notion-page__title.has-details>*:not(:last-child) {
    margin-right: 6px;
}

.notion-page__title .notion-semantic-string {
    border-bottom: 1px solid var(--color-border-dark);
}

.notion-page__title .notion-semantic-string {
    white-space: nowrap;
    font-weight: 500;
}

.resource .notion-page__title .notion-semantic-string {
    white-space: break-spaces;
}

.notion-property .notion-semantic-string .date {
    color: var(--color-text-default);
}

.notion-page__properties .notion-property {
    display: flex;
    align-items: center;
    border-radius: 3px;
    width: 100%;
    min-height: 36px;
    padding: 6px 8px 7px;
    font-size: 14px;
    overflow: hidden;
    flex-wrap: wrap;
}

.notion-page__properties .notion-property.notion-property__checkbox {
    align-items: center;
}

.notion-page__property-name {
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: 0px;
    padding-top: 7px;
}

.notion-page__property-name>span {
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text-default-light);
}

.notion-page__properties .notion-divider {
    margin: 16px 0px 28px 0px;
}

.notion-pdf__content {
    text-align: center;
}

.notion-pdf__content>embed {
    max-width: 100%;
}

.notion-pill {
    padding: 0 6px;
    border-radius: 3px;
    font-size: 0.875rem;
    line-height: 1.125rem;
    white-space: nowrap;
    display: inline-block;
    /* margin of inline-block does not collapse */
    margin: 3px 0;
    margin-inline-end: 6px;
}

.notion-pill.large {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.notion-pill .notion-semantic-string {
    white-space: nowrap;
}

.notion-quote {
    border-inline-start: var(--quote-border);
    margin: 0.5rem 0;
    padding: 0.1rem 0.9rem;
    font-size: var(--quote-size);
    font-family: var(--primary-font);
}

.notion-quote.large {
    font-size: var(--quote-size-large);
}

.notion-search.open .notion-search__wrapper {
    opacity: 1;
}

.notion-search.close .notion-search__wrapper {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

.notion-search__wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 30;
    transition: opacity 0.1s ease;
}

.notion-search__box {
    background: var(--color-bg-default);
    margin-top: 10vh;
    width: 560px;
    min-width: 180px;
    max-width: calc(100vw - 24px);
    max-height: 80vh;
    border-radius: 6px;
    overflow: auto;
}

.notion-search__input {
    display: flex;
    padding: 14px 16px;
    background: var(--color-bg-default);
}

.notion-search__input input {
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
    line-height: 1.125rem;
    margin-top: 1px;
    border: none;
    outline: none;
    background: none;
    display: block;
    resize: none;
    padding: 0px;
    min-width: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text-default);
}

.notion-search__icon {
    display: flex;
    align-items: center;
    margin-inline-end: 10px;
}

.notion-search__clear {
    display: flex;
    align-items: center;
    margin-inline-start: 10px;
    cursor: pointer;
}

.notion-search__result-list {
    border-top: var(--color-border-default) 1px solid;
    max-height: 376px;
    overflow: auto;
}

.notion-search__result-item-wrapper {
    border-bottom: var(--color-border-default) 1px solid;
    padding: 4px 4px 4px 4px;
}

.notion-search__result-item-wrapper.last {
    border-bottom: none;
}

.notion-search__result-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.notion-search__result-item.active,
.notion-search__result-item:hover {
    background: var(--color-ui-hover-bg);
}

.notion-search__result-item.page .notion-search__result-item-content {
    font-size: 1rem;
}

.notion-search__result-item-content {
    padding-left: 12px;
    font-size: 0.875rem;
}

.notion-search__result-item-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
}

.notion-search__result-item-icon .notion-icon.text {
    font-size: 1.25rem;
}

.notion-search__result-item-icon .notion-icon__page {
    min-width: 22px;
    min-height: 22px;
}

.notion-search__result-item-title {
    margin-top: 1px;
}

.notion-search__result-item-text {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 2px;
}

.notion-search__result-item-title .notion-semantic-string {
    line-height: 0.75rem;
}

.notion-search__result-item-enter-icon {
    position: absolute;
    top: 8px;
    right: 8px;
}

.notion-search__result-loader {
    border-top: var(--color-border-default) 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.notion-search__result-footer {
    padding: 10px 18px;
    font-size: 0.75rem;
    color: var(--color-text-default-light);
    border-top: var(--color-border-default) 1px solid;
}

.notion-search__result-footer strong {
    font-size: 0.875rem;
}

.notion-search__result-footer-shortcut {
    margin-left: 16px;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.notion-semantic-string {
    line-height: 1.5rem;
    /* font-size: 14px; */
    white-space: pre-wrap;
    word-break: break-word;
}

.notion-semantic-string .resource>a {
    color: inherit;
    text-decoration: none;
}

.notion-semantic-string .resource .notion-page>div {
    display: inline-flex;
}

.notion-semantic-string .link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--color-text-default-light);
    opacity: 0.7;
    transition: border-color 100ms ease-in, opacity 100ms ease-in;
}

.notion-semantic-string .link:hover {
    opacity: 1;
}

.notion-semantic-string .individual>div {
    border-radius: 100px;
    margin-inline-end: 6px;
    top: 2px;
}

.notion-semantic-string .notion-at {
    color: var(--color-border-dark);
}

.notion-table-of-contents__item .notion-semantic-string .notion-at,
.notion-semantic-string .individual,
.notion-semantic-string .date {
    color: var(--color-text-default-light);
}

.notion-semantic-string .code {
    border-radius: 5px;
    background-color: var(--color-code-bg);
    color: #ff4081;
    font-size: 0.9em;
    padding: 0.2em 0.4em;
    word-break: break-word;
}

/* .commented {
background: rgba(255, 212, 0, 0.14);
border-bottom: 2px solid rgb(255, 212, 0);
} */
.notion-semantic-string .highlighted-background .code {
    background-color: inherit;
}

.notion-semantic-string .highlighted-color .code {
    color: inherit;
}

.notion-table-of-contents {
    margin: 4px 0;
    padding: 5px 0px;
    border-radius: 5px;
    font-size: 0.875rem;
}

.notion-table-of-contents__item {
    list-style-type: none;
    transition: background 120ms ease-in 0s;
    color: var(--color-text-default-light);
}

.notion-table-of-contents__item:hover {
    background: var(--color-ui-hover-bg);
}

.notion-table-of-contents__item>a {
    color: inherit;
    text-decoration: none;
}

.notion-table-of-contents__item>a>div {
    padding: 6px 2px;
}

.notion-table-of-contents__item .notion-semantic-string:not(.no-border) {
    padding-bottom: 2px;
    background-image: linear-gradient(to right, rgba(55, 53, 47, 0.16) 0%, rgba(55, 53, 47, 0.16) 100%);
    background-repeat: repeat-x;
    background-position: 0px 100%;
    background-size: 100% 1px;
}

.notion-table__wrapper {
    overflow-x: auto;
}

.notion-table {
    margin: 8px 0px 18px 0px;
    border-collapse: collapse;
}

.notion-table.col-header tr:first-child,
.notion-table.row-header td:first-child {
    background-color: var(--color-bg-gray);
}

.notion-table td {
    border: 1px solid var(--color-border-dark);
}

.notion-table__cell {
    padding: 7px 9px;
}

.notion-table__empty-cell {
    height: 38px;
}

.notion-text {
    min-height: calc(1.5rem + 10px);
}

.notion-text__content {
    padding: 3px 2px;
    margin: 0;
}

.notion-text__children {
    margin-inline-start: 1.5rem;
}

.notion-to-do__content {
    display: flex;
    padding: 3px 0;
    margin: 2px 0;
    line-height: 1.5;
}

.notion-to-do__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
    margin-inline-start: 2px;
    margin-inline-end: 4px;
    flex-shrink: 0;
}

.notion-to-do__title.checked {
    opacity: 0.375;
}

.notion-to-do__children {
    margin-inline-start: calc(1.5em + 6px);
}

.notion-toggle {
    margin: 1px 0;
}

.notion-toggle__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    user-select: none;
    margin-top: 3px;
    cursor: pointer;
}

.notion-collection-table__toggle-wrapper .notion-toggle__trigger {
    margin-top: 0px;
    margin-bottom: 2px;
}

.notion-toggle__trigger_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: 2px;
    width: 1.5rem;
    height: 1.5rem;
}

.notion-toggle__trigger_icon:hover {
    background: var(--color-ui-hover-bg);
}

.notion-toggle__trigger_icon:focus {
    background: var(--color-border-dark);
}

.notion-toggle__trigger_icon>span {
    position: absolute;
}

.notion-toggle.open>.notion-toggle__summary>.notion-toggle__trigger .notion-toggle__trigger_icon>span,
.notion-collection-group__section.open>.notion-collection-group__section-header>.notion-toggle__trigger .notion-toggle__trigger_icon>span {
    transform: rotate(90deg);
}

.notion-toggle__trigger .notion-toggle__trigger_icon>span {
    transition: 250ms;
}

.notion-toggle-heading-1>.notion-toggle__summary>.notion-toggle__trigger {
    height: calc(var(--heading1-size) * 1.3);
}

.notion-toggle-heading-2>.notion-toggle__summary>.notion-toggle__trigger {
    height: calc(var(--heading2-size) * 1.3);
}

.notion-toggle-heading-3>.notion-toggle__summary>.notion-toggle__trigger {
    height: calc(var(--heading3-size) * 1.3);
}

.notion-toggle__summary {
    cursor: pointer;
    padding: 3px 0;
    list-style: none;
    display: flex;
}

.notion-toggle__summary>.notion-semantic-string {
    margin: 3px 2px;
}

.notion-toggle-heading-1>.notion-toggle__summary {
    margin-top: 1.5rem;
}

.notion-toggle-heading-2>.notion-toggle__summary {
    margin-top: 1rem;
}

.notion-toggle-heading-3>.notion-toggle__summary {
    margin-top: 0.75rem;
}

.notion-toggle__summary .notion-semantic-string {
    padding-inline-start: 0px;
}

.notion-toggle__summary::-webkit-details-marker {
    display: none;
}

.notion-toggle__summary:focus {
    outline: none;
}

.notion-toggle.closed .notion-toggle__content {
    display: none;
}

.notion-toggle__content {
    padding-inline-start: calc(1.5em + 4px);
}

.notion-tooltip__wrapper {
    position: absolute;
}

.notion-tooltip {
    margin-top: 6px;
    color: initial;
    border-radius: 4px;
    padding: 10px 14px;
    width: 300px;
    box-shadow: rgba(15, 15, 15, 0.05) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 3px 6px, rgba(15, 15, 15, 0.2) 0px 9px 24px;
}

.notion-tooltip__integration-name {
    margin-left: 4px;
    font-weight: 500;
    font-size: 12px;
}

.notion-tooltip__title {
    font-weight: 500;
}

.notion-tooltip__subtitle,
.notion-tooltip__label {
    font-size: 12px;
    color: var(--color-text-gray);
}

.notion-tooltip__label {
    flex: 2;
}

.notion-tooltip__value {
    font-size: 14px;
    flex: 5;
}

.notion-tooltip__integration,
.notion-tooltip__labeled-value {
    display: flex;
    align-items: center;
}

.notion-tooltip__user {
    display: flex;
    align-items: center;
}

.notion-tooltip__user-name {
    margin-left: 6px;
}

.notion-tweet {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.static-tweet-header-username,
.static-tweet-p,
.static-tweet-info {
    font-family: var(--secondary-font);
}

.static-tweet-header-name {
    font-family: var(--primary-font);
}

.static-tweet-body-blockquote {
    padding: var(--tweet-padding);
}

.static-tweet-body {
    border-radius: var(--tweet-border-radii);
    border: var(--tweet-border);
}

.notion-video {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.notion-video video {
    outline: none;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

*::selection {
    background: rgba(45, 170, 219, 0.3);
}

strong {
    font-weight: 600;
}

p {
    margin: 0;
}

html {
    font-weight: var(--text-weight);
}

button {
    all: unset;
}

/* Scrollbars */
html ::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color);
    border: 3px solid transparent;
    border-radius: 50px;
    background-clip: padding-box;
}

html ::-webkit-scrollbar {
    width: 15px;
    background: var(--scrollbar-background-color);
    border-left: 1px solid var(--scrollbar-border-color);
    border-right: 1px solid var(--scrollbar-border-color);
}

html ::-webkit-scrollbar:horizontal {
    border-top: 1px solid var(--scrollbar-border-color);
    border-bottom: 1px solid var(--scrollbar-border-color);
    border-left: none;
    border-right: none;
}

body {
    color: var(--color-text-default);
    background: var(--color-bg-default);
    fill: currentColor;
    margin: 0;
    font-family: var(--secondary-font);

    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

code {
    /* Use monospace before Courier so font looks better on Android Chrome. */
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace,
        Courier;
}

.static-tweet {
    margin: auto;
}

.color-default-light {
    color: var(--color-text-default-light);
}

.color-gray-light {
    color: var(--color-text-gray-light);
}

.color-brown-light {
    color: var(--color-text-brown-light);
}

.color-orange-light {
    color: var(--color-text-orange-light);
}

.color-yellow-light {
    color: var(--color-text-yellow-light);
}

.color-green-light {
    color: var(--color-text-green-light);
}

.color-blue-light {
    color: var(--color-text-blue-light);
}

.color-purple-light {
    color: var(--color-text-purple-light);
}

.color-pink-light {
    color: var(--color-text-pink-light);
}

.color-red-light {
    color: var(--color-text-red-light);
}

.bg-default-light {
    background-color: var(--color-bg-default-light);
}

.bg-gray-light {
    background-color: var(--color-bg-gray-light);
}

.bg-brown-light {
    background-color: var(--color-bg-brown-light);
}

.bg-orange-light {
    background-color: var(--color-bg-orange-light);
}

.bg-yellow-light {
    background-color: var(--color-bg-yellow-light);
}

.bg-green-light {
    background-color: var(--color-bg-green-light);
}

.bg-blue-light {
    background-color: var(--color-bg-blue-light);
}

.bg-purple-light {
    background-color: var(--color-bg-purple-light);
}

.bg-pink-light {
    background-color: var(--color-bg-pink-light);
}

.bg-red-light {
    background-color: var(--color-bg-red-light);
}

.color-default {
    color: var(--color-text-default);
}

.color-gray {
    color: var(--color-text-gray);
}

.color-brown {
    color: var(--color-text-brown);
}

.color-orange {
    color: var(--color-text-orange);
}

.color-yellow {
    color: var(--color-text-yellow);
}

.color-green {
    color: var(--color-text-green);
}

.color-blue {
    color: var(--color-text-blue);
}

.color-purple {
    color: var(--color-text-purple);
}

.color-pink {
    color: var(--color-text-pink);
}

.color-red {
    color: var(--color-text-red);
}

.bg-default {
    background-color: var(--color-bg-default);
}

.bg-accent {
    background-color: var(--color-bg-accent);
}

.bg-gray {
    background-color: var(--color-bg-gray);
}

.bg-brown {
    background-color: var(--color-bg-brown);
}

.bg-orange {
    background-color: var(--color-bg-orange);
}

.bg-yellow {
    background-color: var(--color-bg-yellow);
}

.bg-green {
    background-color: var(--color-bg-green);
}

.bg-blue {
    background-color: var(--color-bg-blue);
}

.bg-purple {
    background-color: var(--color-bg-purple);
}

.bg-pink {
    background-color: var(--color-bg-pink);
}

.bg-red {
    background-color: var(--color-bg-red);
}

.pill-default {
    background: var(--color-pill-default);
    color: var(--color-pill-text-default);
}

.pill-gray {
    background: var(--color-pill-gray);
    color: var(--color-pill-text-gray);
}

.pill-brown {
    background: var(--color-pill-brown);
    color: var(--color-pill-text-brown);
}

.pill-orange {
    background: var(--color-pill-orange);
    color: var(--color-pill-text-orange);
}

.pill-yellow {
    background: var(--color-pill-yellow);
    color: var(--color-pill-text-yellow);
}

.pill-green {
    background: var(--color-pill-green);
    color: var(--color-pill-text-green);
}

.pill-blue {
    background: var(--color-pill-blue);
    color: var(--color-pill-text-blue);
}

.pill-purple {
    background: var(--color-pill-purple);
    color: var(--color-pill-text-purple);
}

.pill-pink {
    background: var(--color-pill-pink);
    color: var(--color-pill-text-pink);
}

.pill-red {
    background: var(--color-pill-red);
    color: var(--color-pill-text-pink);
}

.super-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.super-content-wrapper {
    flex-grow: 1;
}

.super-content {
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
    padding-bottom: 30vh;
}

.super-content.max-width {
    max-width: var(--layout-max-width);
    margin: auto;
}

.super-content.has-footer {
    padding-bottom: 5vh;
}

/************/
/** MOBILE **/
/************/
.static-renderer.mobile .super-content {
    padding-left: var(--padding-left-mobile);
    padding-right: var(--padding-right-mobile);
    padding-bottom: 180px;
}

.static-renderer.mobile .super-content.has-footer {
    padding-bottom: 45px;
}

@media (max-width: 546px) {
    .super-content {
        padding-left: var(--padding-left-mobile);
        padding-right: var(--padding-right-mobile);
        padding-bottom: 180px;
    }

    .super-content.has-footer {
        padding-bottom: 45px;
    }
}

.super-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.super-loader__spinner {
    animation: spin 0.6s linear infinite;
    display: block;
    width: 24px;
    height: 24px;
    color: rgba(55, 53, 47, 0.4);
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

.super-badge {
    direction: ltr;
    position: fixed;
    z-index: 10;
    bottom: 22px;
    left: 36px;
    padding: 8px 12px 8px 12px;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-default);
    border-radius: 70px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.super-badge:hover {
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.08);
}

.super-badge span {
    margin-left: 6px;
    text-align: left;
    letter-spacing: -0.4px;
    line-height: 1;
    font-size: 14px;
    color: var(--color-text-default);
}

.super-navbar {
    width: 100%;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    background: var(--navbar-background-color);
    color: var(--navbar-text-color);
    height: var(--navbar-height);
    box-shadow: var(--navbar-shadow);
    -webkit-box-shadow: var(--navbar-shadow);
}

.super-navbar__content {
    width: 100%;
    height: 100%;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 200ms ease-in-out;
    position: relative;
}

.super-navbar__actions {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 6px;
    padding: 0px 16px;
    height: 100%;
}

.super-navbar__actions.hide {
    display: none;
}

.super-navbar.simple .super-navbar__item-list {
    justify-content: flex-end;
}

.super-navbar__logo {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    padding: 0px 16px;
    height: 100%;
    cursor: pointer;
    white-space: nowrap;
}

.super-navbar__logo span {
    font-weight: 600;
}

.super-navbar__logo-text {
    font-family: var(--primary-font);
}

.super-navbar__menu-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10px;
    transform-origin: top right;
    user-select: none;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.super-navbar__menu-list {
    white-space: normal;
    flex-direction: column;
    align-items: flex-start;
}

.super-navbar__menu-list-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    width: 100%;
}

.super-navbar__menu-wrapper.enter {
    transform: scale(0.8);
    opacity: 0;
}

.super-navbar__menu-wrapper.enter-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
    transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
}

.super-navbar__menu-wrapper.exit {
    transform: scale(1);
    opacity: 1;
}

.super-navbar__menu-wrapper.exit-active {
    transform: scale(0.8);
    opacity: 0;
    transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
}

.super-navbar__menu .super-navbar__item {
    justify-content: flex-start;
}

.super-navbar__menu::-webkit-scrollbar {
    display: none;
}

.super-navbar__menu {
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow: auto;
    position: relative;
    bottom: 4px;
    padding: 8px;
    border-radius: 8px;
    min-width: 350px;
    max-width: 600px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.12);
    background: var(--navbar-menu-background-color);
}

.super-navbar__button {
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    opacity: 0.7;
    transition: opacity 200ms ease-in-out;
    stroke: var(--color-white);
}

.super-navbar__button:hover {
    opacity: 1;
}

.super-navbar__menu-open {
    display: none;
}

.super-navbar__menu-close {
    display: inline-flex;
    position: absolute;
    height: auto;
    right: 14px;
    top: 14px;
    padding: 5px;
    text-align: right;
    z-index: 1;
}

.super-navbar__cta {
    position: relative;
    opacity: 1;
    border-radius: var(--navbar-button-border-radii);
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 200ms ease-in-out;
    background: var(--navbar-button-background-color);
    color: var(--navbar-button-text-color);
}

.super-navbar__cta:hover {
    opacity: 0.8;
}

.super-navbar__logo-image {
    position: relative;
}

.super-navbar__logo-image,
.super-navbar__logo-image picture,
.super-navbar__logo-image picture img {
    height: 100%;
}

.super-navbar.minimal .super-navbar__item-list {
    display: none;
}

.super-navbar.minimal .super-navbar__menu-open {
    display: flex;
}

.super-navbar.simple .super-navbar__logo,
.super-navbar.balanced .super-navbar__logo {
    margin-inline-end: auto;
}

.super-navbar.balanced .super-navbar__content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: auto;
}

.super-navbar.balanced .super-navbar__item-list {
    justify-content: center;
}

.super-navbar.balanced .super-navbar__actions {
    justify-content: flex-end;
}

.super-navbar__item-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    flex-wrap: wrap;
    height: 100%;
    overflow: hidden;
}

.super-navbar__content>div:has(.super-navbar__item-list) {
    height: 100%;
}

.super-navbar__item-list li {
    height: 100%;
    display: flex;
    align-items: center;
}

.super-navbar__item,
.super-navbar__list {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 200ms ease-in-out;
    font-weight: 500;
    height: 100%;
    padding: 14px 20px;
    user-select: none;
    white-space: nowrap;
    opacity: 0.7;
    cursor: pointer;
}

.super-navbar__list:hover,
.super-navbar__item:hover,
.super-navbar__item.active {
    opacity: 1;
}

.super-navbar__list-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: flex-start;
    list-style: none;
    padding: 8px;
    margin: 0px;
}

.super-navbar__list-content[data-motion=from-start] {
    animation: enterFromLeft 200ms ease-in-out;
}

.super-navbar__list-content[data-motion=from-end] {
    animation: enterFromRight 200ms ease-in-out;
}

.super-navbar__list-content[data-motion=to-start] {
    animation: exitToLeft 200ms ease-in-out;
}

.super-navbar__list-content[data-motion=to-end] {
    animation: exitToRight 200ms ease-in-out;
}

.super-navbar__list-content-column {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.super-navbar__list-arrow-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 3px;
    height: 10px;
    top: 100%;
    overflow: hidden;
    z-index: 1;
    transition: width 200ms ease-in-out, transform 200ms ease;
}

.super-navbar__list-viewport {
    position: absolute;
    transform-origin: top center;
    margin-top: 5px;
    top: 100%;
    overflow: hidden;
    width: var(--radix-navigation-menu-viewport-width);
    height: var(--radix-navigation-menu-viewport-height);
    background: var(--navbar-background-color);
    box-shadow: 0px 11px 7px rgba(0, 0, 0, 0.02), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 0px 0px rgba(0, 0, 0, 0.03);
    -webkit-box-shadow: 0px 11px 7px rgba(0, 0, 0, 0.02), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 0px 0px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.super-navbar__list-content.single-column,
.super-navbar__list-viewport.single-column {
    width: var(--navbar-list-width-single-column);
}

.super-navbar__list-content,
.super-navbar__list-viewport {
    width: var(--navbar-list-width);
}

.super-navbar.simple .super-navbar__list-viewport {
    right: 8px;
    margin-top: 8px;
}

.super-navbar.simple .super-navbar__list-arrow-wrapper {
    margin-top: 6px;
}

.super-navbar__list-arrow {
    position: relative;
    top: 70%;
    background: var(--navbar-background-color);
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top-left-radius: 2px;
}

.super-navbar__list-viewport[data-state=open],
.super-navbar__list-arrow-wrapper[data-state=visible] {
    animation: fadeIn 200ms ease-in-out;
}

.super-navbar__list-viewport[data-state=closed],
.super-navbar__list-arrow-wrapper[data-state=hidden] {
    animation: fadeOut 200ms ease-in-out;
}

.super-navbar__list-item {
    transition: all 200ms ease-in-out;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    outline: none;
    text-decoration: none;
    user-select: none;
    padding: 16px;
    border-radius: 8px;
    line-height: 1;
    word-break: break-word;
    width: 100%;
}

.super-navbar__list-item svg {
    flex-shrink: 0;
    color: var(--navbar-text-color);
}

.super-navbar__menu-list .super-navbar__list-item {
    padding: 16px 20px;
}

.super-navbar__list-item:hover {
    background: var(--navbar-background-color-dark);
}

.super-navbar__list-item-icon {
    margin-top: 3px;
}

.super-navbar__list-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.super-navbar__list-item-heading {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
}

.super-navbar__list-item-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--navbar-text-color);
    opacity: 0.6;
    overflow: hidden;
}

.super-navbar__actions:has(.super-navbar__button) .notion-link:has(.super-navbar__cta) {
    padding-right: 8px;
}

@media (max-width: 546px) {
    .super-navbar {
        position: fixed;
    }

    .super-navbar__menu-wrapper {
        padding: 10px;
    }

    .super-navbar__menu-wrapper,
    .super-navbar__menu {
        width: 100%;
    }

    .super-navbar__menu-list-content {
        width: 100%;
    }

    .super-navbar__logo {
        padding: 0 8px;
    }

    .super-navbar__actions {
        padding: 0 8px;
    }
}

@media (max-width: 860px) {
    .super-navbar__menu-wrapper .super-navbar__item {
        white-space: pre-wrap;
    }

    .super-navbar__content>div:has(.super-navbar__item-list) {
        display: none;
    }

    .super-navbar.balanced .super-navbar__content {
        grid-template-columns: 1fr 1fr;
    }

    .super-navbar__menu-open {
        display: flex;
    }

    .super-navbar__item {
        width: 100%;
        padding: 16px 36px 16px 16px;
        text-align: left;
    }

    .super-navbar__actions.hide {
        display: grid;
    }
}

@media (min-width: 547px) {
    .super-navbar__menu {
        max-height: 500px;
    }
}

.super-footer {
    padding: 35px;
    box-shadow: 11px 14px 10px -8px rgba(0, 0, 0, 0.02);
    color: var(--footer-text-color);
    background: var(--footer-background-color);
}

.super-footer * {
    color: inherit;
}

.super-footer__logo {
    grid-area: logo;
    height: 48px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.super-footer__icons {
    grid-area: icons;
    display: flex;
    padding: 4px;
    gap: 16px;
    font-size: 0px;
    /* Fixes a positioning issue */
}

.super-footer__links {
    grid-area: links;
    font-size: 1.2rem;
}

.super-footer__footnote {
    grid-area: footnote;
    font-size: 1rem;
    color: var(--footer-text-color);
}

.super-footer__logo,
.super-footer__icons,
.super-footer__links,
.super-footer__footnote {
    margin-top: 18px;
    margin-bottom: 18px;
}

.super-footer.stack {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
}

.super-footer.stack .super-footer__logo {
    place-self: center;
    align-items: center;
    display: flex;
}

.super-footer.stack .super-footer__icons {
    justify-content: center;
}

.super-footer.corners,
.super-footer.floating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "logo icons" "links links" "footnote footnote";
}

.super-footer.corners {
    padding: 80px;
}

.super-footer.floating {
    margin: 20px;
    border-radius: 24px;
    padding-left: 60px;
    padding-right: 60px;
}

.super-footer.corners .super-footer__icons,
.super-footer.floating .super-footer__icons {
    justify-content: flex-end;
    align-items: center;
}

.super-footer.corners .super-footer__links,
.super-footer.floating .super-footer__links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.super-footer.corners .super-footer__logo,
.super-footer.floating .super-footer__logo {
    place-self: start;
}

.super-footer__logo span {
    font-weight: 600;
}

.super-footer__logo-image,
.super-footer__logo-image picture,
.super-footer__logo-image picture img {
    height: 100%;
}

.super-footer__link {
    display: block;
    padding: 2px;
    text-decoration: none;
    /* border-bottom: 1px solid #e5e5e5; */
}

.super-footer.stack .super-footer__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.super-footer.stack .super-footer__link {
    padding: 4px;
}

/************/
/** MOBILE **/
/************/
@media (max-width: 680px) {

    .super-footer.corners,
    .super-footer.floating {
        grid-template-columns: 1fr;
        grid-template-areas: "logo" "icons" "links" "footnote";
    }

    .super-footer.corners {
        padding: 30px;
    }

    .super-footer.floating {
        padding-left: 20px;
        padding-right: 20px;
    }

    .super-footer.corners .super-footer__icons,
    .super-footer.floating .super-footer__icons {
        justify-content: flex-start;
    }
}

.super-password-protection {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.super-password-protection__wrapper {
    padding-left: var(--padding-left);
    padding-right: var(--padding-right);
    padding-bottom: 10vh;
}

.super-password-protection__title {
    font-weight: 700;
    padding: 2px;
    margin-bottom: 35px;
    margin-top: 30px;
    min-height: 48px;
    white-space: pre-wrap;
    word-break: break-word;
}

.super-password-protection__input {
    display: flex;
    align-items: center;
    border-radius: 3px;
    margin-top: 2px;
    margin-bottom: 4px;
    padding-inline-start: 16px;
    padding-inline-end: 10px;
    background: var(--color-bg-default);
    border: 1px solid var(--color-border-default);
    width: 100%;
}

.super-password-protection__input-lock {
    width: 20px;
    height: 20px;
    color: var(--color-text-default-light);
}

.super-password-protection__input-arrow {
    width: 30px;
    height: 30px;
    padding: 5px;
    cursor: pointer;
    color: var(--color-text-default-light);
}

.super-password-protection__input-arrow:hover {
    color: var(--color-text-default);
}

.super-password-protection__input input {
    padding: 16px 16px 16px 12px;
    width: 100%;
    outline: none;
    border: none;
    font-size: 1rem;
    background: var(--color-bg-default);
    color: var(--color-text-default-light);
}

.super-password-protection .super-loader__spinner {
    width: 20px;
    height: 20px;
}

.super-password-protection__error {
    margin-top: 30px;
    position: absolute;
    color: var(--color-text-red);
}

@keyframes enterFromRight {
    from {
        opacity: 0;
        transform: translateX(200px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes enterFromLeft {
    from {
        opacity: 0;
        transform: translateX(-200px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes exitToRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(200px);
    }
}

@keyframes exitToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-200px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.static-renderer.mobile .super-password-protection__wrapper {
    padding-left: var(--padding-left-mobile);
    padding-right: var(--padding-right-mobile);
    padding-bottom: 180px;
}

@media (max-width: 546px) {
    .super-password-protection__wrapper {
        padding-left: var(--padding-left-mobile);
        padding-right: var(--padding-right-mobile);
        padding-bottom: 180px;
    }

    .super-badge {
        bottom: calc(env(safe-area-inset-bottom) + 22px);
        left: calc(env(safe-area-inset-left) + 24px);
    }
}

/* PrismJS 1.27.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+abap+abnf+actionscript+ada+agda+al+antlr4+apacheconf+apex+apl+applescript+aql+arduino+arff+asciidoc+aspnet+asm6502+asmatmel+autohotkey+autoit+avisynth+avro-idl+bash+basic+batch+bbcode+bicep+birb+bison+bnf+brainfuck+brightscript+bro+bsl+c+csharp+cpp+cfscript+chaiscript+cil+clojure+cmake+cobol+coffeescript+concurnas+csp+cooklang+coq+crystal+css-extras+csv+cypher+d+dart+dataweave+dax+dhall+diff+django+dns-zone-file+docker+dot+ebnf+editorconfig+eiffel+ejs+elixir+elm+etlua+erb+erlang+excel-formula+fsharp+factor+false+firestore-security-rules+flow+fortran+ftl+gml+gap+gcode+gdscript+gedcom+gherkin+git+glsl+gn+go+go-module+graphql+groovy+haml+handlebars+haskell+haxe+hcl+hlsl+hoon+http+hpkp+hsts+ichigojam+icon+icu-message-format+idris+ignore+inform7+ini+io+j+java+javadoc+javadoclike+javastacktrace+jexl+jolie+jq+jsdoc+js-extras+json+json5+jsonp+jsstacktrace+js-templates+julia+keepalived+keyman+kotlin+kumir+kusto+latex+latte+less+lilypond+liquid+lisp+livescript+llvm+log+lolcode+lua+magma+makefile+markdown+markup-templating+matlab+maxscript+mel+mermaid+mizar+mongodb+monkey+moonscript+n1ql+n4js+nand2tetris-hdl+naniscript+nasm+neon+nevod+nginx+nim+nix+nsis+objectivec+ocaml+opencl+openqasm+oz+parigp+parser+pascal+pascaligo+psl+pcaxis+peoplecode+perl+php+phpdoc+php-extras+plsql+powerquery+powershell+processing+prolog+promql+properties+protobuf+pug+puppet+pure+purebasic+purescript+python+qsharp+q+qml+qore+r+racket+cshtml+jsx+tsx+reason+regex+rego+renpy+rest+rip+roboconf+robotframework+ruby+rust+sas+sass+scss+scala+scheme+shell-session+smali+smalltalk+smarty+sml+solidity+solution-file+soy+sparql+splunk-spl+sqf+sql+squirrel+stan+iecst+stylus+swift+systemd+t4-templating+t4-cs+t4-vb+tap+tcl+tt2+textile+toml+tremor+turtle+twig+typescript+typoscript+unrealscript+uorazor+uri+v+vala+vbnet+velocity+verilog+vhdl+vim+visual-basic+warpscript+wasm+web-idl+wiki+wolfram+wren+xeora+xml-doc+xojo+xquery+yaml+yang+zig */
code[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
pre[class*="language-"]::-moz-selection {
    text-shadow: none;
    background: #b3d4fc;
}

code[class*="language-"] ::selection,
code[class*="language-"]::selection,
pre[class*="language-"] ::selection,
pre[class*="language-"]::selection {
    text-shadow: none;
    background: #b3d4fc;
}

@media print {

    code[class*="language-"],
    pre[class*="language-"] {
        text-shadow: none;
    }
}

:not(pre)>code[class*="language-"],
pre[class*="language-"] {
    background: #f5f2f0;
}

:not(pre)>code[class*="language-"] {
    padding: 0.1em;
    border-radius: 0.3em;
    white-space: normal;
}

.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
    color: #708090;
}

.token.punctuation {
    color: #999;
}

.token.namespace {
    opacity: 0.7;
}

.token.boolean,
.token.constant,
.token.deleted,
.token.number,
.token.property,
.token.symbol,
.token.tag {
    color: #905;
}

.token.attr-name,
.token.builtin,
.token.char,
.token.inserted,
.token.selector,
.token.string {
    color: #690;
}

.language-css .token.string,
.style .token.string,
.token.entity,
.token.operator,
.token.url {
    color: #9a6e3a;
    background: hsla(0, 0%, 100%, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #07a;
}

.token.class-name,
.token.function {
    color: #dd4a68;
}

.token.important,
.token.regex,
.token.variable {
    color: #e90;
}

.token.bold,
.token.important {
    font-weight: 700;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

@font-face {
    font-family: KaTeX_AMS;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_AMS-Regular.woff2) format("woff2"), url(fonts/KaTeX_AMS-Regular.woff) format("woff"), url(fonts/KaTeX_AMS-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Caligraphic;
    font-style: normal;
    font-weight: 700;
    src: url(fonts/KaTeX_Caligraphic-Bold.woff2) format("woff2"), url(fonts/KaTeX_Caligraphic-Bold.woff) format("woff"), url(fonts/KaTeX_Caligraphic-Bold.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Caligraphic;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Caligraphic-Regular.woff2) format("woff2"), url(fonts/KaTeX_Caligraphic-Regular.woff) format("woff"), url(fonts/KaTeX_Caligraphic-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Fraktur;
    font-style: normal;
    font-weight: 700;
    src: url(fonts/KaTeX_Fraktur-Bold.woff2) format("woff2"), url(fonts/KaTeX_Fraktur-Bold.woff) format("woff"), url(fonts/KaTeX_Fraktur-Bold.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Fraktur;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Fraktur-Regular.woff2) format("woff2"), url(fonts/KaTeX_Fraktur-Regular.woff) format("woff"), url(fonts/KaTeX_Fraktur-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Main;
    font-style: normal;
    font-weight: 700;
    src: url(fonts/KaTeX_Main-Bold.woff2) format("woff2"), url(fonts/KaTeX_Main-Bold.woff) format("woff"), url(fonts/KaTeX_Main-Bold.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Main;
    font-style: italic;
    font-weight: 700;
    src: url(fonts/KaTeX_Main-BoldItalic.woff2) format("woff2"), url(fonts/KaTeX_Main-BoldItalic.woff) format("woff"), url(fonts/KaTeX_Main-BoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Main;
    font-style: italic;
    font-weight: 400;
    src: url(fonts/KaTeX_Main-Italic.woff2) format("woff2"), url(fonts/KaTeX_Main-Italic.woff) format("woff"), url(fonts/KaTeX_Main-Italic.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Main;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Main-Regular.woff2) format("woff2"), url(fonts/KaTeX_Main-Regular.woff) format("woff"), url(fonts/KaTeX_Main-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Math;
    font-style: italic;
    font-weight: 700;
    src: url(fonts/KaTeX_Math-BoldItalic.woff2) format("woff2"), url(fonts/KaTeX_Math-BoldItalic.woff) format("woff"), url(fonts/KaTeX_Math-BoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Math;
    font-style: italic;
    font-weight: 400;
    src: url(fonts/KaTeX_Math-Italic.woff2) format("woff2"), url(fonts/KaTeX_Math-Italic.woff) format("woff"), url(fonts/KaTeX_Math-Italic.ttf) format("truetype")
}

@font-face {
    font-family: "KaTeX_SansSerif";
    font-style: normal;
    font-weight: 700;
    src: url(fonts/KaTeX_SansSerif-Bold.woff2) format("woff2"), url(fonts/KaTeX_SansSerif-Bold.woff) format("woff"), url(fonts/KaTeX_SansSerif-Bold.ttf) format("truetype")
}

@font-face {
    font-family: "KaTeX_SansSerif";
    font-style: italic;
    font-weight: 400;
    src: url(fonts/KaTeX_SansSerif-Italic.woff2) format("woff2"), url(fonts/KaTeX_SansSerif-Italic.woff) format("woff"), url(fonts/KaTeX_SansSerif-Italic.ttf) format("truetype")
}

@font-face {
    font-family: "KaTeX_SansSerif";
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_SansSerif-Regular.woff2) format("woff2"), url(fonts/KaTeX_SansSerif-Regular.woff) format("woff"), url(fonts/KaTeX_SansSerif-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Script;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Script-Regular.woff2) format("woff2"), url(fonts/KaTeX_Script-Regular.woff) format("woff"), url(fonts/KaTeX_Script-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Size1;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Size1-Regular.woff2) format("woff2"), url(fonts/KaTeX_Size1-Regular.woff) format("woff"), url(fonts/KaTeX_Size1-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Size2;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Size2-Regular.woff2) format("woff2"), url(fonts/KaTeX_Size2-Regular.woff) format("woff"), url(fonts/KaTeX_Size2-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Size3;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Size3-Regular.woff2) format("woff2"), url(fonts/KaTeX_Size3-Regular.woff) format("woff"), url(fonts/KaTeX_Size3-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Size4;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Size4-Regular.woff2) format("woff2"), url(fonts/KaTeX_Size4-Regular.woff) format("woff"), url(fonts/KaTeX_Size4-Regular.ttf) format("truetype")
}

@font-face {
    font-family: KaTeX_Typewriter;
    font-style: normal;
    font-weight: 400;
    src: url(fonts/KaTeX_Typewriter-Regular.woff2) format("woff2"), url(fonts/KaTeX_Typewriter-Regular.woff) format("woff"), url(fonts/KaTeX_Typewriter-Regular.ttf) format("truetype")
}

.katex {
    text-rendering: auto;
    font: normal 1.21em KaTeX_Main, Times New Roman, serif;
    line-height: 1.2;
    text-indent: 0
}

.katex * {
    -ms-high-contrast-adjust: none !important;
    border-color: currentColor
}

.katex .katex-version:after {
    content: "0.16.4"
}

.katex .katex-mathml {
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.katex .katex-html>.newline {
    display: block
}

.katex .base {
    position: relative;
    white-space: nowrap;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content
}

.katex .base,
.katex .strut {
    display: inline-block
}

.katex .textbf {
    font-weight: 700
}

.katex .textit {
    font-style: italic
}

.katex .textrm {
    font-family: KaTeX_Main
}

.katex .textsf {
    font-family: KaTeX_SansSerif
}

.katex .texttt {
    font-family: KaTeX_Typewriter
}

.katex .mathnormal {
    font-family: KaTeX_Math;
    font-style: italic
}

.katex .mathit {
    font-family: KaTeX_Main;
    font-style: italic
}

.katex .mathrm {
    font-style: normal
}

.katex .mathbf {
    font-family: KaTeX_Main;
    font-weight: 700
}

.katex .boldsymbol {
    font-family: KaTeX_Math;
    font-style: italic;
    font-weight: 700
}

.katex .amsrm,
.katex .mathbb,
.katex .textbb {
    font-family: KaTeX_AMS
}

.katex .mathcal {
    font-family: KaTeX_Caligraphic
}

.katex .mathfrak,
.katex .textfrak {
    font-family: KaTeX_Fraktur
}

.katex .mathtt {
    font-family: KaTeX_Typewriter
}

.katex .mathscr,
.katex .textscr {
    font-family: KaTeX_Script
}

.katex .mathsf,
.katex .textsf {
    font-family: KaTeX_SansSerif
}

.katex .mathboldsf,
.katex .textboldsf {
    font-family: KaTeX_SansSerif;
    font-weight: 700
}

.katex .mathitsf,
.katex .textitsf {
    font-family: KaTeX_SansSerif;
    font-style: italic
}

.katex .mainrm {
    font-family: KaTeX_Main;
    font-style: normal
}

.katex .vlist-t {
    border-collapse: collapse;
    display: inline-table;
    table-layout: fixed
}

.katex .vlist-r {
    display: table-row
}

.katex .vlist {
    display: table-cell;
    position: relative;
    vertical-align: bottom
}

.katex .vlist>span {
    display: block;
    height: 0;
    position: relative
}

.katex .vlist>span>span {
    display: inline-block
}

.katex .vlist>span>.pstrut {
    overflow: hidden;
    width: 0
}

.katex .vlist-t2 {
    margin-right: -2px
}

.katex .vlist-s {
    display: table-cell;
    font-size: 1px;
    min-width: 2px;
    vertical-align: bottom;
    width: 2px
}

.katex .vbox {
    align-items: baseline;
    display: inline-flex;
    flex-direction: column
}

.katex .hbox {
    width: 100%
}

.katex .hbox,
.katex .thinbox {
    display: inline-flex;
    flex-direction: row
}

.katex .thinbox {
    max-width: 0;
    width: 0
}

.katex .msupsub {
    text-align: left
}

.katex .mfrac>span>span {
    text-align: center
}

.katex .mfrac .frac-line {
    border-bottom-style: solid;
    display: inline-block;
    width: 100%
}

.katex .hdashline,
.katex .hline,
.katex .mfrac .frac-line,
.katex .overline .overline-line,
.katex .rule,
.katex .underline .underline-line {
    min-height: 1px
}

.katex .mspace {
    display: inline-block
}

.katex .clap,
.katex .llap,
.katex .rlap {
    position: relative;
    width: 0
}

.katex .clap>.inner,
.katex .llap>.inner,
.katex .rlap>.inner {
    position: absolute
}

.katex .clap>.fix,
.katex .llap>.fix,
.katex .rlap>.fix {
    display: inline-block
}

.katex .llap>.inner {
    right: 0
}

.katex .clap>.inner,
.katex .rlap>.inner {
    left: 0
}

.katex .clap>.inner>span {
    margin-left: -50%;
    margin-right: 50%
}

.katex .rule {
    border: 0 solid;
    display: inline-block;
    position: relative
}

.katex .hline,
.katex .overline .overline-line,
.katex .underline .underline-line {
    border-bottom-style: solid;
    display: inline-block;
    width: 100%
}

.katex .hdashline {
    border-bottom-style: dashed;
    display: inline-block;
    width: 100%
}

.katex .sqrt>.root {
    margin-left: .27777778em;
    margin-right: -.55555556em
}

.katex .fontsize-ensurer.reset-size1.size1,
.katex .sizing.reset-size1.size1 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size1.size2,
.katex .sizing.reset-size1.size2 {
    font-size: 1.2em
}

.katex .fontsize-ensurer.reset-size1.size3,
.katex .sizing.reset-size1.size3 {
    font-size: 1.4em
}

.katex .fontsize-ensurer.reset-size1.size4,
.katex .sizing.reset-size1.size4 {
    font-size: 1.6em
}

.katex .fontsize-ensurer.reset-size1.size5,
.katex .sizing.reset-size1.size5 {
    font-size: 1.8em
}

.katex .fontsize-ensurer.reset-size1.size6,
.katex .sizing.reset-size1.size6 {
    font-size: 2em
}

.katex .fontsize-ensurer.reset-size1.size7,
.katex .sizing.reset-size1.size7 {
    font-size: 2.4em
}

.katex .fontsize-ensurer.reset-size1.size8,
.katex .sizing.reset-size1.size8 {
    font-size: 2.88em
}

.katex .fontsize-ensurer.reset-size1.size9,
.katex .sizing.reset-size1.size9 {
    font-size: 3.456em
}

.katex .fontsize-ensurer.reset-size1.size10,
.katex .sizing.reset-size1.size10 {
    font-size: 4.148em
}

.katex .fontsize-ensurer.reset-size1.size11,
.katex .sizing.reset-size1.size11 {
    font-size: 4.976em
}

.katex .fontsize-ensurer.reset-size2.size1,
.katex .sizing.reset-size2.size1 {
    font-size: .83333333em
}

.katex .fontsize-ensurer.reset-size2.size2,
.katex .sizing.reset-size2.size2 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size2.size3,
.katex .sizing.reset-size2.size3 {
    font-size: 1.16666667em
}

.katex .fontsize-ensurer.reset-size2.size4,
.katex .sizing.reset-size2.size4 {
    font-size: 1.33333333em
}

.katex .fontsize-ensurer.reset-size2.size5,
.katex .sizing.reset-size2.size5 {
    font-size: 1.5em
}

.katex .fontsize-ensurer.reset-size2.size6,
.katex .sizing.reset-size2.size6 {
    font-size: 1.66666667em
}

.katex .fontsize-ensurer.reset-size2.size7,
.katex .sizing.reset-size2.size7 {
    font-size: 2em
}

.katex .fontsize-ensurer.reset-size2.size8,
.katex .sizing.reset-size2.size8 {
    font-size: 2.4em
}

.katex .fontsize-ensurer.reset-size2.size9,
.katex .sizing.reset-size2.size9 {
    font-size: 2.88em
}

.katex .fontsize-ensurer.reset-size2.size10,
.katex .sizing.reset-size2.size10 {
    font-size: 3.45666667em
}

.katex .fontsize-ensurer.reset-size2.size11,
.katex .sizing.reset-size2.size11 {
    font-size: 4.14666667em
}

.katex .fontsize-ensurer.reset-size3.size1,
.katex .sizing.reset-size3.size1 {
    font-size: .71428571em
}

.katex .fontsize-ensurer.reset-size3.size2,
.katex .sizing.reset-size3.size2 {
    font-size: .85714286em
}

.katex .fontsize-ensurer.reset-size3.size3,
.katex .sizing.reset-size3.size3 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size3.size4,
.katex .sizing.reset-size3.size4 {
    font-size: 1.14285714em
}

.katex .fontsize-ensurer.reset-size3.size5,
.katex .sizing.reset-size3.size5 {
    font-size: 1.28571429em
}

.katex .fontsize-ensurer.reset-size3.size6,
.katex .sizing.reset-size3.size6 {
    font-size: 1.42857143em
}

.katex .fontsize-ensurer.reset-size3.size7,
.katex .sizing.reset-size3.size7 {
    font-size: 1.71428571em
}

.katex .fontsize-ensurer.reset-size3.size8,
.katex .sizing.reset-size3.size8 {
    font-size: 2.05714286em
}

.katex .fontsize-ensurer.reset-size3.size9,
.katex .sizing.reset-size3.size9 {
    font-size: 2.46857143em
}

.katex .fontsize-ensurer.reset-size3.size10,
.katex .sizing.reset-size3.size10 {
    font-size: 2.96285714em
}

.katex .fontsize-ensurer.reset-size3.size11,
.katex .sizing.reset-size3.size11 {
    font-size: 3.55428571em
}

.katex .fontsize-ensurer.reset-size4.size1,
.katex .sizing.reset-size4.size1 {
    font-size: .625em
}

.katex .fontsize-ensurer.reset-size4.size2,
.katex .sizing.reset-size4.size2 {
    font-size: .75em
}

.katex .fontsize-ensurer.reset-size4.size3,
.katex .sizing.reset-size4.size3 {
    font-size: .875em
}

.katex .fontsize-ensurer.reset-size4.size4,
.katex .sizing.reset-size4.size4 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size4.size5,
.katex .sizing.reset-size4.size5 {
    font-size: 1.125em
}

.katex .fontsize-ensurer.reset-size4.size6,
.katex .sizing.reset-size4.size6 {
    font-size: 1.25em
}

.katex .fontsize-ensurer.reset-size4.size7,
.katex .sizing.reset-size4.size7 {
    font-size: 1.5em
}

.katex .fontsize-ensurer.reset-size4.size8,
.katex .sizing.reset-size4.size8 {
    font-size: 1.8em
}

.katex .fontsize-ensurer.reset-size4.size9,
.katex .sizing.reset-size4.size9 {
    font-size: 2.16em
}

.katex .fontsize-ensurer.reset-size4.size10,
.katex .sizing.reset-size4.size10 {
    font-size: 2.5925em
}

.katex .fontsize-ensurer.reset-size4.size11,
.katex .sizing.reset-size4.size11 {
    font-size: 3.11em
}

.katex .fontsize-ensurer.reset-size5.size1,
.katex .sizing.reset-size5.size1 {
    font-size: .55555556em
}

.katex .fontsize-ensurer.reset-size5.size2,
.katex .sizing.reset-size5.size2 {
    font-size: .66666667em
}

.katex .fontsize-ensurer.reset-size5.size3,
.katex .sizing.reset-size5.size3 {
    font-size: .77777778em
}

.katex .fontsize-ensurer.reset-size5.size4,
.katex .sizing.reset-size5.size4 {
    font-size: .88888889em
}

.katex .fontsize-ensurer.reset-size5.size5,
.katex .sizing.reset-size5.size5 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size5.size6,
.katex .sizing.reset-size5.size6 {
    font-size: 1.11111111em
}

.katex .fontsize-ensurer.reset-size5.size7,
.katex .sizing.reset-size5.size7 {
    font-size: 1.33333333em
}

.katex .fontsize-ensurer.reset-size5.size8,
.katex .sizing.reset-size5.size8 {
    font-size: 1.6em
}

.katex .fontsize-ensurer.reset-size5.size9,
.katex .sizing.reset-size5.size9 {
    font-size: 1.92em
}

.katex .fontsize-ensurer.reset-size5.size10,
.katex .sizing.reset-size5.size10 {
    font-size: 2.30444444em
}

.katex .fontsize-ensurer.reset-size5.size11,
.katex .sizing.reset-size5.size11 {
    font-size: 2.76444444em
}

.katex .fontsize-ensurer.reset-size6.size1,
.katex .sizing.reset-size6.size1 {
    font-size: .5em
}

.katex .fontsize-ensurer.reset-size6.size2,
.katex .sizing.reset-size6.size2 {
    font-size: .6em
}

.katex .fontsize-ensurer.reset-size6.size3,
.katex .sizing.reset-size6.size3 {
    font-size: .7em
}

.katex .fontsize-ensurer.reset-size6.size4,
.katex .sizing.reset-size6.size4 {
    font-size: .8em
}

.katex .fontsize-ensurer.reset-size6.size5,
.katex .sizing.reset-size6.size5 {
    font-size: .9em
}

.katex .fontsize-ensurer.reset-size6.size6,
.katex .sizing.reset-size6.size6 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size6.size7,
.katex .sizing.reset-size6.size7 {
    font-size: 1.2em
}

.katex .fontsize-ensurer.reset-size6.size8,
.katex .sizing.reset-size6.size8 {
    font-size: 1.44em
}

.katex .fontsize-ensurer.reset-size6.size9,
.katex .sizing.reset-size6.size9 {
    font-size: 1.728em
}

.katex .fontsize-ensurer.reset-size6.size10,
.katex .sizing.reset-size6.size10 {
    font-size: 2.074em
}

.katex .fontsize-ensurer.reset-size6.size11,
.katex .sizing.reset-size6.size11 {
    font-size: 2.488em
}

.katex .fontsize-ensurer.reset-size7.size1,
.katex .sizing.reset-size7.size1 {
    font-size: .41666667em
}

.katex .fontsize-ensurer.reset-size7.size2,
.katex .sizing.reset-size7.size2 {
    font-size: .5em
}

.katex .fontsize-ensurer.reset-size7.size3,
.katex .sizing.reset-size7.size3 {
    font-size: .58333333em
}

.katex .fontsize-ensurer.reset-size7.size4,
.katex .sizing.reset-size7.size4 {
    font-size: .66666667em
}

.katex .fontsize-ensurer.reset-size7.size5,
.katex .sizing.reset-size7.size5 {
    font-size: .75em
}

.katex .fontsize-ensurer.reset-size7.size6,
.katex .sizing.reset-size7.size6 {
    font-size: .83333333em
}

.katex .fontsize-ensurer.reset-size7.size7,
.katex .sizing.reset-size7.size7 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size7.size8,
.katex .sizing.reset-size7.size8 {
    font-size: 1.2em
}

.katex .fontsize-ensurer.reset-size7.size9,
.katex .sizing.reset-size7.size9 {
    font-size: 1.44em
}

.katex .fontsize-ensurer.reset-size7.size10,
.katex .sizing.reset-size7.size10 {
    font-size: 1.72833333em
}

.katex .fontsize-ensurer.reset-size7.size11,
.katex .sizing.reset-size7.size11 {
    font-size: 2.07333333em
}

.katex .fontsize-ensurer.reset-size8.size1,
.katex .sizing.reset-size8.size1 {
    font-size: .34722222em
}

.katex .fontsize-ensurer.reset-size8.size2,
.katex .sizing.reset-size8.size2 {
    font-size: .41666667em
}

.katex .fontsize-ensurer.reset-size8.size3,
.katex .sizing.reset-size8.size3 {
    font-size: .48611111em
}

.katex .fontsize-ensurer.reset-size8.size4,
.katex .sizing.reset-size8.size4 {
    font-size: .55555556em
}

.katex .fontsize-ensurer.reset-size8.size5,
.katex .sizing.reset-size8.size5 {
    font-size: .625em
}

.katex .fontsize-ensurer.reset-size8.size6,
.katex .sizing.reset-size8.size6 {
    font-size: .69444444em
}

.katex .fontsize-ensurer.reset-size8.size7,
.katex .sizing.reset-size8.size7 {
    font-size: .83333333em
}

.katex .fontsize-ensurer.reset-size8.size8,
.katex .sizing.reset-size8.size8 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size8.size9,
.katex .sizing.reset-size8.size9 {
    font-size: 1.2em
}

.katex .fontsize-ensurer.reset-size8.size10,
.katex .sizing.reset-size8.size10 {
    font-size: 1.44027778em
}

.katex .fontsize-ensurer.reset-size8.size11,
.katex .sizing.reset-size8.size11 {
    font-size: 1.72777778em
}

.katex .fontsize-ensurer.reset-size9.size1,
.katex .sizing.reset-size9.size1 {
    font-size: .28935185em
}

.katex .fontsize-ensurer.reset-size9.size2,
.katex .sizing.reset-size9.size2 {
    font-size: .34722222em
}

.katex .fontsize-ensurer.reset-size9.size3,
.katex .sizing.reset-size9.size3 {
    font-size: .40509259em
}

.katex .fontsize-ensurer.reset-size9.size4,
.katex .sizing.reset-size9.size4 {
    font-size: .46296296em
}

.katex .fontsize-ensurer.reset-size9.size5,
.katex .sizing.reset-size9.size5 {
    font-size: .52083333em
}

.katex .fontsize-ensurer.reset-size9.size6,
.katex .sizing.reset-size9.size6 {
    font-size: .5787037em
}

.katex .fontsize-ensurer.reset-size9.size7,
.katex .sizing.reset-size9.size7 {
    font-size: .69444444em
}

.katex .fontsize-ensurer.reset-size9.size8,
.katex .sizing.reset-size9.size8 {
    font-size: .83333333em
}

.katex .fontsize-ensurer.reset-size9.size9,
.katex .sizing.reset-size9.size9 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size9.size10,
.katex .sizing.reset-size9.size10 {
    font-size: 1.20023148em
}

.katex .fontsize-ensurer.reset-size9.size11,
.katex .sizing.reset-size9.size11 {
    font-size: 1.43981481em
}

.katex .fontsize-ensurer.reset-size10.size1,
.katex .sizing.reset-size10.size1 {
    font-size: .24108004em
}

.katex .fontsize-ensurer.reset-size10.size2,
.katex .sizing.reset-size10.size2 {
    font-size: .28929605em
}

.katex .fontsize-ensurer.reset-size10.size3,
.katex .sizing.reset-size10.size3 {
    font-size: .33751205em
}

.katex .fontsize-ensurer.reset-size10.size4,
.katex .sizing.reset-size10.size4 {
    font-size: .38572806em
}

.katex .fontsize-ensurer.reset-size10.size5,
.katex .sizing.reset-size10.size5 {
    font-size: .43394407em
}

.katex .fontsize-ensurer.reset-size10.size6,
.katex .sizing.reset-size10.size6 {
    font-size: .48216008em
}

.katex .fontsize-ensurer.reset-size10.size7,
.katex .sizing.reset-size10.size7 {
    font-size: .57859209em
}

.katex .fontsize-ensurer.reset-size10.size8,
.katex .sizing.reset-size10.size8 {
    font-size: .69431051em
}

.katex .fontsize-ensurer.reset-size10.size9,
.katex .sizing.reset-size10.size9 {
    font-size: .83317261em
}

.katex .fontsize-ensurer.reset-size10.size10,
.katex .sizing.reset-size10.size10 {
    font-size: 1em
}

.katex .fontsize-ensurer.reset-size10.size11,
.katex .sizing.reset-size10.size11 {
    font-size: 1.19961427em
}

.katex .fontsize-ensurer.reset-size11.size1,
.katex .sizing.reset-size11.size1 {
    font-size: .20096463em
}

.katex .fontsize-ensurer.reset-size11.size2,
.katex .sizing.reset-size11.size2 {
    font-size: .24115756em
}

.katex .fontsize-ensurer.reset-size11.size3,
.katex .sizing.reset-size11.size3 {
    font-size: .28135048em
}

.katex .fontsize-ensurer.reset-size11.size4,
.katex .sizing.reset-size11.size4 {
    font-size: .32154341em
}

.katex .fontsize-ensurer.reset-size11.size5,
.katex .sizing.reset-size11.size5 {
    font-size: .36173633em
}

.katex .fontsize-ensurer.reset-size11.size6,
.katex .sizing.reset-size11.size6 {
    font-size: .40192926em
}

.katex .fontsize-ensurer.reset-size11.size7,
.katex .sizing.reset-size11.size7 {
    font-size: .48231511em
}

.katex .fontsize-ensurer.reset-size11.size8,
.katex .sizing.reset-size11.size8 {
    font-size: .57877814em
}

.katex .fontsize-ensurer.reset-size11.size9,
.katex .sizing.reset-size11.size9 {
    font-size: .69453376em
}

.katex .fontsize-ensurer.reset-size11.size10,
.katex .sizing.reset-size11.size10 {
    font-size: .83360129em
}

.katex .fontsize-ensurer.reset-size11.size11,
.katex .sizing.reset-size11.size11 {
    font-size: 1em
}

.katex .delimsizing.size1 {
    font-family: KaTeX_Size1
}

.katex .delimsizing.size2 {
    font-family: KaTeX_Size2
}

.katex .delimsizing.size3 {
    font-family: KaTeX_Size3
}

.katex .delimsizing.size4 {
    font-family: KaTeX_Size4
}

.katex .delimsizing.mult .delim-size1>span {
    font-family: KaTeX_Size1
}

.katex .delimsizing.mult .delim-size4>span {
    font-family: KaTeX_Size4
}

.katex .nulldelimiter {
    display: inline-block;
    width: .12em
}

.katex .delimcenter,
.katex .op-symbol {
    position: relative
}

.katex .op-symbol.small-op {
    font-family: KaTeX_Size1
}

.katex .op-symbol.large-op {
    font-family: KaTeX_Size2
}

.katex .accent>.vlist-t,
.katex .op-limits>.vlist-t {
    text-align: center
}

.katex .accent .accent-body {
    position: relative
}

.katex .accent .accent-body:not(.accent-full) {
    width: 0
}

.katex .overlay {
    display: block
}

.katex .mtable .vertical-separator {
    display: inline-block;
    min-width: 1px
}

.katex .mtable .arraycolsep {
    display: inline-block
}

.katex .mtable .col-align-c>.vlist-t {
    text-align: center
}

.katex .mtable .col-align-l>.vlist-t {
    text-align: left
}

.katex .mtable .col-align-r>.vlist-t {
    text-align: right
}

.katex .svg-align {
    text-align: left
}

.katex svg {
    fill: currentColor;
    stroke: currentColor;
    fill-rule: nonzero;
    fill-opacity: 1;
    stroke-width: 1;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    stroke-miterlimit: 4;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    stroke-opacity: 1;
    display: block;
    height: inherit;
    position: absolute;
    width: 100%
}

.katex svg path {
    stroke: none
}

.katex img {
    border-style: none;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0
}

.katex .stretchy {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%
}

.katex .stretchy:after,
.katex .stretchy:before {
    content: ""
}

.katex .hide-tail {
    overflow: hidden;
    position: relative;
    width: 100%
}

.katex .halfarrow-left {
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 50.2%
}

.katex .halfarrow-right {
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 50.2%
}

.katex .brace-left {
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 25.1%
}

.katex .brace-center {
    left: 25%;
    overflow: hidden;
    position: absolute;
    width: 50%
}

.katex .brace-right {
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 25.1%
}

.katex .x-arrow-pad {
    padding: 0 .5em
}

.katex .cd-arrow-pad {
    padding: 0 .55556em 0 .27778em
}

.katex .mover,
.katex .munder,
.katex .x-arrow {
    text-align: center
}

.katex .boxpad {
    padding: 0 .3em
}

.katex .fbox,
.katex .fcolorbox {
    border: .04em solid;
    box-sizing: border-box
}

.katex .cancel-pad {
    padding: 0 .2em
}

.katex .cancel-lap {
    margin-left: -.2em;
    margin-right: -.2em
}

.katex .sout {
    border-bottom-style: solid;
    border-bottom-width: .08em
}

.katex .angl {
    border-right: .049em solid;
    border-top: .049em solid;
    box-sizing: border-box;
    margin-right: .03889em
}

.katex .anglpad {
    padding: 0 .03889em
}

.katex .eqn-num:before {
    content: "(" counter(katexEqnNo) ")";
    counter-increment: katexEqnNo
}

.katex .mml-eqn-num:before {
    content: "(" counter(mmlEqnNo) ")";
    counter-increment: mmlEqnNo
}

.katex .mtr-glue {
    width: 50%
}

.katex .cd-vert-arrow {
    display: inline-block;
    position: relative
}

.katex .cd-label-left {
    display: inline-block;
    position: absolute;
    right: calc(50% + .3em);
    text-align: left
}

.katex .cd-label-right {
    display: inline-block;
    left: calc(50% + .3em);
    position: absolute;
    text-align: right
}

.katex-display {
    display: block;
    margin: 1em 0;
    text-align: center
}

.katex-display>.katex {
    display: block;
    text-align: center;
    white-space: nowrap
}

.katex-display>.katex>.katex-html {
    display: block;
    position: relative
}

.katex-display>.katex>.katex-html>.tag {
    position: absolute;
    right: 0
}

.katex-display.leqno>.katex>.katex-html>.tag {
    left: 0;
    right: auto
}

.katex-display.fleqn>.katex {
    padding-left: 2em;
    text-align: left
}

body {
    counter-reset: katexEqnNo mmlEqnNo
}

.static-tweet {
    --colors-blue: #0c00ff;
    --colors-purple: #be00ff;

    --accents-1: #fafafa;
    --accents-2: #eaeaea;
    --accents-3: #999999;
    --accents-4: #888888;
    --accents-5: #666666;

    --bg-color: #fff;
    --link-color: var(--colors-blue);
    --poll-bar-color: var(--colors-blue);
    --inline-code-color: var(--colors-purple);
    --code-color: #9efeff;
    --code-bg-color: #1e1e3f;

    --text-margin: 1.25rem 0;
    --container-margin: 0.5rem 0;
    --poll-margin: 1.5rem 1rem;
    --heading-margin-top: 3.5rem;
    --heading-margin-bottom: 2rem;
    --li-margin: 0 0 0.5rem 0;

    /* Embedded tweet */
    --tweet-font: normal normal 16px/1.4 Helvetica, Roboto, "Segoe UI", Calibri,
        sans-serif;
    --tweet-font-color: #1c2022;
    --tweet-bg-color: #fff;
    --tweet-border: 1px solid #e1e8ed;
    --tweet-border-hover: 1px solid #ccd6dd;
    --tweet-link-color: #2b7bb9;
    --tweet-link-color-hover: #3b94d9;
    --tweet-color-gray: #697882;
    --tweet-color-red: #e02460;
}

.static-tweet {
    width: 100%;
    max-width: 550px;
    min-width: 220px;
}

.static-tweet-caption {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin: 0;
    margin-top: 10px;
    padding: 0;
}

.static-tweet-anchor {
    color: var(--tweet-link-color);
    text-decoration: none;
}

@media (any-hover: hover) {
    .static-tweet-anchor:hover {
        text-decoration: underline;
    }
}

.static-tweet code {
    font-size: 14px;
    font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
        Bitstream Vera Sans Mono, Courier New, monospace, serif;
}

.static-tweet code.inline {
    color: var(--inline-code-color);
    font-size: 1rem;
    white-space: pre-wrap;
}

.static-tweet pre {
    color: var(--code-color);
    background: var(--code-bg-color);
    padding: 1.25rem;
    margin: var(--container-margin);
    white-space: pre;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.static-tweet .image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    margin: var(--container-margin);
}

.static-tweet .image-count-3> :global(:first-child) {
    grid-row-end: span 2;
}

.static-tweet .gif-container,
.static-tweet .video-container {
    margin: var(--container-margin);
}

.static-tweet .gif-container> :global(video),
.static-tweet .video-container> :global(video) {
    width: 100%;
    max-height: 500px;
}

.static-tweet-permalink span[id] {
    display: block;
    position: absolute;
    visibility: hidden;
    margin-top: calc(-1 * var(--heading-margin-top));
    padding-top: var(--heading-margin-top);
}

.static-tweet-permalink a {
    color: inherit;
    text-decoration: none;
}

@media (any-hover: hover) {
    .static-tweet-permalink a:hover {
        color: inherit;
        border-bottom: 1px solid;
    }

    .static-tweet-permalink a:hover~.permalink {
        visibility: visible;
    }
}

.static-tweet-permalink .permalink {
    visibility: hidden;
    display: none;
    font-weight: 500;
}

@media screen and (min-width: 992px) {
    .static-tweet-permalink a {
        margin-right: 0.5rem;
    }

    .static-tweet-permalink .permalink {
        display: inline-block;
    }
}

.static-tweet-h1,
.static-tweet-h2,
.static-tweet-h3,
.static-tweet-h4,
.static-tweet-h5,
.static-tweet-h6 {
    font-weight: 600;
    margin: var(--heading-margin-top) 0 var(--heading-margin-bottom) 0;
}

.static-tweet-h1 {
    font-size: 2rem;
}

.static-tweet-h2 {
    font-size: 1.75rem;
}

.static-tweet-h3 {
    font-size: 1.5rem;
}

.static-tweet-h4 {
    font-size: 1.25rem;
}

.static-tweet-h5 {
    font-size: 1rem;
}

.static-tweet-h6 {
    font-size: 0.875rem;
}

.static-tweet ul {
    margin: var(--text-margin);
    list-style-type: none;
    padding-left: 1rem;
}

.static-tweet ul li:before {
    content: "-";
    color: var(--accents-3);
    position: absolute;
    margin-left: -1rem;
}

.static-tweet ol {
    margin: var(--text-margin);
    padding-left: 1rem;
}

.static-tweet li {
    padding-left: 0;
    margin: var(--li-margin);
}

.static-tweet-summary {
    position: relative;
    box-sizing: border-box;
}

.static-tweet-details {
    height: 100%;
    overflow: hidden;
}

.static-tweet-summary {
    position: relative;
    height: 100%;
    list-style: none;
}

.static-tweet-summary::marker {
    display: none;
}

.static-tweet-table-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: var(--container-margin);
}

.static-tweet-table-container table {
    display: block;
    overflow: auto;
    border-collapse: collapse;
}

.static-tweet-table-container th {
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--accents-2);
}

.static-tweet-table-container td {
    padding: 0.5rem 0.875rem;
    border: 1px solid var(--accents-2);
}

.static-tweet-p {
    margin: var(--text-margin);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.static-tweet blockquote {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

.static-tweet-blockquote {
    background: var(--accents-1);
    color: var(--accents-5);
    border: 1px solid var(--accents-2);
    margin: var(--container-margin);
    padding: 0 1.25rem;
}

.static-tweet-hr {
    border: 0;
    border-top: 1px solid var(--accents-2);
    margin: var(--text-margin);
}

.static-tweet-twitter-link,
.static-tweet-twitter-link s {
    text-decoration: none;
}

@media (any-hover: hover) {
    .static-tweet-twitter-link:hover {
        text-decoration: underline;
    }
}

.static-tweet-emoji {
    height: 1.2em !important;
    width: 1.2em !important;
    margin: 0 2px;
    vertical-align: -3px;
}

.static-tweet-poll {
    margin: var(--poll-margin);
}

.static-tweet-options {
    display: grid;
    grid-template-columns: max-content 14rem max-content;
    align-items: center;
    grid-gap: 1rem;
    overflow: auto;
}

.static-tweet-label {
    overflow: auto;
    text-align: right;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.static-tweet-chart {
    height: 100%;
    background: var(--poll-bar-color);
}

.static-tweet-poll hr {
    border: 0;
    border-top: 1px solid var(--accents-2);
    margin: 1rem 0 0.5rem 0;
}

.static-tweet-footer {
    display: flex;
    font-size: 0.875rem;
    color: var(--accents-4);
}

.static-tweet-votes-count {
    flex-grow: 1;
}

@media screen and (max-width: 450px) {
    .static-tweet-options {
        grid-template-columns: max-content 7rem max-content;
    }
}

.static-tweet-info a {
    text-decoration: none;
}

.static-tweet-info {
    font-size: 0.875rem;
    display: flex;
}

.static-tweet-like {
    display: flex;
    color: var(--tweet-color-gray);
    margin-right: 0.75rem;
}

.static-tweet-like:visited {
    color: var(--tweet-link-color);
}

@media (any-hover: hover) {
    .static-tweet-like:hover {
        color: var(--tweet-color-red);
    }

    .static-tweet-like:hover .static-tweet-icon-heart {
        background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23E0245E%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E);
    }
}

.static-tweet-icon-heart {
    width: 1.25em;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%23697882%22%20d%3D%22M12%2021.638h-.014C9.403%2021.59%201.95%2014.856%201.95%208.478c0-3.064%202.525-5.754%205.403-5.754%202.29%200%203.83%201.58%204.646%202.73.813-1.148%202.353-2.73%204.644-2.73%202.88%200%205.404%202.69%205.404%205.755%200%206.375-7.454%2013.11-10.037%2013.156H12zM7.354%204.225c-2.08%200-3.903%201.988-3.903%204.255%200%205.74%207.035%2011.596%208.55%2011.658%201.52-.062%208.55-5.917%208.55-11.658%200-2.267-1.822-4.255-3.902-4.255-2.528%200-3.94%202.936-3.952%202.965-.23.562-1.156.562-1.387%200-.015-.03-1.426-2.965-3.955-2.965z%22%2F%3E%3C%2Fsvg%3E);
}

.static-tweet-likes {
    margin-left: 0.25rem;
}

.static-tweet-time {
    display: block;
    flex: 1;
    color: var(--tweet-color-gray);
}

@media (any-hover: hover) {

    .static-tweet-time:hover,
    .static-tweet-time:focus {
        color: var(--tweet-link-color-hover);
    }

    .static-tweet-time:focus {
        text-decoration: underline;
    }
}

.static-tweet-body {
    color: var(--tweet-font-color);
    font: var(--tweet-font);
    overflow: hidden;
    background: var(--tweet-bg-color);
    border: var(--tweet-border);
    border-radius: 5px;
}

@media (any-hover: hover) {
    .static-tweet-body:hover {
        border: var(--tweet-border-hover);
    }
}

.static-tweet-body-blockquote {
    position: relative;
    padding: 1.25rem 1.25rem 0.625rem 1.25rem;
}

.static-tweet-icon {
    display: inline-block;
    height: 1.25em;
    vertical-align: text-bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.static-tweet-header {
    display: flex;
}

.static-tweet-header-avatar {
    height: 2.25rem;
    width: 2.25rem;
    margin-right: 0.625rem;
}

.static-tweet-header-author {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

@media (any-hover: hover) {
    .static-tweet-header-author:hover {
        color: var(--tweet-link-color-hover);
    }
}

.static-tweet-header-name,
.static-tweet-header-username {
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: black;
}

.static-tweet-header-name {
    font-weight: 700;
}

.static-tweet-header-username {
    color: var(--tweet-color-gray);
    font-size: 0.875rem;
}

.static-tweet-header-brand {
    margin-left: auto;
}

.static-tweet-header-icon-twitter {
    display: inline-block;
    height: 1.25em;
    vertical-align: text-bottom;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.25em;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2072%2072%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h72v72H0z%22%2F%3E%3Cpath%20class%3D%22icon%22%20fill%3D%22%231da1f2%22%20d%3D%22M68.812%2015.14c-2.348%201.04-4.87%201.744-7.52%202.06%202.704-1.62%204.78-4.186%205.757-7.243-2.53%201.5-5.33%202.592-8.314%203.176C56.35%2010.59%2052.948%209%2049.182%209c-7.23%200-13.092%205.86-13.092%2013.093%200%201.026.118%202.02.338%202.98C25.543%2024.527%2015.9%2019.318%209.44%2011.396c-1.125%201.936-1.77%204.184-1.77%206.58%200%204.543%202.312%208.552%205.824%2010.9-2.146-.07-4.165-.658-5.93-1.64-.002.056-.002.11-.002.163%200%206.345%204.513%2011.638%2010.504%2012.84-1.1.298-2.256.457-3.45.457-.845%200-1.666-.078-2.464-.23%201.667%205.2%206.5%208.985%2012.23%209.09-4.482%203.51-10.13%205.605-16.26%205.605-1.055%200-2.096-.06-3.122-.184%205.794%203.717%2012.676%205.882%2020.067%205.882%2024.083%200%2037.25-19.95%2037.25-37.25%200-.565-.013-1.133-.038-1.693%202.558-1.847%204.778-4.15%206.532-6.774z%22%2F%3E%3C%2Fsvg%3E);
}

.static-tweet-header-rounded {
    border-radius: 50%;
}

.static-tweet-skeleton {
    display: block;
    width: 100%;
    border-radius: 5px;

    background-image: linear-gradient(270deg,
            var(--accents-1),
            var(--accents-2),
            var(--accents-2),
            var(--accents-1));
    background-size: 400% 100%;
    animation: static-tweet-skeleton-loading 8s ease-in-out infinite;
}

@keyframes static-tweet-skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.static-tweet-skeleton-container {
    background: var(--tweet-bg-color);
    border: var(--tweet-border);
    border-radius: 5px;
}

.static-tweet-skeleton-content {
    padding: 1.25rem 1.25rem 0.625rem 1.25rem;
}

.static-tweet-skeleton-footer {
    height: 2.5rem;
    padding: 0.625rem 1.25rem;
    border-top: var(--tweet-border);
}



:root {
    --color-primary: #000000 !important;
    --secondary-font: 'Manrope', sans-serif !important;
    --color-white: #FAEED7 !important;
}

h1.notion-heading {
    margin: auto;
    margin-top: -5em;
    margin-bottom: 5em;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 400 !important;
    font-size: 3em !important;
}

@media (max-width: 768px) {
    h1.notion-heading {
        position: absolute;
        text-align: center;
        width: 100%;
        /* margin-top: -3.5em; */
    }
}

html.theme-light {
    /* Gray */
    --gray-h: 36;
    --gray-s: 2%;
    --gray-l: 46%;
    --color-gray: hsl(var(--gray-h), var(--gray-s), var(--gray-l));
    --color-text-gray: var(--color-gray);
    --color-bg-gray: hsl(var(--gray-h),
            var(--gray-s),
            90%);
    --color-bg-gray-light: var(--color-bg-gray);
    --color-pill-gray: hsl(calc(var(--gray-h) + 14),
            var(--gray-s),
            88%);
    --color-pill-text-gray: hsl(var(--gray-h),
            var(--gray-s),
            calc(var(--gray-l) - 28%));

    /* Brown */
    --brown-h: 19;
    --brown-s: 31%;
    --brown-l: 47%;
    --color-brown: hsl(var(--brown-h), var(--brown-s), var(--brown-l));
    --color-text-brown: var(--color-brown);
    --color-bg-brown: hsl(var(--brown-h),
            var(--brown-s),
            90%);
    --color-bg-brown-light: var(--color-bg-brown);
    --color-pill-brown: hsl(var(--brown-h),
            calc(var(--brown-s) + 10%),
            89%);
    --color-pill-text-brown: hsl(var(--brown-h),
            calc(var(--brown-s) + 10%),
            calc(var(--brown-l) - 28%));

    /* Orange */
    --orange-h: 30;
    --orange-s: 87%;
    --orange-l: 45%;
    --color-orange: hsl(var(--orange-h),
            var(--orange-s),
            var(--orange-l));
    --color-text-orange: var(--color-orange);
    --color-bg-orange: hsl(var(--orange-h),
            var(--orange-s),
            90%);
    --color-bg-orange-light: var(--color-bg-orange);
    --color-pill-orange: hsl(var(--orange-h),
            calc(var(--orange-s) - 6%),
            87%);
    --color-pill-text-orange: hsl(calc(var(--orange-h) - 5),
            calc(var(--orange-s) - 18%),
            calc(var(--orange-l) - 28%));

    /* Yellow */
    --yellow-h: 38;
    --yellow-s: 62%;
    --yellow-l: 49%;
    --color-yellow: hsl(var(--yellow-h),
            var(--yellow-s),
            var(--yellow-l));
    --color-text-yellow: var(--color-yellow);
    --color-bg-yellow: hsl(var(--yellow-h),
            calc(var(--yellow-s) + 90%),
            90%);
    --color-bg-yellow-light: var(--color-bg-yellow);
    --color-pill-yellow: hsl(calc(var(--yellow-h) + 3),
            calc(var(--yellow-s) + 24%),
            90%);
    --color-pill-text-yellow: hsl(calc(var(--yellow-h) - 11),
            calc(var(--yellow-s) - 22%),
            calc(var(--yellow-l) - 28%));

    /* Green */
    --green-h: 149;
    --green-s: 31%;
    --green-l: 39%;
    --color-green: hsl(var(--green-h), var(--green-s), var(--green-l));
    --color-text-green: var(--color-green);
    --color-bg-green: hsl(var(--green-h),
            var(--green-s),
            90%);
    --color-bg-green-light: var(--color-bg-green);
    --color-pill-green: hsl(calc(var(--green-h) - 28),
            calc(var(--green-s) + 3%),
            89%);
    --color-pill-text-green: hsl(calc(var(--green-h) - 2),
            var(--green-s),
            calc(var(--green-l) - 22%));

    /* Blue */
    --blue-h: 202;
    --blue-s: 53%;
    --blue-l: 43%;
    --color-blue: hsl(var(--blue-h), var(--blue-s), var(--blue-l));
    --color-text-blue: var(--color-blue);
    --color-bg-blue: hsl(var(--blue-h),
            var(--blue-s),
            90%);
    --color-bg-blue-light: var(--color-bg-blue);
    --color-pill-blue: hsl(var(--blue-h),
            calc(var(--blue-s) - 5%),
            85%);
    --color-pill-text-blue: hsl(calc(var(--blue-h) + 7),
            calc(var(--blue-s) - 6%),
            calc(var(--blue-l) - 22%));

    /* Purple */
    --purple-h: 274;
    --purple-s: 32%;
    --purple-l: 54%;
    --color-purple: hsl(var(--purple-h),
            var(--purple-s),
            var(--purple-l));
    --color-text-purple: var(--color-purple);
    --color-bg-purple: hsl(var(--purple-h),
            var(--purple-s),
            90%);
    --color-bg-purple-light: var(--color-bg-purple);
    --color-pill-purple: hsl(var(--purple-h),
            calc(var(--purple-s) + 5%),
            90%);
    --color-pill-text-purple: hsl(calc(var(--purple-h) + 1),
            calc(var(--purple-s) + 10%),
            calc(var(--purple-l) - 31%));

    /* Pink */
    --pink-h: 328;
    --pink-s: 48%;
    --pink-l: 53%;
    --color-pink: hsl(var(--pink-h), var(--pink-s), var(--pink-l));
    --color-text-pink: var(--color-pink);
    --color-bg-pink: hsl(var(--pink-h),
            var(--pink-s),
            90%);
    --color-bg-pink-light: var(--color-bg-pink);
    --color-pill-pink: hsl(var(--pink-h),
            var(--pink-s),
            90%);
    --color-pill-text-pink: hsl(calc(var(--pink-h) + 3),
            calc(var(--pink-s) - 14%),
            calc(var(--pink-l) - 31%));

    /* Red */
    --red-h: 2;
    --red-s: 62%;
    --red-l: 55%;
    --color-red: hsl(var(--red-h), var(--red-s), var(--red-l));
    --color-text-red: var(--color-red);
    --color-bg-red: hsl(var(--red-h),
            var(--red-s),
            90%);
    --color-bg-red-light: var(--color-bg-red);
    --color-pill-red: hsl(calc(var(--red-h) + 6),
            calc(var(--red-s) + 42%),
            90%);
    --color-pill-text-red: hsl(calc(var(--red-h) + 0),
            var(--red-s),
            calc(var(--red-l) - 32%));

    /*Default*/
    --default-h: 45;
    --default-s: 8%;
    --default-l: 20%;
    --color-default: hsl(var(--default-h),
            var(--default-s),
            var(--default-l));
    --color-pill-default: hsl(var(--gray-h),
            var(--gray-s),
            90%);
    --color-pill-text-default: hsl(var(--gray-h),
            var(--gray-s),
            calc(var(--gray-l) - 28%));

    /*Other*/
    --color-text-default: #37352F;
    --color-text-default-light: #7d7c78;
    --color-bg-default: #ffffff;
    --color-border-default: #E9E9E7;
    --color-border-dark: var(--color-border-default);
    --color-ui-hover-bg: #efefef;
    --color-card-bg: #ffffff;
    --color-card-bg-hover: #f9f9f8;
    --color-calendar-weekend-bg: #f7f6f3;
    --color-checkbox-bg: #2EAADC;
    --color-code-bg: #efefef;

    /*Scrollbar*/
    --scrollbar-background-color: #FAFAFA;
    --scrollbar-thumb-color: #C1C1C1;
    --scrollbar-border-color: #E8E8E8;

    /*Navbar*/
    --navbar-text-color: #37352F;
    --navbar-list-item-hover: rgba(130, 130, 130, 0.09);
    --navbar-background-color-dark: #f0f0f0;
    --navbar-background-color: #ffffff;
    --navbar-button-text-color: #ffffff;
    --navbar-button-background-color: #37352F;
    --navbar-menu-background-color: var(--navbar-background-color);

    /*Footer*/
    --footer-text-color: #37352F;
    --footer-background-color: #ffffff;
}

:root {
    /* Layout */
    --padding-layout: 0.6rem;
    --border-radii-layout: 5px;
    --border-thickness-layout: 1px;
    --border-type-layout: solid;
    --border-layout: var(--border-thickness-layout) var(--border-type-layout) var(--color-border-default);
    --layout-max-width: 900px;
    --column-spacing: 46px;
    --page-display: unset;
    --padding-right: calc(env(safe-area-inset-right) + 96px);
    --padding-left: calc(env(safe-area-inset-left) + 96px);
    --padding-right-mobile: calc(env(safe-area-inset-right) + 24px);
    --padding-left-mobile: calc(env(safe-area-inset-left) + 24px);

    /* Header */
    --header-cover-height: 30vh;
    --header-title-align: left;
    --header-icon-align: -112px auto auto auto;
    --header-display: block;

    /* Collection header */
    --collection-header-border: var(--border-layout);

    /* Collection table */
    --collection-table-cell-padding: calc(var(--padding-layout) - 0.3rem) calc(var(--padding-layout) - 0.1rem);

    /* Collection list */
    --collection-list-item-padding: calc(var(--padding-layout) - 0.5rem);
    --collection-list-item-border-radii: calc(var(--border-radii-layout) - 1px);

    /* Collection card */
    --collection-card-padding: 0px;
    --collection-card-title-padding: 0px;
    --collection-card-content-padding: var(--padding-layout);
    --collection-card-border-radii: var(--border-radii-layout);
    --collection-card-gap: 10px;
    --collection-card-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 2px 4px;
    --collection-card-title-size: 0.875rem;
    --collection-card-cover-height-small: 128px;
    --collection-card-cover-size-small: 172px;
    --collection-card-cover-height-medium: 200px;
    --collection-card-cover-size-medium: 260px;
    --collection-card-cover-height-large: 200px;
    --collection-card-cover-size-large: 320px;
    --collection-card-icon-display: inline-flex;

    /* Callout */
    --callout-padding: calc(var(--padding-layout) + 0.4rem) calc(var(--padding-layout) + 0.4rem) calc(var(--padding-layout) + 0.4rem) calc(var(--padding-layout) + 0.1em);
    --callout-border-radii: calc(var(--border-radii-layout) - 2px);
    --callout-border: var(--border-layout);
    --callout-icon-display: block;
    --callout-shadow: none;

    /* File */
    --file-border-radii: calc(var(--border-radii-layout) - 2px);

    /* Equation */
    --equation-border-radii: calc(var(--border-radii-layout) - 2px);

    /* Divider */
    --divider-border: var(--border-layout);

    /* Quote */
    --quote-border: calc(var(--border-thickness-layout) + 2px) solid currentcolor;

    /* Code */
    --code-padding: calc(var(--padding-layout) + 1.4rem);
    --code-border-radii: var(--border-radii-layout);

    /* Tweet */
    --tweet-padding: calc(var(--padding-layout) + 0.65rem) calc(var(--padding-layout) + 0.65rem) calc(var(--padding-layout) + 0.05rem) calc(var(--padding-layout) + 0.65rem);
    --tweet-border-radii: var(--border-radii-layout);
    --tweet-border: var(--border-layout);

    /* Bookmark */
    --bookmark-padding: calc(var(--padding-layout) + 0.15rem) 0px calc(var(--padding-layout) + 0.025rem) calc(var(--padding-layout) + 0.275rem);
    --bookmark-border-radii: var(--border-radii-layout);
    --bookmark-border: var(--border-layout);
    --bookmark-image-border-radii: 0px calc(var(--border-radii-layout) - 1px) calc(var(--border-radii-layout) - 1px) 0px;

    /* Embed */
    --embed-border-radii: calc(var(--border-radii-layout) - 5px);

    /* Image */
    --image-border-radii: calc(var(--border-radii-layout) - 5px);

    /* Typography */
    --title-size: 2.5rem;
    --quote-size: 1.2rem;
    --quote-size-large: 1.4rem;
    --heading-size: 1rem;
    --primary-font: Inter, Inter-fallback, Helvetica,
        Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Noto Color Emoji,
        Segoe UI Symbol, Android Emoji, EmojiSymbols, -apple-system,
        BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Noto Sans,
        sans-serif;
    --secondary-font: Inter, Inter-fallback, Helvetica,
        Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Noto Color Emoji,
        Segoe UI Symbol, Android Emoji, EmojiSymbols, -apple-system,
        BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Noto Sans,
        sans-serif;
    --text-weight: 400;
    --heading-weight: 600;
    --heading1-size: calc(var(--heading-size) * 1.875);
    --heading2-size: calc(var(--heading-size) * 1.5);
    --heading3-size: calc(var(--heading-size) * 1.25);
    --heading4-size: calc(var(--heading-size) * 1);
    --heading5-size: calc(var(--heading-size) * 0.8125);

    /* Scrollbars */
    --scrollbar-width: 15px;

    /* Navbar */
    --navbar-height: 56px;
    --navbar-shadow: rgba(0, 0, 0, 0.12) 0px 10px 20px -6px;
    --navbar-button-border-radii: 50px;
    --navbar-list-width-single-column: 360px;
    --navbar-list-width: 660px;
}

html {
    font-size: 17px;
    scroll-padding-top: 62px;
}

body {
    font-family: var(--secondary-font);
}

  /* **** START CUSTOM STYLING HERE FOR HAMBURGER MENU  ****/

  .super-navbar__button svg 
  {
    color:black;
  }

  .super-navbar__item-list_wrapper 
  {
    padding-top:0 !important;
  }

  .super-navbar__item-list_wrapper.mobile ul 
  {
    padding-bottom:2em !important;
  }

  .mobile.super-navbar__logo {
    position: absolute;
    height: 38.51px;
    margin: 1.2rem 0.1rem 0rem 0rem;
    width: 100%;
  }
  .mobile.super-navbar__actions {
    width: 100%;
    height:80px;
  }
  .mobile.super-navbar__content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    top: 0;
    position: absolute;
    }

  .mobile.super-navbar__content :nth-child(2) { order: 1; }
  .mobile.super-navbar__content ul :nth-child(2) { order: 0; } /* ┬─┬ノ(ಠ_ಠノ) */

  .mobile.super-navbar__item-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--color-primary);
    width: 100vw;
    line-height: 3;
    }
  .mobile.super-navbar__content > div:has(.super-navbar__item-list) {
    display: block;
  }
  
  .mobile.super-navbar__item-list_wrapper {
    padding-top: 1.5rem;
  }
  /* @media (min-width: 500px) {
    .super-navbar__content > div:has(.super-navbar__item-list) {
    /* display: none; */
    /* } */
  /* } */
  
  @media (max-width: 860px) {
  .super-navbar__content > div:has(.super-navbar__item-list) {
    display: none;
    }
  }