@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: bold;
    src: url("font/Poppins-Bold.ttf");
}
@font-face {
    font-family: "Poppins Medium";
    font-style: normal;
    font-weight: 500;
    src: url("font/Poppins-Medium.ttf");
}
@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: normal;
    src: url("font/Poppins-Regular.ttf");
}
@font-face {
    font-family: "Poppins SemiBold";
    font-style: normal;
    font-weight: 600;
    src: url("font/Poppins-SemiBold.ttf");
}

html, body {
    left: 0px;
    margin: 0;
    padding: 0;
    color: #000000;
    font-family: Poppins, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.25px;
    scroll-padding-top: 110px;
}
body > header {
    position: fixed;
    height: 112px;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0);
    transition: height 255ms ease, background 255ms ease;
}

div, li, a {
    -webkit-tap-highlight-color: transparent;
}

body > header > div {
    height: 100%;
    width: 1280px;
    margin: 0 auto;
}
body > header > div > a.logo {
    position: absolute;
    height: 100%;
    width: 227px;
    top: 0;
    cursor: pointer;
    transition: all 255ms ease 0ms;
}
body > header > div > a.logo > img {
    width: 100%;
    height: 100%;
}
body > header > div > nav#menu {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 232px;
    height: 100%;
    transition: all 255ms ease 0ms;
}
body > header > div > nav#menu > ul {
    height: 46px;
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-inline-start: 0px;
    list-style-type: none;
    position: relative;
    padding-right: 232px;
    transition: all 255ms ease 0ms;
}
body > header > div > nav#menu > ul > li {
    height: 100%;
    float: left;
    line-height: 46px;
    cursor: pointer;
    color: #000000;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    display: block;
    position: relative;
}
body > header > div > nav#menu > ul > li:not(.active)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAADCAYAAABvTwTkAAAACXBIWXMAAAsSAAALEgHS3X78AAAAN0lEQVQYV73OQREAEAAAwaWAGUlEEEECGf19VNLAQwauwF7IfRYsJO/bqBHDH5DrjIjmHvxoox2hPwdhZu2UOAAAAABJRU5ErkJggg==");
    transition: width 255ms ease, left 255ms ease;
    opacity: 0.75;
}
body > header > div > nav#menu > ul > li > a {
    text-decoration: none;
    color: #000;
    outline: none;
    padding: 0 23px;
    display: block;
    letter-spacing: 0;
}
body > header > div > nav#menu > ul > li:hover {
    color: #444;
}
body > header > div > nav#menu > ul > li:not(.active):hover::after {
    width: 30px;
}
body > header > div > nav#menu > ul > li::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 3px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAADCAYAAABvTwTkAAAACXBIWXMAAAsSAAALEgHS3X78AAAAN0lEQVQYV73OQREAEAAAwaWAGUlEEEECGf19VNLAQwauwF7IfRYsJO/bqBHDH5DrjIjmHvxoox2hPwdhZu2UOAAAAABJRU5ErkJggg==");
}
body > header > div > nav#menu > ul > li::after.active {
    width: 100%;
}
body > header > div > nav#menu > a {
    position: absolute;
    width: 180px;
    height: 42px;
    top: 0;
    right: 0;
    background-color: #125ebb;
    border-radius: 21px;
    cursor: pointer;
    margin: 36px 0;
    letter-spacing: 0px;
    transition: all 255ms ease 0ms;
}
body > header > div > nav#menu > a:hover {
    background-color: #1c6ccf;
}
body > header > div > nav#menu > a > img {
    height: 21px;
    width: 22px;
    margin: 10px 13px;
    float: left;
}
body > header > div > nav#menu > a > span {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    margin: 0;
    padding: 0;
    float: left;
    height: 100%;
    line-height: 42px;
    margin: 0 8px;
}
body > header > div > button {
    display: none;
    visibility: hidden;
}
body > header > div > div#mobile-menu-overlay {
    display: none;
    visibility: hidden;
}
body > header > div > nav#mobile-menu {
    display: none;
}
body > header.fixed {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.09);
    height: 86px;
}
body > header.fixed > div > a.logo {
    width: 180px;
    height: 56px;
    padding: 15px 0;
}
body > header.fixed > div > a.logo > img {
    object-fit: contain;
}
body > header.fixed > div > nav#menu > ul {
    margin-top: 20px;
}
body > header.fixed > div > nav#menu > a {
    margin: 22px 0;
}
body > header.fixed > div > button {
    top: 11px;
}

body > header.support {
    background-image: url(https://enode.sk/lib/wrapper/media/gradient-pozadie.png);
    background-size: cover;
    border: none;
    z-index: 2;
}
body > header.support > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
body > header.support > div > div {
    transition: height 255ms ease;
}
body > header.support > div > div.logo {
    width: 403px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    letter-spacing: -0.2px;
}
body > header.support > div > div.logo > a {
    width: 228px;
    padding: 24px 22px 24px 36px;
    transition: all 255ms ease 0ms;
}
body > header.support > div > div.logo > div {
    border-left: 1px #5c7691 solid;
    margin: 36px 0 31px 0px;
    line-height: 48px;
    padding-left: 21px;
    letter-spacing: 0;
    color: #2b2b59;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    transition: all 255ms ease 0ms;
}
body > header.support > div > div.search {
    width: 510px;
}
body > header.support > div > div.search > form {
    width: 100%;
    background-color: #fff;
    margin: 36px 0;
    height: 42px;
    border-radius: 21px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transition: all 255ms ease 0ms;
}
body > header.support > div > div.search > form > input {
    border: none;
    height: 100%;
    padding-block: 0;
    padding-inline: 0;
    padding: 0px 18px;
    box-sizing: border-box;
    width: calc(100% - 46px);
    outline: none;
    background-color: #fff !important;
    color: #000000;
    font-family: Poppins, sans-serif;
    font-size: 16px;
}
body > header.support > div > div.search > form > button {
    border: none;
    background-image: url("https://podpora.enode.sk/include/media/icons/lupa.svg");
    background-repeat: no-repeat;
    background-position: left;
    display: block;
    width: 46px;
    background-color: #fff;
    cursor: pointer;
    background-size: 28px;
}
body > header.support > div > div.button > a {
    background-color: #125fbb;
    text-decoration: none;
    margin: 36px 38px 52px 75px;
    width: 180px;
    display: block;
    height: 42px;
    border-radius: 21px;
    line-height: 42px;
    text-align: center;
    letter-spacing: 0px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    transition: all 255ms ease 0ms;
}
body > header.support > div > div.button > a:hover {
    background-color: #1573e5;
}

body > header.support.fixed > div > div.logo > a {
    padding: 15px 22px 15px 36px;
    width: 180px;
}
body > header.support.fixed > div > div.logo > div {
    margin: 24px 0 24px 0;
    line-height: 40px;
}
body > header.support.fixed > div > div.search > form {
    margin: 22px 0;
}
body > header.support.fixed > div > div.button > a {
    margin: 22px 38px 22px 75px;
}

footer {
    width: 100%;
    float: left;
}
footer > div {
    background-image: url("media/tmave-pozadie.png");
    background-size: cover;
}
footer > div > div {
    width: 1280px;
    margin: 0 auto;
}
footer > div > div.content {
    display: grid;
    grid-template-columns: 180px 398px 290px 290px;
    gap: 40px;
    padding-top: 67px;
    padding-bottom: 100px;
}
footer > div > div.content > div.logo {
    padding: 22px 20px;
}
footer > div > div.content > div > img {
    width: 145px;
}
footer > div > div.content > div > h3 {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: bold;
}
footer > div > div.content > div > ul {
    list-style-type: none;
    padding-inline-start: 0px;
}
footer > div > div.content > div > ul > li {
    color: #ffffff;
    line-height: 34px;
    height: 34px;
    letter-spacing: 0.3px;
}
footer > div > div.content > div > ul > li > span {
    padding-right: 6px;
}
footer > div > div.content > div > ul > li > a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
footer > div > div.content a:hover {
    color: #135fb7;
}
footer > div > div.content > div > p {
    line-height: 25px;
    color: #fff;
}
footer > div > div.content > div > p#fm1 {
    margin-block-end: 0;
}
footer > div > div.content > div > p#fm2 {
    margin-block-start: 0px;
    margin-block-end: 0;
}
footer > div > div.content > div > p.address {
    margin-block-start: 0px;
    padding-top: 9px;
    line-height: 24px;
}
footer > div > div.content > div > p > span {
    color: #125ebb;
    padding-right: 6px;
}
footer > div > div.content > div > p > a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
footer > div > div.copyright {
    height: 88px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABQEAAAABCAYAAABuQmjLAAAACXBIWXMAAAsSAAALEgHS3X78AAAAIklEQVRYR+3BAQ0AAAQAMEppIID+Yehh/7N6NgAAAACAtw4JbgHNlsJHvAAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-position: top;
}
footer > div > div.copyright > p {
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    margin-block-end: 0;
    margin-block-end: 0;
    padding: 29px 0;
    letter-spacing: 0.3px;
}

div#cookies-popup-wrapper {
    background-color: rgba(0,0,0,0.075);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 225ms ease 0ms, visibility 225ms ease 0ms;
}
div#cookies-popup-wrapper.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 225ms ease 0ms, visibility 0ms ease 0ms;
}
div#cookies-popup-wrapper > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 800px;
    min-height: 360px;
    padding: 45px;
    border-radius: 15px;
    overflow: auto;
    box-shadow: 0 0 20px -8px #888;
    max-width: 90vw;
    max-height: 98vh;
}
div#cookies-popup-wrapper > div > div {
    float: left;
    width: 100%;
}
div#cookies-popup-wrapper > div > div.wrapper > div > h2 {
    padding: 0;
    line-height: 36px;
    margin: 0;
    margin-block-end: 0;
    margin-block-start: 0;
    color: #0f111c;
    font-family: "Poppins Medium", sans-serif;
    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.5px;
}
div#cookies-popup-wrapper > div > div.wrapper > div > p {
    line-height: 23px;
    padding-bottom: 20px;
    color: #003347;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    padding-block-start: 5px;
}
div#cookies-popup-wrapper > div > div.wrapper > div > p.info {
    margin-block-start: 12px;
}
div#cookies-popup-wrapper > div > div.wrapper > div > div {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
div#cookies-popup-wrapper > div > div.wrapper > div > div > span {
    color: #000;
}
div#cookies-popup-wrapper > div > div.bottom {
    display: flex;
    justify-content: flex-start;
    gap: 27px;
    flex-direction: row;
    flex-wrap: nowrap;
}
div#cookies-popup-wrapper > div > div.bottom > button {
    background-color: #42d49c;
    padding: 0 32px;
    line-height: 20px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    height: 40px;
    min-width: 180px;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    max-width: 225px;
}
div#cookies-popup-wrapper > div > div.bottom > button {
    background-color: #57e1b0;
}
div#cookies-popup-wrapper > div > div.bottom > button.gray {
    background-color: #eaeaee;
    color: #000000;
}
div#cookies-popup-wrapper > div > a {
    color: #125ebb;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-decoration: underline;
    float: left;
    cursor: pointer;
    padding-top: 35px;
    letter-spacing: 0;
}
div#cookies-popup-wrapper > div > a:hover {
    color: #135fb7;
}
div#cookies-popup-wrapper > div > div.bottom > button.simple {
    color: #125ebb;
    background-color: initial;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    padding: 0;
    text-align: left;
    text-decoration: underline;
    padding-top: 10px;
    padding-bottom: 20px;
}

label.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
}
label.toggle-switch.disabled {
    cursor: default;
    pointer-events: none;
    touch-action: none;
    opacity: 0.56;
}
label.toggle-switch > input {
    opacity: 0;
    width: 0;
    height: 0;
}
label.toggle-switch > span {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ccc;
    border-radius: 32px;
        transition: 255ms;
}
label.toggle-switch > span:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    forced-color-adjust: none;
    border-radius: 50%;
    transition: 255ms;
}
label.toggle-switch > input:checked + span {
    background-color: #42d49c;
}
label.toggle-switch > input:focus + span {
    box-shadow: 0 0 1px #2196f3;
}
label.toggle-switch > input:checked + span:before {
    transform: translateX(24px);
}

@media (max-width: 1339px) {
    body.mobile-menu-active {
        overflow: hidden;
    }
    body > header > div {
        width: 94%;
    }
    body > header > div > nav#menu > ul {
        padding-right: 190px;
    }
    body > header.support > div > div.logo {
        width: 360px;
    }
    body > header.support > div > div.logo > a {
        width: 190px;
        padding: 28px 20px 28px 36px;
    }
    body > header.support > div > div.logo > div {
        margin: 40px 0 36px 0;
        padding-left: 20px;
        line-height: 38px;
        font-size: 20px;
    }
    body > header.support > div > div.search {
        width: calc(45% - 70px);
    }
    body > header.support > div > div.search > form {
        width: 100%;
    }
    body > header.support > div > div.search > form > input {
        width: calc(100% - 41px);
    }
    body > header.support > div > div.search > form > button {
        width: 41px;
    }
    body > header.support > div > div.button > a {
        margin: 36px 38px 52px 8px;
    }
    body > header.support.fixed > div > div.search > form {
        margin: 22px 0px;
    }
    body > header.support.fixed > div > div.button > a {
        margin: 22px 38px 22px 8px;
    }
    footer > div {
        padding: 0 6%;
    }
    footer > div > div {
        width: 100%;
    }
    footer > div > div.content {
        display: flex;
        padding-bottom: 47px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        align-content: center;
        row-gap: 4px;
        column-gap: 40px;
    }
    footer > div > div.content > div.logo {
        flex: 1 1 350px;
    }
    footer > div > div.content > div.links {
        flex: 1 1 450px;
    }
    footer > div > div.content > div.support {
        padding-left: 20px;
        flex: 1 1 350px;
    }
    footer > div > div.content > div.contact {
        flex: 1 1 450px;
    }
    footer > div > div.copyright > p {
        padding: 28px 18px;
        font-size: 14px;
    }
}

@media (max-width: 1023px) {
    body > header {
        left: 0;
    }
    body > header.fixed {
        left: 0;
    }
    body > header > div {
        width: 100%;
        margin: 0;
    }
    body > header > div > a.logo {
        padding: 12px 28px;
    }
    body > header.fixed > div > a.logo {
        padding-left: 6%;
    }
    body > header > div > nav#menu {
        display: none;
    }
    body > header > div > button {
        display: block;
        visibility: visible;
        background-color: #20303d;
        border: none;
        appearance: none;
        padding-block: 0;
        padding-inline: 0;
        position: fixed;
        top: 36px;
        right: 0px;
        height: 64px;
        width: 64px;
        padding: 12px;
        transition: all 255ms ease 0ms;
    }
    body > header.support {
        height: 130px;
    }
    body > header.support > div > div.logo {
        width: 340px;
    }
    body > header.support > div > div.logo > a {
        width: 170px;
        padding: 41px 17px 0px 31px;
    }
    body > header.support > div > div.logo > div {
        margin: 50px 0 46px 0px;
        padding-left: 16px;
        line-height: 37px;
        font-size: 16.3px;
    }
    body > header.support > div > div.search {
        width: calc(100% - 340px);
    }
    body > header.support > div > div.search > form {
        margin: 48px 7px;
        width: calc(100% - 113px);
    }
    body > header.support > div > div.search > form > input {
        width: calc(100% - 41px);
    }
    body > header.support > div > div.search > form > button {
        width: 41px;
    }
    body > header.support > div > div.button {
        width: 0;
        display: none;
        visibility: hidden;
    }
    body > header.support.fixed {
        height: 86px;
    }
    body > header.support.fixed > div > div.logo > a {
        width: 155px;
        padding: 20px 17px 19px 31px;
    }
    body.mobile-menu-active > header > div > button {
        right: 290px;
    }
    body.mobile-menu-active > header.support > div > button {
        right: 316px;
    }
    body > header > div > button > span::before {
        content: "";
        background-color: #fff;
        position: absolute;
        display: block;
        width: 40px;
        left: 0px;
        top: -14px;
        height: 5px;
        border-radius: 2px;
        transition: all 255ms ease 0ms;
    }
    body > header > div > button > span {
        background-color: #fff;
        width: 40px;
        height: 5px;
        display: block;
        position: absolute;
        top: 30px;
        left: 14px;
        border-radius: 2px;
        transition: all 255ms ease 0ms;
    }
    body > header > div > button > span::after {
        content: "";
        background-color: #fff;
        position: absolute;
        display: block;
        width: 40px;
        left: 0px;
        top: 14px;
        height: 5px;
        border-radius: 2px;
        transition: all 255ms ease 0ms;
    }
    body.mobile-menu-active > header > div > button > span::before {
        transform: translate(-20px, 14px) rotate(45deg);
    }
    body.mobile-menu-active > header > div > button > span {
        left: 35px;
        width: 0px;
    }
    body.mobile-menu-active > header > div > button > span::after {
        transform: translate(-20px, -14px) rotate(-45deg);
    }
    body > header > div > div#mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: 290px;
        bottom: 0;
        left: 0;
    }
    body > header.support > div > div#mobile-menu-overlay {
        right: 315px;
    }
    body.mobile-menu-active > header > div > div#mobile-menu-overlay {
        display: block;
        visibility: visible;
    }
    body > header > div > nav#mobile-menu {
        display: block;
        background-color: #20303d;
        position: fixed;
        top: 0;
        right: -290px;
        width: 290px;
        height: 100dvh;
        transition: right 255ms ease 0ms;
        overflow: auto;
    }
    body > header.support > div > nav#mobile-menu {
        right: -316px;
        width: 316px;
    }
    body.mobile-menu-active > header > div > nav#mobile-menu {
        right: 0;
}
    body > header:not(.support) > div > nav#mobile-menu > ul {
        list-style-type: none;
        margin-block-start: 38px;
        margin-block-end: 0;
        padding-inline-start: 0;
    }
    body > header:not(.support) > div > nav#mobile-menu > ul > li {
        text-align: center;
        height: 56px;
    }
    body > header:not(.support) > div > nav#mobile-menu > ul > li > a {
        color: #ffffff;
        font-family: "Poppins SemiBold", sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        height: 100%;
        width: 100%;
        display: block;
        line-height: 60px;
    }
    body > header:not(.support) > div > nav#mobile-menu > a {
        color: #ffffff;
        font-size: 20px;
        background-color: #125ebb;
        text-decoration: none;
        height: 50px;
        width: 210px;
        line-height: 20px;
        text-align: center;
        display: block;
        margin: 0 auto;
        border-radius: 25px;
        margin-top: 35px;
        padding: 15px;
        box-sizing: border-box;
    }
    
    footer > div > div.content > div {
        padding-left: 21px;
    }
    footer > div > div.content > div.logo {
        padding: 0;
        order: 0;
        text-align: left;
        padding-top: 20px;
        padding-left: 36px;
        flex: 1 0 285px;
    }
    footer > div > div.content > div.links {
        order: 3;
        flex: 1 0 350px;
    }
    footer > div > div.content > div.support {
        order: 2;
        padding-left: 35px;
        flex: 1 0 285px;
    }
    footer > div > div.content > div.contact {
        order: 1;
        flex: 1 0 350px;
    }
    footer > div > div.copyright {
        width: 100%;
        height: initial;
    }
    
    div#cookies-popup-wrapper > div > div.bottom > button {
        min-width: 165px;
    }
}

@media (max-width: 767px) {
    html, body {
        scroll-padding-top: 170px;
    }
    body > header {}

    body > header.support.fixed > div > button {
        top: 36px;
    }
    body > header.support {
        height: 200px;
    }
    body > header.support > div {
        align-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
    }
    body > header.support > div > div.logo {
        height: 110px;
    }
    body > header.support > div > div.logo > a {
        width: 167px;
        padding: 45px 17px 17px 26px;
    }
    body > header.support > div > div.logo > div {
        margin: 54px 0 23px 0;
        padding-left: 15px;
        line-height: 36px;
    }
    body > header.support > div > div.search {
        width: 100%;
        height: 90px;
    }
    body > header.support > div > div.search > form {
        margin: 14px 25px;
        width: calc(100% - 50px);
    }
    body > header.support > div > div.search > form > input {
        width: calc(100% - 16px);
    }
    body > header.support.fixed {
        height: 141px;
    }
    body > header.support.fixed > div > div.logo {
        height: 80px;
    }
    body > header.support.fixed > div > div.logo > a {
        padding: 20px 17px 19px 26px;
    }
    body > header.support.fixed > div > div.search {
        height: 75px;
    }
    body > header.support.fixed > div > div.search > form {
        margin: 0px 25px 20px 25px;
        width: calc(100% - 115px);
    }
    
    footer > div {
        padding: 0 6%;
    }
    footer > div > div.content {
        display: flex;
        width: 100%;
        padding-bottom: 41px;
        align-items: flex-start;
        align-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    footer > div > div.content > div {
        padding: 0px 0 18px 20px;
    }
    footer > div > div.content > div.logo {
        padding: 23px;
        order: initial;
        flex: 0 0 180px;
    }
    footer > div > div.content > div.links {
        order: initial;
        flex: 1 1 100%;
    }
    footer > div > div.content > div.support {
        order: initial;
        padding-left: 19px;
        flex: 1 1 100%;
    }
    footer > div > div.content > div.contact {
        order: initial;
        flex: 1 1 100%;
    }
    div#cookies-popup-wrapper > div {
        padding: 24px;
    }
    div#cookies-popup-wrapper > div > div.bottom {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 399px) {
    body > header > div > a.logo {
        padding: 10px;
        width: 200px;
        padding-left: 6%;
    }
    body > header.support > div > div.logo > a {
        width: 42px;
        overflow: hidden;
    }
    body > header.support > div > div.logo > a > img {
        height: 44px;
    }
    body > header.support.fixed > div > div.logo > a {
        width: 42px;
    }
    body.mobile-menu-active > header > div > button {
        right: calc(100vw - 64px);
    }
    body.mobile-menu-active > header.support > div > button {
        right: calc(100vw - 64px);
    }
    body.mobile-menu-active > header > div > div#mobile-menu-overlay {
        right: calc(100vw - 65px);
    }
    body.mobile-menu-active > header > div > nav#mobile-menu {
        width: calc(100vw - 64px);
    }
    
    div#cookies-popup-wrapper > div {
        transform: none;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-width: 100vw;
        max-height: 100vh;
        width: 100vw;
        height: 100vh;
        box-shadow: none;
        border-radius: 0;
    }
    div#cookies-popup-wrapper > div > div.bottom > button {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }
}