
:root {
    --color: rgb(255, 255, 255);
    --color2: rgb(237, 191, 245);
    --color3: rgb(51, 12, 128);
    --color4: rgb(0, 0, 0);
    --bgcolor: rgb(0, 0, 0);
    --bgcolor2: rgb(51, 12, 128);
    --bgcolor2i: rgb(204, 243, 127);
    --bgcolor3: rgb(237, 191, 245);
    --bgcolor3i: rgb(18, 64, 10);
    --bgcolor4: rgb(255, 255, 255);
    --text-color: rgb(0, 0, 0);
    --focus-color: rgb(255, 255, 255);
    --focus-color-inv: rgb(0, 0, 0);
    --focus-out: 2px solid var(--focus-color);
    --grad-angle: 5deg;
    --h1-size: 2.2rem;
    --h2-size: 1.5rem;
    --text-size: 1rem;
    --small-text: 1rem;
    --inline-margin: 5vw;
    --submit-button-circle: 1em;
}
@supports (top: 1vi) {
:root {
    --inline-margin: 5vi;
}
}

.size2 {
    --h2-size: 1.7rem;
}

html {
    color: rgb(255, 255, 255);
    color: var(--color);
    background-color: rgb(51, 12, 128);
    background-color: var(--bgcolor2);
}

main {
    width: 100%;
    font-size: 1rem;
    font-size: var(--text-size);
}

div {
    text-wrap: balance;
    text-wrap: pretty;
}

h1 {
    font-size: 2.2rem;
    font-size: var(--h1-size);
    font-weight: 800;
}

h2 {
    font-size: 1.5rem;
    font-size: var(--h2-size);
    font-weight: bold;
}

h1, h2 {
    text-transform: uppercase;
}

.fact {
    color: rgb(0, 0, 0);
}

.bg-owner {
    position: relative;
}

.bg-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bg-contain {
    background-size: contain;
    background-repeat: no-repeat;
}

.content {
    --bg-height-base: 100;

    min-height: calc(100 * 1vw);

    min-height: var(--bg-min-height, calc(var(--bg-height-base) * 1vw));

    min-height: calc(100 * 1vi);

    min-height: var(--bg-min-height, calc(var(--bg-height-base) * 1vi));
}

.intro-bg {
    background-image: url('./images/oidc_hero.webp');

    /*
    background-image: image-set(
        url('./images/intro_bg.avif') type('image/avif'),
        url('./images/intro_bg.webp') type('image/webp'),
        url('./images/intro_bg.png') type('image/png')
    );
    */
}

.intro-content {
    --bg-height-base: 65.10;

    padding: 2rem 5vw;

    padding: 2rem 5vi;

    padding: 2rem var(--inline-margin);
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 5rem;
    width: auto;
}

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

nav, menu {
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    gap: 1.7rem;
    align-items: center;
    font-size: 1rem;
}

menu {
    list-style-type: none;
}

menu li {
    text-transform: uppercase;
    text-align: right;
}

.menu-button {
    border: 1px solid transparent;
}

.inv-button {
    --focus-out: 2px solid var(--focus-color-inv);

    filter: invert(1);
}

.menu-button img {
    width: 2rem;
    height: auto;
}

.languages {
    position: relative;
}

#lang-button {
    font-weight: bold;
}

.lang-selector {
    position: absolute;
    display: flex;
    flex-direction: column;
}

.lang-selected {
    background-color: rgb(128, 128, 128);
    outline: 2px solid transparent;
}

header a, header button {
    display: inline-flex;
}

menu a, #lang-button, .lang-selector a {
    color: inherit;
    border: 1px solid transparent;
    padding: 0.5rem;
    white-space: pre-line;
}

header a:focus-visible,
header button:focus-visible,
.contacts-input:focus-visible,
.submit-button:focus-visible
{
    outline: 2px solid rgb(255, 255, 255);
    outline: var(--focus-out);
}


.intro-content article {
    padding-top: 16svb;
    width: 55%;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-content article div {
    display: inline-flex;
}

.intro-content article a {
    margin-top: 1rem;
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 0.25rem;
    font-size: 1rem;
    line-height: normal;
    cursor: pointer;
    text-transform: uppercase;
    border: 2px solid transparent;
    background-color: rgb(152, 30, 172);
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.ttf-bg {
    --bg-height-base: 93.75;

    background-image:
        url('./images/ttfriends.webp'),
        url('./images/ttf_back.webp');
    background-position: bottom 14% center, top;
    top: -7.8%;
    right: 0;
    bottom: -7.8%;
    left: 0;
    z-index: 1;
    padding: 16% 5vw;
    padding: 16% 5vi;
    padding: 16% var(--inline-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ttf-content {
    --bg-height-base: 85.95;
}

.ttf-bg h1 {
    text-align: center;
}

.ttf-bg div {
    width: 60%;
    padding: 1em 3rem;
    font-size: 1.5rem;
    font-size: var(--h2-size);
    border: 2px solid transparent;
    background-color: rgb(16, 9, 35);
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    text-align: center;
}

.howiw-owner {
    --bg-height-base: 79;

    background-color: rgb(51, 12, 128);

    background-color: var(--bgcolor2);
}

.howiw-bg {
    background-image:
        url('./images/settings.webp'),
        url('./images/graph.webp')
    ;
    background-position: center center, center left;
}

.howiw-content {
    top: 3rem;
    right: 0;
    bottom: 3rem;
    left: 0;
    padding: 2rem 5vw;
    padding: 2rem 5vi;
    padding: 2rem var(--inline-margin);
    z-index: 0;
    display: flex;
    justify-content: flex-end;
}

.howiw-text {
    padding: 3rem 0 0 3rem;
    width: 30vw;
    width: 30vi;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.pushem-bg {
    background-image: url('./images/push_email.webp');
    background-position: top right;
    top: -18%;
    z-index: 0;
}

.pushem-content {
    --bg-height-base: 60;

    background-color: rgb(237, 191, 245);

    background-color: var(--bgcolor3);
    padding: 2rem 5vw;
    padding: 2rem 5vi;
    padding: 2rem var(--inline-margin);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.pushem-text {
    display: flex;
    flex-direction: column;
    width: 30vw;
    width: 30vi;
    gap: 3rem;
}

.channels-bg {
    background-image: url('./images/cats_brand.webp');
}

.channels-content {
    --bg-height-base: 75.42;

    background-color: rgb(237, 191, 245);

    background-color: var(--bgcolor3);
    padding: 2rem 5vw 4rem;
    padding: 2rem 5vi 4rem;
    padding: 2rem var(--inline-margin) 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.channels-header {
    align-self: center;
    text-align: center;
    padding-right: 5vw;
    padding-right: 5vi;
}

.channels-header h2 {
    text-transform: none;
}

.shop-bg {
    --shop-grad:
        linear-gradient(180deg, var(--bgcolor3), var(--bgcolor4))
        ;

    background-image:
        url('./images/chips_promo_code.webp'),
        url('./images/nloqq_shop.webp'),
        linear-gradient(180deg, rgb(237, 191, 245), rgb(255, 255, 255))
        
        ;

    background-image:
        url('./images/chips_promo_code.webp'),
        url('./images/nloqq_shop.webp'),
        var(--shop-grad)
        ;
    background-position: top right, center left, top left;
    background-size: 40%, 60%, 100% 30%;
    top: -5%;
    right: 0;
    bottom: -5%;
    left: 0;
    z-index: 0;
}

.shop-content {
    --bg-height-base: 67;

    background-color: rgb(255, 255, 255);

    background-color: var(--bgcolor4);
    padding: 2rem 5vw;
    padding: 2rem 5vi;
    padding: 2rem var(--inline-margin);
    display: flex;
    align-items: flex-end;
}

.shop-text {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    width: 100%;
    gap: 10vw;
    gap: 10vi;
    white-space: pre-line;
}

.shop-text div {
    display: flex;
    flex-direction: column;
}

.shop-text2 {
    text-align: right;
}

.merch-bg {
    background-image: url('./images/merch.webp');
}

.merch-content {
    --bg-height-base: 48.91;

    background-color: rgb(255, 255, 255);

    background-color: var(--bgcolor4);
    padding: 3rem 5vw;
    padding: 3rem 5vi;
    padding: 3rem var(--inline-margin);
    white-space: pre-line;
}

.merch-content, .merch-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

.cset1 {
    color: rgb(255, 255, 255);
    color: var(--color);
    font-size: 1.5rem;
    font-size: var(--h2-size);
}

.cset1 h1, .cset1 h2 {
    color: rgb(237, 191, 245);
    color: var(--color2);
}

.cset2 {
    color: rgb(0, 0, 0);
    color: var(--text-color);
    font-size: 1.5rem;
    font-size: var(--h2-size);
}

.cset2 h1, .cset2 h2 {
    color: rgb(51, 12, 128);
    color: var(--color3);
}

.hpadl {
    padding-left: 5vw;
    padding-left: 5vi;
}

.hpadr {
    padding-right: 5vw;
    padding-right: 5vi;
}

.contact-bg {
    background-image: url('./images/get_started_bg.webp');
    background-size: cover;
    top: -8%;
    right: 0;
    bottom: -8%;
    left: 0;
}

#contact {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.contact-content {
    --bg-height-base: 54;

    padding: 10% 20% 0;
    font-size: 1.5rem;
    font-size: var(--h2-size);
    line-height: 1.5;
    white-space: pre-line;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 55%;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.contacts-input {
    line-height: 1.5;
    box-sizing: border-box;
    outline: none;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8em 1.2em 0.7em;
    width: 100%;
}

.contacts-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
}

.contacts-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
}

.submit-button {
    padding: 0.5em 4em;
    font-weight: bold;
    border-radius: 16px;
    font-size: 1.2rem;
    line-height: normal;
    cursor: pointer;
    text-transform: uppercase;
    border: 2px solid transparent;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    margin-top: 1rem;
    margin-left: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.submit-button::before {
    content: '';
    display: none;
    position: relative;
    left: -0.4em;
    top: 0.15em;
    margin-top: -0.2em;
    width: 1em;
    width: var(--submit-button-circle);
    height: 1em;
    height: var(--submit-button-circle);
    border: 2px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    animation: 0.8s linear infinite rotate;
}

.sending-button {
    pointer-events: none;
    cursor: not-allowed;
}

.sending-button::before {
    display: inline-block;
    transition-delay: 0.5s;
    transition-duration: 1s;
    opacity: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.message {
    display: flex;
    width: 100%;
    font-size: 1.2rem;
    color: var(--button-text);
    padding: 0;
    margin: 0;
}

.error-message {
    justify-content: space-between;
    align-items: center;
    border: 2px solid rgb(255, 0, 0);
}

.button-img {
    padding: 0;
    height: 1.1rem;
    width: auto;
}

.shadow-img {
    filter: brightness(85%) drop-shadow(1px 1px rgb(0, 0, 0));
}

.hidden-message {
    display: none;
}

.error-message > * {
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin: 3px 0.4em;
}

.error-message > button {
    background: none;
    border: 2px solid transparent;
    padding-left: 0.3rem;
    padding-right: 0.15rem;
    border-left: 3px solid rgb(255, 0, 0);
    color: rgb(0, 0, 0);
    color: var(--text-color);
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.hidden-text {
    display: none;
}

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

.warn-message {
    border: 2px solid rgb(0, 190, 0);
}

.warn-text {
    margin: 0.5em 1em;
}

.msg-success {
    text-align: center;
}

.success-panel {
    margin-top: auto;
    margin-bottom: auto;
    gap: 1rem;
}

.btn-up {
    position: fixed;
    right: 4rem;
    bottom: 4rem;
    z-index: 2;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.btn-up a {
    display: inline-flex;
    border: 2px solid rgb(255, 255, 255);
    background-color: rgb(92, 38, 150);
    border-radius: 50%;
    padding: 0.4rem;
}

.btn-up img {
    width: 2rem;
    height: auto;
    filter: invert(1);
}

.hidden-button {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.visible-button {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@media screen and (min-width: 1150px) {
    .mobile-only {
        display: none;
    }
}

@media screen and (max-width: 1149.98px) {
    .mobile-only {
        display: inline-flex;
    }

    nav {
        position: relative;
        flex-direction: column;
        gap: 0.3rem;
    }

    .mobile-hidden {
        display: none;
    }

    #menu-cnt {
        position: absolute;
        margin-left: auto;
        background: rgb(255, 255, 255);
        background: var(--bgcolor4);
        color: rgb(0, 0, 0);
        color: var(--color4);
        border: 2px solid transparent;
        padding: 0.5rem 5vw 1rem;
        padding: 0.5rem 5vi 1rem;
        padding: 0.5rem var(--inline-margin) 1rem;
        align-items: flex-end;
        z-index: 1;
        width: max(12rem, min(15rem, 60vw));
        width: max(12rem, min(15rem, 60vi));
    }

    .menu-inset {
        top: -0.5rem;
        right: calc( -1 * 5vw);
        right: calc( -1 * 5vi);
        right: calc( -1 * var(--inline-margin));
    }

    menu {
        color: rgb(0, 0, 0);
        flex-direction: column;
        gap: 0;
        align-items: flex-end;
    }

    menu a {
        white-space: normal;
    }

    .languages {
        display: block;
    }

    .intro-content article {
        padding-top: 6svb;
    }

    .btn-up {
        right: 2rem;
        bottom: 2rem;
    }

    .btn-up img {
        width: 1.5rem;
    }
}

@media (orientation: portrait) {
    :root {
        --h1-size: 1.5rem;
        --h2-size: 1.2rem;
        --text-size: 1rem;
        --small-text: 1rem;
    }

    .size2 {
        --h2-size: 1.2rem;
    }

    .msize2 {
        --h1-size: 1.1rem;
        --h2-size: 0.8rem;
        --text-size: 0.8rem;
    }

    main {
        background-color: rgba(0, 0, 0, 0);
    }

    .intro-bg {
        background-image: url('./images/oidc_herom.webp');

        /*
        background-image: image-set(
            url('./images/intro_bgm.avif') type('image/avif'),
            url('./images/intro_bgm.webp') type('image/webp'),
            url('./images/intro_bgm.png') type('image/png')
        );
        */
        background-size: cover;
        background-position-x: right;
    }

    .intro-content {
        --bg-height-base: 87.62;
        --h1-size: min(1.5rem, 5.5vw);
        --h2-size: min(1rem, 4vw);

        padding-top: 1rem;

        padding-bottom: 0.5rem;
    }

    @supports (top: 1vi) {

    .intro-content {
        --h2-size: min(1rem, 4vi);
    }
    }

    @supports (top: 1vi) {

    .intro-content {
        --h1-size: min(1.5rem, 5.5vi);
    }
    }

    .intro-content article {
        width: 100%;
        padding-top: 1rem;
        gap: 1rem;
    }

    .intro-content article div {
        width: 90%;
    }

    .intro-content article a {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .ttf-bg {
        background-image:
            url('./images/ttfriendsm.webp'),
            url('./images/ttf_backm.webp');
        background-image:
            -webkit-image-set(url('./images/ttfriendsm.webp') 1x, url('./images/ttfriendsmx2.webp') 2x),
            url('./images/ttf_backm.webp');
        background-image:
            image-set(url('./images/ttfriendsm.webp') 1x, url('./images/ttfriendsmx2.webp') 2x),
            url('./images/ttf_backm.webp');
        background-position: bottom 7vw center, top;
        background-position: bottom 7vi center, top;
        background-size: 100%, cover;
        background-position-x: center;
        background-repeat: no-repeat;
        top: -6%;
        right: 0;
        bottom: -6%;
        left: 0;
        padding-top: 10vw;
        padding-bottom: 10vw;
        padding-top: 10vi;
        padding-bottom: 10vi;
        gap: 1rem;
    }

    @media (min-resolution: 192dpi) {

    .ttf-bg {
        background-image:
            url('./images/ttfriendsmx2.webp'),
            url('./images/ttf_backm.webp');
    }
    }

    .ttf-content {
        --bg-height-base: 123.05;

        padding-top: 0.5rem;

        padding-bottom: 0.5rem;
    }

    .ttf-bg div {
        --text-size: 0.9rem;

        width: 100%;
        padding: 0.8em;
    }

    .ttf-bg div br {
        display: none;
    }

    .howiw-owner {
        --bg-height-base: 240;
    }

    .howiw-bg {
        background-image: url('./images/graph_settingsm.webp');
        background-image: -webkit-image-set(url('./images/graph_settingsm.webp') 1x, url('./images/graph_settingsmx2.webp') 2x);
        background-image: image-set(url('./images/graph_settingsm.webp') 1x, url('./images/graph_settingsmx2.webp') 2x);
        background-size: contain;
        background-position: bottom 5% center;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    @media (min-resolution: 192dpi) {

    .howiw-bg {
        background-image: url('./images/graph_settingsmx2.webp');
    }
    }

    .howiw-text {
        padding: 3rem 1rem;
        width: 100%;
    }

    .howiw-text h1 {
        text-align: center;
    }

    .pushem-bg {
        background-image: url('./images/push_emailm.webp');
        background-image:
            -webkit-image-set(
                url('./images/push_emailm.webp') 1x,
                url('./images/push_emailmx2.webp') 2x
            );
        background-image:
            image-set(
                url('./images/push_emailm.webp') 1x,
                url('./images/push_emailmx2.webp') 2x
            );
        background-size: 50%;
        background-position: center right;
        top: -10%;
    }

    .pushem-content {
        --bg-height-base: 60;

        padding-top: 1rem;

        padding-bottom: 1rem;
    }

    .pushem-text {
        width: 48vw;
        width: 48vi;
        margin: 0;
        gap: 0;
    }

    .channels-bg {
        background-position: bottom 10% center;
    }

    .channels-content {
        --bg-height-base: 90;

        padding-top: 1rem;

        padding-bottom: 1rem;
        white-space: pre-line;
    }

    .channels-header, .channels-bottom {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .shop-bg {
        background-image:
            url('./images/nloqq_shopm.webp'),
            url('./images/chipsm.webp'),
            var(--shop-grad);
        background-image:
            -webkit-image-set(url('./images/nloqq_shopm.webp') 1x,url('./images/nloqq_shopmx2.webp') 2x),
            -webkit-image-set(url('./images/chipsm.webp') 1x,url('./images/chipsmx2.webp') 2x),
            var(--shop-grad)
            ;
        background-image:
            image-set(url('./images/nloqq_shopm.webp') 1x,url('./images/nloqq_shopmx2.webp') 2x),
            image-set(url('./images/chipsm.webp') 1x,url('./images/chipsmx2.webp') 2x),
            var(--shop-grad)
            ;
        background-size: 56% auto, 45% auto, cover;
        background-position: top 32% left, top right;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    @media (min-resolution: 192dpi) {

    .shop-bg {
        background-image:
            url('./images/nloqq_shopmx2.webp'),
            url('./images/chipsmx2.webp'),
            var(--shop-grad);
    }
    }

    .shop-content {
        --bg-height-base: 105;

        padding-top: 0.5rem;

        padding-bottom: 0.5rem;
    }

    .shop-text {
        z-index: 0;
        white-space: normal;
    }

    .merch-content {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hpadl, .hpadr {
        padding-left: 0;
        padding-right: 0;
    }

    .logo {
        max-width: 13%;
    }

    .contact-bg {
        background-image: url('./images/get_started_bgm.webp');
        background-position-x: center;
        top: -10vw;
        top: -10vi;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .contact-content {
        --bg-height-base: 97.40;

        padding: 0 5vw;

        padding: 0 5vi;

        padding: 0 var(--inline-margin);
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .contact-content h1 {
        line-height: 1;
        font-size: 1rem;
    }

    .contact-content button {
        margin: 0 0 0 auto;
    }

    .contact-form {
        width: 90%;
        margin-top: 1rem;
    }

    .contacts-input {
        padding: 0.6em 1em 0.5em;
    }

}

@media screen and (max-width: 460px) and (orientation: portrait) {
    :root {
        --small-text: 0.9rem;
    }
}

@media screen and (max-width: 360px) and (orientation: portrait) {
	:root {
		--small-text: 0.7rem;
	}
}

footer {
    --footer-color: rgb(255, 255, 255);
    --footer-button: rgb(255, 255, 255);
    --icon-filter: invert(1);
    --icon-inv-filter: none;
    --logo-width: 80px;
    --logo-height: 80px;
    --telegram-bg: rgb(81, 160, 216);
    --nologo-width: 5rem;
    --cpr-gap: 0;
    --cpr-plinks-dir: row;
    --cpr-plinks-gap: 0.5em;
    --cpr-plinks-span: block;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.75rem;
    line-height: 0.85rem;
    color: rgb(255, 255, 255);
    color: var(--footer-color);
    letter-spacing: 0.6px;
    padding: 3rem 5vw 1rem;
    padding: 3rem 5vi 1rem;
    padding: 3rem var(--inline-margin) 1rem;
}

@supports (color: oklab(0% 0 0%)) {
footer {
    --telegram-bg: oklch(68% 0.11 242deg);
}
}

@media (forced-colors: active) {
    .inv-button {
        filter: initial;
    }
}

@media (prefers-contrast: more) {
    footer {
        --telegram-bg: rgb(0, 0, 0);
    }
}

.logo-img {
    filter: none;
    filter: var(--icon-filter, none);
}

.no-logo {
    width: var(--nologo-width);
}

.inv-filter {
    --icon-filter: var(--icon-inv-filter);
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--cpr-gap);
}

.copyright p {
    padding: 0;
}

.prop-links {
    display: flex;
    align-items: center;
    flex-flow: var(--cpr-plinks-dir) wrap;
    justify-content: center;
    gap: var(--cpr-plinks-gap);
}

.prop-links span {
    display: var(--cpr-plinks-span);
}

.logo-icons {
    display: inline-flex;
    gap: 0.2rem;
    align-items: center;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
}

.logo-icons a {
    display: inline-flex;
}

.link-unclr, .link-unclr:visited {
    color: var(--footer-color);
}

.subscribe {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

.subscribe > a {
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1.2rem;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    -webkit-text-decoration: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    background-color: var(--telegram-bg);
    color: var(--footer-button);
    background-position: center center;
    border-radius: 0.5em;
    border: 1px solid transparent;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.subscribe > div {
    margin-top: 0.4em;
    text-align: right;
}

@media (orientation: landscape) {
    .side-bar {
        flex: 1;
    }
}

@media (orientation: portrait) {
    .link-unclr {
        -webkit-text-decoration: revert;
                text-decoration: revert;
    }
}

@media screen and (max-width: 800px) {
    .subscribe > a {
        line-height: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 800px) and (orientation: portrait) {
    footer {
        --nologo-width: 0;

        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-img, .no-logo {
        display: none;
    }

    .subscribe {
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }

    .subscribe > div {
        text-align: center;
    }
}

@media screen and (max-width: 400px) and (orientation: portrait) {
    html[lang="es"] footer .copyright,
    html[lang="fr"] footer .copyright
    {
        --cpr-gap: 0.2em;
        --cpr-plinks-dir: column;
        --cpr-plinks-gap: 0.3em;
        --cpr-plinks-span: none;
    }
}

.shadow-img-2 {
    filter: brightness(85%) drop-shadow(2px 2px #000);
}

.hidden {
    display: none;
}