:root {
    /* Color Pallete */
    --cSharkRGB: 32, 32, 33;
    --cMineShaftRGB: 58, 58, 58;
    --cMineShaft: rgb(var(--cMineShaftRGB));
    --cGallery: #eaeaea;
    --cDeepSapphire: #07325f;
    --cDodgerBlue: #309dff;
    --cJaffa: #f38f3f;
    --cWhite: #fff;
    --cBlack: #000;

    /* Light Color Scheme (default) */
    --cFG: var(--cMineShaft);
    --cBG: var(--cWhite);
    --cInnerFG: var(--cWhite);
    --cInnerBG: var(--cDodgerBlue);
    --cInnerHoverFG: var(--cWhite);
    --cInnerHoverBG: var(--cDeepSapphire);
    --cFocus: var(--cMineShaft);
    --cLine: #bcbcbc;

    /* Layer index */
    --indexContent: 100;
    --indexPopover: 200;
    --indexPrimenav: 300;
    --indexModal: 500;

    /* Measurements */
    --pageWidth: 2560px; /* Outer page wrapper */
    --containerWidth: 768px; /* Inner page wrapper */
    --gu1: 27.5px;
    --gu2: 55px;
    --gridGap: 55px;
    --sectionGap: 55px;
    --columnIndent: 0;
    --contentPaddingS: 8%;
    --contentPaddingL: 6% 8.333333%;
    --borderRadiusSmall: 2px;
    --borderRadiusMed: 4.5px;
    --borderRadiusLarge: 9px;

    /* Effects */
    --transitionDefault: all ease-in-out 300ms;

    /* Arrows */
    --arrowLeft0: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 60 50%27 style=%27enable-background:new 0 0 60 50%27 xml:space=%27preserve%27%3e%3cpath fill=%27%23309dff%27 d=%27M31.7 48c.2 0 .4-.1.5-.2l25.3-21.7h.1c.1-.1.3-.6.3-1s-.2-.9-.3-1l-.2-.1L32.1 2.3c-.1-.1-.3-.2-.4-.3-.1.1-.3.2-.4.4l-.1.2c-.4.8-.3 1.7.2 2.1l22.4 18.9h-51C2 23.7 2 24.8 2 25s0 1.4.8 1.4h51.1L31.5 45.3c-.5.4-.6 1.4-.3 2.2.2.3.4.5.5.5z%27 /%3e%3c/svg%3e");
    --arrowLeft1: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 60 50%27 style=%27enable-background:new 0 0 60 50%27 xml:space=%27preserve%27%3e%3cpath fill=%27%2307325f%27 d=%27M31.7 48c.2 0 .4-.1.5-.2l25.3-21.7h.1c.1-.1.3-.6.3-1s-.2-.9-.3-1l-.2-.1L32.1 2.3c-.1-.1-.3-.2-.4-.3-.1.1-.3.2-.4.4l-.1.2c-.4.8-.3 1.7.2 2.1l22.4 18.9h-51C2 23.7 2 24.8 2 25s0 1.4.8 1.4h51.1L31.5 45.3c-.5.4-.6 1.4-.3 2.2.2.3.4.5.5.5z%27 /%3e%3c/svg%3e");
}

    /* Responsive variables */

    @media (min-width: 768px) {:root {
        --space: 15px;
        --columnIndent: 8.333333%
}
    }

    @media (min-width: 992px) {:root {
        --containerWidth: 960px;
        --sectionGap: 100px
}
    }

    @media (min-width: 1200px) {:root {
        --containerWidth: 1200px
}
    }

    @media (min-width: 1400px) {:root {
        --containerWidth: 1325px;
        --contentPaddingL: var(--gu2)
}
    }

/* Dark Color Scheme */
.theme-dark {
    --cFG: var(--cWhite);
    --cBG: var(--cDeepSapphire);
    --cInnerFG: var(--cWhite);
    --cInnerBG: var(--cDodgerBlue);
    --cInnerHoverFG: var(--cDeepSapphire);
    --cInnerHoverBG: var(--cWhite);
    --cFocus: var(--cWhite);
    --cLine: hsla(0, 0%, 100%, 0.3);

    color: var(--cFG);
    background-color: var(--cBG);
    border-radius: var(--borderRadiusLarge);
}
.theme-dark a {
        color: var(--cFG);
    }
.theme-dark a:hover {
            color: var(--cDodgerBlue);
        }

html {
    box-sizing: border-box;
}

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

.site {
    max-width: var(--pageWidth);
    min-height: 100vh;
    margin: auto;
    margin-top: 100px;
}

@media (min-width: 992px) {

.site {
        margin-top: 250px /* (Header 150px + 100px margin = 250px) */
}
    }

input,
textarea,
select,
button {
    font-family: inherit;
    line-height: inherit;
    font-size: inherit;
    background-color: transparent;
}

/* Avoid "-internal-autofill-selected" style to be applied */
input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-transition: background-color 600000s 0s, color 600000s 0s;
    transition: background-color 600000s 0s, color 600000s 0s;
}

label {
    cursor: pointer;
}

button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
}

button:focus {
        outline: 1px dotted var(--cLine);
    }

img {
    max-width: 100%;
    height: auto;
}

hr {
    border: 0;
    border-bottom: 1px solid var(--cGallery);
    margin: 0;
}

/* Disable events for svg, avoids problem with Javascript event.target */
svg {
    pointer-events: none;
}

/* +++++ Readmore link with icon +++++ */
.readmore > a {
    display: inline-flex;
    flex-flow: row;
    align-items: center;
    text-decoration: none;
    color: var(--cInnerBG);
    border-bottom: 1px solid var(--cInnerBG);
    transition: var(--transitionDefault);
}
.readmore > a:hover {
        color: var(--cInnerHoverBG);
        border-bottom-color: var(--cInnerHoverBG);
    }

.readmore > a .icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    margin-left: 5px;
}

.link-back {
    display: inline-flex;
    align-items: center;
}

.link-back svg {
    margin-right: 5px;
}

@media (min-width: 1200px) {

.is-layout-flex {
        gap: var(--gu2) !important
}
    }

/*
 * Utility classes used in various components
 * ADD NEW CLASSES *CAREFULLY* !!!
 * Maybe its better part of component?
 */

.container {
    max-width: var(--containerWidth);
    padding: 0 20px;
    margin: auto;
}

.indent {
    padding-left: var(--columnIndent);
    padding-right: var(--columnIndent);
}

@media (min-width: 1200px) {

.indent--double {
        padding-left: calc(2 * var(--columnIndent));
        padding-right: calc(2 * var(--columnIndent))
}
    }

/* - - - - Icon List - - - - */

.list--icon {
    list-style: none;
    padding-left: 0;
}

.list--icon li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 23px;
    margin-bottom: 10px;
}

.list--icon li:last-child {
        margin-bottom: 0;
    }

.list--icon a {
    text-decoration: none;
}

.list--icon a:hover {
        text-decoration: underline;
    }

/* - - - - L A Y O U T - - - - */
.grid-columns {
    display: grid;
    gap: var(--gridGap);
}

@media (min-width: 992px) {

.grid-columns--max2 {
        grid-template-columns: repeat(2, 1fr)
}
    }

@media (min-width: 768px) {

.grid-columns--max3 {
        grid-template-columns: repeat(2, 1fr)
}
    }

@media (min-width: 992px) {

.grid-columns--max3 {
        grid-template-columns: repeat(3, 1fr)
}
    }

@media (min-width: 576px) {

.grid-columns--max4 {
        grid-template-columns: repeat(2, 1fr)
}
    }

@media (min-width: 992px) {

.grid-columns--max4 {
        grid-template-columns: repeat(3, 1fr)
}
    }

@media (min-width: 1400px) {

.grid-columns--max4 {
        gap: var(--gu1);
        grid-template-columns: repeat(4, 1fr)
}
    }

@media (min-width: 992px) {

.box-small {
        max-width: 75%
}
    }

@media (min-width: 1200px) {

.box-small {
        max-width: 50%
}
    }

.post-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(var(--cMineShaftRGB), 0.2)
}

/* - - - - General Messages - - - - */
.fail {
    color: var(--cOrange);
}

.warn {
    color: var(--cYellow);
}

.valid {
    color: var(--cGreen);
}

h1,
.hl--1 {
    font-size: 32px;
    line-height: 1.2; /* 75px / 62px = 1.2 */
    margin-top: 0;
    margin-bottom: 0.5em;
}

    @media (min-width: 768px) {h1,
.hl--1 {
        font-size: 45px
}
    }

    @media (min-width: 992px) {h1,
.hl--1 {
        font-size: 62px
}
    }

h2,
.hl--2 {
    font-size: 32px;
    line-height: 1.2; /* 54px / 45 = 1.2 */
    margin-top: 0;
    margin-bottom: 0.5em;
}

@media (min-width: 768px) {

h2,
.hl--2 {
        font-size: 45px
}
    }

h3,
.hl--3 {
    font-size: 23px;
    line-height: 1.47; /* 24px / 23px = 1.47 */
    margin-top: 0;
    margin-bottom: 0.5em;
}

h4,
.hl--4 {
    font-size: 16px;
    line-height: 1.5; /* 24px / 16 = 1.5 */
    margin-top: 0;
    margin-bottom: 0.5em;
}

/**
 * variants and modifier
 */
.is-style-line-leftside,
.hl--line {
    position: relative;
}
.is-style-line-leftside::before, .hl--line::before {
        position: absolute;
        content: "";
        border-left: 4px solid var(--cDodgerBlue);
        top: 0;
        left: -20px;
        bottom: 0;
        width: 0;
    }

/**
 * No default underline for links inside title
 */
h3 a,
h4 a,
h5 a {
    color: inherit !important;
    text-decoration: none !important;
}

h3 a:hover,
h4 a:hover,
h5 a:hover {
    text-decoration: underline !important;
}

.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ninja-forms-field[type="submit"],
.ninja-forms-field[type="button"],
.wp-element-button,
.wp-block-button__link,
.btn {
    display: inline-flex;
    align-items: center;
    border: 0;
    border-radius: var(--borderRadiusMed);
    background: var(--cInnerBG);
    color: var(--cInnerFG);
    font-family: -system-ui, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 15px;
    white-space: nowrap;
    text-decoration: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transitionDefault);
}

    .ninja-forms-field[type="submit"]:focus, .ninja-forms-field[type="button"]:focus, .wp-element-button:focus, .wp-block-button__link:focus, .btn:focus {
        outline: 1px solid var(--cFocus) !important;
    }

    .ninja-forms-field[type="submit"]:hover, .ninja-forms-field[type="button"]:hover, .wp-element-button:hover, .wp-block-button__link:hover, .btn:hover {
        color: var(--cInnerHoverFG);
        background-color: var(--cInnerHoverBG);
    }

.btn .icon {
    margin-right: 5px;
}

.btn--secondary {
    color: var(--cWhite) !important;
    background: var(--cJaffa);
    text-decoration: none !important;
}

.btn--secondary:hover {
        background-color: hsl(27, 88%, 70%);
    }

.btn--small {
    padding: 7.5px;
}

/* +++++ Unordered List +++++ */
article ul:not([class]) {
    padding: 0 0 0 25px;
}

article ul:not([class]) li {
    padding-left: 0;
    padding-bottom: 0.5rem;
}

article ul:not([class]) li::marker {
    color: var(--cInnerBG);
}

/* +++++ Ordered List +++++ */
article ol {
    padding: 0 0 0 25px;
}

article ol li {
    padding-left: 0;
    padding-bottom: 0.5rem;
}

article ol li::marker {
    color: var(--cInnerBG);
    font-weight: 700;
}

/* +++++ Unordered list with icon +++++ */
.list-icon {
    list-style: none;
    padding-left: 0;
}

.list-icon li {
    display: flex;
    align-items: center;
}

.list-icon .icon {
    fill: var(--cInnerBG);
    margin-right: 0.5em;
}

.list-icon--horizontal {
    display: inline-flex;
    gap: var(--gu1);
    font-weight: 600;
}

.list-icon--horizontal li {
    line-height: 1;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-block-image.is-style-circle img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
       object-fit: cover;
}

.wp-block-image.is-style-rounded img {
    border-radius: var(--borderRadiusLarge);
}

.jumbotron {
    margin: var(--sectionGap) 0;
}

.keynote .wp-block-columns {
    gap: var(--gu1);
}

.keynote .wp-block-column {
    display: flex;
    flex-flow: column;
    color: var(--wp--preset--color--white);
    background-color: var(--cDodgerBlue);
    padding: var(--gu1) var(--gu1) var(--gu2) var(--gu1);
    border-radius: var(--borderRadiusLarge);
}

.keynote__title {
    color: var(--wp--preset--color--white);
}

.keynote__text {
    margin: 10px 0 !important;
    height: 100%;
}

.keynote__cta {
    margin-top: auto;
}

.keynote__cta.readmore > a {
    color: var(--wp--preset--color--white);
    border-color: var(--wp--preset--color--white);
}

.keynote__cta.readmore > a:hover {
        border-color: hsla(0, 0%, 100%, 0);
    }

/**
 * Style Ninja forms
 * https://ninjaforms.com/docs/styling-your-forms/
 */

/* Labels and positions */
.nf-field label {
    color: var(--cFG);
}

.label-above .nf-field-label {
    margin-bottom: 0;
}

.label-right .nf-field .nf-field-label {
    padding-left: 0;
}

.nf-input-limit {
    margin-top: 0;
}

/* Text input field */
.nf-field .ninja-forms-field:not([type="button"]):not([type="submit"]) {
    width: 100%;
    border: 0;
    border-bottom: 2px solid var(--cLine);
    padding: 9px 0;
    line-height: 1.5; /* 16 * 1.5 = 20px */
    color: var(--cFG);
}

.nf-field
    .ninja-forms-field:not([type="button"]):not([type="submit"])::-moz-placeholder {
    color: var(--cLine);
}

.nf-field
    .ninja-forms-field:not([type="button"]):not([type="submit"])::placeholder {
    color: var(--cLine);
}

.nf-field .ninja-forms-field:not([type="button"]):not([type="submit"]):focus {
    outline: none;
    border-bottom-color: var(--cInnerBG);
}

/* Textarea field */
.nf-field-element textarea {
    max-height: 7em;
}

/* Radio Button */
.list-radio-wrap .nf-field-element li input {
    margin-top: 0.5em;
}

.listradio-wrap input {
    display: none;
}

.listradio-wrap input + label {
    position: relative;
    margin-left: 0 !important;
}

.listradio-wrap input + label::before {
        display: inline-block;
        vertical-align: bottom;
        width: 30px;
        height: 30px;
        border: 1px solid var(--cLine);
        border-radius: 50%;
        margin-right: 5px;
        content: "";
        background: var(--cWhite);
    }

.listradio-wrap input + label:focus::before {
        border: 1px solid #333;
    }

.listradio-wrap input:checked + label::after {
        position: absolute;
        left: 12px;
        top: 12px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        content: "";
        background: var(--cInnerBG);
    }

/* Checkbox */
.checkbox-wrap input {
    display: none;
}

.label-right .checkbox-wrap .nf-field-element {
    width: 35px !important;
}

.checkbox-wrap label {
    position: relative;
    padding-left: 40px !important;
}

.checkbox-wrap label::before {
        position: absolute;
        z-index: var(--indexContent);
        display: block;
        left: 0;
        width: 30px;
        height: 30px;
        content: "";
        border-radius: var(--borderRadiusSmall);
        border: 1px solid var(--cLine);
        background: var(--cWhite);
    }

.checkbox-wrap label:focus::before {
        border: 1px solid #333;
    }

.checkbox-wrap label.nf-checked-label::before {
    background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill=%27%23309dff%27 d=%27M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z%27%3E%3C/path%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Form validation */
.nf-error .ninja-forms-field {
    border-bottom: 2px solid var(--cJaffa);
}

.nf-error-msg,
.ninja-forms-req-symbol {
    color: var(--cJaffa) !important;
}

/* Remove empty space if last child */
.nf-field-container:last-child {
    margin-bottom: 0;
}

.label-hidden .nf-field-label {
    display: none;
}

.checkbox input {
    display: none;
}

.checkbox label {
    position: relative;
    padding-left: 40px !important;
}

.checkbox label::before {
        position: absolute;
        z-index: var(--indexContent);
        display: block;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        /* transform: translateX(-100%); */
        content: "";
        border-radius: var(--borderRadiusSmall);
        border: 1px solid var(--cLine);
        background: var(--cWhite);
    }

.checkbox label:focus::before {
        border: 1px solid #333;
    }

.checkbox input[type="checkbox"]:checked + label::before {
    background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath fill=%27%23309dff%27 d=%27M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z%27%3E%3C/path%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Contact A */
.contact-a {
    padding: var(--contentPaddingS);
}
.contact-a .nf-form-cont {
    margin-top: 0;
}

/* Contact B */
@media (min-width: 768px) {
.contact-b.wp-block-columns {
        display: grid;
        grid-template-columns: 1fr 50%
}
    }
@media (min-width: 992px) {
.contact-b.wp-block-columns {
        grid-template-columns: 1fr 40%
}
    }

.contact-b__form {
    border-radius: var(--borderRadiusLarge);
    padding: var(--contentPaddingL);
}

/* Contact C */
@media (min-width: 768px) {
.contact-c.wp-block-columns {
        display: grid;
        grid-template-columns: 1fr 50%
}
    }
@media (min-width: 992px) {
.contact-c.wp-block-columns {
        grid-template-columns: 1fr 40%
}
    }

.contact-c__info {
    border-radius: var(--borderRadiusLarge);
    padding: var(--contentPaddingL);
}

.content-c__content {
    padding-top: 6%;
    padding-bottom: 6%;
}

.testimonial {
    margin: 0;
}

@media (min-width: 992px) {

.testimonial__media {
        flex-basis: auto !important;
        flex-shrink: 0
}
    }

.testimonial__media img {
    width: 180px;
    height: 180px;
}

@media (min-width: 992px) {

.testimonial__content {
        flex-basis: auto !important
}
    }

.testimonial .wp-block-columns {
    margin-bottom: 0;
}

.testimonial blockquote {
    margin: 0;
    padding: 0;
}

.teaserlist {
    display: flex;
    flex-flow: row wrap;
    gap: var(--gridGap) 0;
}

.teaserlist__inner {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: var(--borderRadiusLarge);
    padding: var(--gu1);
}

.teaserlist__box {
    display: grid;
    gap: var(--gridGap);
    width: 100%;
    text-decoration: none;
    border: 1px solid #cfcfcf;
    border-radius: var(--borderRadiusLarge);
    overflow: hidden;
}

@media (min-width: 992px) {

.teaserlist__box {
        grid-template-columns: 1fr 1fr
}
    }

.teaserlist__media {
    overflow: hidden;
}

.teaserlist__thumb {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
}

.teaserlist__top-headline {
    font-weight: 700;
}

.teaserlist__content {
    padding: 0 30px 30px 30px;
}

@media (min-width: 992px) {

.teaserlist__content {
        padding: 40px var(--gridGap) 40px 0
}
    }

@media (min-width: 1200px) {

.teaserlist__content {
        padding: 40px var(--gridGap) 40px 0
}
    }

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination ul {
    display: flex;
    margin: 0 10px;
    padding: 0;
    list-style: none;
}

.pagination .page-numbers {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination .page-numbers.current {
    color: var(--cWhite);
    background-color: var(--cInnerBG);
}

@media (min-width: 768px) {.infobox247.wp-block-columns {
        display: grid !important;
        grid-template-columns: 1fr 50%
}
    }
    @media (min-width: 992px) {.infobox247.wp-block-columns {
        grid-template-columns: 1fr 40%
}
    }

.infobox247__highlight {
    padding: var(--contentPaddingL);
    border-radius: var(--borderRadiusLarge);
}

.infobox247__highlight ul {
    list-style: none;
    margin: var(--gu1) 0;
    padding: 0;
}

.infobox247__highlight li {
    position: relative;
    margin-bottom: var(--gu1);
    margin-left: 60px;
}

.infobox247__highlight li::before {
    position: absolute;
    left: -60px;
    width: 40px;
    height: 40px;
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBDcmVhdGVkIHdpdGggSW5rc2NhcGUgKGh0dHA6Ly93d3cuaW5rc2NhcGUub3JnLykgLS0+Cjxzdmcgd2lkdGg9IjM4IiBoZWlnaHQ9IjM4IiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMC4wNTQgMTAuMDU0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogPGcgZmlsbD0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIuMjY0NTgiPgogIDxwYXRoIGNsYXNzPSJzdDAiIGQ9Im00LjI4NzcgNi4yMDQ1YzAuMDUyOTE3IDAuMDUyOTE3IDAuMTg1MjEgMC4wNTI5MTcgMC4yMzgxMiAwbDIuMTQzMS0yLjExNjdjMC4wNTI5MTctMC4wNTI5MTcgMC4wNzkzNzUtMC4xODUyMSAwLTAuMjM4MTItMC4wNTI5MTctMC4wNTI5MTctMC4xODUyMS0wLjA1MjkxNy0wLjIzODEyIDBsLTIuMDEwOCAyLjAxMDgtMC43NjcyOS0wLjc2NzI5Yy0wLjA1MjkxNy0wLjA3OTM3NS0wLjEwNTgzLTAuMDc5Mzc1LTAuMTMyMjktMC4wNzkzNzUtMC4wNTI5MTcgMC0wLjA3OTM3NSAwLjAyNjQ1OC0wLjEzMjI5IDAuMDUyOTE3LTAuMDI2NDU4IDAuMDI2NDU4LTAuMDUyOTE3IDAuMDc5Mzc1LTAuMDUyOTE3IDAuMTMyMjkgMCAwLjA1MjkxNyAwLjAyNjQ1OCAwLjA3OTM3NSAwLjA1MjkxNyAwLjEzMjI5eiIvPgogIDxwYXRoIGNsYXNzPSJzdDAiIGQ9Im05LjY1NzMgMy4wNjkyLTAuMDI2NDYtMC4wNTI5MTdjLTAuMjY0NTgtMC41ODIwOC0wLjYwODU0LTEuMDg0OC0xLjA1ODMtMS41MzQ2LTAuNDc2MjUtMC40NDk3OS0xLjAwNTQtMC44MjAyMS0xLjU4NzUtMS4wODQ4LTAuNjM1LTAuMjY0NTgtMS4yNy0wLjM5Njg3LTEuOTU3OS0wLjM5Njg3LTIuNzc4MSAwLTUuMDI3MSAyLjI0OS01LjAyNzEgNS4wMjcxIDAgMi43NzgxIDIuMjQ5IDUuMDI3MSA1LjAyNzEgNS4wMjcxIDIuNzc4MSAwIDUuMDI3MS0yLjI0OSA1LjAyNzEtNS4wMjcxIDAtMC42ODc5Mi0wLjEzMjI5LTEuMzQ5NC0wLjM5Njg4LTEuOTU3OXptLTQuNjMwMiA2LjY0MWMtMi41OTI5IDAtNC42ODMxLTIuMDkwMi00LjY4MzEtNC42ODMxIDAtMi41OTI5IDIuMDkwMi00LjY4MzEgNC42ODMxLTQuNjgzMSAyLjU5MjkgMCA0LjY4MzEgMi4wOTAyIDQuNjgzMSA0LjY4MzEgMCAyLjU5MjktMi4wOTAyIDQuNjgzMS00LjY4MzEgNC42ODMxeiIvPgogPC9nPgo8L3N2Zz4K);
}

.sharebar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--gu2);
    border-top: 1px solid var(--cGallery);
}

.sharebar__item {
    display: block;
}

.sharebar__item img {
    display: block;
    width: 20px;
    height: 20px;
}

#BorlabsCookieBox .cookie-logo {
    max-width: 121px !important;
    flex-flow: column;
    margin-bottom: 0.5rem;
}

#BorlabsCookieBox h3,
#BorlabsCookieBox ._brlbs-h3 {
    margin-bottom: 0.5rem;
}

#BorlabsCookieBox ._brlbs-btn {
    background-color: var(--cInnerBG) !important;
}

#BorlabsCookieBox ._brlbs-btn:hover {
    color: var(--cInnerHoverFG) !important;
    background-color: var(--cInnerHoverBG) !important;
}

.wp-block-file a:not(.wp-element-button) {
    font-size: 21px;
}

.wp-block-file *+.wp-block-file__button {
    margin-left: var(--gu1);
}

