/* new */

button {
    text-align: left
}

html {
    -webkit-locale: auto;
    box-sizing: border-box;
}

*,
:after,
:before {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box
}

body,
button,
div,
h1,
h2,
ol,
p,
ul {
    border: 0;
    margin: 0;
    padding: 0
}

body {
    background: #fff;
    line-height: 1
}

ol,
ul {
    list-style: none
}

a {
    color: inherit;
    text-decoration: none;
}

a, a:visited, a:hover, a:active {
    user-select: none;
}

a:hover {
    text-decoration: none;
}

a:focus:not(:focus-visible) {
    outline: 0
}

button {
    background-color: transparent;
    cursor: pointer
}

:root {
    --color-black-05: rgba(0, 0, 0, .24);
    --color-black-04: rgba(0, 0, 0, .14);
    --color-grey-01: #fafafa;
    --color-grey-02: #f2f2f2;
    --color-grey-04: #dedede;
    --color-grey-07: #575757;
    --color-grey-08: #1f1f1f;
    --color-blue-01: #3090f0;
    --color-blue-02: #389afc;
    --color-red-04: #e44232;
    --color-td-primary: #e44232;
    --color-td-secondary-light: #f3f9ff;
    --radius-md: 4px;
    --radius-lg: 8px;
    --space-4: 0.25rem;
    --space-8: 0.5rem;
    --space-12: 0.75rem;
    --space-16: 1rem;
    --space-24: 1.5rem;
    --space-32: 2rem;
    --space-48: 3rem;
    --space-64: 4rem;
    --space-128: 8rem;
    --shadow-xl: 0px 4px 64px rgba(0, 0, 0, .35);
    --shadow-focus: 0 0 0 1px #1f60c2, 0 0 0 4px #dceaff;
}

:root {
    --font-family-sans: "Graphik Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --heading-2xl-font-size: 3rem;
    --heading-2xl-line-height: 1.1;
    --heading-2xl-letter-spacing: -0.02em;
    --heading-2xl-font-weight: 600;
    --heading-lg-font-size: 1.875rem;
    --heading-lg-line-height: 1.2;
    --heading-lg-letter-spacing: -0.01em;
    --heading-lg-font-weight: 600;
    --heading-sm-font-size: 1.125rem;
    --heading-sm-line-height: 1.25;
    --heading-sm-letter-spacing: -0.005em;
    --heading-sm-font-weight: 600;
    --body-lg-font-size: 1.1875rem;
    --body-lg-line-height: 1.5;
    --body-lg-letter-spacing: -0.01em;
    --body-lg-font-weight: 400;
    --body-md-font-size: 1rem;
    --body-md-line-height: 1.5;
    --body-md-letter-spacing: 0;
    --body-md-font-weight: 400;
    --body-sm-font-size: 0.875rem;
    --body-sm-line-height: 150%;
    --body-sm-letter-spacing: 0.005em;
    --body-sm-font-weight: 400;
}

@media screen and (max-width:1120px) {
    :root {
        --heading-2xl-font-size: 3rem;
        --heading-lg-font-size: 1.875rem;
    }
}

@media screen and (max-width:768px) {
    :root {
        --heading-2xl-font-size: 2.375rem;
        --heading-2xl-letter-spacing: -0.01em;
        --heading-lg-font-size: 1.625rem;
        --heading-sm-font-size: 1.0625rem;
        --body-lg-font-size: 1.125rem;
        --body-md-font-size: 0.9375rem;
        --body-sm-font-size: 0.8125rem;
    }
}

@media screen and (max-width:480px) {
    :root {
        --heading-2xl-font-size: 1.875rem;
        --heading-2xl-line-height: 1.2;
        --heading-lg-font-size: 1.375rem;
        --heading-sm-font-size: 1rem;
        --body-lg-font-size: 1rem;
        --body-lg-letter-spacing: -0.005em;
        --body-md-font-size: 0.875rem
    }
}

body,
button {
    color: var(--color-grey-08);
    font-family: var(--font-family-sans)
}

.text {
    --curr-font-size: var(--body-md-font-size);
    --curr-line-height: var(--body-md-line-height);
    --curr-letter-spacing: var(--body-md-letter-spacing);
    --curr-font-weight: var(--body-md-font-weight);
    --curr-text-transform: var(--body-md-text-transform);
    font-size: var(--curr-font-size);
    font-weight: var(--curr-font-weight);
    letter-spacing: var(--curr-letter-spacing);
    line-height: var(--curr-line-height);
    text-transform: var(--curr-text-transform);
}

h1.text {
    --curr-font-size:var(--heading-2xl-font-size);
    --curr-line-height:var(--heading-2xl-line-height);
    --curr-letter-spacing:var(--heading-2xl-letter-spacing);
    --curr-font-weight:var(--heading-2xl-font-weight);
    --curr-text-transform:var(--heading-2xl-text-transform);
}

h2.text {
    --curr-font-size:var(--body-lg-font-size);
    --curr-line-height:var(--body-lg-line-height);
    --curr-letter-spacing:var(--body-lg-letter-spacing);
    --curr-font-weight:var(--body-lg-font-weight);
    --curr-text-transform:var(--body-lg-text-transform);
}

.intro-section-download {
    align-items: center;
    border: 1px solid;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    margin: 0;
    min-width: 100px;
    outline: 0;
    overflow: visible;
    text-transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    white-space: normal;
    background-color: var(--color-blue-01);
    border-color: var(--color-blue-01);
    color: #fff;
    border-radius: .625rem;
    min-height: 2.75rem;
    padding: var(--space-8) var(--space-24);
    --curr-font-size:var(--heading-sm-font-size);
    --curr-line-height:var(--heading-sm-line-height);
    --curr-letter-spacing:var(--heading-sm-letter-spacing);
    --curr-font-weight:var(--heading-sm-font-weight);
    --curr-text-transform:var(--heading-sm-text-transform);
}

.intro-section-download:hover {
    background-color: var(--color-blue-02);
    color: #fff;
}

@media screen and (max-width:480px) {
    .intro-section-download {
        min-width: 80px;
        padding: var(--space-8) 1.25rem;
    }
}

.max-inline {
    -webkit-margin-start: auto;
    -webkit-margin-end: auto;
    inline-size: 100%;
    margin-inline-end: auto;
    margin-inline-start: auto;
    max-inline-size: var(--container-max-inline-size, 1120px)
}

.vspace-16 {
    padding: 0 var(--space-16)
}

@media (max-width:959px) {
    .max-inline {
        --container-max-inline-size: 768px
    }
}

@media (max-width:768px) {
    .max-inline {
        --container-max-inline-size: 500px
    }
}

@media (max-width:480px) {
    .max-inline {
        --container-max-inline-size: 425px
    }
}

.footer-grid {
    -webkit-padding-before: var(--space-32);
    -webkit-padding-after: var(--space-48);
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(4, min-content);
    padding-block-end: var(--space-48);
    padding-block-start: var(--space-32)
}

.blockspace-8 {
    -webkit-margin-after: var(--space-8);
    margin-block-end: var(--space-8)
}

.blockspace-32 {
    -webkit-margin-after: var(--space-32);
    margin-block-end: var(--space-32)
}

.social-list {
    display: grid;
    grid-gap: var(--space-16);
    gap: var(--space-16);
    grid-template-columns: repeat(auto-fit, 25px);
    list-style: none
}

.social-list a {
    border-radius: var(--radius-md);
    display: flex
}

.social-list a:focus {
    box-shadow: var(--shadow-focus);
    outline: 0
}

.social-list a:hover svg {
    opacity: .66
}

.social-list svg {
    fill: #000;
    height: var(--space-24);
    opacity: .45;
    width: var(--space-24)
}

.nav-main {
    flex: 1 1;
    justify-content: var(--desktop-justify, flex-end)
}

.nav-main,
.nav-main ul {
    align-items: center;
    block-size: 100%;
    display: flex
}

.nav-main ul>li {
    block-size: var(--li-block-size, 100%);
    display: flex
}

.nav-main ul>li>a {
    align-items: center;
    background-color: var(--anchor-background-color, transparent);
    border-radius: var(--anchor-border-radius, 0);
    color: var(--anchor-color, var(--color-grey-07));
    display: flex;
    font-weight: var(--anchor-font-weight, 400);
    padding: 0 var(--space-16);
    text-align: center;
}

.nav-main ul>li>a:hover {
    background-color: var(--anchor-hover-background, var(--color-grey-01));
    color: var(--anchor-hover-color, var(--color-grey-08))
}

.nav-main ul>li>a:focus {
    box-shadow: var(--shadow-focus);
    z-index: 1
}

.nav-main ul>li>a[primary] {
    color: var(--main-color)
}

.nav-main ul>li>a[active] {
    border-bottom: 2px solid var(--main-color)
}

.nav-main .nav-menus {
    display: var(--left-links-display, none)
}

.nav-main .nav-download {
    display: var(--right-links-display, none)
}

.nav-main .nav-download>li:not(:last-child) {
    -webkit-margin-end: var(--space-8);
    margin-inline-end: var(--space-8)
}

.nav-main {
    --li-block-size: 70%;
    --anchor-border-radius: var(--radius-lg);
    --anchor-hover-background: var(--color-grey-02);
    --anchor-hover-color: var(--color-grey-07)
}

.nav-main .text-download {
    --anchor-color: #fff;
    --anchor-background-color: var(--color-blue-01);
    --anchor-hover-background: var(--color-blue-02);
    --anchor-hover-color: #fff;
    --anchor-font-weight: 600
}

@media (min-width:769px) {
    .nav-main {
        --right-links-display: flex;
        --mobile-display: none
    }
}

@media (min-width:960px) {
    .nav-main {
        --desktop-justify: space-between;
        --left-links-display: flex
    }
}

.nav-dropdown {
    background-color: #fff;
    border-left: 1px solid var(--color-grey-04);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    left: 0;
    max-height: 100vh;
    opacity: 0;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 11500
}

.nav-dropdown>ol {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: calc(400px + var(--space-16)*2);
    padding: var(--space-16);
    width: 100%
}

.nav-dropdown>ol:first-child {
    color: var(--color-grey-07);
    padding-top: calc(2.85rem + var(--space-8))
}

.nav-dropdown>ol:first-child a,
.nav-dropdown>ol:first-child button {
    padding: var(--space-16)
}

.nav-dropdown>ol:last-child li {
    padding-bottom: var(--space-16)
}

.nav-dropdown li button {
    cursor: default;
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 100%
}

.nav-dropdown li a,
.nav-dropdown li button {
    align-items: center;
    display: flex
}

.nav-dropdown>ol:first-child>li>a,
.nav-dropdown>ol:first-child>li>button {
    border-bottom: 1px solid var(--color-grey-04)
}

.nav-dropdown ol ol li:last-child {
    border-bottom: 1px solid var(--color-grey-04);
    padding-bottom: var(--space-8)
}

.header {
    background-color: #fff;
    height: var(--space-64);
    padding: 0 var(--space-16);
    --main-color: var(--color-td-primary);
}

.nav-header {
    -webkit-margin-end: var(--center-container-inline-end, calc(var(--space-16)*-1));
    align-items: center;
    block-size: 100%;
    display: flex;
    flex: 1 1;
    margin: 0 auto;
    margin-inline-end: var(--center-container-inline-end, calc(var(--space-16)*-1));
    max-inline-size: 1088px;
    min-block-size: var(--space-48);
    position: relative;
    -webkit-margin-end: var(--center-container-inline-end);
    margin-inline-end: var(--center-container-inline-end);
}

.icon-text {
    color: var(--main-color);
    display: inline-flex;
    margin-right: var(--space-16);
    z-index: 12000
}

.download-btn {
    display: none
}

@media (min-width:960px) {
    .nav-header {
        --center-container-inline-end: auto
    }
}

@media (max-width:959px) {
    .download-btn {
        cursor: pointer;
        display: block;
        inline-size: 3.8rem;
        outline: 0;
        padding: 0 1.2rem;
        z-index: 12000;
        -webkit-margin-start: var(--space-8);
        block-size: 70%;
        border-radius: var(--radius-lg);
        margin-inline-start: var(--space-8)
    }

    .download-btn:hover {
        background-color: var(--color-grey-02)
    }

    .download-btn:focus {
        box-shadow: var(--shadow-focus)
    }

    .download-btn:after,
    .download-btn:before {
        background: var(--color-grey-08);
        content: "";
        height: 2px;
        position: absolute;
        right: 1.2rem;
        width: 1.5rem;
    }

    .download-btn:before {
        top: 43%
    }

    .download-btn:after {
        top: 55%
    }
}

.intro-section {
    --max-inline-size-h1: 50rem;
    --max-inline-size-h2: 32rem;
    text-align: center;
    -webkit-margin-after: var(--space-32);
    margin-block-end: var(--space-32)
}

.intro-section .intro-section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    -webkit-padding-before: var(--space-64);
    padding-block-start: var(--space-64);
    -webkit-padding-start: var(--space-16);
    padding-inline-start: var(--space-16);
    -webkit-padding-end: var(--space-16);
    padding-inline-end: var(--space-16)
}

.intro-section .intro-section-text h1 {
    max-inline-size: var(--max-inline-size-h1);
    -webkit-margin-after: var(--space-16);
    margin-block-end: var(--space-16)
}

.intro-section .intro-section-text h2 {
    max-inline-size: var(--max-inline-size-h2);
    -webkit-margin-after: var(--space-24);
    margin-block-end: var(--space-24)
}

.intro-section .intro-section-image {
    display: grid;
    max-block-size: 34.5rem;
    max-inline-size: 83.375rem;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto
}

.intro-section .intro-section-image .intro-section-picture img {
    inline-size: 100%;
    block-size: auto;
    -o-object-fit: contain;
    object-fit: contain
}

@media (min-width:769px) {
    .intro-section .intro-section-image {
        grid-template-columns: .8fr .74fr 2.5fr 1.34fr .79fr
    }

    .intro-section .intro-section-image .intro-section-picture {
        grid-column: 2/span 3;
        grid-row: 1
    }
}

.intro-section .intro-section-video {
    -webkit-padding-before: var(--space-32);
    padding-block-start: var(--space-32);
}

.feature-section {
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: var(--featureGridColumns, 1fr);
    grid-gap: var(--space-32);
    padding: var(--space-32);
    -webkit-margin-after: var(--featureGridSpace, --space-32);
    margin-block-end: var(--featureGridSpace, --space-32);
    text-align: var(--featureGridTextAlign, center)
}

.feature-section>* {
    inline-size: 100%;
    max-inline-size: 500px;
    -webkit-padding-after: var(--space-32);
    padding-block-end: var(--space-32)
}

.feature-section:not(.best) .feature-section-text {
    max-inline-size: 420px
}

.feature-section.best .feature-section-text {
    max-inline-size: 680px
}

.feature-section .feature-section-body {
    color: var(--color-grey-07)
}

.feature-section img {
    width: 100%;
    /* height: 100%; */
    -o-object-fit: cover;
    object-fit: cover
}

[safari] .feature-section img {
    height: auto;
}

.feature-section .feature-section-title {
    -webkit-margin-after: var(--space-8);
    margin-block-end: var(--space-8);
    --curr-font-size:var(--heading-lg-font-size);
    --curr-line-height:var(--heading-lg-line-height);
    --curr-letter-spacing:var(--heading-lg-letter-spacing);
    --curr-font-weight:var(--heading-lg-font-weight);
    --curr-text-transform:var(--heading-lg-text-transform);
}

.feature-section .feature-section-title>* {
    display: block
}

@media (min-width:769px) {
    .feature-section {
        --featureGridColumns: repeat(2, 1fr);
        --featureGridTextAlign: left;
        --featureGridSpace: var(--space-64)
    }

    .feature-section.best {
        grid-template-columns: 1fr 8fr;
    }

    .feature-section.best img {
        width: 190px;
        height: 281px;
    }

    .feature-section.best .feature-section-text {
        height: 100%;
    }

    .feature-section.best .feature-section-text p {
        -webkit-margin-after: var(--space-4);
        margin-block-end: var(--space-4)
    }

    .feature-section:not(.best) div:nth-child(3) {
        order: 4
    }
    .feature-section:not(.best) div:nth-child(4) {
        order: 3
    }
    .feature-section:not(.best) div:nth-child(5) {
        order: 5
    }
    .feature-section:not(.best) div:nth-child(6) {
        order: 6
    }
    .feature-section:not(.best) div:nth-child(7) {
        order: 8
    }
    .feature-section:not(.best) div:nth-child(8) {
        order: 7
    }
    .feature-section:not(.best) div:nth-child(9) {
        order: 9
    }
    .feature-section:not(.best) div:nth-child(10) {
        order: 10
    }
    .feature-section:not(.best) div:nth-child(11) {
        order: 12
    }
    .feature-section:not(.best) div:nth-child(12) {
        order: 11
    }
    .feature-section:not(.best) div:nth-child(13) {
        order: 13
    }
    .feature-section:not(.best) div:nth-child(14) {
        order: 14
    }
    .feature-section:not(.best) div:nth-child(15) {
        order: 16
    }
    .feature-section:not(.best) div:nth-child(16) {
        order: 15
    }
    .feature-section:not(.best) div:nth-child(17) {
        order: 17
    }
    .feature-section:not(.best) div:nth-child(18) {
        order: 18
    }
    .feature-section:not(.best) div:nth-child(20) {
        order: 19
    }
    .feature-section:not(.best) div:nth-child(19) {
        order: 20
    }
    .feature-section:not(.best) div:nth-child(21) {
        order: 21
    }
    .feature-section:not(.best) div:nth-child(22) {
        order: 22
    }
    .feature-section:not(.best) div:nth-child(24) {
        order: 23
    }
    .feature-section:not(.best) div:nth-child(23) {
        order: 24
    }
    .feature-section:not(.best) div:nth-child(25) {
        order: 25
    }
    .feature-section:not(.best) div:nth-child(26) {
        order: 26
    }
    .feature-section:not(.best) div:nth-child(28) {
        order: 27
    }
    .feature-section:not(.best) div:nth-child(27) {
        order: 28
    }
    .feature-section:not(.best) div:nth-child(29) {
        order: 29
    }
    .feature-section:not(.best) div:nth-child(30) {
        order: 30
    }
}

.feature-section-picture {
    display: flex;
    flex-direction: column;
}

.feature-section-picture picture {
    -webkit-margin-after: var(--space-8);
    margin-block-end: var(--space-8)
}

.nav-dropdown.nav-dropdown-visible {
    visibility: visible;
    opacity: 1;
}

.footer {
    background-color:var(--color-td-secondary-light);
}

.footer .hr {
    background-color:var(--color-black-04);
    --spacing:var(--space-32);
    margin-block-start:0;
}

.intro-download-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: 100%;
    max-width: 600px;
}

.intro-download-item {
    position: relative;
    height: 120px;
    text-align: left;
}
.intro-download-item, .bookmarklet1KnT {
    padding: 16px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 15%);
    color: #000;
}

.intro-download-item .intro-logo {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.intro-download-list a:hover {
    color: black;
}

.intro-download-list a span b {
    font-weight: 500 !important;
}

.intro-download-item:hover, .bookmarklet1KnT:hover {
    background: rgba(0,0,0,0.04);
}

.intro-download-item {
    position: relative;
    height: 120px;
    text-align: left;
}

@media only screen and (max-width: 700px) {
    .intro-download-list {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
}

.footer-app-list {
    display: flex;
    flex-direction: column;
}

@media (min-width: 960px) {
    .footer-grid .footer-app-list {
        -webkit-margin-start: var(--space-64);
        grid-column: 2;
        grid-row: 1/-1;
        margin-inline-start: var(--space-64);
    }
}
@media (min-width: 960px) {
    .footer-app-list {
        justify-content: flex-start;
    }
}
@media (min-width: 769px) {
    .footer-app-list {
        flex-direction: row;
    }

    .footer-app-list>div:not(:last-child) {
        -webkit-margin-end: var(--space-64);
        margin-inline-end: var(--space-64);
    }
}

.footer-app-list .footer-app-header {
    -webkit-margin-after: var(--space-24);
    color: var(--color-grey-07);
    margin-block-end: var(--space-24);
}

.footer-app-list li {
    height: 24px;
}

.footer-app-list li:not(:last-child) {
    -webkit-margin-after: var(--space-16);
    margin-block-end: var(--space-16);
}

.footer-app {
    font-family: var(--font-family-sans);
}

.footer-app.light {
    color: #f3f9ff;
}

p.footer-app {
    --curr-font-size: var(--body-md-font-size);
    --curr-line-height: var(--body-md-line-height);
    --curr-letter-spacing: var(--body-md-letter-spacing);
    --curr-font-weight: var(--body-md-font-weight);
    font-size: 0.75rem;
    font-weight: var(--curr-font-weight);
    letter-spacing: var(--curr-letter-spacing);
    line-height: var(--curr-line-height);
    text-transform: uppercase;
}

a.footer-app:hover {
    text-decoration: underline;
}
