@charset "UTF-8";
html {
    --width-large-phone: 361px;
    --width-tablet: 768px;
    --width-large: 960px;
    --height-large: 671px;
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --site-nav-height: 3rem;
    --top-nav-height: 56px;
    --dashboard-top-nav-height: var(--top-nav-height);
    --static-green: #24C4AD;
    --static-white: white;
    --static-black: black;
    --static-grey: #F8F8FB;
    --static-jetblack: #1D1B2F;
    --turquoise-500: #7BFFF0;
    --turquoise-100: #D2FFFA;
    --lavender-500: #E2BFFF;
    --lavender-100: #F2E1FF;
    --lavender-700: #AA64E4;
    --magenta-500: #FF25E9;
    --salmon-500: #FFD1C7;
    --salmon-100: #FFE9E4;
    --yellow-500: #FFF493;
    --yellow-100: #FEF9DB;
    --gradient-start-color: rgba(255, 209, 199, 0.25);
    --gradient-stop-color: rgba(58, 54, 228, 0.4);
    box-sizing: border-box;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

@supports (margin:0px) {
    html .device--android {
        --safe-area-bottom: MAX(15px, env(safe-area-inset-bottom, 0px))
    }
}

@media (min-height:540px) {
    html {
        --site-nav-height: 3.5rem
    }
}

@media (min-height:671px) {
    html {
        --site-nav-height: 4rem
    }
}

@media (min-width:960px) and (min-height:720px) {
    html {
        --site-nav-height: 4.5rem
    }
}

@media (min-width:960px) and (min-height:800px) {
    html {
        --site-nav-height: 5.5rem
    }
}

@media (max-width:800px) and (max-height:850px) {
    html {
        --top-nav-height: 48px
    }
}

.light-theme,
html {
    --secondary-000: white;
    --secondary-100: #FAFAFA;
    --secondary-200: #F8F8FB;
    --secondary-300: #ECECF5;
    --secondary-400: #D7D8E3;
    --secondary-500: #84809D;
    --secondary-600: #5D5B75;
    --secondary-700: #221E46;
    --secondary-800: #1D1B2F;
    --primary-100: #ECECFF;
    --primary-200: #ACC3FD;
    --primary-300: #6472EE;
    --primary-400: #5656FA;
    --primary-500: #3A36E4;
    --primary-600: #2811B4;
    --error-100: #FFD4E1;
    --error-500: #C51C4F;
    --success-100: #CCFFF8;
    --success-500: #007A64;
    --warning-100: #FFEBCE;
    --warning-500: #A56403;
    --note-100: #FFF9D5;
    --note-500: #F1D952;
    --heading-color: var(--secondary-800);
    --text-color: var(--secondary-700);
    --primary-button-text-color: var(--secondary-000);
    --primary-button-font-weight: 400;
    --selected-bg: var(--primary-100);
    --selected-border-color: var(--primary-500);
    --selected-text-color: var(--primary-600);
    --image-bg: var(--secondary-300);
    --image-border-color: var(--secondary-300);
    --border-color: var(--secondary-400);
    --focus-outline-color: var(--primary-200);
    --dropdown-box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.12);
    --tooltip-drop-shadow-alpha: 0.2;
    --overlay-color-1: rgba(236, 236, 245, .9)
}

.dark-theme {
    --secondary-000: #242631;
    --secondary-100: #2A2C3B;
    --secondary-200: #2E313F;
    --secondary-300: #353948;
    --secondary-400: #484D61;
    --secondary-500: #5C607E;
    --secondary-600: #787CA0;
    --secondary-700: #ADB1CC;
    --secondary-800: #F1F1F1;
    --primary-100: #36365F;
    --primary-200: #424284;
    --primary-300: #445CD4;
    --primary-400: #647DFF;
    --primary-500: #8A9DFF;
    --primary-600: #C0C9FA;
    --error-100: #EABFCC;
    --error-500: #E77398;
    --success-100: #A0DDD4;
    --success-500: #3EB4A2;
    --warning-100: #E6C593;
    --warning-500: #DE9957;
    --note-100: #EDE4B5;
    --note-500: #FFFAE6;
    --heading-color: var(--secondary-800);
    --text-color: var(--secondary-700);
    --primary-button-text-color: black;
    --primary-button-font-weight: 600;
    --selected-bg: var(--primary-100);
    --selected-border-color: var(--primary-500);
    --selected-text-color: var(--primary-600);
    --image-bg: var(--secondary-300);
    --image-border-color: var(--secondary-300);
    --border-color: var(--secondary-300);
    --focus-outline-color: var(--primary-200);
    --dropdown-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.80);
    --tooltip-drop-shadow-alpha: 0.6;
    --overlay-color-1: rgba(53, 57, 72, .9)
}

*,
::after,
::before {
    box-sizing: inherit
}

body {
    margin: 0;
    background-color: var(--secondary-100);
    min-width: 0
}

[tabindex="-1"]:focus {
    outline: 0 !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

dl,
ol,
p,
ul {
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote,
figure {
    margin: 0 0 1rem
}

dfn {
    font-style: italic
}

small {
    font-size: 80%
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    -webkit-text-decoration-skip: objects;
    text-decoration: none;
    transition: color .3s
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto
}

img {
    vertical-align: middle
}

svg:not(:root) {
    overflow: hidden
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: left
}

label {
    display: inline-block;
    margin-bottom: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
    -webkit-appearance: listbox
}

textarea {
    resize: vertical
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

button,
input[type=button],
input[type=file]::-webkit-file-upload-button,
input[type=reset],
input[type=submit] {
    border-radius: 0
}

iframe {
    border: none
}

.h1,
h1 {
    --heading-font-size: 32px;
    --text-font-size: 32px;
    --heading-line-height: calc(32px + 8px);
    --text-line-height: calc(32px + 8px);
    --heading-margin-bottom: 16px;
    --heading-margin-top: 24px;
    --heading-font-weight: 600
}

@media (min-width:361px) {
    .h1,
    h1 {
        --heading-font-size: 36px;
        --text-font-size: 36px;
        --heading-line-height: calc(36px + 8px);
        --text-line-height: calc(36px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 32px;
        --heading-font-weight: 600
    }
}

@media (min-width:768px) {
    .h1,
    h1 {
        --heading-font-size: 42px;
        --text-font-size: 42px;
        --heading-line-height: calc(42px + 8px);
        --text-line-height: calc(42px + 8px);
        --heading-margin-bottom: 24px;
        --heading-margin-top: 42px;
        --heading-font-weight: 600
    }
}

@media (min-width:960px) {
    .h1,
    h1 {
        --heading-font-size: 52px;
        --text-font-size: 52px;
        --heading-line-height: calc(52px + 8px);
        --text-line-height: calc(52px + 8px);
        --heading-margin-bottom: 24px;
        --heading-margin-top: 48px;
        --heading-font-weight: 600
    }
}

.h2,
h2 {
    --heading-font-size: 28px;
    --text-font-size: 28px;
    --heading-line-height: calc(28px + 8px);
    --text-line-height: calc(28px + 8px);
    --heading-margin-bottom: 16px;
    --heading-margin-top: 28px;
    --heading-font-weight: 600
}

@media (min-width:361px) {
    .h2,
    h2 {
        --heading-font-size: 32px;
        --text-font-size: 32px;
        --heading-line-height: calc(32px + 8px);
        --text-line-height: calc(32px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 24px;
        --heading-font-weight: 600
    }
}

@media (min-width:768px) {
    .h2,
    h2 {
        --heading-font-size: 36px;
        --text-font-size: 36px;
        --heading-line-height: calc(36px + 8px);
        --text-line-height: calc(36px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 32px;
        --heading-font-weight: 600
    }
}

@media (min-width:960px) {
    .h2,
    h2 {
        --heading-font-size: 42px;
        --text-font-size: 42px;
        --heading-line-height: calc(42px + 8px);
        --text-line-height: calc(42px + 8px);
        --heading-margin-bottom: 24px;
        --heading-margin-top: 42px;
        --heading-font-weight: 600
    }
}

.h3,
.teaser-modal .h3,
h3 {
    --heading-font-size: 24px;
    --text-font-size: 24px;
    --heading-line-height: calc(24px + 8px);
    --text-line-height: calc(24px + 8px);
    --heading-margin-bottom: 16px;
    --heading-margin-top: 24px;
    --heading-font-weight: 600
}

@media (min-width:361px) {
    .h3,
    .teaser-modal .h3,
    h3 {
        --heading-font-size: 28px;
        --text-font-size: 28px;
        --heading-line-height: calc(28px + 8px);
        --text-line-height: calc(28px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 28px;
        --heading-font-weight: 600
    }
}

@media (min-width:768px) {
    .h3,
    .teaser-modal .h3,
    h3 {
        --heading-font-size: 32px;
        --text-font-size: 32px;
        --heading-line-height: calc(32px + 8px);
        --text-line-height: calc(32px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 24px;
        --heading-font-weight: 600
    }
}

@media (min-width:960px) {
    .h3,
    .teaser-modal .h3,
    h3 {
        --heading-font-size: 36px;
        --text-font-size: 36px;
        --heading-line-height: calc(36px + 8px);
        --text-line-height: calc(36px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 32px;
        --heading-font-weight: 600
    }
}

.h4,
h4 {
    --text-font-size: 20px;
    --heading-font-size: 20px;
    --text-line-height: calc(20px + 8px);
    --heading-line-height: calc(20px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

@media (min-width:361px) {
    .h4,
    h4 {
        --heading-font-size: 24px;
        --text-font-size: 24px;
        --heading-line-height: calc(24px + 8px);
        --text-line-height: calc(24px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 24px;
        --heading-font-weight: 600
    }
}

@media (min-width:768px) {
    .h4,
    h4 {
        --heading-font-size: 28px;
        --text-font-size: 28px;
        --heading-line-height: calc(28px + 8px);
        --text-line-height: calc(28px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 28px;
        --heading-font-weight: 600
    }
}

@media (min-width:960px) {
    .h4,
    h4 {
        --heading-font-size: 32px;
        --text-font-size: 32px;
        --heading-line-height: calc(32px + 8px);
        --text-line-height: calc(32px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 24px;
        --heading-font-weight: 600
    }
}

.h5,
h5 {
    --text-font-size: 18px;
    --heading-font-size: 18px;
    --text-line-height: calc(18px + 8px);
    --heading-line-height: calc(18px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

@media (min-width:361px) {
    .h5,
    h5 {
        --text-font-size: 20px;
        --heading-font-size: 20px;
        --text-line-height: calc(20px + 8px);
        --heading-line-height: calc(20px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

@media (min-width:768px) {
    .h5,
    h5 {
        --heading-font-size: 24px;
        --text-font-size: 24px;
        --heading-line-height: calc(24px + 8px);
        --text-line-height: calc(24px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 24px;
        --heading-font-weight: 600
    }
}

@media (min-width:960px) {
    .h5,
    h5 {
        --heading-font-size: 28px;
        --text-font-size: 28px;
        --heading-line-height: calc(28px + 8px);
        --text-line-height: calc(28px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 28px;
        --heading-font-weight: 600
    }
}

.h6,
h6 {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

@media (min-width:361px) {
    .h6,
    h6 {
        --text-font-size: 18px;
        --heading-font-size: 18px;
        --text-line-height: calc(18px + 8px);
        --heading-line-height: calc(18px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

@media (min-width:768px) {
    .h6,
    h6 {
        --text-font-size: 20px;
        --heading-font-size: 20px;
        --text-line-height: calc(20px + 8px);
        --heading-line-height: calc(20px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

@media (min-width:960px) {
    .h6,
    h6 {
        --heading-font-size: 24px;
        --text-font-size: 24px;
        --heading-line-height: calc(24px + 8px);
        --text-line-height: calc(24px + 8px);
        --heading-margin-bottom: 16px;
        --heading-margin-top: 24px;
        --heading-font-weight: 600
    }
}

.text-xl {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

@media (min-width:768px) {
    .text-xl {
        --text-font-size: 18px;
        --heading-font-size: 18px;
        --text-line-height: calc(18px + 8px);
        --heading-line-height: calc(18px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

@media (min-width:960px) {
    .text-xl {
        --text-font-size: 20px;
        --heading-font-size: 20px;
        --text-line-height: calc(20px + 8px);
        --heading-line-height: calc(20px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

.section__grid--figure-align-center,
.text-lg {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

@media (min-width:768px) {
    .section__grid--figure-align-center,
    .text-lg {
        --text-font-size: 18px;
        --heading-font-size: 18px;
        --text-line-height: calc(18px + 8px);
        --heading-line-height: calc(18px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

.text-md {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

.text-sm {
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px)
}

.text-xs {
    --text-font-size: 13px;
    --text-line-height: 18px
}

.text-xxs {
    --text-font-size: 12px;
    --text-line-height: calc(12px + 6px);
    letter-spacing: .25px
}

.bold,
.checkbox__heading,
.dialog--mobile .dialog__back-button-header string,
.form-field__error,
.site-nav__dropdown-card h6,
.site-nav__popup-item,
.site-nav__user-circle {
    font-weight: 700
}

html {
    --text-font-size: 16px;
    --text-line-height: 1.5;
    --text-margin-bottom: 1rem;
    font-family: Mulish, Avenir Next, Trebuchet MS, sans-serif;
    font-weight: 400;
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    --button-height: 36px;
    --button-text-size: 16px;
    --button-padding: 12px
}

a,
button,
div,
dl,
label,
ol,
p,
span,
ul {
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
    color: var(--text-color)
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.teaser-modal .h3,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color, var(--text-color));
    font-size: var(--heading-font-size, var(--text-font-size));
    line-height: var(--heading-line-height, var(--text-line-height));
    font-weight: var(--heading-font-weight, 600);
    margin-bottom: var(--heading-margin-bottom, var(--text-margin-bottom));
    margin-top: var(--heading-margin-top, 0)
}

.h1:first-child,
.h2:first-child,
.h3:first-child,
.h4:first-child,
.h5:first-child,
.h6:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0
}

dl,
ol,
p,
ul {
    margin-top: 0;
    margin-bottom: var(--text-margin-bottom)
}

dl:last-child,
ol:last-child,
p:last-child,
ul:last-child {
    margin-bottom: 0
}

ul {
    padding-left: 1.25rem
}

li {
    margin-bottom: calc(var(--text-margin-bottom) - .5rem)
}

@media (min-width:768px) {
    .section__grid--figure-align-center,
    .text-lg,
    .text-xl {
        --text-margin-bottom: 1.5rem
    }
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid var(--secondary-800)
}

a:focus {
    outline: 0
}

a.link--focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

li a:not(.button),
p a:not(.button) {
    --text-color: var(--primary-500);
    text-decoration: underline;
    text-underline-offset: 2px
}

li a:not(.button):hover,
p a:not(.button):hover {
    --text-color: var(--primary-400)
}

li a:not(.button):active,
p a:not(.button):active {
    --text-color: var(--primary-600)
}

string {
    margin: 0;
    padding: 0;
    border: 0;
    pointer-events: none;
    display: inline-block
}

a:not(.button)[href] string {
    pointer-events: auto
}

.icon {
    height: var(--icon-size, 1rem);
    width: var(--icon-size, 1rem);
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    pointer-events: none;
    --icon-size: 1rem
}

.icon--8 {
    --icon-size: 8px
}

.icon--10 {
    --icon-size: 10px
}

.icon--12 {
    --icon-size: 12px
}

.icon--14 {
    --icon-size: 14px
}

.icon--16 {
    --icon-size: 16px
}

.icon--18 {
    --icon-size: 18px
}

.icon--20 {
    --icon-size: 20px
}

.icon--24 {
    --icon-size: 24px
}

.icon--36 {
    --icon-size: 36px
}

.icon-deselected,
.icon-selected {
    width: 20px;
    height: 20px;
    padding: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    color: var(--static-white);
    opacity: 0;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .4));
    transform: perspective(1px) translateZ(0);
    transition: opacity .25s ease-in-out
}

.icon-deselected {
    background: var(--static-white);
    color: var(--static-black)
}

.icon-stroke {
    stroke: currentColor;
    stroke-width: .25
}

.icon--ai {
    fill: var(--static-green)
}

.icon--button-ai {
    margin-left: 10px;
    position: relative;
    right: auto
}

.icon--icon-right {
    position: absolute;
    right: .5rem
}

@media (max-width:800px) {
    .icon--hide-on-mobile {
        display: none
    }
}

.icon--bold {
    stroke: currentColor;
    stroke-width: .5px
}

.drop-shadow-not-supported .icon-deselected,
.drop-shadow-not-supported .icon-selected {
    filter: none;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .5)
}

.button,
button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: color .3s ease-in-out, opacity .3s ease-in-out, background .3s ease-in-out, box-shadow .15s ease-in-out
}

.button:active,
.button:focus,
button:active,
button:focus {
    outline: 0
}

.button[disabled],
button[disabled] {
    opacity: .35
}

[disabled],
[disabled] * {
    cursor: not-allowed !important
}

.main-container,
.modal--button-sm,
.overlays-container {
    --button-height: 32px;
    --button-text-size: 14px;
    --button-padding: 8px
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--button-height);
    line-height: var(--button-height);
    padding: 0 var(--button-padding);
    font-size: var(--button-text-size);
    color: var(--text-color);
    --text-color: var(--secondary-800);
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: 4px
}

.button--focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.button--xs {
    --button-height: 24px;
    --button-text-size: 14px;
    --button-padding: 8px
}

.button--sm {
    --button-height: 32px;
    --button-text-size: 14px;
    --button-padding: 8px
}

.button--md {
    --button-height: 36px;
    --button-text-size: 16px;
    --button-padding: 12px
}

.button--lg {
    --button-height: 44px;
    --button-text-size: 16px;
    --button-padding: 16px
}

.button--lg.button--has-icon {
    --button-text-size: 16px
}

.button--xl {
    --button-height: 52px;
    --button-text-size: 18px;
    --button-padding: 32px
}

.button--fullwidth {
    width: 100%
}

.button--left-align {
    text-align: left;
    justify-content: flex-start
}

.button--icon {
    width: var(--button-height);
    --button-padding: 0
}

.button--has-icon {
    --button-text-size: 14px
}

.button--has-icon>.icon {
    flex-shrink: 0
}

.button--has-icon>.icon:first-child {
    margin-right: 10px
}

.button--has-icon>.icon:last-child {
    margin-left: 10px
}

.button--has-icon>.icon--chevron-down {
    --icon-size: 8px;
    margin: 2px 2px 0 0
}

.button--has-icon>.icon--chevron-right {
    --icon-size: 8px;
    margin: 0 2px 0 0;
    transform: rotate(-90deg)
}

.button--has-icon>string {
    margin-right: auto;
    text-overflow: ellipsis;
    overflow: hidden
}

.button--has-icon.button--centered string,
.button--has-icon>.shortcut {
    margin-right: 0
}

.button--has-image {
    justify-content: flex-start;
    padding-left: 4px;
    --button-text-size: 14px
}

.button--has-image string {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.button__image {
    width: calc(var(--button-height) - 8px);
    height: calc(var(--button-height) - 8px);
    flex-shrink: 0;
    margin-right: 10px;
    border-radius: 4px
}

.button__image .icon {
    display: block;
    margin-top: calc((var(--button-height) - 8px - var(--icon-size))/ 2);
    margin-left: calc((var(--button-height) - 8px - var(--icon-size))/ 2)
}

.button--mobile.button--fullwidth {
    border-radius: 0
}

.button--mobile.button--lg {
    --button-padding: 1.5rem
}

.button--mobile.button--focus {
    outline: 0;
    box-shadow: inset 0 0 0 2px var(--focus-outline-color)
}

.button--stacked {
    position: relative;
    flex-direction: column;
    --button-padding: 4px;
    --button-height: 48px
}

.button--stacked string {
    margin-top: 4px;
    font-size: 12px;
    line-height: 12px;
    min-width: 60px
}

.button--stacked .badge--plus {
    position: absolute;
    width: 8px;
    height: 8px;
    top: 2px;
    right: 2px
}

.button--stacked .button__image {
    width: calc(var(--button-height) - 20px);
    height: calc(var(--button-height) - 20px);
    margin: 0
}

.button--stacked .button__image .icon {
    --icon-size: 28px;
    margin-top: calc((var(--button-height) - 20px - var(--icon-size))/ 2);
    margin-left: calc((var(--button-height) - 20px - var(--icon-size))/ 2)
}

.button--has-new-badge {
    position: relative
}

.button--rainbow-glow.button--rainbow-animate:before {
    opacity: 1
}

.button--rainbow-glow:before {
    content: "";
    background: linear-gradient(45deg, red, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, red);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: 20s linear infinite glowing;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 4px
}

.button--rainbow-glow:active {
    color: #000
}

.button--rainbow-glow:active:after {
    background: 0 0
}

.button--rainbow-glow:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px
}

@keyframes glowing {
    0%,
    100% {
        background-position: 0 0
    }
    50% {
        background-position: 400% 0
    }
}

.button--blue {
    --text-color: var(--primary-button-text-color);
    background: var(--primary-500);
    font-weight: var(--primary-button-font-weight)
}

.button--blue:not([disabled]):hover {
    background: var(--primary-400)
}

.button--blue:not([disabled]):active {
    background: var(--primary-600)
}

.button--grey-200 {
    background: var(--secondary-200)
}

@media (hover:hover) {
    .button--grey-200:not([disabled]):hover {
        background: var(--secondary-300)
    }
}

.button--grey-200:not([disabled]):active {
    background: var(--secondary-400)
}

.button--grey-300 {
    background: var(--secondary-300)
}

.button--grey-300:not([disabled]):active,
.button--grey-300:not([disabled]):hover {
    background: var(--secondary-400)
}

.button--transparent-text-grey-800 {
    background: 0 0
}

@media (hover:hover) {
    .button--transparent-text-grey-800:not([disabled]):hover {
        --text-color: var(--secondary-600);
        background: 0 0
    }
}

.button--transparent-text-grey-800:not([disabled]):active {
    --text-color: var(--secondary-800);
    background: var(--secondary-400)
}

.button--grey-outline {
    background: var(--secondary-300);
    border: 1px solid var(--secondary-500);
    line-height: calc(var(--button-height) - 2px)
}

@media (hover:hover) {
    .button--grey-outline:not([disabled]):hover {
        background: var(--secondary-200)
    }
}

.button--grey-outline:not([disabled]):active {
    background: var(--secondary-400)
}

.button--white-outline {
    background: var(--secondary-000);
    border: 1px solid var(--border-color);
    line-height: calc(var(--button-height) - 2px)
}

@media (hover:hover) {
    .button--white-outline:not([disabled]):hover {
        background: var(--secondary-200)
    }
}

.button--white-outline:not([disabled]):active {
    background: var(--secondary-400)
}

.button--white-outline-notheme {
    background: var(--static-white);
    border: 1px solid #d7d8e3;
    line-height: calc(var(--button-height) - 2px);
    --text-color: #1D1B2F
}

.button--white-outline-notheme:not([disabled]):hover {
    background: var(--static-grey)
}

.button--white-outline-notheme:not([disabled]):active {
    background: #d7d8e3
}

.button--transparent {
    background: 0 0
}

@media (hover:hover) {
    .button--transparent:not([disabled]):hover {
        background: var(--secondary-200)
    }
}

.button--transparent:not([disabled]):active {
    background: var(--secondary-400)
}

.button--selected {
    --text-color: var(--selected-text-color);
    background: var(--selected-bg);
    border-color: var(--selected-border-color)
}

.button--selected:not([disabled]):active,
.button--selected:not([disabled]):hover {
    background: var(--selected-bg)
}

.button--link {
    background: 0 0;
    --text-color: var(--primary-500);
    text-decoration: underline;
    text-underline-offset: 2px
}

.button--link:hover {
    --text-color: var(--primary-400)
}

.button--link:active {
    --text-color: var(--primary-600)
}

.button--link-no-line {
    text-decoration: none;
    text-underline-offset: 0
}

.button--circle {
    border-radius: 50%
}

.button--ellipsis {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.button--hidden {
    display: none
}

.button--increase-area {
    position: relative
}

.button--increase-area:before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px)
}

.button:active:focus {
    box-shadow: none
}

.button-group {
    display: flex;
    --gap: 8px;
    gap: var(--gap)
}

.flexbox-gap-not-supported .button-group>* {
    margin-left: var(--gap)
}

.flexbox-gap-not-supported .button-group>.button--toggle:nth-child(2),
.flexbox-gap-not-supported .button-group>:first-child {
    margin-left: 0
}

.button-group>* {
    flex-grow: 1
}

.button-group>.button--icon,
.button-group>.color-button,
.button-group>.toggle-group {
    flex: 0 0 auto
}

.button-group>.button--right {
    margin-left: auto
}

.button-group--dual {
    justify-content: space-between
}

.button-group--dual>.button {
    width: 100%;
    flex-grow: 0
}

.button-group--spread {
    justify-content: space-between
}

.button-group--menu-panel {
    flex-shrink: 0;
    margin: 0 0 1rem
}

.button-group--menu-panel+.button-group--menu-panel {
    margin-top: -.5rem
}

.button-group #editor_apply_cancel_upgrade,
.button-group--must-upgrade #editor_apply_cancel_apply {
    display: none
}

.button-group--must-upgrade #editor_apply_cancel_upgrade {
    display: flex
}

.button-group--wrap {
    flex-wrap: wrap;
    justify-content: space-between;
    --gap: 0 1rem
}

.button-group--wrap>.button {
    margin-top: .5rem;
    margin-bottom: .5rem;
    flex: 1 1;
    margin-left: 0;
    flex-basis: 100%
}

@media (min-width:600px) {
    .button-group--wrap>.button {
        flex-basis: 9rem
    }
}

.button-group--mobile-badges {
    flex-wrap: wrap;
    --gap: 12px
}

input[type=checkbox],
input[type=radio] {
    position: absolute;
    opacity: 0;
    z-index: -1
}

label {
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

label:has(.tooltip-info) {
    overflow: visible
}

.checkbox {
    position: relative;
    --checkbox-size: 1.5rem;
    --checkbox-padding: 4px;
    margin-left: calc(-1 * var(--checkbox-padding))
}

.checkbox__label {
    width: 100%;
    display: flex;
    padding: var(--checkbox-padding);
    align-items: center;
    --text-font-size: 13px;
    --text-line-height: 18px;
    border-radius: 4px;
    transition: background-color .15s ease-in-out, color .15s ease-in-out
}

@media (max-width:800px) {
    .checkbox__label {
        --text-font-size: 14px
    }
}

.checkbox__label:active {
    background-color: var(--secondary-400)
}

.checkbox.inverted .checkbox__label {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between
}

.checkbox.inverted .checkbox__box,
.checkbox.inverted .expandable-checkbox__box {
    margin-right: 0
}

.checkbox__box,
.expandable-checkbox__box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    border: 1px solid var(--secondary-500);
    border-radius: 4px;
    transition: box-shadow .15s ease-in-out, background-color .15s ease-in-out;
    background: var(--secondary-000)
}

.checkbox__box--sm,
.expandable-checkbox__box {
    --checkbox-size: 1rem
}

.checkbox__icon,
.expandable-checkbox__icon {
    opacity: 0
}

.checkbox input:not([disabled])+.checkbox__label:hover .checkbox__box,
.checkbox input:not([disabled])+.checkbox__label:hover .expandable-checkbox__box {
    background-color: var(--secondary-200);
    color: var(--secondary-800)
}

.checkbox input:focus+.checkbox__label .checkbox__box,
.checkbox input:focus+.checkbox__label .expandable-checkbox__box {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.checkbox input:checked+.checkbox__label .checkbox__box,
.checkbox input:checked+.checkbox__label .expandable-checkbox__box {
    border-color: var(--primary-400);
    background-color: var(--primary-400) !important
}

.checkbox input:checked+.checkbox__label .checkbox__icon,
.checkbox input:checked+.checkbox__label .expandable-checkbox__icon {
    opacity: 1;
    color: var(--secondary-000) !important
}

.checkbox string {
    white-space: normal;
    max-width: calc(100% - 2.5rem);
    min-height: var(--text-line-height)
}

.checkbox__heading {
    display: block
}

.checkbox__description {
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px);
    padding-left: 2px
}

.input,
.textarea {
    display: block;
    max-width: 100%;
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    border: solid 1px var(--border-color);
    border-radius: 4px;
    color: var(--secondary-800);
    background: 0 0;
    transition: background-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.input:hover,
.textarea:hover {
    background: var(--secondary-200)
}

.input:focus,
.textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.input::placeholder,
.textarea::placeholder {
    color: var(--secondary-500);
    opacity: 1
}

.input {
    height: 36px;
    padding: 0 8px;
    line-height: 34px;
    font-size: 14px
}

.input--sm {
    height: 32px;
    line-height: 30px
}

.input--disable-autofill-style:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 36px var(--secondary-000) inset;
    -webkit-transition: box-shadow .15s ease-in-out;
    -webkit-text-fill-color: var(--secondary-800);
    caret-color: var(--secondary-800)
}

.input--disable-autofill-style:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 36px var(--secondary-200) inset
}

.dark-theme .input--disable-autofill-style:-webkit-autofill {
    color-scheme: dark
}

.textarea {
    width: 100%;
    height: 180px;
    padding: 6px 8px;
    resize: none;
    touch-action: pan-y
}

.filter-box {
    display: flex;
    position: relative
}

.filter-box__input {
    margin: 0;
    padding: 0 2.125rem;
    width: 100%
}

.filter-box--empty .filter-box__input {
    padding-right: 6px
}

.filter-box__icon {
    position: absolute;
    transform: translate(9px, 50%)
}

.filter-box__clear {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 3px 3px 0
}

.search-box {
    display: flex;
    position: relative;
    border-radius: 4px;
    transition: box-shadow .15s ease-in-out, background-color .15s ease-in-out
}

.search-box--site {
    max-width: 20rem
}

.search-box--site .search-box__input {
    background-color: var(--secondary-000)
}

.search-box__input {
    height: 36px;
    width: 100%;
    margin-top: 0;
    border-color: var(--border-color);
    border-right-width: 0;
    padding-right: 4.325rem
}

.search-box__input:not([disabled]):hover {
    background-color: var(--secondary-200)
}

.search-box__input:not([disabled]):hover::placeholder {
    color: var(--secondary-600)
}

.search-box__input:not(:valid)~.search-box__clear {
    opacity: 0;
    visibility: hidden
}

.search-box__input:invalid:not(:focus) {
    box-shadow: none
}

.search-box__clear {
    position: absolute;
    right: 36px;
    border-radius: 0;
    border-left-width: 0;
    border-right-width: 0;
    background-color: transparent
}

.search-box__clear.button--focus {
    z-index: 1
}

.search-box__submit {
    position: absolute;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid var(--border-color);
    background-color: transparent
}

.search-box__submit.button--focus {
    z-index: 1
}

.form-field__label {
    display: block;
    color: var(--secondary-800);
    margin-bottom: 4px
}

.form-field__input {
    display: block;
    width: 100%;
    height: 36px;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    border-radius: 4px;
    background: var(--secondary-000);
    color: var(--secondary-800);
    margin-bottom: 1.5rem;
    transition: box-shadow .15s ease-in-out, background-color .15s ease-in-out
}

.form-field__input:hover {
    background-color: var(--secondary-200)
}

.form-field__input--focused,
.form-field__input:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.form-field__fieldset .form-field__input--focused,
.form-field__fieldset .form-field__input:focus {
    z-index: 1
}

.form-field__input--invalid {
    border-color: var(--error-500)
}

.form-field__input::placeholder {
    color: var(--secondary-500)
}

.form-field__error {
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px);
    color: var(--error-500);
    display: none
}

.form-field__input--invalid+.form-field__error {
    display: block;
    margin: -1.25rem 0 .75rem
}

.form-field__error--active {
    display: block
}

.form-field__textarea {
    display: block;
    width: 100%;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    border-radius: 4px;
    background: var(--secondary-000);
    color: var(--secondary-800);
    margin-bottom: 1.5rem;
    transition: box-shadow .15s ease-in-out, background-color .15s ease-in-out
}

.form-field__textarea:hover {
    background-color: var(--secondary-200)
}

.form-field__textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.form-field__textarea--invalid {
    border-color: var(--error-500)
}

.form-field__textarea::placeholder {
    color: var(--secondary-500)
}

.form-field__fieldset {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border: 0;
    padding: 0;
    margin: 0
}

.form-field__fieldset .form-field__error {
    width: 100%;
    margin-bottom: 1.25rem;
    order: 1
}

.radio-buttons {
    display: flex
}

.radio-buttons>.radio-button:not(:first-child) {
    margin-left: 1.5rem
}

.radio-button {
    transition: box-shadow .3s ease-in-out;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: .25rem;
    margin: 0 -.25rem;
    color: var(--secondary-800)
}

.radio-button--focus-within .radio-button__circle {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.radio-button__circle {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 .5rem 0 0;
    border: 1px solid var(--secondary-500);
    border-radius: 100%;
    transition: border-color .3s ease-in-out, background-color .3s ease-in-out, box-shadow .3s ease-in-out
}

.radio-button__circle:hover {
    background-color: var(--secondary-200)
}

.radio-button__circle:before {
    content: "";
    border-radius: 100%;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 2px;
    left: 2px;
    transition: background-color .3s ease-in-out
}

.radio-button__text {
    margin-right: 4px
}

.radio-button input:checked+.radio-button__circle {
    border-color: var(--secondary-500)
}

.radio-button input:checked+.radio-button__circle:before {
    background-color: var(--primary-400)
}

.radio-button input:active+.radio-button__circle {
    background-color: var(--secondary-400)
}

.radio-button input:disabled+.radio-button__circle,
.radio-button input:disabled~.radio-button__text {
    opacity: .5
}

.survey__form .radio-button__circle {
    flex-shrink: 0
}

.survey__form .radio-button__text {
    white-space: normal
}

.form-wrapper {
    width: 31rem;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem
}

.form-divider {
    border-bottom: 1px solid var(--secondary-300);
    height: 15px;
    text-align: center;
    --divider-spacing: 1rem;
    margin: calc(var(--divider-spacing) - 7px) 0 var(--divider-spacing)
}

.form-divider>span {
    display: inline-block;
    background-color: var(--secondary-000);
    padding: 0 .75rem;
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px);
    color: var(--secondary-600)
}

@media (min-width:361px) {
    .form-divider {
        --divider-spacing: 1.5rem
    }
}

.form-errors {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: .5rem .75rem;
    background-color: var(--error-100);
    border-radius: 4px;
    text-align: left;
    color: var(--static-black)
}

.form-errors:empty {
    display: none
}

.form-errors__close-button {
    margin-left: .75rem;
    flex-shrink: 0
}

.scrollable-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    margin: -2px;
    padding: 2px;
    touch-action: pan-y;
    width: calc(var(--scrollable-content-width) + 20px)
}

.browser--windows-firefox .scrollable-content {
    scrollbar-width: thin
}

.scrollable-content>* {
    width: var(--scrollable-content-width, 100%)
}

.scrollable-content--no-scroll {
    overflow-x: unset;
    overflow-y: unset
}

.scrollable-content--modal-right-panel {
    --scrollable-content-width: 30rem;
    margin: -2px;
    padding: 2px 0 2px 24px;
    width: calc(100% - 6px);
    touch-action: pan-y
}

.bfn,
html {
    scrollbar-color: var(--secondary-400) transparent
}

@media (min-width:801px) {
    .bfn ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
        background-color: transparent
    }
    .bfn ::-webkit-scrollbar-thumb {
        border-radius: 6px;
        border: 3px solid transparent;
        background-clip: content-box;
        background-color: var(--secondary-400)
    }
    .bfn ::-webkit-scrollbar-thumb:hover {
        background-color: var(--secondary-500)
    }
}

@media (max-width:800px) {
    .device--android ::-webkit-scrollbar {
        display: none
    }
}

.blog__title {
    margin-top: 0;
    max-width: 752px
}

.blog .section__figure {
    width: auto;
    margin: 1.5rem -1rem
}

@media (min-width:361px) {
    .blog .section__figure {
        width: 100%;
        margin: 1.5rem 0
    }
}

@media (min-width:960px) {
    .blog .section__figure {
        margin: 3rem -6rem;
        width: calc(100% + 12rem)
    }
}

.blog .section__figure--featured-image {
    margin: 0 -1rem
}

@media (min-width:361px) {
    .blog .section__figure--featured-image {
        width: 100%;
        margin: 0
    }
}

.blog .section__image,
.blog .section__video {
    outline: 1px solid var(--image-border-color)
}

.blog__cta {
    background-color: var(--image-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 2rem 0 !important
}

@media (min-width:960px) {
    .blog__cta {
        padding: 3rem 0 !important
    }
}

.blog__pagination {
    background-color: var(--secondary-000);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 4.5rem;
    font-size: 1rem
}

.blog__pagination input[type=number]::-webkit-inner-spin-button,
.blog__pagination input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.blog__pagination input[type=number] {
    -moz-appearance: textfield
}

.blog__load-more-posts {
    background-color: var(--secondary-000);
    padding-bottom: 4.5rem
}

.blog__view-more {
    display: block
}

.blog__view-more--hidden {
    display: none
}

.blog__quote {
    background-color: var(--primary-100);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 8px
}

@media (min-width:361px) {
    .blog__quote {
        padding: 2rem
    }
}

.blog__quote-body {
    margin: 0;
    color: var(--secondary-800);
    font-size: var(--text-font-size);
    line-height: var(--text-line-height)
}

.blog__quote-icon {
    color: var(--primary-500);
    width: 2.5rem;
    height: 4rem
}

.blog__quote-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.blog__quote-container {
    margin-right: 1.5rem;
    float: left
}

.blog__divider {
    border-color: var(--secondary-500);
    margin-top: var(--top-bottom-padding);
    margin-bottom: calc(-1 * var(--top-bottom-padding))
}

@media (min-width:960px) {
    .blog__divider {
        margin-left: -6rem;
        width: calc(100% + 12rem)
    }
}

.blog__breadcrumbs a {
    text-decoration: none !important
}

.blog__author-category {
    color: var(--secondary-800)
}

.blog__author-category a {
    color: inherit
}

.blog__author-category a:active,
.blog__author-category a:hover {
    color: var(--secondary-600)
}

.blog__author-category-divider {
    color: var(--secondary-500);
    margin: 0 .25rem
}

.blog__breadcrumb--arrow {
    transform: rotate(-90deg);
    color: var(--secondary-500)
}

.section--reduce-spacing+.section--reduce-spacing {
    padding-top: 0
}

#disqus_thread {
    width: 100%;
    margin: 0 auto;
    max-width: 724px;
    min-height: 313px
}

.modal-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    --modal-bottom-veil-bg: $black-op-80;
    background: var(--modal-bottom-veil-bg);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y
}

.browser--windows-firefox .modal-root {
    scrollbar-width: thin
}

.modal-root--is-dialog {
    z-index: 9999999999
}

.modal-root--is-inactive {
    pointer-events: none;
    background: 0 0
}

.modal-root--disable-transitions .modal-root__outer {
    transition: none
}

.modal-root--no-shadow .modal-root__inner {
    box-shadow: none
}

.modal-root__outer {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: calc(var(--safe-area-top) + 1rem) 0 calc(var(--safe-area-bottom) + 1rem);
    background: rgba(0, 0, 0, .8);
    opacity: 1;
    transition: opacity .25s
}

.modal-root__outer:focus {
    outline: 0
}

.modal-root__outer--is-topmost {
    position: absolute
}

.modal-root__outer--is-bottommost {
    background: 0 0
}

.modal-root__outer--is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none
}

.modal-root__outer--is-hidden .modal-root__inner {
    display: none
}

.modal-root__outer--fullwidth-on-mobile {
    padding: 0
}

.modal-root__outer--fullwidth-on-mobile .modal-root__inner {
    max-width: 100%
}

.modal-root__outer--fullwidth-on-mobile .dialog,
.modal-root__outer--fullwidth-on-mobile .modal,
.modal-root__outer--fullwidth-on-mobile .modal-root__inner {
    border-radius: 0
}

.modal-root__outer--fullwidth-on-mobile .modal {
    padding-top: var(--safe-area-top);
    padding-bottom: var(--safe-area-bottom)
}

.modal-root__outer--fullwidth-on-mobile .modal-root__close-button {
    top: calc(var(--safe-area-top) + .25rem);
    right: 1rem
}

.modal-root__outer--anchor-bottom {
    padding-bottom: 0;
    overflow: hidden
}

.modal-root__outer--anchor-bottom .modal-root__inner {
    margin: auto 0 0;
    transform: none;
    transition: transform .3s cubic-bezier(.25, .1, .25, 1)
}

.modal-root__outer--anchor-bottom.modal-root__outer--is-hidden .modal-root__inner {
    display: block;
    transform: scale(.95) translateY(1rem);
    transform-origin: bottom center
}

.modal-root__outer--anchor-bottom.modal-root__outer--fullwidth-on-mobile .modal {
    padding-top: 0
}

.modal-root__outer--anchor-bottom .dialog,
.modal-root__outer--anchor-bottom .modal,
.modal-root__outer--anchor-bottom .modal-root__inner {
    border-radius: 12px 12px 0 0
}

.modal-root__arrow-container {
    margin: auto 1rem
}

@media (max-width:800px) {
    .modal-root__arrow-container {
        display: none
    }
}

@media (min-width:801px) {
    .modal-root__arrow-container+.modal-root__inner {
        max-width: calc(100% - 8rem)
    }
}

.modal-root__arrow-button {
    background: var(--secondary-000);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .5)
}

.modal-root__arrow-button:before {
    content: "";
    width: 3.5rem;
    height: 3.5rem;
    position: absolute
}

.modal-root__arrow-button--left .icon {
    transform: scale(-1)
}

.modal-root__arrow-button--left,
.modal-root__arrow-button--right {
    transform: rotate(-90deg)
}

.modal-root__inner {
    max-width: calc(100% - 2rem);
    margin: auto 0;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .5);
    background-color: transparent
}

.modal-root__inner:has(.section__video--playing) {
    box-shadow: none
}

.modal-root__close-button {
    position: absolute;
    top: .25rem;
    right: .25rem
}

.dialog,
.modal {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-000)
}

.dialog:focus,
.modal:focus {
    outline: 0
}

.dialog__heading+.dialog__sub-heading,
.dialog__heading+.modal__sub-heading,
.modal__heading+.dialog__sub-heading,
.modal__heading+.modal__sub-heading {
    margin-top: -.5rem
}

.dialog__sub-heading,
.modal__sub-heading {
    margin-bottom: 1.5rem
}

.dialog__footer,
.modal__footer {
    display: flex
}

.dialog__button,
.modal__button {
    width: auto;
    min-width: 5.5rem;
    flex-grow: 0;
    padding: 0 1rem
}

.modal {
    display: flex;
    flex-direction: column;
    max-width: 100%
}

.modal__body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    font-size: 16px;
    line-height: 24px;
    touch-action: pan-y
}

.modal__form-body {
    padding: .5rem .5rem 1.5rem
}

.modal__footer {
    padding: .75rem 1.5rem 1.5rem
}

.dialog--disable-close .dialog__body {
    padding: 2rem
}

.dialog--disable-close .dialog__footer {
    display: none
}

@media (min-width:361px) {
    .dialog--has-figure .dialog__body {
        --vertical-padding: 2rem
    }
}

.dialog--has-form .dialog__body {
    padding: var(--vertical-padding) var(--horizontal-padding)
}

.dialog--has-form .dialog__footer {
    display: none
}

.dialog--has-illustration {
    text-align: center
}

.dialog--has-illustration .dialog__footer {
    justify-content: center
}

.dialog--mobile .dialog__back-button-header {
    padding: .5rem 0;
    border-bottom: 1px solid var(--secondary-400);
    margin-bottom: 1rem
}

.dialog--mobile .dialog__heading {
    --text-font-size: 18px;
    --heading-font-size: 18px;
    --text-line-height: calc(18px + 8px);
    --heading-line-height: calc(18px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    padding: 1rem 3rem 1rem 1rem;
    border-bottom: 1px solid var(--secondary-400)
}

.dialog--mobile .dialog__body {
    --horizontal-padding: 0;
    padding-top: 0;
    padding-bottom: calc(var(--vertical-padding) + var(--safe-area-bottom))
}

.dialog--mobile hr {
    margin-top: .5rem;
    margin-bottom: .5rem;
    border-color: var(--secondary-400)
}

.dialog--mobile+.modal-root__close-button {
    top: 14px;
    right: 14px
}

.dialog__body {
    max-width: 100%;
    --horizontal-padding: 1rem;
    --vertical-padding: 1.5rem;
    padding: var(--vertical-padding) var(--horizontal-padding) calc(var(--vertical-padding) - 1rem);
    font-size: 15px;
    line-height: 21px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    touch-action: pan-y;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: var(--secondary-000)
}

@media (min-width:361px) {
    .dialog__body {
        --horizontal-padding: 1.5rem;
        --vertical-padding: 2rem
    }
}

@media (min-width:400px) {
    .dialog__body {
        --horizontal-padding: 2rem
    }
}

.browser--windows-firefox .dialog__body {
    scrollbar-width: thin
}

.dialog__button {
    margin: 0 0 1rem 1rem
}

.dialog__button:first-child {
    margin-left: 0
}

.dialog__image {
    background-size: cover;
    background-color: var(--image-bg);
    padding-top: 56.25%
}

.dialog__illustration {
    background: var(--secondary-000);
    padding: 2rem 1rem 0
}

@media (min-width:768px) {
    .dialog__illustration {
        padding: 3rem 3rem 0
    }
}

.dialog__illustration-max-width {
    max-width: 23rem;
    margin: 0 auto
}

.dialog__illustration-image {
    background-size: cover;
    padding-top: 75%
}

.dark-theme .dialog__illustration-image {
    filter: saturate(.6)
}

.dialog__footer {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    padding: 1.5rem 0 0;
    margin-top: 1.5rem;
    background-color: var(--secondary-000);
    border-top: 1px solid var(--secondary-300);
    flex-wrap: wrap
}

.toast {
    position: fixed;
    top: calc(var(--site-nav-height) + var(--safe-area-top) + 12px);
    left: 50%;
    --toast-offset: 50%;
    min-width: 18rem;
    max-width: calc(100% - 2rem);
    display: flex;
    padding: .5rem 10px 0 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    background: var(--secondary-000);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 1200;
    --left-offset: 0px;
    opacity: 0;
    transform: translateX(calc(var(--left-offset) - var(--toast-offset))) scale(.8)
}

.toast:focus {
    outline: 0
}

.toast--is-active {
    opacity: 1;
    transform: translateX(calc(var(--left-offset) - var(--toast-offset))) scale(1);
    transition: opacity .15s cubic-bezier(0, 0, .2, 1), transform .15s cubic-bezier(0, 0, .2, 1)
}

.toast--is-hidden {
    opacity: 0;
    transform: translateX(calc(var(--left-offset) - var(--toast-offset))) scale(.92);
    transition: opacity 75ms, transform 75ms
}

.app-is-open .toast {
    top: calc(var(--top-nav-height) + var(--safe-area-top) + 12px)
}

@media (min-width:768px) {
    .app-is-open.app-side-menu-is-open .toast {
        --left-offset: 164px
    }
}

.toast--bottom-left {
    top: auto !important;
    left: 0;
    --toast-offset: 0px;
    max-width: calc(100% - 2 * var(--left-offset));
    bottom: 1rem;
    --left-offset: 1rem
}

@media (min-width:361px) {
    .toast--bottom-left {
        bottom: 2rem;
        --left-offset: 2rem
    }
}

@media (min-width:768px) {
    .toast--bottom-left {
        --left-offset: 3rem
    }
}

@media (min-width:1200px) {
    .toast--bottom-left {
        --left-offset: calc(3rem + (100vw - 1232px) / 2)
    }
}

@media (max-width:800px) {
    .app-is-open .toast--bottom-left {
        --left-offset: 1rem !important;
        bottom: calc(50px + 67px + 1rem + var(--safe-area-bottom))
    }
}

@media (min-width:801px) {
    .app-is-open .toast--bottom-left {
        --left-offset: calc(56px + 1rem);
        bottom: calc(48px + 1rem + var(--safe-area-bottom))
    }
    .app-is-open.app-side-menu-is-open .toast--bottom-left {
        --left-offset: calc(56px + 1rem + 272px);
        max-width: calc(100% - var(--left-offset) - 1rem)
    }
}

.toast--cookie-banner {
    width: 28rem
}

.toast--cookie-banner p {
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px)
}

.toast--install-app {
    width: 20rem
}

.toast--install-app p {
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px)
}

.toast__content {
    display: flex;
    flex-wrap: wrap
}

.toast p,
.toast__button {
    margin: 0 1rem .5rem 0
}

.toast__close {
    margin-left: -6px
}

.gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.gallery__empty-state,
.gallery__loading,
.gallery__message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    color: inherit;
    text-align: center;
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px)
}

.gallery__empty-state--narrow,
.gallery__loading--narrow,
.gallery__message--narrow {
    --text-font-size: 13px;
    --text-line-height: 18px
}

.gallery__loading {
    flex-grow: 1;
    padding: 1.5rem;
    margin-bottom: 1rem
}

.gallery__loading--below-images {
    padding: .75rem 1.5rem
}

.gallery__loading string {
    margin-left: .5rem
}

.gallery__message {
    padding: .5rem 1rem
}

.gallery__message--is-error {
    border-radius: 4px;
    background: var(--error-100);
    color: var(--static-black)
}

.gallery__message .button {
    display: inline
}

.gallery__message string+.button {
    margin-left: .5rem
}

.gallery__message--narrow {
    padding: .75rem 1rem;
    flex-wrap: wrap
}

.gallery__message--narrow button {
    margin-top: .75rem
}

.gallery__empty-state {
    flex-grow: 1;
    padding: 1.5rem;
    flex-direction: column
}

.gallery__empty-state .icon {
    margin-bottom: 1rem
}

.gallery__empty-state-image {
    max-width: 100%;
    margin-bottom: 1rem
}

.dark-theme .gallery__empty-state-image {
    filter: saturate(.6)
}

.gallery__empty-state p {
    text-align: center
}

.gallery__row {
    display: flex
}

.gallery__item {
    position: relative;
    min-width: 1.75rem;
    background-color: var(--image-bg);
    --border-color: var(--image-border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
    transition: box-shadow .3s ease-in-out, opacity .15s ease-in-out
}

.gallery__item:hover .gallery__item-content {
    opacity: 1;
    pointer-events: all;
    transition: opacity .15s ease-in-out
}

.gallery__item:hover .icon-deselected {
    opacity: 1
}

.gallery__item--has-content.gallery__item--focused .gallery__overlay,
.gallery__item--has-content:focus-within:not(:focus) .gallery__overlay {
    opacity: 1;
    transition: box-shadow .3s ease-in-out, opacity .15s ease-in-out
}

.gallery__item--has-content.gallery__item--focused .gallery__item-content,
.gallery__item--has-content:focus-within:not(:focus) .gallery__item-content {
    opacity: 1;
    pointer-events: all;
    transition: opacity .15s ease-in-out
}

.gallery__item--has-content.gallery__item--focused .icon-deselected,
.gallery__item--has-content:focus-within:not(:focus) .icon-deselected {
    opacity: 1
}

.gallery__item:focus {
    outline: 0
}

.gallery__item--focused {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.gallery__item--bookend {
    background: 0 0;
    pointer-events: none
}

.gallery__item--selectable {
    cursor: auto
}

.gallery__item .gallery__select-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem
}

.gallery__item .gallery__select-button:not(:hover) .icon-deselected {
    background: rgba(255, 255, 255, .4);
    color: transparent;
    filter: none;
    box-shadow: 0 0 1px rgba(0, 0, 0, .75), 0 0 2px rgba(0, 0, 0, .5), 0 0 4px rgba(0, 0, 0, .25);
    border: 1px solid var(--static-white);
    overflow: visible
}

.gallery__item--selected .gallery__outline {
    box-shadow: inset 0 0 0 12px var(--primary-200)
}

@media (max-width:800px) {
    .gallery__item--selected .gallery__outline {
        box-shadow: inset 0 0 0 6px var(--primary-200)
    }
}

.gallery__item--selected .gallery__outline .icon-selected {
    opacity: 1;
    animation: .35s ease-out button-pop
}

.gallery__placeholder {
    border-radius: 8px
}

.browser--chromium .gallery__placeholder {
    image-rendering: -webkit-optimize-contrast
}

.gallery__overlay {
    position: absolute;
    width: 100%;
    height: 3.5rem;
    bottom: 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .006) 8.1%, rgba(0, 0, 0, .022) 15.5%, rgba(0, 0, 0, .047) 22.5%, rgba(0, 0, 0, .079) 29%, rgba(0, 0, 0, .117) 35.3%, rgba(0, 0, 0, .158) 41.2%, rgba(0, 0, 0, .203) 47.1%, rgba(0, 0, 0, .247) 52.9%, rgba(0, 0, 0, .292) 58.8%, rgba(0, 0, 0, .333) 64.7%, rgba(0, 0, 0, .371) 71%, rgba(0, 0, 0, .403) 77.5%, rgba(0, 0, 0, .428) 84.5%, rgba(0, 0, 0, .444) 91.9%, rgba(0, 0, 0, .45) 100%);
    transition: opacity .3s ease-in-out
}

.gallery__outline {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transition: box-shadow .2s ease-out
}

.gallery__outline .icon-deselected,
.gallery__outline .icon-selected {
    position: absolute;
    left: 8px;
    top: 8px
}

.gallery__item-content {
    opacity: .0001;
    pointer-events: none;
    transition: opacity .3s ease-in-out
}

@media (hover:none) {
    .gallery__item-content--show-if-no-hover {
        opacity: 1;
        pointer-events: all
    }
}

.gallery__badge {
    position: absolute;
    bottom: 6px;
    right: 6px
}

.gallery__graphic {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem
}

@keyframes button-pop {
    0% {
        transform: scale(.1)
    }
    50% {
        transform: scale(1.25)
    }
    100% {
        transform: scale(1)
    }
}

.comparison {
    overflow: hidden;
    position: relative;
    color: var(--secondary-000);
    background: var(--secondary-400);
    touch-action: pan-y
}

.comparison * {
    pointer-events: none
}

.comparison__image-before-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transition: width .2s ease-out
}

.comparison__image {
    position: absolute;
    display: block;
    height: 100%;
    width: auto;
    top: 0;
    left: 0
}

.browser--chromium .comparison__image {
    image-rendering: -webkit-optimize-contrast
}

.comparison__handle {
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: calc(50% - 1.5rem);
    top: calc(50% - 1.5rem);
    z-index: 2;
    background: rgba(0, 0, 0, .25);
    border-radius: 100%;
    border: 2px solid var(--secondary-000);
    box-shadow: 0 30px 60px -12px rgba(29, 27, 47, .15), 0 18px 36px -20px rgba(29, 27, 47, .35);
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: transform .2s ease-out
}

.comparison__handle:after,
.comparison__handle:before {
    content: "";
    position: absolute;
    left: calc(1.5rem - 3px);
    width: 2px;
    height: 500px;
    background: var(--secondary-000);
    box-shadow: 0 30px 60px -12px rgba(29, 27, 47, .15), 0 18px 36px -20px rgba(29, 27, 47, .35)
}

.comparison__handle:before {
    top: -500px
}

.comparison__handle:after {
    top: calc(3rem - 2px)
}

.comparison__triangle-left,
.comparison__triangle-right {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    top: 16px
}

.comparison__triangle-left {
    border-right: .5rem solid var(--secondary-000);
    left: 10px
}

.comparison__triangle-right {
    border-left: .5rem solid var(--secondary-000);
    right: 11px
}

.comparison__text-overlay {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

@media (min-width:480px) {
    .comparison--show-text .comparison__text-overlay,
    .comparison:hover .comparison__text-overlay {
        opacity: 1
    }
}

.comparison__after-text,
.comparison__before-text {
    background-color: rgba(34, 30, 70, .9);
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin: 0;
    font-size: 14px;
    padding: 0 .5rem;
    height: 2rem;
    line-height: 2rem;
    color: var(--secondary-000)
}

@media (min-width:600px) {
    .comparison__after-text,
    .comparison__before-text {
        font-size: 16px;
        padding: 0 .75rem;
        height: 2.5rem;
        line-height: 2.5rem
    }
}

.comparison__after-text {
    margin-left: auto
}

.image-box {
    white-space: nowrap;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    padding: 2rem
}

.image-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.image-box .image-box__image {
    vertical-align: middle;
    max-height: 100%;
    max-width: 100%;
    background-color: var(--secondary-000);
    box-shadow: var(--dropdown-box-shadow)
}

.site .image-box .image-box__image {
    box-shadow: none
}

.image-box .image-box__image--is-transparent {
    background: url(/images/app/checker_pattern.jpg)
}

.notifications {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: calc(-1 * var(--top-bottom-padding)) 0 1.5rem;
    padding-top: 1rem;
    overflow: hidden
}

#my_account_modal .notifications {
    padding-top: calc(var(--safe-area-top) + 1rem)
}

.notification {
    margin: 0 auto 1rem;
    padding: .5rem 10px 0 1rem;
    border-radius: 4px;
    border: 1px solid;
    display: flex;
    justify-content: center
}

.notification:last-child {
    margin-bottom: 0
}

.notification--error {
    border-color: var(--error-500);
    background: var(--error-100)
}

.notification--warning {
    border-color: var(--warning-500);
    background: var(--warning-100)
}

.notification--success {
    border-color: var(--success-500);
    background: var(--success-100)
}

.notification__content {
    display: flex;
    flex-wrap: wrap
}

.notification__message {
    --text-color: var(--static-black)
}

.notification__button,
.notification__message {
    margin: 0 1rem .5rem 0 !important
}

.notification__close {
    margin-left: -6px
}

.autocomplete {
    position: absolute;
    top: 40px;
    left: 0;
    border-radius: 4px;
    width: 100%;
    z-index: 1;
    box-shadow: var(--dropdown-box-shadow);
    background-color: var(--secondary-000);
    visibility: hidden
}

.autocomplete--active:not(:empty) {
    visibility: visible
}

.autocomplete.scrollable-content {
    height: auto;
    max-height: 10rem
}

.autocomplete__item {
    padding-left: 1rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.autocomplete__item span {
    font-weight: 700;
    pointer-events: none;
    font-size: var(--button-text-size)
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.pagination__button {
    margin: 0 .5rem
}

.pagination__button--prev .icon {
    transform: rotate(90deg)
}

.pagination__button--next .icon {
    transform: rotate(-90deg)
}

.pagination__input {
    margin: 0 .5rem;
    max-width: 3.5rem;
    -moz-appearance: textfield
}

.pagination__slash {
    margin: 0 .25rem 0 .5rem
}

.pagination__total-pages {
    margin-right: .5rem
}

.pagination__input::-webkit-inner-spin-button,
.pagination__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.pagination__input--blog {
    color: var(--secondary-800);
    border: 1px solid var(--border-color);
    text-align: center;
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    font-size: var(--text-font-size);
    line-height: var(--text-line-height)
}

.pagination__slash,
.pagination__total-pages {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.load-screen {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .1s
}

.load-screen--active {
    display: flex;
    z-index: 9999;
    opacity: 1;
    position: fixed
}

.load-screen--invisible {
    opacity: 0
}

.load-screen__message {
    max-width: 400px;
    margin: 2rem 0 0;
    line-height: 1.5rem;
    padding: .5rem 1rem;
    text-align: center;
    color: var(--static-white);
    background: rgba(0, 0, 0, .5);
    border-radius: 5px;
    pointer-events: none
}

.load-screen__message:empty {
    visibility: hidden;
    margin-top: -1rem
}

.load-screen__progress {
    display: inline-block;
    min-width: 42px;
    font-weight: 700;
    margin-left: 2px
}

.load-screen__iris {
    display: none;
    margin: 0
}

.load-screen__iris--visible {
    display: block
}

.load-screen__iris--visible>div {
    animation-name: iris_rotate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

.load-screen__iris--visible>div>div {
    animation-name: iris_aperture;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out
}

@keyframes iris_rotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes iris_aperture {
    0%,
    100% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(-35deg)
    }
}

.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-bottom: -2px;
    border: 2px solid var(--primary-500);
    border-left-color: var(--primary-100);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transform: translateZ(0);
    animation: 667ms linear infinite tiny-loading-spinner
}

@keyframes tiny-loading-spinner {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.section {
    position: relative;
    --overflow-image-height: 29.5rem;
    --top-bottom-padding: 2rem;
    padding: var(--top-bottom-padding) 0
}

.section--bg-lavender:before,
.section--bg-offwhite:before,
.section--bg-salmon:before,
.section--bg-turquoise:before,
.section--bg-white:before,
.section--bg-yellow:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2
}

.section--bg-lavender.section--first:before,
.section--bg-offwhite.section--first:before,
.section--bg-salmon.section--first:before,
.section--bg-turquoise.section--first:before,
.section--bg-white.section--first:before,
.section--bg-yellow.section--first:before {
    top: calc(-1 * var(--site-nav-height) - var(--safe-area-top));
    height: calc(100% + var(--site-nav-height) + var(--safe-area-top))
}

.section--bg-white:before {
    background: var(--secondary-000)
}

.section--bg-white .section__bg-graphic {
    color: var(--turquoise-100)
}

.section--bg-turquoise:before {
    background: var(--turquoise-500)
}

.section--bg-turquoise .section__bg-graphic {
    color: var(--turquoise-100)
}

.section--bg-salmon:before {
    background: var(--salmon-500)
}

.section--bg-salmon .section__bg-graphic {
    color: var(--salmon-100)
}

.section--bg-lavender:before {
    background: var(--lavender-500)
}

.section--bg-lavender .section__bg-graphic {
    color: var(--lavender-100)
}

.section--bg-yellow:before {
    background: var(--yellow-500)
}

.section--bg-yellow .section__bg-graphic {
    color: var(--yellow-100)
}

.section--bg-offwhite:before {
    background: var(--secondary-100)
}

.section--bg-offwhite .section__bg-graphic {
    color: var(--lavender-100)
}

@media (min-height:671px) {
    .section {
        --overflow-image-height: 31.5rem
    }
}

.section__bg-graphic {
    display: none;
    margin: 0 auto;
    position: absolute;
    z-index: -2
}

.section__bg-graphic--hero {
    --svg-height: calc(var(--overflow-image-height) + 8.5rem + 6rem)
}

@media (min-width:960px) {
    .section__bg-graphic--hero {
        display: block;
        width: calc(var(--svg-height) * 1.5117021277);
        height: var(--svg-height);
        top: calc(50% - (var(--overflow-image-height)/ 2) - 8.5rem);
        left: calc(50% - .5rem - 7.25rem)
    }
}

@media (max-width:959px) {
    .section__bg-graphic--hero-mobile {
        display: block;
        bottom: 0;
        width: calc(100% + 4rem);
        height: auto
    }
}

.section__bg-graphic--qr-background {
    --svg-height: calc(var(--overflow-image-height) + 8.5rem + 6rem)
}

@media (min-width:960px) {
    .section__bg-graphic--qr-background {
        display: block;
        width: calc(var(--svg-height) * 1.5117021277);
        height: var(--svg-height);
        top: calc(50% - (var(--overflow-image-height)/ 2) - 8.5rem);
        left: calc(66% - .5rem - 10.25rem)
    }
    .section__bg-graphic--qr-background-left {
        left: auto;
        right: calc(66% - .5rem - 10.25rem)
    }
}

.section__caption {
    margin: .5rem 1rem 0;
    color: var(--secondary-800);
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    font-size: var(--text-font-size);
    line-height: var(--text-line-height)
}

@media (min-width:361px) {
    .section__caption {
        margin: .5rem 0 0
    }
}

.section--page-header h1:last-child {
    margin-bottom: 0
}

@media (min-width:768px) {
    .section {
        --top-bottom-padding: 3rem
    }
}

@media (min-height:671px) {
    .section {
        --top-bottom-padding: 3rem
    }
}

@media (min-height:671px) and (min-width:768px) {
    .section {
        --top-bottom-padding: 4rem
    }
}

@media (min-width:960px) {
    .section--extend-height {
        min-height: 600px;
        height: calc(var(--100vh) - var(--site-nav-height) - var(--safe-area-top));
        max-height: calc(900px - var(--site-nav-height) - var(--safe-area-top));
        display: flex;
        align-items: center
    }
}

.section__grid {
    display: grid;
    grid-gap: 0 1rem;
    grid-template-columns: repeat(12, 1fr)
}

.section__grid>* {
    order: 1
}

.section__grid--figure-align-center .section__text,
.section__grid--figure-align-left .section__text,
.section__grid--figure-align-overflow-left .section__text,
.section__grid--figure-align-overflow-right .section__text,
.section__grid--figure-align-right .section__text {
    margin-bottom: calc(var(--top-bottom-padding) - 1rem)
}

@supports (margin:0px) {
    .section__grid--figure-align-center .section__text,
    .section__grid--figure-align-left .section__text,
    .section__grid--figure-align-overflow-left .section__text,
    .section__grid--figure-align-overflow-right .section__text,
    .section__grid--figure-align-right .section__text {
        margin-bottom: max(1.5rem, var(--top-bottom-padding) - 1rem)
    }
}

@media (min-width:768px) and (max-width:959px) {
    .section__grid--figure-align-center .section__text,
    .section__grid--figure-align-left .section__text,
    .section__grid--figure-align-overflow-left .section__text,
    .section__grid--figure-align-overflow-right .section__text,
    .section__grid--figure-align-right .section__text {
        grid-column: 2/12;
        --text-margin-bottom: 1.5rem;
        --text-font-size: 18px;
        --heading-font-size: 18px;
        --text-line-height: calc(18px + 8px);
        --heading-line-height: calc(18px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
    .section--first .section__grid--figure-align-center .section__text:not(.section__text--centered),
    .section--first .section__grid--figure-align-left .section__text:not(.section__text--centered),
    .section--first .section__grid--figure-align-overflow-left .section__text:not(.section__text--centered),
    .section--first .section__grid--figure-align-overflow-right .section__text:not(.section__text--centered),
    .section--first .section__grid--figure-align-right .section__text:not(.section__text--centered) {
        grid-column: 1/11
    }
}

.section__grid--figure-align-center .section__figure,
.section__grid--figure-align-left .section__figure,
.section__grid--figure-align-overflow-left .section__figure,
.section__grid--figure-align-overflow-right .section__figure,
.section__grid--figure-align-right .section__figure {
    width: auto;
    margin-left: -1rem;
    margin-right: -1rem
}

.section__grid--figure-align-center .section__figure:has(.section__image--mobile),
.section__grid--figure-align-center .section__figure:has(.transitioning-images--mobile),
.section__grid--figure-align-left .section__figure:has(.section__image--mobile),
.section__grid--figure-align-left .section__figure:has(.transitioning-images--mobile),
.section__grid--figure-align-overflow-left .section__figure:has(.section__image--mobile),
.section__grid--figure-align-overflow-left .section__figure:has(.transitioning-images--mobile),
.section__grid--figure-align-overflow-right .section__figure:has(.section__image--mobile),
.section__grid--figure-align-overflow-right .section__figure:has(.transitioning-images--mobile),
.section__grid--figure-align-right .section__figure:has(.section__image--mobile),
.section__grid--figure-align-right .section__figure:has(.transitioning-images--mobile) {
    width: 100%;
    margin-left: 0;
    margin-right: 0
}

@media (min-width:361px) {
    .section__grid--figure-align-center .section__figure,
    .section__grid--figure-align-left .section__figure,
    .section__grid--figure-align-overflow-left .section__figure,
    .section__grid--figure-align-overflow-right .section__figure,
    .section__grid--figure-align-right .section__figure {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }
}

@media (min-width:960px) {
    .section__grid--figure-align-center .section__text {
        grid-column: 2/10
    }
    .section__grid--figure-align-center .section__text--centered {
        grid-column: 3/11
    }
    .section__grid--figure-align-center .section__figure {
        grid-column: 2/12
    }
    .section__grid--figure-align-left .section__text {
        grid-column: 8/13;
        margin-bottom: 0
    }
    .section__grid--figure-align-left .section__figure {
        order: 0;
        grid-column: 1/7
    }
    .section__grid--figure-align-overflow-left .section__text {
        grid-column: 8/13;
        margin-bottom: 0
    }
    .section__grid--figure-align-overflow-left .section__figure {
        order: 0;
        grid-column: 1/7;
        height: var(--overflow-image-height)
    }
    .section__grid--figure-align-overflow-left .section__figure .section__image {
        position: absolute;
        right: 0;
        height: 100%;
        width: auto
    }
    .section__grid--figure-align-right .section__text {
        grid-column: 1/6;
        margin-bottom: 0
    }
    .section__grid--figure-align-right .section__figure {
        grid-column: 7/13
    }
    .section__grid--figure-align-overflow-right .section__text {
        grid-column: 1/6;
        margin-bottom: 0
    }
    .section__grid--figure-align-overflow-right .section__figure {
        grid-column: 7/13;
        height: var(--overflow-image-height)
    }
    .section__grid--figure-align-overflow-right .section__figure .section__image {
        height: 100%;
        width: auto
    }
}

.section__grid--cards .section__text {
    margin-bottom: calc(var(--top-bottom-padding) - 2rem)
}

.section__grid--cards .section__text .section__heading:last-child {
    margin-bottom: 0
}

.section__grid--cards {
    grid-gap: 1rem 1rem
}

.section__figure {
    position: relative;
    width: 100%;
    margin: 0;
    z-index: 1;
    align-self: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    grid-column: 1/-1
}

.section__figure--shadow .section__image,
.section__figure--shadow .section__video {
    box-shadow: 0 0 24px -4px rgba(30, 32, 36, .1), 0 8px 16px -8px rgba(30, 32, 36, .3)
}

.section__figure--shadow .section__image--mobile,
.section__figure--shadow .section__video--mobile {
    box-shadow: none
}

.section__figure--align-right {
    display: flex;
    justify-content: end
}

.section__text {
    grid-column: 1/-1
}

.section__text--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

@media (min-width:768px) {
    .section__text--centered {
        grid-column: 2/12
    }
}

@media (min-width:960px) {
    .section__text--centered {
        grid-column: 3/11
    }
}

.section__text--centered .section__buttons {
    display: flex;
    justify-content: center;
    align-items: center
}

.section__text a {
    display: inline
}

.section__heading {
    grid-column: 1/-1
}

@media (min-width:768px) {
    .section__heading {
        grid-column: 2/12
    }
}

.section__heading a {
    color: inherit;
    text-decoration: none !important
}

.section--top-single-heading {
    background: var(--secondary-200);
    padding: var(--top-bottom-padding, 3rem) 0
}

@supports (margin:0px) {
    .section--top-single-heading {
        padding: max(3rem, var(--top-bottom-padding, 3rem)) 0
    }
}

.section--top-single-heading h1 {
    margin-bottom: .5rem
}

@media (min-width:960px) {
    .section--top-single-heading h1 {
        margin-bottom: 1rem
    }
}

.section__row-header {
    grid-column: 1/-1;
    margin-bottom: .5rem
}

.section__row-header .section__heading:last-child {
    --heading-margin-bottom: 0
}

@media (min-width:361px) {
    .section__row-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        width: 100%
    }
    .section__row-header .section__heading {
        margin-bottom: 0;
        margin-right: auto
    }
}

.section__row-header .button--link {
    padding: 0
}

.section__image {
    height: auto;
    width: 100%
}

.browser--chromium .section__image {
    image-rendering: -webkit-optimize-contrast
}

@media (min-width:768px) {
    .section__image--mobile {
        display: none
    }
}

@media (max-width:767px) {
    .section__image--mobile+.section__image {
        display: none
    }
}

.section__video {
    padding: 56.25% 0 0;
    position: relative;
    background: var(--turquoise-100)
}

.section__video--no-background {
    background: 0 0
}

.section__video--playing .section__video-image,
.section__video--playing .section__video-play-button {
    opacity: 0 !important;
    pointer-events: none
}

.section__video--playing .grid-item__image,
.section__video--playing .grid-item__text {
    display: none
}

.section__video--playing+.modal-root__close-button {
    z-index: 9;
    --text-color: var(--static-white);
    pointer-events: all
}

@media (min-width:768px) {
    .section__video--playing+.modal-root__close-button {
        top: -4rem;
        right: -1rem
    }
}

.section__video--playing+.modal-root__close-button:hover {
    --text-color: var(--secondary-800)
}

.section__video:hover .section__video-play-button {
    cursor: pointer;
    opacity: 1
}

.section__video-play-button {
    --icon-size: 60px;
    position: absolute;
    z-index: 3;
    margin: 0 auto;
    top: calc(50% - var(--icon-size)/ 2);
    left: calc(50% - var(--icon-size)/ 2);
    width: var(--icon-size);
    height: var(--icon-size);
    opacity: .8;
    transition: opacity .15s ease-in-out
}

@media (min-width:361px) {
    .section__video-play-button {
        --icon-size: 80px
    }
}

@media (min-width:768px) {
    .section__video-play-button {
        --icon-size: 100px
    }
}

@media (min-width:960px) {
    .section__video-play-button {
        --icon-size: 122px
    }
}

.section__video-play-button:focus {
    opacity: 1
}

.section__video-custom,
.section__video-iframe,
.section__video-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

.section__video-iframe[src=""] {
    display: none
}

.section__video-image {
    cursor: pointer;
    opacity: 1;
    transition: opacity .15s
}

.browser--chromium .section__video-image {
    image-rendering: -webkit-optimize-contrast
}

.section__buttons {
    align-items: center
}

.section__buttons>.button {
    flex-grow: 0
}

@media (max-width:959px) {
    .section__buttons--hide-on-mobile {
        display: none
    }
}

@media (min-width:960px) {
    .section--cta .section__grid {
        min-height: 12rem;
        align-items: center
    }
    .section--cta .section__text--centered {
        grid-column: 3/11
    }
}

.section--cta-qr {
    overflow: hidden;
    display: none
}

@media (min-width:960px) {
    .section--cta-qr {
        display: block
    }
}

.section__bg-graphic--cta {
    display: none
}

@media (min-width:768px) {
    .section__bg-graphic--cta {
        display: block;
        position: relative;
        height: 100%;
        z-index: -1
    }
    .section__bg-graphic--cta svg {
        position: absolute;
        height: calc(100% - 1rem + 2 * var(--top-bottom-padding));
        max-height: 304px
    }
    .section__bg-graphic--cta.section__bg-graphic--left {
        grid-column: 1/2
    }
}

@media (min-width:768px) and (min-width:960px) {
    .section__bg-graphic--cta.section__bg-graphic--left {
        grid-column: 1/3
    }
}

@media (min-width:768px) {
    .section__bg-graphic--cta.section__bg-graphic--left svg {
        bottom: calc(-1px - var(--top-bottom-padding));
        right: -11rem
    }
}

@media (min-width:768px) {
    .section__bg-graphic--cta.section__bg-graphic--right {
        grid-column: 12/-1
    }
}

@media (min-width:768px) and (min-width:960px) {
    .section__bg-graphic--cta.section__bg-graphic--right {
        grid-column: 11/-1
    }
}

@media (min-width:768px) {
    .section__bg-graphic--cta.section__bg-graphic--right svg {
        top: calc(-2px - var(--top-bottom-padding));
        left: -7rem
    }
}

@media (min-width:1475px) {
    .section__bg-graphic--cta {
        position: static
    }
    .section__bg-graphic--cta svg {
        height: calc(100% - 1rem)
    }
    .section__bg-graphic--cta.section__bg-graphic--left svg {
        bottom: -1px;
        left: -7.875rem;
        right: initial
    }
    .pricing-modal .section__bg-graphic--cta.section__bg-graphic--left svg {
        left: -15.75rem
    }
    .section__bg-graphic--cta.section__bg-graphic--right svg {
        top: -2px;
        right: -15.5rem;
        left: initial
    }
    .pricing-modal .section__bg-graphic--cta.section__bg-graphic--right svg {
        right: -25.5rem
    }
}

@media (min-width:768px) {
    .section--rich-text .section__text {
        grid-column: 2/12
    }
}

@media (min-width:960px) {
    .section--rich-text .section__text {
        grid-column: 3/11
    }
}

@media (min-width:900px) {
    .section--pricing:before {
        background-image: url(/images/site/background-shapes/pricing-page-top-left.svg), url(/images/site/background-shapes/pricing-page-bottom-right.svg);
        background-repeat: no-repeat, no-repeat;
        background-size: 386px auto, 380px auto;
        background-position: top calc(var(--site-nav-height) * .5) left calc(-25rem + 30%), bottom -5rem right calc(-25rem + 30%)
    }
}

@media (min-width:900px) and (min-width:1500px) {
    .section--pricing:before {
        background-position: top calc(var(--site-nav-height) * .5) left calc(-25rem + 300px), bottom -5rem right calc(-25rem + 300px)
    }
    .pricing-modal .section--pricing:before {
        background-position: top calc(var(--site-nav-height) * .5) left calc(-25rem + 30%), bottom -5rem right calc(-25rem + 30%)
    }
}

.grid-item {
    background: var(--secondary-000);
    border: 1px solid var(--secondary-300);
    border-radius: 8px;
    overflow: hidden;
    --heading-margin-bottom: 0.5rem
}

.grid-item--2 {
    grid-column: span 6
}

@media (min-width:768px) {
    .grid-item--2 {
        grid-column: span 3
    }
}

.grid-item--3 {
    grid-column: 1/-1
}

@media (min-width:460px) {
    .grid-item--3 {
        grid-column: 2/12
    }
}

@media (min-width:768px) {
    .grid-item--3 {
        grid-column: span 6
    }
}

@media (min-width:960px) {
    .grid-item--3 {
        grid-column: span 4
    }
}

.grid-item--4 {
    grid-column: 1/-1
}

@media (min-width:361px) {
    .grid-item--4 {
        grid-column: 2/12
    }
}

@media (min-width:500px) {
    .grid-item--4 {
        grid-column: 3/11
    }
}

@media (min-width:600px) {
    .grid-item--4 {
        grid-column: span 6
    }
}

@media (min-width:960px) {
    .grid-item--4 {
        grid-column: span 3
    }
}

.grid-item--link {
    color: inherit !important;
    transition: transform .15s, box-shadow .15s !important
}

.grid-item--link .grid-item__image {
    transition: filter .2s !important
}

.grid-item--link:hover {
    transform: scale(1.01902)
}

.grid-item--link:hover .grid-item__image {
    filter: saturate(1.1) contrast(1.1)
}

.grid-item--link:hover .grid-item__figure--illustration .grid-item__image {
    filter: none
}

.grid-item--link:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.grid-item__heading {
    --text-font-size: 18px;
    --heading-font-size: 18px;
    --text-line-height: calc(18px + 8px);
    --heading-line-height: calc(18px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700
}

@media (min-width:768px) {
    .grid-item__heading {
        --text-font-size: 20px;
        --heading-font-size: 20px;
        --text-line-height: calc(20px + 8px);
        --heading-line-height: calc(20px + 8px);
        --heading-margin-bottom: 8px;
        --heading-margin-top: 24px;
        --heading-font-weight: 700
    }
}

.grid-item__heading:last-child {
    --heading-margin-bottom: 0
}

.grid-item__figure {
    margin: 0
}

.grid-item__figure--illustration {
    padding: 1.5rem 1.5rem 0
}

@media (min-width:960px) {
    .grid-item__figure--illustration {
        padding: 2rem 2rem 0
    }
}

.grid-item__figure--illustration .grid-item__image {
    border: none
}

.grid-item__image {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--secondary-300)
}

.grid-item__text {
    padding: 1rem
}

.grid-item__text--centered {
    text-align: center
}

@media (min-width:361px) {
    .grid-item__text {
        padding: 1.5rem
    }
}

.grid-item__text--single-line {
    padding-left: 1rem;
    padding-right: 1rem
}

.grid-item__text a {
    display: inline
}

.grid-item__video {
    position: relative
}

.grid-item__video .section__video-play-button {
    --icon-size: 100px;
    transform: translateY(50%);
    top: 0
}

@media (max-width:800px) {
    .grid-item__video .section__video-play-button {
        transform: translateY(30%)
    }
}

@media (min-width:960px) {
    .section__grid--4-per-row.section__grid--has-only-3 {
        padding: 0 calc(7rem + 5%)
    }
    .section__grid--4-per-row.section__grid--has-only-3 .section__text--centered {
        grid-column: 2/12
    }
    .section__grid--4-per-row.section__grid--has-only-3 .grid-item--4 {
        grid-column: span 4
    }
}

.centered-column-width,
.notifications__inner,
.section__grid,
.section__no-grid {
    width: 100%;
    padding: 0 1rem;
    max-width: 1232px;
    margin: 0 auto
}

@media (min-width:361px) {
    .centered-column-width,
    .notifications__inner,
    .section__grid,
    .section__no-grid {
        padding: 0 2rem
    }
}

@media (min-width:768px) {
    .centered-column-width,
    .notifications__inner,
    .section__grid,
    .section__no-grid {
        padding: 0 3rem
    }
}

@media (max-width:800px) {
    .section__video-grid-modal .section__video-iframe {
        top: 40%;
        height: auto
    }
}

.site-root {
    width: 100%;
    overflow: hidden
}

.site-nav {
    background-color: transparent;
    transition: background-color .5s cubic-bezier(.165, .84, .44, 1), box-shadow .5s cubic-bezier(.165, .84, .44, 1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding-top: var(--safe-area-top);
    z-index: 10;
    perspective: 2000px
}

.site-nav--not-signed-in .site-nav__item--account,
.site-nav--not-signed-in .site-nav__item--dashboard,
.site-nav--not-signed-in .site-nav__popup-account,
.site-nav--signed-in .site-nav__item--get-started,
.site-nav--signed-in .site-nav__item--sign-in,
.site-nav--signed-in .site-nav__popup-button--sign-in,
.site-nav--user-is-plus .site-nav__upgrade-button {
    display: none
}

.site-nav--scrolling,
.site-nav--white {
    box-shadow: inset 0 -1px 0 0 var(--secondary-300);
    background-color: var(--secondary-000)
}

@media (display-mode:standalone) {
    .site-nav--white {
        border-top: 1px solid var(--border-color-1)
    }
}

.site-nav__skip-to-content {
    padding: 4px;
    position: absolute;
    margin-left: 10rem;
    transform: translateY(calc(-1 * (100% + var(--site-nav-height)/ 2 + var(--safe-area-top))));
    transition: transform .3s cubic-bezier(.25, .1, .25, 1), box-shadow .15s ease-in-out;
    color: var(--secondary-800)
}

.site-nav__skip-to-content:focus {
    transform: translateY(0);
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

@media (prefers-reduced-motion) {
    .site-nav__skip-to-content {
        transition: none
    }
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: var(--site-nav-height);
    overflow: hidden;
    --text-color: var(--secondary-800)
}

.site-nav-placeholder {
    height: calc(var(--site-nav-height) + var(--safe-area-top))
}

.site-nav__logo {
    background: url(/images/site/logo-darker.svg) 0/contain no-repeat;
    height: 2rem;
    width: 8.5rem;
    text-decoration: none;
    --text-color: transparent
}

@media (min-height:671px) {
    .site-nav__logo {
        height: 2.25rem
    }
}

@media (min-width:960px) and (min-height:800px) {
    .site-nav__logo {
        height: 2.5rem
    }
}

.site-nav__hamburger {
    flex-direction: column;
    justify-content: space-between;
    padding: .5rem .375rem
}

.site-nav__hamburger span {
    height: 2px;
    width: 20px;
    background: currentColor
}

@media (min-width:767px) {
    .site-nav__hamburger {
        display: none
    }
}

.site-nav__space {
    margin: auto
}

.site-nav__item {
    display: none;
    padding: 0 1rem;
    color: var(--text-color)
}

.site-nav__item--dashboard {
    --button-height: 32px
}

.site-nav__item--dashboard,
.site-nav__item--sign-in {
    margin-right: 1rem
}

@media (min-width:767px) {
    .site-nav__item {
        display: block
    }
}

.site-nav__item--has-dropdown {
    position: relative;
    cursor: default
}

.site-nav__item--has-dropdown:before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 2rem);
    height: calc(var(--site-nav-height) + 1.5rem);
    top: -1.5rem;
    left: -1rem
}

.site-nav__item--has-dropdown:after {
    content: "";
    position: absolute;
    height: calc(var(--site-nav-height) - 1.875rem);
    top: 1.875rem;
    width: calc(100% + 6rem);
    left: -3rem;
    display: none
}

@media (min-width:960px) {
    .site-nav__item--has-dropdown:after {
        width: calc(100% + 9rem);
        left: -4.5rem
    }
}

.site-nav__item--has-dropdown[aria-expanded=true] {
    z-index: 11
}

.site-nav__item--has-dropdown[aria-expanded=true]:after {
    display: block
}

.site-nav__link:hover {
    color: var(--secondary-600)
}

.site-nav__link:focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.site-nav__button {
    display: inline-block
}

.site-nav__item--account {
    display: flex;
    align-items: center;
    padding: 0
}

.site-nav__item--account.button--focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.site-nav__user-circle {
    width: 2rem;
    line-height: 2rem;
    height: 2rem;
    margin-right: .5rem;
    background: var(--primary-500);
    border-radius: .5rem;
    text-align: center;
    color: var(--secondary-000)
}

.site-nav__user-email {
    display: block;
    color: var(--secondary-600);
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px)
}

.site-nav__dropdown-root {
    position: absolute;
    left: 0;
    top: calc(var(--site-nav-height) + var(--safe-area-top));
    transform-origin: 50% -50px;
    transition-property: transform, opacity;
    transition-duration: .25s;
    will-change: transform, opacity
}

.site-nav__dropdown-root--inactive {
    pointer-events: none;
    opacity: 0;
    transform: rotateX(-15deg)
}

.site-nav__dropdown-root--inactive .site-nav__dropdown-content,
.site-nav__dropdown-root--inactive .site-nav__dropdown-content a[href] string {
    pointer-events: none
}

.site-nav__dropdown-root--disable-transitions .site-nav__dropdown-arrow,
.site-nav__dropdown-root--disable-transitions .site-nav__dropdown-bg,
.site-nav__dropdown-root--disable-transitions .site-nav__dropdown-container,
.site-nav__dropdown-root--disable-transitions .site-nav__dropdown-section {
    transition: none
}

.site-nav__dropdown-bg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--secondary-000);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(29, 27, 47, .15), 0 18px 36px -20px rgba(29, 27, 47, .35);
    transform: translateX(0);
    transform-origin: 0 0;
    transition-property: transform, width, height;
    transition-duration: .25s;
    will-change: transform, width, height
}

.site-nav__dropdown-arrow {
    position: absolute;
    z-index: 2;
    width: 0;
    height: 0;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-bottom: .5rem solid #fff;
    margin-top: calc(1px - .5rem);
    pointer-events: none;
    transition: transform .25s;
    will-change: transform
}

.site-nav--scrolling .site-nav__breadcrumbs {
    display: none
}

.site-nav--scrolling .site-nav__dropdown-arrow,
.site-nav--white .site-nav__dropdown-arrow {
    border-bottom-color: var(--secondary-300);
    margin-top: -.5rem
}

.site-nav--scrolling .site-nav__dropdown-arrow:before,
.site-nav--white .site-nav__dropdown-arrow:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-bottom: .5rem solid #fff;
    margin: 1.4px 0 0 -.5rem;
    pointer-events: none
}

.site-nav__dropdown-container {
    position: absolute;
    top: -1px;
    left: 0;
    overflow: hidden;
    transform: translateX(0);
    transition-property: transform, width, height;
    transition-duration: .25s;
    will-change: transform, width, height
}

.site-nav--scrolling .site-nav__dropdown-bg,
.site-nav--white .site-nav__dropdown-bg {
    border: 1px solid var(--secondary-300)
}

.site-nav__dropdown-section {
    opacity: 0;
    pointer-events: none;
    transition-property: transform, opacity;
    transition-duration: .25s;
    will-change: transform, opacity
}

.site-nav__dropdown-section--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto
}

.site-nav__dropdown-section--left {
    transform: translateX(-150px)
}

.site-nav__dropdown-section--right {
    transform: translateX(150px)
}

.site-nav__dropdown-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    display: grid
}

.site-nav__dropdown-content--3 {
    grid-template-columns: 1fr 1fr 1fr
}

.site-nav__dropdown-content--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr
}

.site-nav__dropdown-link {
    padding: .5rem 1rem;
    border-radius: .5rem;
    width: 12rem;
    color: var(--secondary-800);
    transition: .15s
}

.site-nav__dropdown-link:active,
.site-nav__dropdown-link:hover {
    background-color: var(--secondary-200)
}

.site-nav__dropdown-link--sign-out {
    line-height: 1rem;
    text-align: left;
    height: 40px
}

.site-nav__dropdown-card {
    padding: 1rem;
    border-radius: .5rem;
    width: 11rem;
    transition: .15s
}

@media (min-width:960px) {
    .site-nav__dropdown-card {
        width: 14rem
    }
}

.site-nav__dropdown-card:active,
.site-nav__dropdown-card:hover {
    background-color: var(--secondary-200);
    transform: scale(1.025)
}

.site-nav__dropdown-image {
    width: 100%;
    height: auto;
    background: var(--image-bg)
}

.site-nav__dropdown-heading {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    margin: 0
}

.site-nav__dropdown-description {
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px);
    color: var(--secondary-600);
    margin-bottom: .25rem
}

.site-nav__popup-root {
    position: absolute;
    top: 0;
    right: 0;
    height: var(--100vh);
    width: 20rem;
    max-width: calc(100% - 1.5rem);
    padding-top: var(--safe-area-top);
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    background: var(--secondary-000);
    box-shadow: 0 30px 60px -12px rgba(29, 27, 47, .15), 0 18px 36px -20px rgba(29, 27, 47, .35);
    opacity: 0;
    transform: scale(.95);
    transform-origin: 100% 0;
    will-change: transform, opacity;
    transition-property: transform, opacity;
    transition-duration: .25s;
    transition-timing-function: ease
}

.browser--windows-firefox .site-nav__popup-root {
    scrollbar-width: thin
}

.site-nav__popup-root--active {
    pointer-events: auto;
    transform: none;
    opacity: 1
}

@media (max-width:766px) {
    .site-nav:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--100vh);
        background: rgba(0, 0, 0, .5);
        pointer-events: none;
        opacity: 0;
        transition: opacity .25s
    }
}

.site-nav__popup-close {
    position: absolute;
    top: var(--safe-area-top);
    right: 0;
    height: 2.5rem;
    width: 2.5rem
}

.site-nav__popup-content {
    margin: 2.5rem 0;
    padding: 0 1.5rem;
    border-top: 1px solid var(--secondary-300);
    --text-color: var(--secondary-800)
}

.site-nav__popup-item {
    height: 2.75rem;
    line-height: 2.75rem;
    border-bottom: 1px solid var(--secondary-300);
    margin-bottom: 0
}

.site-nav__popup-accordion {
    display: flex
}

.site-nav__popup-accordion .icon {
    margin-left: auto;
    transition: transform .2s
}

.site-nav__popup-accordion+div {
    display: none
}

.site-nav__popup-accordion--open {
    border-bottom: none
}

.site-nav__popup-accordion--open .icon {
    transform: scaleY(-1)
}

.site-nav__popup-accordion--open+div {
    display: block;
    padding-bottom: .5rem
}

.site-nav__popup-accordion-items {
    padding-left: 1rem;
    border-bottom: 1px solid var(--secondary-300)
}

.site-nav__popup-button {
    color: var(--text-color);
    border-radius: 0;
    width: 100%;
    justify-content: flex-start
}

.site-nav__popup-button.button--focus {
    outline: 0;
    box-shadow: 0 0 0 2px var(--focus-outline-color)
}

.site-nav__popup-button:active {
    background: var(--secondary-200)
}

.site-nav__popup-button--my-account {
    height: auto;
    flex-direction: column;
    align-items: flex-start
}

.site-nav__popup-button--my-account .site-nav__user-email {
    margin: -.5rem 0 .5rem
}

.site-nav__popup-cta {
    margin-top: .75rem
}

@media (max-width:766px) {
    .site-root--site-nav-popup-active {
        height: var(--100vh)
    }
    .site-root--site-nav-popup-active .site-nav:before {
        opacity: 1
    }
}

@media (max-width:766px) {
    .site-nav__dropdown-root,
    .site-nav__item--desktop {
        display: none
    }
}

@media (min-width:767px) {
    .site-nav__popup-root {
        display: none
    }
}

.site-footer {
    background-color: var(--secondary-100)
}

@media (min-width:1270px) {
    .site-footer--above-sticky-menu {
        z-index: 1
    }
}

.site-footer__grid {
    display: grid;
    grid-gap: 2rem 3rem;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "products" "ai-features" "features" "resources" "company" "icons";
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--secondary-300);
    --text-margin-bottom: 0.75rem
}

@media (min-width:361px) {
    .site-footer__grid {
        --text-margin-bottom: 1rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "products ai-features" "features resources" "company icons"
    }
}

@media (min-width:768px) {
    .site-footer__grid {
        grid-template-columns: repeat(5, 1fr);
        grid-template-areas: "products ai-features features resources company" "icons icons icons icons icons"
    }
}

@media (min-width:1160px) {
    .site-footer__grid {
        grid-template-columns: repeat(14, 1fr);
        grid-template-areas: "icons icons icons icons products products ai-features ai-features features features resources resources company company"
    }
}

@media (min-width:768px) and (max-width:860px) {
    .site-footer__grid:lang(de),
    .site-footer__grid:lang(no) {
        --text-margin-bottom: 1rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "products ai-features" "features resources" "company icons"
    }
    .site-footer__grid:lang(de) .site-footer__icons,
    .site-footer__grid:lang(de) .site-footer__social,
    .site-footer__grid:lang(no) .site-footer__icons,
    .site-footer__grid:lang(no) .site-footer__social {
        display: block;
        margin-top: 0
    }
}

.site-footer__icons {
    grid-area: icons
}

.site-footer__products {
    grid-area: products
}

.site-footer__ai-features {
    grid-area: ai-features
}

.site-footer__features {
    grid-area: features
}

.site-footer__resources {
    grid-area: resources
}

.site-footer__company {
    grid-area: company
}

.site-footer__heading {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    margin-bottom: 1rem
}

.site-footer__link {
    float: left;
    clear: both;
    margin-bottom: var(--text-margin-bottom);
    color: var(--secondary-600)
}

.site-footer__link:hover {
    color: var(--secondary-800)
}

@media (min-width:768px) and (max-width:1159px) {
    .site-footer__icons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 3rem
    }
}

.site-footer__logo {
    background: url(/images/site/logo-darker.svg) 0/contain no-repeat;
    display: block;
    margin-bottom: 1.5rem;
    height: 2rem;
    width: 6.5rem
}

.dark-theme .site-footer__logo {
    background: url(/images/site/logo-light1.svg) 0/contain no-repeat
}

@media (min-width:768px) {
    .site-footer__logo {
        height: 2.5rem;
        width: 8.5rem
    }
}

.site-footer__logo string {
    color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap
}

@media (min-width:361px) and (max-width:767px) {
    .site-footer__social {
        flex-direction: column
    }
}

.site-footer__social .button-group {
    margin: 0 8px 8px 0
}

.site-footer__social .button--icon {
    padding: 0
}

.site-footer__language {
    margin-bottom: 1rem;
    display: inline-block
}

.site-footer__current-language {
    margin-left: 4px
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 1rem
}

@media (min-width:768px) {
    .site-footer__bottom {
        padding-top: 1.5rem;
        flex-direction: row
    }
}

.site-footer__bottom a {
    color: var(--secondary-600)
}

.site-footer__bottom a:hover {
    color: var(--secondary-800)
}

.popup__parent {
    position: relative;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content
}

.popup__parent .icon {
    margin: 2px 0 0 6px;
    transition: transform .15s ease-in-out
}

.popup__parent:after {
    content: "";
    position: absolute;
    width: calc(100% + 2rem);
    height: .5rem;
    top: -.5rem;
    left: 0
}

.popup__parent:focus,
.popup__parent:focus-within {
    outline: 0
}

.popup__parent:focus-within:before,
.popup__parent:focus:before {
    height: 10rem
}

.popup__parent:focus .popup__arrow-down,
.popup__parent:focus .popup__container,
.popup__parent:focus-within .popup__arrow-down,
.popup__parent:focus-within .popup__container {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1)
}

.popup__parent:focus .icon,
.popup__parent:focus-within .icon {
    transform: scaleY(-1)
}

@media (hover:hover) {
    .popup__parent:hover:before {
        height: 10rem
    }
    .popup__parent:hover .popup__arrow-down,
    .popup__parent:hover .popup__container {
        pointer-events: auto;
        opacity: 1;
        transform: scale(1)
    }
    .popup__parent:hover .icon {
        transform: scaleY(-1)
    }
}

.popup__arrow-down,
.popup__container {
    pointer-events: none;
    opacity: 0;
    transform: scale(.95);
    transform-origin: 50% 100%;
    transition: opacity .25s, transform .25s
}

.popup__container {
    position: absolute;
    padding: .5rem;
    background-color: var(--secondary-000);
    text-align: left;
    border-radius: 8px;
    bottom: 2rem;
    box-shadow: var(--dropdown-box-shadow)
}

.dark-theme .popup__container {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35)
}

.popup__container.site-footer__language-choice {
    min-width: 8.5rem;
    right: -5.5rem
}

.popup__container.site-footer__language-choice:after,
.popup__container.site-footer__language-choice:before {
    content: "";
    position: absolute;
    left: -5rem
}

.popup__container.site-footer__language-choice:before {
    bottom: 0;
    height: 100%;
    width: 5rem
}

.popup__container.site-footer__language-choice:after {
    top: -5rem;
    height: 5rem;
    width: 13.5rem
}

.popup__container a {
    display: block;
    white-space: nowrap
}

.popup__container a.button {
    color: var(--secondary-600)
}

.popup__container a.button:hover {
    color: var(--secondary-800)
}

.popup__arrow-down {
    position: absolute;
    z-index: 2;
    right: -.25rem;
    top: -.5rem;
    width: 0;
    height: 0;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-top: .5rem solid var(--secondary-000)
}

.explore__gallery-cls-container {
    --section-heading-height: 13.5rem;
    min-height: calc(var(--100vh) - var(--site-nav-height) - var(--safe-area-top) - var(--section-heading-height))
}

@media (min-width:361px) {
    .explore__gallery-cls-container {
        --section-heading-height: 16.5rem
    }
}

.explore__gallery {
    width: 100%;
    margin: 0 auto;
    background: 0 0;
    color: inherit
}

.user-gallery__gallery-cls-container {
    --section-heading-height: 8.75rem;
    min-height: calc(var(--100vh) - var(--site-nav-height) - var(--safe-area-top) - var(--section-heading-height))
}

@media (min-width:361px) {
    .user-gallery__gallery-cls-container {
        --section-heading-height: 11.75rem
    }
}

@media (min-height:850px) {
    .user-gallery__gallery-cls-container {
        min-height: 590px
    }
}

.user-gallery__gallery {
    width: 100%;
    background: 0 0;
    color: inherit;
    margin: 0 auto
}

.user-gallery__username {
    word-break: break-word
}

.my-photos__gallery {
    width: 100%;
    background: 0 0;
    color: inherit;
    overflow: visible;
    margin: 0 auto;
    min-height: 216px
}

.explore-single-image__inner {
    display: block;
    padding: 0 1rem
}

@media (min-width:480px) {
    .explore-single-image__inner {
        padding: 0 2rem
    }
}

@media (min-width:960px) {
    .explore-single-image__inner {
        padding: 0 3rem
    }
}

.user-photo {
    margin: 0 auto
}

.user-photo figure {
    margin: 0
}

.user-photo__title {
    margin-bottom: .5rem
}

.user-photo__image-box {
    height: 50vh;
    max-height: 35rem;
    background: var(--secondary-000)
}

@media (min-height:600px) {
    .user-photo__image-box {
        height: 60vh
    }
}

.user-photo__image {
    box-shadow: 0 12px 24px -4px rgba(30, 32, 36, .1), 0 8px 16px -8px rgba(30, 32, 36, .3)
}

.user-photo__footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--secondary-300);
    background: var(--secondary-000);
    padding: 1.5rem 1rem
}

@media (min-width:600px) {
    .user-photo__footer {
        flex-direction: row;
        align-items: center;
        padding: 2rem
    }
}

.user-photo__caption {
    overflow-wrap: break-word;
    max-width: 100%
}

@media (min-width:600px) {
    .user-photo__caption {
        max-width: 75%
    }
}

.user-photo__author {
    margin-bottom: .5rem
}

.user-photo__report-abuse {
    margin: .5rem auto 0 0
}

.user-photo__report-abuse--hidden {
    display: none
}

@media (min-width:600px) {
    .user-photo__report-abuse {
        margin: 0 0 auto auto
    }
}

.my-account .section {
    padding-top: calc(var(--dashboard-top-nav-height) + var(--safe-area-top) + var(--top-bottom-padding));
    min-height: 100vh
}

@media (min-width:1270px) {
    .my-account .section {
        padding-left: 332px
    }
}

.my-account>hamburger-side-menu {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1
}

.my-account>hamburger-side-menu .hamburger-menu {
    background: 0 0;
    box-shadow: 1px calc(var(--dashboard-top-nav-height) + var(--safe-area-top) - 1px) 0 0 var(--border-color)
}

.my-account>hamburger-side-menu .hamburger-menu hr {
    border-color: transparent
}

.my-account__card {
    background: var(--secondary-000);
    border-radius: 8px;
    border: 1px solid var(--secondary-300);
    padding: 2rem;
    width: 752px;
    max-width: 100%
}

.my-account__card:not(:last-child) {
    margin-bottom: 1.5rem
}

@media (min-width:960px) {
    .my-account__card:not(:last-child) {
        margin-bottom: 2rem
    }
}

.my-account__row {
    --row-padding-horizontal: 8px;
    padding: var(--row-padding-horizontal) 0
}

@media (min-width:768px) {
    .my-account__row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: calc(var(--button-height) + var(--row-padding-horizontal) * 2)
    }
}

.my-account__heading {
    --heading-font-size: 24px;
    --text-font-size: 24px;
    --heading-line-height: calc(24px + 8px);
    --text-line-height: calc(24px + 8px);
    --heading-margin-bottom: 16px;
    --heading-margin-top: 24px;
    --heading-font-weight: 600
}

.my-account__label {
    display: block;
    width: 176px;
    margin-bottom: .5rem;
    color: var(--secondary-600)
}

@media (min-width:768px) {
    .my-account__label {
        margin-bottom: 0
    }
}

.my-account__button.button--link {
    --button-padding: 0;
    justify-content: flex-start;
    white-space: pre-wrap;
    line-height: 1.5rem
}

.my-account__button--delete {
    color: var(--error-500)
}

.my-account__data {
    margin-bottom: 0
}

@media (min-width:768px) {
    .my-account__data {
        margin-right: auto
    }
}

.statement-panel__invoice-list {
    list-style-type: none;
    max-height: 17rem;
    overflow: auto;
    padding-left: 0
}

.statement-panel__list-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--secondary-300);
    padding: .5rem 0
}

.devices-panel__list {
    list-style-type: none;
    max-height: 17rem;
    padding-left: 0
}

.devices-panel__device {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--secondary-300);
    padding: .5rem 0
}

#my_account_modal {
    background: var(--secondary-000);
    width: 100%;
    max-width: 944px;
    overflow: hidden
}

@media (min-width:801px) {
    #my_account_modal {
        border-radius: 8px
    }
}

.my-photos {
    padding-top: 2rem
}

.my-photos__filters {
    margin-bottom: 3rem
}

.my-photos__edit-button {
    position: absolute;
    bottom: .25rem;
    right: .25rem;
    padding: .25rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease-in-out;
    z-index: 1
}

@media (min-width:768px) {
    .my-photos__edit-button {
        bottom: .5rem;
        right: .5rem
    }
}

.my-photos__edit-button--always-show,
.my-photos__edit-button:focus+.my-photos__edit-popup {
    opacity: 1;
    pointer-events: all
}

.my-photos__edit-ellipsis {
    border-radius: 8px;
    background-color: var(--secondary-000);
    width: 32px;
    height: 32px;
    padding: 8px 0;
    flex-direction: column;
    justify-content: space-between;
    display: flex
}

.my-photos__edit-ellipsis span {
    border-radius: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-500);
    margin: 0 auto;
    z-index: 3
}

.my-photos__edit-popup {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease-in-out
}

.my-photos__edit-popup:focus-within {
    opacity: 1;
    pointer-events: all
}

.my-photos__edit-popup-content {
    padding: .5rem;
    background-color: var(--secondary-000);
    border-radius: 8px;
    max-width: calc(100% - 1rem);
    position: absolute;
    bottom: 0;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .25);
    outline: 0
}

.my-photos__edit-option {
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    color: var(--secondary-800);
    white-space: normal;
    line-height: 24px;
    min-height: 2rem;
    height: auto
}

.my-photos__edit-option:hover {
    background-color: var(--secondary-200)
}

.my-photos__gallery .gallery__item {
    overflow: visible
}

.tab__nav {
    flex-direction: row;
    align-items: center;
    padding-left: 0;
    display: flex;
    list-style: none;
    border-bottom: 1px solid var(--secondary-300)
}

@media (min-width:414px) {
    .tab__nav {
        justify-content: flex-start
    }
}

.tab__item {
    padding: 0 1rem;
    position: relative
}

@media (min-width:414px) {
    .tab__item {
        padding: 0 2rem
    }
}

.tab__item.active .tab__underline {
    position: absolute;
    height: 2px;
    bottom: -9px;
    left: 0;
    width: 100%;
    background-color: var(--primary-500)
}

.tab__button {
    color: var(--secondary-600);
    font-size: var(--text-font-size)
}

.tab__button:hover {
    color: var(--secondary-800)
}

.transitioning-images__image {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out
}

.transitioning-images__image--active {
    opacity: 1
}

@media (min-width:768px) {
    .transitioning-images--mobile {
        display: none
    }
}

.transitioning-images--mobile .section__image {
    box-shadow: none
}

@media (max-width:767px) {
    .transitioning-images--mobile~.transitioning-images {
        display: none
    }
}

.dashboard {
    display: block;
    min-height: 100vh
}

.dashboard__grid {
    --gap: 1rem;
    padding: calc(var(--dashboard-top-nav-height) + var(--safe-area-top) + var(--gap)) var(--gap) 2rem;
    background: var(--secondary-000);
    --grid-item--min-width: calc(50% - var(--gap) * 3 / 2);
    --grid-column-count: 6;
    --gap-count: calc(var(--grid-column-count) - 1);
    --total-gap-width: calc(var(--gap-count) * var(--gap));
    --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
    display: grid;
    --minmax-min: max(var(--grid-item--min-width), var(--grid-item--max-width));
    grid-template-columns: repeat(auto-fill, minmax(var(--minmax-min), 1fr));
    grid-gap: var(--gap)
}

@media (min-width:600px) and (max-width:819px) {
    .dashboard__grid {
        --grid-item--min-width: 145px
    }
}

@media (min-width:820px) and (max-width:1099px) {
    .dashboard__grid {
        --grid-item--min-width: 160px
    }
}

@media (min-width:1100px) {
    .dashboard__grid {
        --grid-item--min-width: 170px
    }
}

@media (min-width:1800px) {
    .dashboard__grid {
        --grid-column-count: 7
    }
}

.dashboard__grid--wider-grid {
    padding-top: 0;
    margin-top: -1px
}

@media (max-width:1200px) {
    .dashboard__grid--wider-grid {
        --grid-item--min-width: 200px;
        --grid-column-count: 6
    }
}

.dashboard__grid--unsupported-chrome-version {
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr))
}

.dashboard__grid h2 {
    display: none
}

@media (min-width:880px) {
    .dashboard__grid h2 {
        display: block;
        grid-column: 1/-1;
        --heading-margin-bottom: 0
    }
}

@media (min-width:1270px) {
    .dashboard__grid {
        padding-left: 332px
    }
}

.dashboard__grid-item__text {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dashboard>hamburger-side-menu {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1
}

.dashboard>hamburger-side-menu .hamburger-menu {
    background: 0 0;
    box-shadow: 1px calc(var(--dashboard-top-nav-height) + var(--safe-area-top) - 1px) 0 0 var(--border-color)
}

.dashboard>hamburger-side-menu .hamburger-menu hr {
    border-color: transparent
}

.dashboard .grid-item {
    border: none
}

.dashboard .grid-item__figure {
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.dashboard .grid-item__image {
    border-radius: 8px;
    aspect-ratio: 3/4;
    background: var(--image-bg);
    border: none
}

@media (min-width:880px) {
    .dashboard .grid-item__image--get-started {
        aspect-ratio: 4/3
    }
}

.dashboard .grid-item__text {
    padding: .25rem 0 0
}

.dashboard .grid-item__heading {
    --heading-font-size: 13px;
    --heading-margin-bottom: 0
}

@media (min-width:600px) {
    .dashboard .grid-item__heading {
        --heading-font-size: 14px
    }
}

.dashboard__frequently-used {
    grid-column: 1/-1
}

@media (max-width:879px) {
    .dashboard__frequently-used {
        display: none
    }
}

.dashboard__frequently-used h2 {
    --heading-margin-bottom: 1rem
}

.dashboard__frequently-used-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.dashboard__load-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .4);
    top: 0
}

.dashboard-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    height: calc(var(--dashboard-top-nav-height) + var(--safe-area-top));
    padding: var(--safe-area-top) 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-000);
    border-bottom: 1px solid var(--border-color)
}

.dashboard-nav__logo {
    position: absolute;
    left: 50%;
    margin-left: calc(-1 * var(--icon-size)/ 2);
    color: var(--secondary-800)
}

.hamburger-menu {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    max-width: calc(100% - 1.5rem);
    z-index: 6;
    --logo-height: 2rem;
    padding: calc(var(--safe-area-top) + var(--top-nav-height) - var(--logo-height) - 9px) 0 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    background: var(--secondary-000);
    box-shadow: 0 30px 60px -12px rgba(29, 27, 47, .15), 0 18px 36px -20px rgba(29, 27, 47, .35);
    opacity: 0;
    transform: scale(.95);
    transform-origin: 0 0;
    will-change: transform, opacity;
    transition-property: transform, opacity;
    transition-duration: .25s;
    transition-timing-function: ease
}

@media (max-width:800px) and (max-height:850px) {
    .hamburger-menu {
        --logo-height: 1.75rem
    }
}

.browser--windows-firefox .hamburger-menu {
    scrollbar-width: thin
}

.hamburger-menu:focus {
    outline: 0
}

.hamburger-menu--open {
    pointer-events: auto;
    transform: none;
    opacity: 1
}

.hamburger-menu__top {
    padding: 0 1.5rem
}

.hamburger-menu hr {
    margin-top: .5rem;
    border-color: var(--secondary-400)
}

.hamburger-menu__my-account {
    --button-height: 76px
}

.hamburger-menu__my-account span {
    display: block
}

.hamburger-menu-veil {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transition: opacity .25s
}

.hamburger-menu-veil--open {
    opacity: 1
}

.feature-search {
    display: flex;
    flex-direction: column;
    border-radius: 8px
}

.feature-search--show-results {
    background: var(--secondary-000)
}

.feature-search__text-above {
    position: absolute;
    height: 36px;
    top: -44px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity .3s
}

.feature-search__text-above span {
    text-align: center;
    color: var(--static-white);
    --text-font-size: 13px;
    --text-line-height: 18px
}

.feature-search__text-above .shortcut {
    margin: 0
}

.feature-search__input {
    width: 100%;
    flex-shrink: 0;
    background: var(--secondary-000);
    border-radius: 8px;
    margin-bottom: 4px
}

.feature-search--show-results .feature-search__input {
    border-radius: 8px 8px 0 0
}

.feature-search__results {
    border-radius: 0 0 8px 8px
}

.feature-search__result {
    padding: .5rem 1rem
}

.feature-search__input:focus+.feature-search__results>.feature-search__result:first-child,
.feature-search__result:focus,
.feature-search__result:hover {
    outline: 0;
    background: var(--secondary-200)
}

.feature-search__result h6 {
    --text-font-size: 16px;
    --heading-font-size: 16px;
    --text-line-height: calc(16px + 8px);
    --heading-line-height: calc(16px + 8px);
    --heading-margin-bottom: 8px;
    --heading-margin-top: 24px;
    --heading-font-weight: 700;
    --heading-margin-bottom: 0px
}

.feature-search__result span {
    color: var(--secondary-500);
    --text-font-size: 14px;
    --heading-font-size: 14px;
    --text-line-height: calc(14px + 6px);
    --heading-line-height: calc(14px + 6px)
}

.feature-search__result * {
    pointer-events: none
}

.support {
    display: flex;
    flex-direction: column
}

.support__inner {
    max-width: 848px;
    display: flex;
    flex-direction: column
}

.support__uploaded-files-container {
    padding: 1rem 0
}

.support__uploaded-file {
    display: flex;
    align-items: center
}

.support__breadcrumbs a {
    text-decoration: none !important
}

.support__breadcrumb--arrow {
    transform: rotate(-90deg);
    color: var(--text-color)
}

.support-content__button {
    align-self: flex-end
}

.support label {
    white-space: normal
}

.support-reason__heading {
    margin-bottom: 32px
}

.support-reason__button {
    border: 1px solid var(--secondary-400);
    border-radius: 8px;
    --button-height: 60px;
    padding: .75rem 1.5rem 1rem;
    justify-content: space-between;
    margin: .5rem 0;
    white-space: initial
}

@media (max-width:800px) {
    .support-reason__button {
        --button-height: 80px
    }
}

.support-reason__button:hover {
    border: 1px solid var(--primary-400)
}

.support-reason__button .icon {
    --icon-size: 16px
}

.support-reason__text {
    margin-bottom: 0
}

.support-form__container {
    display: flex;
    flex-direction: column;
    margin: 2rem 0 3rem
}

.support-form__textarea {
    margin-bottom: 1.5rem
}

.support-form__help-clue {
    display: flex;
    align-items: center;
    position: relative
}

.support-form__help-clue .support-form__icon-container:hover~.support-form__description-text {
    opacity: 1
}

.support-form__help-clue .support-form__icon-container--active+.support-form__description-text {
    display: flex
}

.support-form__help-clue .support-form__tooltip-container {
    width: calc(30% - 30px)
}

@media (max-width:960px) {
    .support-form__help-clue .support-form__tooltip-container {
        position: relative;
        display: inline
    }
}

.support-form__help-clue .form-field__label {
    margin-right: 3rem
}

@media (max-width:960px) {
    .support-form__help-clue .form-field__label {
        overflow: initial;
        margin-right: 1rem
    }
}

@media (min-width:768px) and (max-width:960px) {
    .support-form__help-clue .form-field__label {
        margin-right: 2rem
    }
}

.support-form__help-clue-icon {
    margin-left: 5px;
    pointer-events: all
}

.support-form__help-clue-icon:hover~.support-form__description-text {
    opacity: 1
}

.support-form__description-text {
    display: none;
    padding: 0 0 1rem;
    position: relative;
    --text-font-size: 12px;
    --text-line-height: calc(12px + 6px);
    letter-spacing: .25px
}

@media (min-width:960px) {
    .support-form__description-text {
        display: inline;
        opacity: 0;
        background-color: var(--secondary-100);
        border-radius: 4px;
        box-shadow: 0 0 6px rgba(0, 0, 0, .25);
        padding: 8px;
        z-index: 1;
        position: absolute;
        top: 10px;
        margin-left: 5px;
        width: 248px;
        pointer-events: none;
        transform: translateX(-50%)
    }
}

.form-field__drag-container {
    border: 1px dashed var(--secondary-400);
    border-radius: 4px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 119px;
    position: relative;
    transition: color .3s ease-in-out, opacity .3s ease-in-out, background-color .3s ease-in-out
}

.form-field__drag-container--active {
    --text-color: var(--secondary-800);
    background-color: var(--overlay-color-1)
}

.form-field__file-input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.form-field__label--required:after {
    content: "*";
    color: var(--error-500)
}

.form-field__device-dropdown {
    margin-bottom: 1.5rem
}

#wrapper {
    overflow: hidden;
    width: 100%
}

#bfn-app {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 800;
    overflow: hidden;
    background-color: var(--secondary-000)
}

.device--android #bfn-app {
    overscroll-behavior-x: none
}

.bfn--toggling-theme * {
    transition: none !important
}

.bfn--hidden {
    visibility: hidden;
    pointer-events: none;
    z-index: -10
}

.bfn--hidden * {
    visibility: hidden
}

.bfn--is-dragging iframe {
    pointer-events: none
}

.prevent-body-scroll {
    overflow: hidden
}

#meet-the-team .grid-item__image {
    filter: none
}

#app_loading_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--100vh);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .5)
}

#app_loading_overlay svg {
    height: 4rem;
    max-width: calc(100% - 1rem);
    margin: 0 0 1rem
}

#app_loading_overlay .loading-spinner {
    height: 1.5rem;
    width: 1.5rem
}

@media (max-width:800px) {
    .picker-dialog {
        height: calc(var(--100vh) - var(--safe-area-top) - var(--safe-area-bottom)) !important;
        width: 100% !important;
        top: var(--safe-area-top) !important
    }
    .picker-dialog-content {
        height: 100% !important;
        width: 100% !important
    }
}

.upgrade-dialog__qr-section {
    display: flex;
    column-gap: 2rem;
    align-items: center
}

.dpi-info__box .tooltip-info__icon {
    fill: var(--primary-500)
}

.levels-output-gradient {
    position: absolute;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 20px;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    background: linear-gradient(to right, #000 0, #fff 100%)
}

.levels-output-gradient--r {
    background: linear-gradient(to right, #000 0, red 100%)
}

.levels-output-gradient--g {
    background: linear-gradient(to right, #000 0, #0f0 100%)
}

.levels-output-gradient--b {
    background: linear-gradient(to right, #000 0, #00f 100%)
}