*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.preload, .preload *, .preload ::before, .preload ::after {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}
@media (prefers-reduced-motion) {
    *, ::before, ::after{
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
        transition: none !important;
    }
}
html.js :focus {
    outline: none;
}
html.tabbing :focus,
html.tabbing .filters-content label:focus-within,
html.tabbing #toggleTheme:focus-within {
    box-shadow: 0 0 0 3px #4D90FE;
}
a {
    color: inherit;
    text-decoration: none;
}
html.searching {
    scroll-behavior: smooth;
}
body {
    min-width: 320px;
    scroll-behavior: smooth;
    font-family: 'Noto Sans', sans-serif;
    transition: background-color .3s, color .3s;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    background-color: #fafafa;
    color: #0a0a0a;
}
body.dark-theme {
    background-color: #0a0a0a;
    color: #fafafa;
}
html:not(.searching) body:not(.static),
body.no-scroll {
    touch-action: none;
    -ms-touch-action: none;
    overflow: hidden;
}
input, button, textarea {
    font: inherit;
    color: inherit;
}
svg {
    display: block;
}
button {
    border: none;
    background-color: inherit;
    cursor: pointer;
    color: inherit;
}
noscript {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fafafa;
    z-index: 99;
}
.header {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    height: 89px;
    padding: 0 17px;
    position: relative;
    display: flex;
    align-items: center;
}
.header-logo {
    width: 233px;
    max-width: calc(100% - 144px);
    height: 55px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,calc(50vh - 134px - 150%));
    transition: transform .4s cubic-bezier(0.25, 0.85, 0.35, 1.05);
}
.header-logo svg {
    width: 100%;
    height: 100%;
}
.header h2 {
    width: 100%;
    padding: 0 17px;
    text-align: center;
    height: 20px;
    line-height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,calc(50vh - 128px - 100%));
    font-size: 13px;
    font-weight: 400;
    transition: transform .4s cubic-bezier(0.25, 0.85, 0.35, 1.05), opacity .2s;
}
.searching .header h2,
.static .header h2 {
    transform: translate(-50%,calc(100% + 8px));
    opacity: 0;
}
.searching .header-logo,
.static .header-logo {
    transform: translate(-50%, -50%) scale(.6);
}
.header-logo circle {
    transition: fill .3s;
}
.dark-theme .header-logo circle {
    fill: #7596ff;
}
#toggleTheme {
    display: inline-block;
    margin-left: auto;
    cursor: pointer;
    padding: 17px;
}
#toggleTheme input {
    opacity: 0;
    position: absolute;
}
#toggleTheme input + div {
    border-radius: 50%;
    width: 21px;
    height: 21px;
    box-shadow: inset 5px -5px 0 3px #000;
    transition: box-shadow 0.5s ease 0s, transform 0.4s ease 0.1s;
}
#toggleTheme input + div:after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: -2.5px;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 -23px 0 #fff,
                0 23px 0 #fff,
                23px 0 0 #fff,
                -23px 0 0 #fff,
                15px 15px 0 #fff,
                -15px 15px 0 #fff,
                15px -15px 0 #fff,
                -15px -15px 0 #fff;
    transform: scale(0);
    transition: all 0.3s ease;
}
#toggleTheme input:checked + div {
    box-shadow: inset 34px -34px 0 0 #fff;
    transform: scale(.4);
    transition: transform 0.3s ease 0.1s, box-shadow 0.2s ease 0s;
}
#toggleTheme input:checked + div:after {
    transform: scale(1.4);
    transition: transform 0.5s ease 0.15s;
}
.input {
    position: absolute;
    left: 50%;
    top: 89px;
    transform: translate(-50%,0);
    border-radius: 8px;
    width: calc(100% - 34px);
    max-width: 768px;
    height: 55px;
    transition: transform .4s cubic-bezier(0.25, 0.85, 0.35, 1.05);
    will-change: transform;
    z-index: 2;
}
@media only screen and (max-height: 700px){
    body.typing .input {
        transform: translate(-50%,calc(-44.5px - 50%));
    }
    body.typing main {
        transform: translateY(-89px);
    }
}
html:not(.searching) .input {
    transform: translate(-50%,calc(50vh - 89px - 50%));
}
main {
    transition: transform .4s cubic-bezier(0.25, 0.85, 0.35, 1.05);
}
html:not(.touch) .input input:not(:focus) + #input-filter::before {
    content: '/';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%,-50%);
    width: 13px;
    height: 23px;
    text-align: center;
    line-height: 21px;
    border: 1px solid;
    border-radius: 5px;
    display: block;
    pointer-events: none;
    opacity: .4;
}
.input input {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: #f2f2f2;
    border: none;
    padding: 8px 83px 8px 47px;
    transition: background-color .3s;
}
.input input:focus {
    background-color: #ededed;
}
.dark-theme .input input {
    background-color: #1a1a1a;
}
.dark-theme .input input:focus {
    background-color: #242424;
}
html.touch .input input,
.input input:focus {
    padding-right: 55px;
}
.input-search, #input-filter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.input-search {
    left: 13px;
    width: 21px;
    height: 21px;
    pointer-events: none;
}
#input-filter {
    right: 0;
    width: 55px;
    height: 55px;
    padding: 13px;
    border-radius: inherit;
}
#input-filter::after {
    content: '';
    position: absolute;
    right: 11px;
    top: 11px;
    width: 8px;
    height: 8px;
    background-color: #0a0a0a;
    border-radius: 50%;
    transition: transform .2s, background-color .2s;
    transform: scale(0);
}
.dark-theme #input-filter::after {
   background-color: #f7f7f7;
}
#input-filter.filtered::after {
    transform: scale(1);
}

.filters {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 377px;
    background-color: #f7f7f7;
    z-index: 9;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s, visibility 0s .3s;
}
.dark-theme .filters {
    background-color: #0a0a0a;
}
.filters[aria-hidden="false"] {
    transition: transform .3s, visibility 0s;
    transform: translateX(0);
    visibility: visible;
}
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 89px;
    padding: 0 21px;
    position: relative;
}
.filters-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid;
    opacity: .1;
}
.filters-header h2 {
    font-size: 21px;
}
#filters-headerClose svg {
    width: 55px;
    height: 55px;
    padding: 13px;
}
.filters-content {
    height: calc(100% - 144px);
    overflow: auto;
    padding: 21px;
}
.filters-content h3 {
    font-size: 1em;
    margin-bottom: 8px;
}
.filters-contentAvailable {
    margin-bottom: 21px;
}
.filters-contentCategories label[disabled]{
    opacity: .4;
}
.filters label {
    display: block;
    padding: 13px 13px;
    margin: 0 -13px;
    cursor: pointer;
    transition: background-color .2s;
    border-radius: 5px;
}
.filters label:hover {
    background-color: rgba(0,0,0,.05);
}
.dark-theme .filters label:hover {
    background-color: rgba(255,255,255,.05);
}
.filters-content input {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    opacity: 0;
}
.filters-content input + span {
    position: relative;
    padding-left: 34px;
    font-size: 15px;
}
.filters-content input + span::before,
.filters-content input + span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.filters-content input + span::before {
    left: 0;
    width: 21px;
    height: 21px;
    border: 2px solid;
    border-radius: 5px;
}
.filters-content input + span::after {
    left: 5px;
    width: 11px;
    height: 11px;
    background-color: #0a0a0a;
    border-radius: 2.5px;
    transform: translateY(-50%) scale(0);
    transition: transform .2s;
}
.dark-theme .filters-content input + span::after {
    background-color: #f7f7f7;
}
.filters-content input:checked + span {
    font-weight: 600;
}
.filters-content input:checked + span::after {
    transform: translateY(-50%) scale(1);
}
.filters-actions {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55px;
    display: flex;
}
.filters-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid;
    opacity: .05;
}
#filters-actionsReset,
#filters-actionsApply {
    width: 50%;
    height: 100%;
    font-size: 13px;
    transition: background-color .2s;
}
#filters-actionsReset:hover {
    background-color: rgba(0,0,0,.03);
}
.dark-theme #filters-actionsReset:hover {
    background-color: rgba(255,255,255,.03);
}
#filters-actionsApply {
    background-color: #e7f1fe;
}
#filters-actionsApply:hover {
    background-color: #e2eefe;
}
.dark-theme #filters-actionsApply {
    background-color: #021631;
}
.dark-theme #filters-actionsApply:hover {
    background-color: #021b3b;
}
.overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.8);
    z-index: 8;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.filters[aria-hidden="false"] ~ .overlay {
    opacity: 1;
    pointer-events: auto;
}

.max-width {
    width: calc(100% - 34px);
    max-width: 1024px;
    margin: 0 auto;
}
.main-status {
    background-color: #f7f7f7;
    max-width: 1024px;
    margin: auto;
    border-radius: 21px;
    padding: 55px 34px;
    margin-top: 89px;
    transition: transform .2s cubic-bezier(0.25, 0.85, 0.35, 1.05), opacity .1s, visibility .2s, background-color .3s;
    opacity: 0;
    transform: translateY(21px);
    visibility: hidden;
}
.dark-theme .main-status {
    background-color: hsl(0deg 0% 6%);
}
.main-statusHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.searching .main-status {
    transition: transform .4s .2s cubic-bezier(0.25, 0.85, 0.35, 1.05), opacity .2s .2s, visibility .4s .2s, background-color .3s;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
#main-statusHeader_domain-info {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 13px;
}
#main-statusHeader_domain-info:empty::before {
    content: '...';
    animation: statusLoading 1s infinite linear;
    font-weight: 600;
}
@keyframes statusLoading {
    0%,33% {
        content: '.';
    }
    33%,66% {
        content: '..';
    }
    66%,100% {
        content: '...';
    }
}
#main-statusHeader_domain {
    font-size: 34px;
    margin-right: 55px;
    font-weight: 600;
    overflow-wrap: anywhere;
    line-height: 1.1;
    max-width: calc(100% - 275px);
}
@media only screen and (min-width: 1760px){
    #main-statusHeader_domain {
        font-size: 34px !important;
    }
}
[available="1"] #main-statusHeader_domain {
    color: #1c843a;
}
[available="0"] #main-statusHeader_domain {
    color: #e4014b;
}
#main-statusHeader_domain:hover {
    text-decoration: underline;
}
#main-statusHeader_cta {
    background-color: rgba(0,0,0,.5);
    color: #fff;
    font-weight: 600;
    border-radius: 13px;
    padding: 21px 47px;
    flex-shrink: 0;
    width: 220px;
    text-align: center;
    transition: background-color .2s;
}
.dark-theme #main-statusHeader_cta {
    background-color: rgba(255,255,255,.5);
}
[available="1"] #main-statusHeader_cta {
    background-color: #1c843a;
}
[available="1"] #main-statusHeader_cta:hover {
    background-color: #0b7329;
}
[available="0"] #main-statusHeader_cta {
    background-color: #e4014b;
}
[available="0"] #main-statusHeader_cta:hover {
    background-color: #d3003a;
}
@media only screen and (max-width: 949px){
    #main-statusHeader_domain {
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 21px;
    }
    #main-statusHeader_cta {
        width: 100%;
        padding-left: 21px;
        padding-right: 21px;
    }
}
.main-statusActions {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}
.main-statusActions > * {
    background-color: #e7f1fe;
    border-radius: 13px;
    margin: 4px;
    font-size: 12px;
    padding: 10px 20px;
    flex-grow: 1;
    text-align: center;
    transition: background-color .3s;
}
.main-statusActions > *:hover {
    background-color: #e2eefe;
}
@media only screen and (max-width: 649px){
    .main-status {
        padding: 34px 17px;
    }
    .main-statusActions > * {
        padding: 8px;
        width: calc(50% - 8px);
    }
    .main-statusActions > * svg {
        width: 100%;
    }
}
.dark-theme .main-statusActions > * {
    background-color: #021631;
}
.dark-theme .main-statusActions > *:hover {
    background-color: #021b3b;
}
.main-status.loading #main-statusHeader_domain,
.main-status.loading #main-statusHeader_cta,
.main-status.loading .main-statusActions {
    opacity: .4;
    pointer-events: none;
}
.main-statusActions > *  svg {
    margin-right: 5px;
}
.main-statusActions > *  svg,
.main-statusActions > *  span {
    display: inline-block;
    vertical-align: middle;
}


@media only screen and (max-width: 699px){
    .main-statusHeader {
        margin-bottom: 21px;
    }
}
.main-content {
    max-width: 768px;
    margin: 34px auto;
    border-radius: 21px;
    padding: 13px 17px;
    transition: transform .2s cubic-bezier(0.25, 0.85, 0.35, 1.05), opacity .1s, visibility .2s;
    opacity: 0;
    transform: translateY(21px);
    visibility: hidden;
}
.main-content.hideNotAvailable .main-contentItem.notAvailable {
    display: none;
}
.searching .main-content {
    transition: transform .4s .2s cubic-bezier(0.25, 0.85, 0.35, 1.05), opacity .2s .2s, visibility .4s .2s;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.main-content > p {
    position: sticky;
    top: 0;
    background-color: #fafafa;
    z-index: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    margin: 34px -17px 21px;
    padding: 8px 0;
}
.dark-theme .main-content > p {
    background-color: #0a0a0a;
}
.main-content > p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid;
    opacity: .1;
}
.main-content > p svg,
.main-content > p span {
    display: inline-block;
    vertical-align: middle;
}
.main-content > p svg {
    margin-right: 5px;
}
.main-contentItem {
    display: flex;
    align-items: center;
    padding: 13px 21px;
    margin: 0 -21px;
    border-radius: 10.5px;
    position: relative;
}
.main-content-smartName {
    margin-bottom: 5px;
    opacity: .6;
}
.main-content-smartName svg,
.main-content-smartName span {
    display: inline-block;
    vertical-align: middle;
}
.main-content-smartName svg {
    transform: scale(.8);
}
.main-content-smartName span {
    font-size: 13px;
    font-weight: 600;
    margin-left: 13px;
}
.main-contentItem.smartName::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: -13px;
    border-radius: 0;
    z-index: -1;
    background-color: #f7f7f7;
    pointer-events: none;
    transition: background-color .3s;
}
.dark-theme .main-contentItem.smartName::before {
    background-color: #0f0f0f;
}
.main-content-smartName + .main-contentItem.smartName::before {
    margin-top: -47px;
}
.main-content-smartName + .main-contentItem.smartName::before {
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
}
.main-contentItem.smartName.last-smartName::before {
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
}
.main-contentItem.smartName.last-smartName {
    margin-bottom: 26px;
}
.main-contentItem:hover {
    background-color: rgba(0,0,0,.03);
}
.dark-theme .main-contentItem:hover {
    background-color: rgba(255,255,255,.03);
}
.main-contentItem-dropdown > svg {
    cursor: pointer;
}
.main-contentItem_domain {
    vertical-align: middle;
    font-weight: 600;
    font-size: 18px;
    margin: 0 13px 0 8px;
    color: #1c843a;
    overflow-wrap: anywhere;
}
.main-contentItem_domain:not([href]) {
    user-select: all;
}
.notAvailable .main-contentItem_domain {
    color: #e4014b;
}
.dark-theme .main-contentItem_domain {
    color: #1e8c3e;
}
.dark-theme .notAvailable .main-contentItem_domain {
    color: #f1014f;
}
.main-contentItem_domain[href]:hover {
    text-decoration: underline;
}
.dropdown {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.dropdown:focus {
    pointer-events: none;
}
.dropdown ul span,
.dropdown ul svg {
    display: inline-block;
    vertical-align: middle;
}
.dropdown ul {
    list-style-type: none;
    white-space: nowrap;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-23px,105%);
    background-color: #e7f1fe;
    border-radius: 8px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    font-size: 13px;
    z-index: 2;
}
.dark-theme .dropdown ul {
    background-color: #021631;
}
.dropdown ul::before {
    content: '';
    position: absolute;
    left: 16.5px;
    top: 1px;
    width: 13px;
    height: 13px;
    background: linear-gradient(45deg, rgba(0,0,0,0) 50%, #e7f1fe 50%);
    border-top-right-radius: 3px;
    transform: translateY(-50%) rotate(-45deg);
}
.dark-theme .dropdown ul::before {
    background: linear-gradient(45deg, rgba(0,0,0,0) 50%, #021631 50%);
}
.main-contentItem:nth-last-of-type(-n+2) .dropdown ul {
    top: 0;
    bottom: auto;
    transform: translate(-23px,-105%);
}
.main-contentItem:nth-last-of-type(-n+2) .dropdown ul::before {
    top: auto;
    bottom: 1px;
    transform: translateY(50%) rotate(135deg);
}
.dropdown:focus ul,
.dropdown:focus-within ul {
    opacity: 1;
    pointer-events: auto;
}
.dropdown li > * {
    width: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
}
.dropdown li > *:hover {
    background-color: rgba(0,0,0,.1);
    border-radius: 4px;
}
.dark-theme .dropdown li > *:hover {
    background-color: rgba(255,255,255,.1);
}
.main-contentItem-dropdown ul svg {
    transform: scale(.86);
    transform-origin: left;
    margin-right: 5px;
}
.main-contentItem_cta {
    display: block;
    font-size: 13px;
    color: #fff;
    padding: 11px 22px;
    width: 123px;
    text-align: center;
    display: block;
    border-radius: inherit;
    background-color: #1c843a;
    margin-left: auto;
    flex-shrink: 0;
}
@media only screen and (max-width: 499px){
    .main-contentItem {
        padding: 13px;
        margin: 0 -13px;
    }
    .main-contentItem_cta {
        width: 89px;
    }
}
.main-contentItem_cta:hover {
    background-color: #0b7329;
}
.notAvailable .main-contentItem_cta {
    background-color: #e4014b;
}
.notAvailable .main-contentItem_cta:hover {
    background-color: #d3003a;
}
.skeleton:empty {
    display: block;
    background: center / 200% linear-gradient(90deg, rgba(255,255,255,0),#f2f2f2,rgba(255,255,255,0));
    border-radius: 8px;
    animation: loading .6s infinite;
}
.dark-theme .skeleton:empty {
    background: center / 200% linear-gradient(90deg, rgba(255,255,255,0),#1a1a1a,rgba(255,255,255,0));
}
@keyframes loading {
    0% {
        background-position-x: 100%;
    }
    100% {
        background-position-x: -100%;
    }
}
.main-contentItem.loading {
    pointer-events: none;
}
.main-contentItem-dropdown > svg:empty {
    border-radius: 50%;
}
.main-contentItem-dropdown > svg:empty + ul {
    opacity: 0;
}
.main-contentItem_domain:empty {
    width: 144px;
    height: 21px;
    margin-bottom: 8px;
}
.main-contentItem_cta:empty {
    padding: 21px 32px;
}
.main-contentCategories {
    display: flex;
    flex-wrap: wrap;
    margin: 21px -4px;
}
.main-contentCategories button {
    font-size: 13px;
    padding: 8px 13px;
    background-color: #f2f2f2;
    transition: background-color .3s;
    margin: 4px;
    flex-grow: 1;
    border-radius: 8px;
}
.main-contentCategories button svg {
    margin-right: 5px;
}
.main-contentCategories button svg,
.main-contentCategories button span {
    display: inline-block;
    vertical-align: middle;
}
.main-contentCategories button:hover {
    background-color: #ededed;
}
.dark-theme .main-contentCategories button {
    background-color: #1a1a1a;
}
.dark-theme .main-contentCategories button:hover {
    background-color: #242424;
}
.main-contentCategories[data-info]::before {
    content: attr(data-info);
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.main-contentCategories[data-all]::before {
    text-align: center;
}
.cookie-alert {
    position: fixed;
    right: 13px;
    bottom: 55px;
    max-width: 267px;
    border-radius: 13px;
    padding: 21px 34px 21px 21px;
    font-size: 12px;
    z-index: 4;
    background-color: #f7f7f7;
    transition: background-color .3s;
    box-shadow: 0 13px 21px rgba(0,0,0,.05);
}
@media only screen and (max-width: 399px){
    .cookie-alert {
        max-width: calc(100% - 26px);
    }
}
.searching .cookie-alert,
.static .cookie-alert {
    bottom: 13px;
}
.dark-theme .cookie-alert {
    background-color: #0f0f0f;
    box-shadow: 0 13px 21px rgba(255,255,255,.05);
}
#cookie-alertClose {
    display: block;
    padding: 8px;
    margin: -21px -34px -21px auto;
    border-radius: inherit;
}
#scrollTop {
    position: fixed;
    right: 13px;
    bottom: 55px;
    border-radius: 50%;
    padding: 11.5px;
    background-color: #0a0a0a;
    color: #f7f7f7;
    transform: translateY(calc(100% + 55px));
    visibility: hidden;
    transition: transform .3s, visibility .3s;
    z-index: 3;
}
#scrollTop.show {
    transform: translateY(0);
    visibility: visible;
}
#scrollTop:hover {
    color: #fff;
    background-color: #0a0a0a;
}
.dark-theme #scrollTop {
    color: #f7f7f7;
}
.dark-theme #scrollTop:hover {
    background-color: #f7f7f7;
    color: #0a0a0a;
}
.dark-theme #scrollTop {
    background-color: #f7f7f7;
    color: #0a0a0a;
}

.staticHeader {
    margin-top: -89px;
    padding: 144px 0;
    background-color: #f7f7f7;
    transition: background-color .3s;
}
.staticHeader h1 {
    line-height: 1.1;
    font-size: 55px;
    margin-bottom: 21px;
}
.dark-theme .staticHeader {
    background-color: #0f0f0f;
}

.footer {
    position: relative;
    width: 100%;
    padding: 55px 0;
    font-size: 11px;
    z-index: 1;
    transition: background-color .3s;
}
.footer::before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-top: 1px solid;
    opacity: .08;
}
:not(.searching) :not(.static) .footer {
    position: fixed;
    bottom: 0;
    left: 0;
}
body:not(.static) .footer {
    padding: 13px 0;
    background-color: #fafafa;
}    
.dark-theme:not(.static) .footer {
    background-color: #0a0a0a;
}
.footer > .max-width {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
body:not(.static) .footer p:last-child {
    opacity: .7;
}
.footer p:last-child {
    font-size: 11px;
    font-weight: 600;
}
.cookie-alert a:hover,
.footer a:hover {
    text-decoration: underline;
}
.cookie-alert a,
.footer p:first-child a {
    color: #2372d0;
    font-weight: 600;
}
.dark-theme .cookie-alert a,
.dark-theme .footer p:first-child a {
    color: #86bdff;
}
.sec{
    padding: 89px 0;
}
.text {
    line-height: 1.4;
}
.text h1 {
    margin-bottom: 1em;
}
.text h1:not(:first-child) {
    margin-top: 2em;
}
.text h1 + h2 {
    margin-top: -1em;
}
.text h2 {
    margin-bottom: 1em;
}
.text p {
    margin-bottom: 1em;
}
.form form > *:not(:last-child){
    margin-bottom: 13px;
}
.form form > * {
    width: 100%;
    background-color: transparent;
    border: 2px solid rgba(56,101,250,.2);
    border-radius: 13px;
    padding: 13px 21px;
    resize: none;
    transition: border-color .2s;
}
.form form > *:focus {
    border-color: rgba(56,101,250,1);
}
.form button {
    background-color: #3866fa;
    color: #fafafa;
    font-size: 15px;
    padding: 18px 21px;
    font-weight: 600;
}
.form button svg,
.form button span {
    display: inline-block;
    vertical-align: middle;
}
.form button svg {
    margin-left: 13px;
}
.text li {
    margin-bottom: 0.5em;
}
.text a {
    text-decoration: underline;
}