:root {
    --min_width: 250px;
    --navbar_height: 60px;
    --navbar_shadow_height: 32px;

    --primary: rgb(0, 26, 82);
    --secondary: rgb(0, 140, 153);
    --cyan-fg: rgb(39, 217, 229);
    --neutral: rgb(235, 235, 235);
    --headline-bg: rgb(225, 248, 250);
    --green-fg: rgb(255, 255, 255);
    --green-bg: rgb(0, 64, 71);
    --red-bg: rgb(220, 53, 69);
    --white-fg: rgb(255, 255, 255);
}

html, body {
    font-family: 'Roboto', sans-serif !important;
    background-color: rgb(255, 255, 255);
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    min-width: var(--min_width);
}
body {
    display: flex;
    flex-direction: column;
}
#navbar *,
.swal2-container * {
    color: var(--primary);
}

ol, ul { list-style: none; margin: 0; padding: 0; }
li { text-align: -webkit-match-parent; }
svg.inherit-color, svg.inherit-color * { fill: currentColor; pointer-events: none; flex-shrink: 0; }
footer { position: relative; }

/* Loading */

/* .lds-grid { --dot: 8px; --space: 4px; } */
/* .lds-grid { --space-0: calc(var(--space) * 1); --space-1: calc(var(--space) * 2 + var(--dot)); --space-2: calc(var(--space) * 3 + var(--dot) * 2); --size: calc(var(--space) * 4 + var(--dot) * 3); } */
.lds-grid {
    /* --background: #d4d4d4; */
    --background: var(--secondary);
    --size: 100%;
    --space: calc(var(--size) / 12);
    --dot: calc((var(--size) - var(--space) * 4) / 3);
    /* --dot: calc(var(--size) / 12);
    --space: calc((var(--size) / 4) - (var(--dot) * 3)); */
}
.lds-grid { --space-0: calc(var(--space) * 1); --space-1: calc(var(--space) * 2 + var(--dot)); --space-2: calc(var(--space) * 3 + var(--dot) * 2); }
.lds-grid { position: relative; width: var(--size) !important; height: var(--size) !important; }
.lds-grid div { position: absolute; width: var(--dot); height: var(--dot); border-radius: 50%; background: var(--background); animation: lds-grid 3s linear infinite; }
.lds-grid div:nth-child(1) { top: var(--space-0); left: var(--space-0); animation-delay: 0s; }
.lds-grid div:nth-child(2) { top: var(--space-0); left: var(--space-1); animation-delay: -0.4s; }
.lds-grid div:nth-child(3) { top: var(--space-0); left: var(--space-2); animation-delay: -0.8s; }
.lds-grid div:nth-child(4) { top: var(--space-1); left: var(--space-0); animation-delay: -0.4s; }
.lds-grid div:nth-child(5) { top: var(--space-1); left: var(--space-1); animation-delay: -0.8s; }
.lds-grid div:nth-child(6) { top: var(--space-1); left: var(--space-2); animation-delay: -1.2s; }
.lds-grid div:nth-child(7) { top: var(--space-2); left: var(--space-0); animation-delay: -0.8s; }
.lds-grid div:nth-child(8) { top: var(--space-2); left: var(--space-1); animation-delay: -1.2s; }
.lds-grid div:nth-child(9) { top: var(--space-2); left: var(--space-2); animation-delay: -1.6s; }
@keyframes lds-grid { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.1; } }

/* General */

.hidden { display: none !important; }
.invisible { visibility: hidden !important; }
.noselect { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.nofocus, .nofocus:hover, .nofocus:focus, .nofocus:active { border: none !important; outline: none !important; box-shadow: none !important; }
.appearance-none { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.pointer-events-none { pointer-events: none; }
.underline { text-decoration: underline; }
.pointer { cursor: pointer; }
.font-12 { font-size: 12px; }

.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.rounded-4 { border-radius: 4px; }
.rounded-8 { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.white-space-nowrap { white-space: nowrap; }
.opacity-100 { opacity: 1; }
.opacity-90 { opacity: 0.9; }
.opacity-80 { opacity: 0.8; }
.opacity-70 { opacity: 0.7; }
.opacity-60 { opacity: 0.6; }
.opacity-50 { opacity: 0.5; }
.opacity-40 { opacity: 0.4; }
.opacity-30 { opacity: 0.3; }
.opacity-20 { opacity: 0.2; }
.opacity-10 { opacity: 0.1; }
.opacity-0 { opacity: 0; }

.white-fg { color: rgb(255, 255, 255) !important; }
.green-fg { color: rgb(0, 172, 0) !important; }
.orange-fg { color: rgb(255, 128, 0) !important; }
.red-fg { color: rgb(255, 0, 0) !important; }
.gray-fg { color: rgb(128, 128, 128) !important; }
.white-bg { background-color: rgb(255, 255, 255) !important; }
.green-bg { background-color: var(--green-bg) !important; }
.secondary-bg { background-color: var(--secondary) !important; }

.grid { display: grid; }
.gap-1 { gap: 1px; }
.gap-2 { gap: 2px; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.gap-x-20 { column-gap: 20px; }
.gap-y-24 { row-gap: 24px; }
.gap-y-40 { row-gap: 40px; }
.flex { display: flex; }
.flex-row { display: flex; flex-direction: row; }
.flex-row-reverse { display: flex; flex-direction: row-reverse; }
.flex-col { display: flex; flex-direction: column; }
.flex-col-reverse { display: flex; flex-direction: column-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-basis-0 { flex-basis: 0; }
.flex-basis-10 { flex-basis: 10%; }
.flex-basis-20 { flex-basis: 20%; }
.flex-basis-30 { flex-basis: 30%; }
.flex-basis-40 { flex-basis: 40%; }
.flex-basis-50 { flex-basis: 50%; }
.flex-basis-60 { flex-basis: 60%; }
.flex-basis-70 { flex-basis: 70%; }
.flex-basis-80 { flex-basis: 80%; }
.flex-basis-90 { flex-basis: 90%; }
.flex-basis-100 { flex-basis: 100%; }
.flex-basis-auto { flex-basis: auto; }
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.vh-fill { height: calc(100vh - var(--navbar_height)) !important; }
.max-w-10 { max-width: 10px; }
.max-w-20 { max-width: 20px; }
.max-w-30 { max-width: 30px; }
.max-w-40 { max-width: 40px; }
.max-w-50 { max-width: 50px; }
.max-w-60 { max-width: 60px; }
.max-w-70 { max-width: 70px; }
.max-w-80 { max-width: 80px; }
.max-w-90 { max-width: 90px; }
.max-w-100 { max-width: 100px; }
.max-w-110 { max-width: 110px; }
.max-w-120 { max-width: 120px; }
.max-w-130 { max-width: 130px; }
.max-w-140 { max-width: 140px; }
.max-w-148 { max-width: 148px; }
.max-w-150 { max-width: 150px; }
.max-w-160 { max-width: 160px; }
.max-w-170 { max-width: 170px; }
.max-w-180 { max-width: 180px; }
.max-w-190 { max-width: 190px; }
.max-w-200 { max-width: 200px; }
.max-w-250 { max-width: 250px; }
.max-w-300 { max-width: 300px; }
.max-w-350 { max-width: 350px; }
.max-w-400 { max-width: 400px; }
.min-w-10 { min-width: 10px; }
.min-w-20 { min-width: 20px; }
.min-w-30 { min-width: 30px; }
.min-w-40 { min-width: 40px; }
.min-w-50 { min-width: 50px; }
.min-w-60 { min-width: 60px; }
.min-w-70 { min-width: 70px; }
.min-w-80 { min-width: 80px; }
.min-w-90 { min-width: 90px; }
.min-w-100 { min-width: 100px; }
.min-w-110 { min-width: 110px; }
.min-w-120 { min-width: 120px; }
.min-w-130 { min-width: 130px; }
.min-w-140 { min-width: 140px; }
.min-w-148 { min-width: 148px; }
.min-w-150 { min-width: 150px; }
.min-w-160 { min-width: 160px; }
.min-w-170 { min-width: 170px; }
.min-w-180 { min-width: 180px; }
.min-w-190 { min-width: 190px; }
.min-w-200 { min-width: 200px; }
.min-w-250 { min-width: 250px; }
.min-w-300 { min-width: 300px; }
.min-w-350 { min-width: 350px; }
.min-w-400 { min-width: 400px; }
.w-4 { width: 4px; }
.w-8 { width: 8px; }
.w-16 { width: 16px; }
.w-20 { width: 20px; }
.w-24 { width: 24px; }
.w-32 { width: 32px; }
.w-40 { width: 40px; }
.w-64 { width: 64px; }
.w-80 { width: 80px; }
.w-90 { width: 90px; }
.w-96 { width: 96px; }
.w-100 { width: 100px !important; }
.w-120 { width: 120px; }
.w-128 { width: 128px; }
.w-130 { width: 130px; }
.w-150 { width: 150px; }
.w-160 { width: 160px; }
.w-170 { width: 170px; }
.w-180 { width: 180px; }
.w-190 { width: 190px; }
.w-200 { width: 200px; }
.w-250 { width: 250px; }
.w-300 { width: 300px; }
.h-4 { height: 4px; }
.h-8 { height: 8px; }
.h-16 { height: 16px; }
.h-20 { height: 20px; }
.h-24 { height: 24px; }
.h-32 { height: 32px; }
.h-40 { height: 40px; }
.h-64 { height: 64px; }
.h-80 { height: 80px; }
.h-96 { height: 96px; }
.h-100 { height: 100px !important; }
.h-120 { height: 120px; }
.h-128 { height: 128px; }
.h-130 { height: 130px; }
.h-150 { height: 150px; }
.h-200 { height: 200px; }
.h-250 { height: 250px; }
.h-300 { height: 300px; }
.mx-4 { margin-left: 4px; margin-right: 4px; }
.mx-8 { margin-left: 8px; margin-right: 8px; }
.mx-16 { margin-left: 16px; margin-right: 16px; }
.mx-20 { margin-left: 20px; margin-right: 20px; }
.mx-24 { margin-left: 24px; margin-right: 24px; }
.mx-32 { margin-left: 32px; margin-right: 32px; }
.mx-40 { margin-left: 40px; margin-right: 40px; }
.mx-64 { margin-left: 64px; margin-right: 64px; }
.mx-96 { margin-left: 96px; margin-right: 96px; }
.my-4 { margin-top: 4px; margin-bottom: 4px; }
.my-8 { margin-top: 8px; margin-bottom: 8px; }
.my-16 { margin-top: 16px; margin-bottom: 16px; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }
.my-24 { margin-top: 24px; margin-bottom: 24px; }
.my-32 { margin-top: 32px; margin-bottom: 32px; }
.my-40 { margin-top: 40px; margin-bottom: 40px; }
.my-64 { margin-top: 64px; margin-bottom: 64px; }
.my-96 { margin-top: 96px; margin-bottom: 96px; }
.mt-4 { margin-top: 4px !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mt-96 { margin-top: 96px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-64 { margin-bottom: 64px; }
.mb-96 { margin-bottom: 96px; }
.ml-4 { margin-left: 4px; }
.ml-8 { margin-left: 8px; }
.ml-16 { margin-left: 16px; }
.ml-20 { margin-left: 20px; }
.ml-24 { margin-left: 24px; }
.ml-32 { margin-left: 32px; }
.ml-40 { margin-left: 40px; }
.ml-96 { margin-left: 96px; }
.mr-4 { margin-right: 4px; }
.mr-8 { margin-right: 8px; }
.mr-16 { margin-right: 16px; }
.mr-20 { margin-right: 20px; }
.mr-24 { margin-right: 24px; }
.mr-32 { margin-right: 32px; }
.mr-40 { margin-right: 40px; }
.mr-96 { margin-right: 96px; }
.px-8 { padding-left: 8px; padding-right: 8px; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.px-24 { padding-left: 24px; padding-right: 24px; }
.px-32 { padding-left: 32px; padding-right: 32px; }
.px-40 { padding-left: 40px; padding-right: 40px; }
.px-96 { padding-left: 96px; padding-right: 96px; }
.py-8 { padding-top: 8px; padding-bottom: 8px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.py-24 { padding-top: 24px; padding-bottom: 24px; }
.py-32 { padding-top: 32px; padding-bottom: 32px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-96 { padding-top: 96px; padding-bottom: 96px; }
.pt-8 { padding-top: 8px; }
.pt-16 { padding-top: 16px; }
.pt-20 { padding-top: 20px; }
.pt-24 { padding-top: 24px; }
.pt-32 { padding-top: 32px; }
.pt-40 { padding-top: 40px; }
.pt-96 { padding-top: 96px; }
.pb-8 { padding-bottom: 8px; }
.pb-16 { padding-bottom: 16px; }
.pb-20 { padding-bottom: 20px; }
.pb-24 { padding-bottom: 24px; }
.pb-32 { padding-bottom: 32px; }
.pb-40 { padding-bottom: 40px; }
.pb-96 { padding-bottom: 96px; }
.pl-8 { padding-left: 8px; }
.pl-16 { padding-left: 16px; }
.pl-20 { padding-left: 20px; }
.pl-24 { padding-left: 24px; }
.pl-32 { padding-left: 32px; }
.pl-40 { padding-left: 40px; }
.pl-96 { padding-left: 96px; }
.pr-8 { padding-right: 8px; }
.pr-16 { padding-right: 16px; }
.pr-20 { padding-right: 20px; }
.pr-24 { padding-right: 24px; }
.pr-32 { padding-right: 32px; }
.pr-40 { padding-right: 40px; }
.pr-96 { padding-right: 96px; }
.bt { border-top: 1px solid var(--neutral); }
.m-auto { margin: auto !important; }
.w-auto { width: auto !important; }

.last-mb-0:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.align-center { align-items: center; }
.align-between { align-items: space-between; }
.align-around { align-items: space-around; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.self-center { align-self: center; }
.self-between { align-self: space-between; }
.self-around { align-self: space-around; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.contents { display: contents; }
.articles-container { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); grid-auto-rows: min-content; }
.box-shadow { box-shadow: 0 1px 0 2.5px var(--neutral); border-radius: 4px; }
.box-shadow2 { box-shadow: 0 0 1px 2px var(--neutral); border-radius: 4px; }
.object-contain { -o-object-fit: contain; object-fit: contain; }
.object-cover { -o-object-fit: cover; object-fit: cover; }

.bold { font-weight: 600; }
.text-cyan, .text-cyan * { color: var(--cyan-fg); }
.text-s { font-size: 14px; font-weight: 400; line-height: 20px; letter-spacing: .02em; }
.headline-s { font-size: 20px; font-weight: 600; line-height: 26px; letter-spacing: 0; }

.order-3 { order: 3; }
.grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }


@media (min-width: 300px) {
    .xs-flex-basis-0 { flex-basis: 0; }
    .xs-flex-basis-10 { flex-basis: 10%; }
    .xs-flex-basis-20 { flex-basis: 20%; }
    .xs-flex-basis-30 { flex-basis: 30%; }
    .xs-flex-basis-40 { flex-basis: 40%; }
    .xs-flex-basis-50 { flex-basis: 50%; }
    .xs-flex-basis-60 { flex-basis: 60%; }
    .xs-flex-basis-70 { flex-basis: 70%; }
    .xs-flex-basis-80 { flex-basis: 80%; }
    .xs-flex-basis-90 { flex-basis: 90%; }
    .xs-flex-basis-100 { flex-basis: 100%; }
    .xs-flex-basis-auto { flex-basis: auto; }
}

.sm-flex { display: none; }
.sm-block { display: none; }
@media (min-width: 640px) {
    .sm-flex-basis-0 { flex-basis: 0; }
    .sm-flex-basis-10 { flex-basis: 10%; }
    .sm-flex-basis-20 { flex-basis: 20%; }
    .sm-flex-basis-30 { flex-basis: 30%; }
    .sm-flex-basis-40 { flex-basis: 40%; }
    .sm-flex-basis-50 { flex-basis: 50%; }
    .sm-flex-basis-60 { flex-basis: 60%; }
    .sm-flex-basis-70 { flex-basis: 70%; }
    .sm-flex-basis-80 { flex-basis: 80%; }
    .sm-flex-basis-90 { flex-basis: 90%; }
    .sm-flex-basis-100 { flex-basis: 100%; }
    .sm-flex-basis-auto { flex-basis: auto; }
    .sm-hidden { display: none; }
    .sm-flex { display: flex; }
    .sm-block { display: block; }
    .sm-grid { display: grid; }
    .sm-flex-row { flex-direction: row; }
    .sm-flex-col { flex-direction: column; }
    .sm-flex-grow-0 { flex-grow: 0; }
    .sm-contents { display: contents; }
    .sm-self-center { align-self: center; }
    .sm-gap-56 { gap: 56px; }
    .sm-gap-y-40 { row-gap: 40px; }
    .sm-left-0 { left: 0; }
    .sm-min-w-0 { min-width: 0; }
    .sm-w-full { width: 100%; }
    .sm-w-max { width: max-content; }
    .sm-w-64 { width: 64px; }
    .sm-w-88 { width: 88px; }
    .sm-h-64 { height: 64px; }
    .sm-h-88 { height: 88px; }
    .sm-mx-0 { margin-left: 0; margin-right: 0; }
    .sm-my-0 { margin-top: 0; margin-bottom: 0; }
    .sm-my-40 { margin-top: 40px; margin-bottom: 40px; }
    .sm-mt-auto { margin-top: auto; }
    .sm-mt-24 { margin-top: 24px; }
    .sm-mt-40 { margin-top: 40px; }
    .sm-mb-0 { margin-bottom: 0; }
    .sm-mb-40 { margin-bottom: 40; }
    .sm-mb-56 { margin-bottom: 56; }
    .sm-p-40 { padding: 40px; }
    .sm-px-40 { padding-left: 40px; padding-right: 40px; }
    .sm-py-40 { padding-top: 40px; padding-bottom: 40px; }
    .sm-py-56 { padding-top: 56px; padding-bottom: 56px; }
    .sm-pt-0 { padding-top: 0; }
    .sm-pb-56 { padding-bottom: 56px; }
    .sm-bt-0 { border-top-width: 0; }
    .sm-max-h-20 { max-height: 20px; }
    .sm-align-center { align-items: center; }
    .sm-gap-y-32 { row-gap: 32px; }
    .sm-order-none { order: 0; }
    /* .sm-mt-56 { margin-top: 56px; } */
}
@media (min-width: 768px) {
    .md-flex-basis-0 { flex-basis: 0; }
    .md-flex-basis-10 { flex-basis: 10%; }
    .md-flex-basis-20 { flex-basis: 20%; }
    .md-flex-basis-30 { flex-basis: 30%; }
    .md-flex-basis-40 { flex-basis: 40%; }
    .md-flex-basis-50 { flex-basis: 50%; }
    .md-flex-basis-60 { flex-basis: 60%; }
    .md-flex-basis-70 { flex-basis: 70%; }
    .md-flex-basis-80 { flex-basis: 80%; }
    .md-flex-basis-90 { flex-basis: 90%; }
    .md-flex-basis-100 { flex-basis: 100%; }
    .md-flex-basis-auto { flex-basis: auto; }
    .md-flex-row { flex-direction: row; }
    .md-flex-nowrap { flex-wrap: nowrap; }
    .md-align-center { align-items: center; }
    .md-gap-x-40 { column-gap: 40px; }
}
@media (min-width: 1024px) {
    .lg-flex-basis-0 { flex-basis: 0; }
    .lg-flex-basis-10 { flex-basis: 10%; }
    .lg-flex-basis-20 { flex-basis: 20%; }
    .lg-flex-basis-30 { flex-basis: 30%; }
    .lg-flex-basis-40 { flex-basis: 40%; }
    .lg-flex-basis-50 { flex-basis: 50%; }
    .lg-flex-basis-60 { flex-basis: 60%; }
    .lg-flex-basis-70 { flex-basis: 70%; }
    .lg-flex-basis-80 { flex-basis: 80%; }
    .lg-flex-basis-90 { flex-basis: 90%; }
    .lg-flex-basis-100 { flex-basis: 100%; }
    .lg-flex-basis-auto { flex-basis: auto; }
    .lg-grid { display: grid; }
    .lg-grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .lg-flex-row { flex-direction: row; }
    .lg-gap-20 { gap: 20px; }
    .lg-gap-56 { gap: 56px; }
    .lg-gap-80 { gap: 80px; }
    .lg-gap-x-80 { column-gap: 80px; }
    .lg-gap-y-48 { row-gap: 48px; }
    .lg-h-auto { height: auto; }
    .lg-h-40 { height: 40px; }
    .lg-max-h-40 { max-height: 40px; }
    .lg-py-72 { padding-top: 72px; padding-bottom: 72px; }
    .lg-py-80 { padding-top: 80px; padding-bottom: 80px; }
    .lg-mt-16 { margin-top: 16px; }
    .lg-mt-56 { margin-top: 56px; }
    .lg-mb-56 { margin-bottom: 56px; }
    .lg-items-start { align-items: flex-start; }
    .even-lg-flex-row-reverse:nth-child(even) { flex-direction: row-reverse; }
}

.block-content-gap { row-gap: 32px; }
@media (min-width: 640px) { .block-content-gap { row-gap: 40px; } }
@media (min-width: 1024px) { .block-content-gap { row-gap: 56px; } }

.banner {
    background-color: var(--headline-bg);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 16px;
    padding-right: 16px;
}
.banner .headline {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: 0;
}
.banner .message {
    margin-top: 16px;
}
@media (min-width: 1024px) {
    .banner .content {
        max-width: 846px;
    }
    .banner .headline {
        font-size: 48px;
        font-weight: 600;
        line-height: 64px;
        letter-spacing: -.02em;
    }
    .banner .message {
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        letter-spacing: 0;
    }
}

.filled-button,
.outlined-button {
    position: relative;
    display: flex;
    width: min-content;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    line-height: 24px;
    text-decoration-line: none;
    height: 48px;
    border-radius: 4px;
    padding-left: 24px;
    padding-right: 24px;
    outline: none;
    border: none;
    box-shadow: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity .2s cubic-bezier(.4,0,.2,1);
    -webkit-transition: opacity .2s cubic-bezier(.4,0,.2,1);
}
.filled-button {
    background-color: var(--green-bg);
    color: var(--green-fg);
}
.filled-button.white {
    background-color: var(--white-fg);
    color: var(--green-bg);
}
.filled-button.red {
    background-color: var(--red-bg);
    color: var(--white-fg);
}
.outlined-button {
    border-width: 2px;
    border-style: solid;
    border-color: var(--green-bg);
    color: var(--green-bg);
}
.filled-button:hover,
.outlined-button:hover {
    opacity: .8;
    text-decoration: none;
}
.filled-button:hover {
    color: var(--green-fg);
}
.filled-button.white:hover {
    color: var(--green-bg);
}
.filled-button.red:hover {
    color: var(--white-fg);
}
.outlined-button:hover {
    color: var(--green-bg);
}

.content-sizer {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1344px;
    padding-left: 8px;
    padding-right: 8px;
}
@media (min-width: 300px) {
    .content-sizer { padding-left: 16px; padding-right: 16px; }
}
@media (min-width: 640px) {
    .content-sizer { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 640px) {
    ul.list-container { grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); }
}
@media (min-width: 768px) {
    ul.list-container { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (min-width: 1184px) {
    ul.list-container { grid-template-columns: repeat(auto-fit,minmax(222px,1fr)); }
}

.details-icon {
    transform: translate(0,0) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .2s;
}
details[open] .details-icon {
    transform: rotate(180deg);
}

.swal2-close:focus, .swal2-close:active, .swal2-close:hover {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Context menu */

.ctxmenu {
    position: fixed;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    color: #212121;
    font-size: 14px;
    line-height: 20px;
    min-width: 100px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}
.ctxmenu > div {
    font-size: 14px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color .2s cubic-bezier(.4,0,.2,1);
}
.ctxmenu > div:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Scrollbar */

:root {
    /* --thumb-bg: #2d2d2d;
    --scrollbar-bg: transparent; */
    --thumb-bg: #d4d4d4;
    --scrollbar-bg: #1e1e1e;
    --scrollbar-size: 4px;
}
/* ::-webkit-scrollbar { width: var(--scrollbar-size); height: var(--scrollbar-size); }
::-webkit-scrollbar-thumb { background: var(--thumb-bg); }
::-webkit-scrollbar-track { background: var(--scrollbar-bg); }
::-webkit-scrollbar-corner { background: var(--scrollbar-bg); } */
::-webkit-scrollbar-thumb {
    transition: all 0.4s;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
}

/* Slider */

.range-slider {
    --size: 50px;
    --border: 2px;
    --color: var(--green-bg);
    position: relative;
    width: 100%;
    height: 40px;
}
.range-input {
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    opacity: 0;
    margin: 0;
}
.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: var(--size);
    height: 40px;
    border-radius: 4px;
    cursor: ew-resize;
    opacity: 0;
}
.range-input::-moz-range-thumb {
    width: var(--size);
    height: 40px;
    border-radius: 4px;
    cursor: ew-resize;
    opacity: 0;
}
.range-thumb {
    width: var(--size);
    height: 40px;
    border-radius: 4px;
    border: var(--border) solid var(--color);
    background-color: #fff;
    color: var(--color);
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(-50%);
    z-index: 2;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.range-line {
    height: var(--border);
    background-color: #e1e1e1;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}
.range-line-fill {
    position: absolute;
    width: 0;
    height: var(--border);
    background-color: var(--color);
}

/* Toggle */

label.toggle {
    --toggle_width: 40px;
    --toggle_height: 20px;
    --toggle_margin: 2px;
    --toggle_inner_size: calc(var(--toggle_height) - (var(--toggle_margin) * 2));
    --toggle_inner_shift: calc(var(--toggle_width) - (var(--toggle_margin) * 2) - var(--toggle_inner_size));
    --toggle_enabled_color: #2196F3;
    --toggle_disabled_color: #ccc;
    position: relative;
    width: var(--toggle_width);
    height: var(--toggle_height);
    flex-shrink: 0;
}
label.toggle > input[type=checkbox] { opacity: 0; width: 0; height: 0; }
label.toggle > .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--toggle_disabled_color);
    -webkit-transition: .4s;
    transition: .4s;
}
label.toggle > .slider:before {
    position: absolute;
    content: "";
    height: var(--toggle_inner_size);
    width: var(--toggle_inner_size);
    left: var(--toggle_margin);
    bottom: var(--toggle_margin);
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
label.toggle > .slider.round { border-radius: var(--toggle_height); }
label.toggle > .slider.round:before { border-radius: 50%; }
label.toggle > input[type=checkbox]:checked + .slider { background-color: var(--toggle_enabled_color); }
label.toggle > input[type=checkbox]:focus + .slider { box-shadow: 0 0 1px var(--toggle_enabled_color); }
label.toggle > input[type=checkbox]:checked + .slider:before { -webkit-transform: translateX(var(--toggle_inner_shift)); -ms-transform: translateX(var(--toggle_inner_shift)); transform: translateX(var(--toggle_inner_shift)); }

/* Tooltip */

.tt {
    position: relative;
    display: flex;
    align-items: center;
    /* cursor: pointer; */
    cursor: default;
}
.tttext {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: #fff;
    position: absolute;
    transform: translateY(-100%);
    padding: 4px 8px;
    border-radius: 4px;
    /* white-space: nowrap; */
    font-size: 12px;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    pointer-events: none;
    line-height: 16px;
    white-space: wrap;
    max-width: 50vw;
}
.tt:hover .tttext {
    opacity: 1;
    transform: translateY(0px);
}


/* Navbar */

#navbar {
    background-color: rgba(255, 255, 255, 255);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-height: var(--navbar_height);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3;
    padding: 0.5rem 1rem !important;
}
@media (min-width: 1024px) {
    #navbar {
        padding: 0.5rem 64px !important;
    }
}
#navbar_shadow {
    position: fixed;
    top: var(--navbar_height);
    height: var(--navbar_shadow_height);
    right: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 11px 12px -4px #00000014 inset, 0 4px 4px -2px #00000005 inset;
    z-index: 2;
    pointer-events: none;
}
.navbar-brand {
    min-height: calc(var(--navbar_height) - 16px);
    color: rgb(0, 26, 82);
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
#navbar_content {
    justify-content: end;
}
li.nav-item {
    min-width: 100px;
}
.nav-link {
    color: rgb(0, 26, 82);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    justify-content: center;
}
.nav-link > div {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}
.nav-link > svg {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}
.nav-link:hover > div {
    border-bottom: 2px solid var(--cyan-fg);
}
.navbar-brand img {
    filter: drop-shadow(1px 1px 0 rgba(127, 127, 127, 0.4));
}
.navbar-toggler-icon {
    width: 24px !important;
    height: 24px !important;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
    position: absolute;
    top: 21px;
    right: 24px;
    width: 24px !important;
    height: 24px !important;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
}
.nav-item {
    position: relative;
}
.nav-item > .nav-popup > .container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: calc(min(300px, 100vw - 32px));
    padding: 0;
    margin: 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 15px #00000026;
    z-index: 1;
}
.nav-item:hover > .nav-popup > .container {
    display: block;
}
.nav-item:hover > .nav-popup > .container > .content {
    padding: 8px 16px;
    animation: slideIn .2s cubic-bezier(.05,.7,.1,1);
}
@keyframes slideIn {
    0% { opacity: 0; transform: translateY(-40px) scale(.9); }
    to { opacity: 1; transform: none; }
}
.nav-item > .nav-popup > .container > .content .item-row {
    padding: 8px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}
.nav-item > .nav-popup > .container > .content .item-row:hover {
    background-color: #f5f5f5;
}
.nav-item > .nav-popup > .container > .content .dummy { cursor: default; padding: 4px !important; }
.nav-item > .nav-popup > .container > .content .dummy:hover { background-color: #fff; }
@media (min-width: 640px) {
    .navbar-brand {
        font-size: 24px;
    }
    .nav-item:hover > .nav-popup > .container > .content {
        padding: 16px 32px;
    }
    .nav-item > .nav-popup > .container > .content .item-row {
        padding: 16px;
        font-size: 16px;
    }
}
#navbar a {
    text-decoration: none;
}

/* Login modal */

.modal_login_button_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 32px;
}
.modal_login_button_container > .modal_login_button {
    display: block;
    width: 100%;
    height: 50px;
    border: 0px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
    cursor: pointer;
    font-size: 14px;
    margin: 6px 4px;
    overflow: hidden;
    padding: 0px 10px;
    user-select: none;
}
.modal_login_button_container > .or {
    opacity: 0.5;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
}
.login_button {
    cursor: pointer;
}

/* Content */

.pt-navbar { padding-top: var(--navbar_height); }
#content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Pricing */

#pricing {
    margin-top: 64px;
    margin-bottom: 64px;
}
li.price {
    box-shadow: 0 0 15px #00000026;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: var(--color-surface);
    color: var(--color-onSurface);
    padding: 24px;
}
li.price .headline {
    background-color: var(--headline-bg);
    padding: 20px;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    min-height: 124px;
    letter-spacing: 0;
}

/* Footer */

.text-secondary {
    color: var(--secondary) !important;
}
footer a,
footer div {
    text-decoration: none;
    color: rgb(225, 248, 250);
    transition: color 200ms ease-in-out;
    -webkit-transition: color 200ms ease-in-out;
}
footer a:hover {
    color: var(--secondary);
    text-decoration: none;
}
#footer_content {
    /* padding-top: 80px; */
    z-index: 1;
    font-size: 0.8em;
}
#footer_background {
    background-color: var(--green-bg);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
#footer_background svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
#footer_background svg > * {
    color: rgb(0 94 103);
}


.news-icon {
    max-width: 200px;
}
.payment-icon {
    width: 32px;
    height: 20px;
}
.news-icon > img,
.payment-icon > img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: 4px;
}
