@import url(../css-1);
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body,
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: Open Sans, sans-serif;
    overflow-anchor: none;
}

:root {
    --base-horisontal-gitter: 10px;
    --base-vertical-gitter: 10px;
    --max-middle-wrapper-width: 1160px;
    --max-big-wrapper-width: 1440px;
    --tablet-edge: 768px;
    --desktop-edge: 1024px;
    --turquoise-blue: #00a5cf;
    --black: #1b1b1b;
    --module-color: #fbed21;
    --brownish-grey: #5a5a5a;
    --light-grey: #ababab;
    --very-light-pink: #f2f2f2;
    --salmon: #ff6b6b;
    --menu-hover-link-color: var(--turquoise-blue);
}

@media screen and (min-width: 768px) {
    :root {
        --base-horisontal-gitter: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .l-main-content {
        padding-top: calc(13 * var(--base-vertical-gitter));
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .l-main-content {
        padding-top: 86px;
    }
}

@media screen and (max-width: 767px) {
    .l-main-content {
        padding-top: calc(7 * var(--base-vertical-gitter));
    }
}

@media screen and (min-width: 768px) {
    .l-content-middle {
        max-width: calc(
            var(--max-middle-wrapper-width) - var(--base-horisontal-gitter) * 2
        );
        padding-left: var(--base-horisontal-gitter);
        padding-right: var(--base-horisontal-gitter);
    }
}

@media screen and (min-width: 768px) {
    .l-content-big,
    .l-content-middle {
        margin-left: auto;
        margin-right: auto;
    }

    .l-content-big {
        max-width: var(--max-big-wrapper-width);
    }
}

.l-content-small {
    margin: 0 auto var(--base-vertical-gitter);
    padding: 0 var(--base-horisontal-gitter);
}

@media screen and (min-width: 768px) {
    .l-content-small {
        width: calc(75% - 2 * var(--base-horisontal-gitter));
    }
}

@media screen and (min-width: 1024px) {
    .l-content-small {
        width: calc(50% - 2 * var(--base-horisontal-gitter));
    }
}

@media screen and (max-width: 767px) {
    .l-mobile-padding {
        padding-left: var(--base-horisontal-gitter);
        padding-right: var(--base-horisontal-gitter);
    }
}

@media screen and (max-width: 767px) {
    .l-mobile-padding-top {
        padding-top: var(--base-vertical-gitter);
    }
}

@media screen and (max-width: 767px) {
    .l-mobile-margin-bottom {
        margin-bottom: calc(2 * var(--base-vertical-gitter));
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .l-tablet-padding {
        padding-left: var(--base-horisontal-gitter);
        padding-right: var(--base-horisontal-gitter);
    }
}

.l-margin-bottom {
    margin-bottom: calc(2 * var(--base-vertical-gitter));
}

@media screen and (min-width: 768px) {
    .l-margin-bottom {
        margin-bottom: calc(4 * var(--base-vertical-gitter));
    }
}

.l-margin-bottom-small {
    margin-bottom: var(--base-vertical-gitter);
}

@media screen and (min-width: 768px) {
    .l-margin-bottom-small {
        margin-bottom: calc(2 * var(--base-vertical-gitter));
    }
}

.c-inner-html--no-scroll {
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .no-scroll-mobile {
        overflow: hidden;
    }
}

.c-inner-body {
    -webkit-filter: none;
    filter: none;
    width: 100%;
    overflow: hidden;
}

.c-inner-body--blured {
    overflow: hidden;
    height: 100%;
    pointer-events: none;
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

:root {
    --x-pad: 20px;
}

.grid {
    display: grid;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.o-hidden {
    overflow: hidden;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.hdr-spc {
    z-index: 2;
    width: 100%;
    height: 120vh;
    top: 0;
    left: 0;
    background: hsla(0, 0%, 100%, 0.8);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s 0.25s, opacity 0.25s;
    transition: visibility 0s 0.25s, opacity 0.25s;
}

.hdr-spc.ampvis,
[data-state="bd-dd"] .hdr-spc,
[data-state="bd-rgns"] .hdr-spc {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.uppercase {
    text-transform: uppercase;
}

.hdr {
    background: var(--black);
    color: #fff;
    font-size: 13px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 0;
    z-index: 30;
    top: 0;
}

.hdr * {
    color: inherit;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    background: transparent none;
}

.hdr button {
    outline: 0 none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.hdr-c {
    margin: 0 auto;
    width: 100%;
    max-width: 1120px;
    padding: 0 var(--x-pad);
}

.hdr-box {
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 1fr -webkit-min-content 1fr;
    grid-template-columns: 1fr min-content 1fr;
    height: 60px;
}

@media screen and (min-width: 768px) {
    .hdr-box {
        height: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .hdr-box {
        height: 85px;
    }

    html[amp] .hdr-box {
        height: 70px;
    }
}

.hdr-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    text-transform: uppercase;
    height: 18px;
}

.hdr-nav span:not(:first-child) {
    margin-left: 1rem;
}

.hdr-it {
    height: 18px;
    line-height: 18px;
    display: block;
    font-weight: 700;
}

.hdr-srch-b {
    width: 100%;
    border: 1px solid #fff;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 20px;
}

.hdr-srch-b:after,
.hdr-srch-b:before {
    display: block;
    content: "";
}

.hdr-srch-b:before {
    content: "";
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFF' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='6'/%3E%3Cpath stroke-linecap='round' d='M12.479 12.479L18 18'/%3E%3C/g%3E%3C/svg%3E")
        50% 50% no-repeat;
    top: 0;
    left: 0;
    position: relative;
}

.hdr-srch-b:after {
    left: 40px;
    height: 20px;
    width: 1px;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.2);
}

.hdr-srch-b:after,
.hdr-srch-l {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
}

.hdr-srch-l {
    left: 50px;
    display: block;
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
    .hdr-sm-srch {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hdr-srch-b {
        width: 40px;
        height: 40px;
        border: 0;
    }

    .hdr-srch-b:after,
    .hdr-srch-l {
        display: none;
    }
}

.hdr-ddb-b {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border: 0;
}

.hdr-img {
    width: 185px;
    height: 53px;
}

@media screen and (max-width: 767px) {
    .hdr-img {
        width: 160px;
    }
}

.hdr-logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hdr-cat-btn {
    font-size: 0;
    border: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--brownish-grey);
}

.hdr-cat-btn:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--module-color);
    border-top: 0 solid transparent;
    -webkit-transition: border 0.25s;
    transition: border 0.25s;
}

.hdr-logo-ls,
.hdr-logo-wr {
    left: 0;
    width: 100%;
}

.hdr-logo-wr {
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.ampvislogo .hdr-cat-btn:before,
[data-state="bd-sctns"] .hdr-cat-btn:before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--module-color);
    border-bottom: 0 solid transparent;
}

.ampvislogo .hdr-logo-wr,
[data-state="bd-sctns"] .hdr-logo-wr {
    opacity: 1;
    visibility: visible;
}

.hdr-logo-ls {
    top: 0;
    padding: 1rem;
    border-radius: 6px;
    background: var(--brownish-grey);
}

.hdr-logo-l:not(:first-child) {
    margin-top: 1rem;
}

.snd-btn {
    border: 0;
    grid-column: 1/2;
    width: 36px;
    height: 36px;
}

.snd-btn:after,
.snd-btn:before {
    content: "";
}

.snd-btn:after,
.snd-btn:before,
.snd-btn i {
    display: block;
    width: 26px;
    height: 2px;
    position: absolute;
    border-radius: 1px;
    background: #fff;
    left: 0;
}

.snd-btn:before {
    top: 10px;
}

.snd-btn:after {
    bottom: 10px;
}

.snd-btn i {
    top: 50%;
    margin-top: -1px;
}

.ampsnd.snd-btn i,
[data-state="bd-dd"] .snd-btn i {
    display: none;
}

.ampsnd.snd-btn:after,
.ampsnd.snd-btn:before,
[data-state="bd-dd"] .snd-btn:after,
[data-state="bd-dd"] .snd-btn:before {
    -webkit-transform-origin: center;
    transform-origin: center;
    top: 50%;
    bottom: auto;
}

.ampsnd.snd-btn:before,
[data-state="bd-dd"] .snd-btn:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.ampsnd.snd-btn:after,
[data-state="bd-dd"] .snd-btn:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.ddh,
.ddh-b {
    width: 100%;
    left: 0;
}

.ddh {
    bottom: 0;
}

.ddh-b {
    background: var(--black);
    overflow: auto;
    max-height: 0;
    -webkit-transition: max-height 0.25s;
    transition: max-height 0.25s;
}

.ddh-b.ampvis,
[data-state="bd-dd"] .ddh-b {
    max-height: 90vh;
}

@media (hover: hover) and (pointer: fine) {
    .ddh-b {
        overflow: hidden;
    }
}

.hdr-g {
    grid-template-columns: 100%;
    gap: 2rem;
    padding: 1rem 0 2rem;
}

@media (hover: none) and (pointer: coarse) {
    .hdr-g {
        padding-bottom: 100px;
    }
}

.hdr-h {
    padding: 0 0 1rem;
    margin: 0 0 1rem;
    border-bottom: 1px solid var(--brownish-grey);
    color: var(--brownish-grey);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.67px;
    font-size: 20px;
}

.hdr-nv {
    gap: 1rem;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
}

.hdr-nv .hdr-it {
    height: unset;
    line-height: 1.2;
}

.shr-lst {
    white-space: nowrap;
}

.shr-lst span {
    display: inline-block;
}

.shr-lst span:not(:first-child) {
    margin-left: 1rem;
}

@media screen and (max-width: 767px) {
    .hdr-ddb,
    .hdr-nav,
    .hdr-srch {
        display: none;
    }
    .hdr-logo {
        width: 300px;
        margin-left: -26px;
        grid-column: 2/3;
        display: flex;
        justify-content: center;
    }
    .base {
        width: 100% !important;
        margin: 0 !important;
    }
}
@media screen and (max-width: 424px) {
    .hdr-img {
        width: 140px;
    }
}

@media screen and (min-width: 768px) {
    .hdr-snd {
        display: none;
    }

    .hdr-box {
        grid-template-columns: 220px 1fr -webkit-min-content 40px;
        grid-template-columns: 220px 1fr min-content 40px;
    }

    .hdr-nv {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .hdr-box {
        grid-template-columns: 220px 1fr -webkit-min-content 220px;
        grid-template-columns: 220px 1fr min-content 220px;
        -webkit-transition: height 0.25s;
        transition: height 0.25s;
    }

    .hdr-g {
        grid-template-columns: 23% 1fr;
        grid-template-rows: repeat(2, auto);
    }

    .hdr-m {
        grid-column: 1/2;
        grid-row: 1/3;
    }

    .hdr-s {
        grid-row: 1/2;
    }

    .hdr-ac,
    .hdr-s {
        grid-column: 2/3;
    }

    .hdr-ac {
        grid-row: 2/3;
        padding-top: 2rem;
    }

    .hdr-nv-sm {
        grid-template-columns: 100%;
    }

    .hdr-nv-big {
        grid-template-columns: repeat(4, 1fr);
    }

    .hdr-stick .hdr-box {
        height: 70px;
    }
}

.hdr-share {
    position: absolute;
    right: var(--base-horisontal-gitter);
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .hdr-share {
        display: none;
    }
}

.hdr-share-btn {
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='21' height='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.5 4.5l-1.978-2-2.022 2M10.5 2.5v9M7.5 6.5h-1a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-7a2 2 0 0 0-2-2h-1'/%3E%3C/g%3E%3C/svg%3E")
        50% 50%/100% no-repeat;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.hdr-share-btn.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.hdr-share-box {
    top: 50px;
    right: var(--base-horisontal-gitter);
    border-radius: 5px;
    background: var(--brownish-grey);
    -webkit-transform: scale(0);
    transform: scale(0);
    color: var(--very-light-pink);
}

.hdr-share-box.active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.c-header-article-share__buttons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 10px;
}

.hdr-share-i {
    display: inline-block;
    cursor: pointer;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    margin: 5px 10px;
}

.hdr-share-i--facebook {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30' height='30'%3E%3Cdefs%3E%3Cpath id='a' d='M.002.001H30v29.817H.002z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='%23e9e9e9' d='M30 15c0-8.284-6.716-15-15-15C6.716 0 0 6.716 0 15c0 7.487 5.485 13.692 12.656 14.818V19.336H8.848V15h3.808v-3.305c0-3.76 2.24-5.836 5.666-5.836 1.641 0 3.358.293 3.358.293v3.692h-1.892c-1.863 0-2.444 1.156-2.444 2.342V15h4.16l-.665 4.336h-3.495v10.482C24.514 28.692 30 22.487 30 15' mask='url(%23b)'/%3E%3Cpath fill='%231b1b1b' d='M20.839 19.336L21.504 15h-4.16v-2.814c0-1.186.58-2.342 2.444-2.342h1.892V6.152s-1.717-.293-3.358-.293c-3.426 0-5.666 2.077-5.666 5.836V15H8.848v4.336h3.808v10.482a15.112 15.112 0 0 0 4.688 0V19.336h3.495'/%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--mail {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30' height='30'%3E%3Cdefs%3E%3Cpath id='a' d='M15.388 29.995h-.776C6.507 29.79 0 23.155 0 15 0 6.716 6.716 0 15 0c8.284 0 15 6.716 15 15 0 8.154-6.507 14.79-14.612 14.995z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='%23e9e9e9' d='M0 29.995h30V0H0z' mask='url(%23b)'/%3E%3Cpath fill='%231b1b1b' d='M23.426 8.76l-8.444 8.707-8.39-8.652c.247-.26.59-.42.971-.42H22.51c.353 0 .674.138.916.365zM6.204 10.439l4.337 4.473-4.337 4.336v-8.809zm17.665-.111v8.547l-4.209-4.208 4.209-4.34z'/%3E%3Cpath fill='%231b1b1b' d='M19.036 15.31l4.832 4.832v.1c0 .773-.608 1.4-1.358 1.4H7.563c-.666 0-1.22-.495-1.336-1.147l4.938-4.94 3.817 3.936 4.054-4.18z'/%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--messenger {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='50%25' x2='50%25' y1='0%25' y2='100.001%25'%3E%3Cstop offset='0%25' stop-color='%23e9e9e9'/%3E%3Cstop offset='100%25' stop-color='%23e9e9e9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%23a)' d='M15 0C6.55 0 0 6.19 0 14.55c0 4.374 1.793 8.153 4.711 10.763.245.22.393.525.405.854l.081 2.668a1.202 1.202 0 0 0 1.684 1.063l2.976-1.313c.254-.112.534-.133.8-.06 1.367.377 2.825.576 4.343.576 8.45 0 15-6.19 15-14.55S23.45 0 15 0z'/%3E%3Cpath fill='%231b1b1b' d='M6.042 18.85l4.401-7.004a2.245 2.245 0 0 1 3.25-.602l3.5 2.634a.898.898 0 0 0 1.082-.003l4.727-3.599c.63-.48 1.456.279 1.031.95l-4.398 7a2.245 2.245 0 0 1-3.25.602l-3.5-2.634a.898.898 0 0 0-1.082.003L7.073 19.8c-.63.48-1.456-.279-1.031-.95z'/%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--telegram {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30' height='30'%3E%3Cdefs%3E%3Cpath id='a' d='M15.388 29.995h-.776C6.507 29.79 0 23.155 0 15 0 6.716 6.716 0 15 0c8.284 0 15 6.716 15 15 0 8.154-6.507 14.79-14.612 14.995z'/%3E%3ClinearGradient id='b' x1='64.655%25' x2='39.655%25' y1='15.82%25' y2='74.141%25'%3E%3Cstop offset='0%25' stop-color='%23e9e9e9'/%3E%3Cstop offset='100%25' stop-color='%23e9e9e9'/%3E%3C/linearGradient%3E%3Cpath id='d' d='M6.423 9.092l6.045 4.466c.69.381 1.188.184 1.36-.64l2.46-11.595c.252-1.01-.385-1.468-1.045-1.169L.794 5.725c-.986.396-.98.946-.18 1.192l3.708 1.157 8.584-5.416c.406-.246.778-.113.472.157'/%3E%3ClinearGradient id='e' x1='60.939%25' x2='80.089%25' y1='47.416%25' y2='73.128%25'%3E%3Cstop offset='0%25' stop-color='%231b1b1b'/%3E%3Cstop offset='100%25' stop-color='%231b1b1b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='c' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='url(%23b)' d='M0 29.995h30V0H0z' mask='url(%23c)'/%3E%3Cpath fill='%23A9A9A9' d='M12.25 21.875c-.486 0-.403-.184-.571-.646l-1.429-4.703 11-6.526'/%3E%3Cpath fill='%23A6C2D0' d='M12.25 21.875c.375 0 .54-.172.75-.375l2-1.945-2.495-1.504'/%3E%3Cg transform='translate(6.082 8.959)'%3E%3Cmask id='f' fill='%23fff'%3E%3Cuse xlink:href='%23d'/%3E%3C/mask%3E%3Cpath fill='url(%23e)' d='M6.423 9.092l6.045 4.466c.69.381 1.188.184 1.36-.64l2.46-11.595c.252-1.01-.385-1.468-1.045-1.169L.794 5.725c-.986.396-.98.946-.18 1.192l3.708 1.157 8.584-5.416c.406-.246.778-.113.472.157' mask='url(%23f)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--twitter {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cg fill='none'%3E%3Ccircle cx='15' cy='15' r='15' fill='%23e9e9e9'/%3E%3Cpath fill='%231b1b1b' d='M12.255 22.913c6.652 0 10.29-5.513 10.29-10.29 0-.158 0-.315-.008-.465a7.41 7.41 0 0 0 1.808-1.875 7.34 7.34 0 0 1-2.077.57 3.614 3.614 0 0 0 1.59-2.003 7.324 7.324 0 0 1-2.296.878 3.6 3.6 0 0 0-2.64-1.14 3.617 3.617 0 0 0-3.615 3.615c0 .285.03.562.098.825a10.26 10.26 0 0 1-7.455-3.78 3.628 3.628 0 0 0-.488 1.814 3.6 3.6 0 0 0 1.613 3.008 3.553 3.553 0 0 1-1.635-.45v.045a3.62 3.62 0 0 0 2.902 3.548 3.605 3.605 0 0 1-1.635.06 3.611 3.611 0 0 0 3.375 2.512 7.27 7.27 0 0 1-5.355 1.492 10.076 10.076 0 0 0 5.528 1.635'/%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--viber {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23e9e9e9' fill-rule='nonzero' d='M14.599 29.197c8.062 0 14.598-6.536 14.598-14.598C29.197 6.536 22.661 0 14.6 0 6.536 0 0 6.536 0 14.599c0 8.062 6.536 14.598 14.599 14.598z'/%3E%3Cg fill='%231b1b1b'%3E%3Cpath d='M22.26 6.929c-.489-.461-2.466-1.931-6.871-1.951 0 0-5.194-.321-7.726 2.057-1.41 1.444-1.906 3.555-1.958 6.174-.052 2.619-.12 7.525 4.5 8.856h.004l-.002 2.031s-.03.822.499.99c.64.203 1.015-.422 1.625-1.095.336-.37.798-.913 1.146-1.328 3.16.271 5.59-.35 5.867-.442.638-.212 4.248-.685 4.835-5.592.606-5.058-.294-8.257-1.918-9.7m.546 9.335c-.497 4.097-3.424 4.356-3.964 4.533-.23.076-2.365.62-5.048.44l-2.91 3.224-.002-3.716-.023-.006c-3.909-1.111-3.777-5.278-3.733-7.465.044-2.187.445-3.979 1.638-5.183 2.141-1.987 6.553-1.69 6.553-1.69 3.726.017 5.512 1.165 5.926 1.55 1.374 1.206 2.075 4.089 1.563 8.313'/%3E%3Cpath d='M19.443 16.875a26.793 26.793 0 0 0-.881-.723c-.272-.204-.706-.48-.949-.62-.435-.247-.88-.092-1.063.152l-.381.49c-.195.25-.497.207-.576.191-.563-.141-1.162-.493-1.775-1.087-.62-.6-.996-1.225-1.13-1.875l-.01-.043a.742.742 0 0 1 .118-.573l.02-.017c.259-.24.736-.53.8-.809.187-.482-.627-1.487-.744-1.664 0 0-.592-.784-.803-.934-.227-.19-.58-.297-.935-.079l-.018.013c-1.02.691-1.39 1.088-1.29 1.68l.053.239c.517 1.632 1.517 3.372 3.008 4.921 1.474 1.53 3.07 2.447 4.642 3.081.408.136.832.019 1.266-.352l.007-.006a4.05 4.05 0 0 0 .794-1l.002-.008c.19-.377.126-.734-.155-.977m-2.448-3.574a.119.119 0 0 1-.117-.114c-.02-.423-.135-.747-.34-.963-.202-.215-.507-.335-.904-.357a.12.12 0 0 1-.111-.127.119.119 0 0 1 .124-.114c.458.026.815.17 1.06.43.246.26.382.636.406 1.12A.12.12 0 0 1 17 13.3h-.006'/%3E%3Cpath d='M18.158 13.7h-.003a.12.12 0 0 1-.114-.123c.018-.812-.22-1.498-.706-2.041a2.57 2.57 0 0 0-.874-.637 3.528 3.528 0 0 0-1.173-.278.12.12 0 0 1-.109-.128.119.119 0 0 1 .126-.112c.937.07 1.679.404 2.204.992.528.59.786 1.334.767 2.21a.12.12 0 0 1-.118.117'/%3E%3Cpath d='M19.35 14.177a.119.119 0 0 1-.118-.12c-.006-.717-.114-1.366-.322-1.93a4.033 4.033 0 0 0-.931-1.461 4.197 4.197 0 0 0-1.389-.93 4.573 4.573 0 0 0-1.694-.318.12.12 0 0 1-.117-.122c0-.066.053-.119.118-.119 1.287.01 2.379.452 3.246 1.317.435.434.767.955.986 1.548.219.59.332 1.268.338 2.014a.12.12 0 0 1-.116.121h-.002'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--whatsapp {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30' height='30'%3E%3Cdefs%3E%3Cpath id='a' d='M15.04.06C6.818.06.127 6.697.124 14.857c0 2.608.686 5.155 1.991 7.4L0 29.925l7.906-2.057a14.998 14.998 0 0 0 7.127 1.8h.007c8.22 0 14.91-6.639 14.913-14.8A14.652 14.652 0 0 0 25.59 4.4C22.774 1.603 19.03.062 15.04.06z'/%3E%3ClinearGradient id='b' x1='50%25' x2='50%25' y1='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23e9e9e9'/%3E%3Cstop offset='100%25' stop-color='%23e9e9e9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0 .014)'%3E%3Cmask id='c' fill='%23e9e9e9'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='url(%23b)' d='M15.04.06C6.818.06.127 6.697.124 14.857c0 2.608.686 5.155 1.991 7.4L0 29.925l7.906-2.057a14.998 14.998 0 0 0 7.127 1.8h.007c8.22 0 14.91-6.639 14.913-14.8A14.652 14.652 0 0 0 25.59 4.4C22.774 1.603 19.03.062 15.04.06z' mask='url(%23c)'/%3E%3C/g%3E%3Cpath fill='%231b1b1b' d='M11.18 8.459c-.289-.638-.593-.651-.868-.662-.225-.01-.483-.01-.74-.01s-.676.097-1.03.48c-.353.384-1.35 1.31-1.35 3.196 0 1.885 1.383 3.707 1.576 3.963.193.255 2.67 4.248 6.594 5.784 3.26 1.276 3.924 1.022 4.632.958.708-.064 2.284-.926 2.606-1.821.321-.895.321-1.662.225-1.822-.097-.16-.354-.255-.74-.447s-2.284-1.119-2.638-1.247c-.354-.127-.611-.191-.868.192-.258.384-.997 1.247-1.222 1.502-.226.256-.45.288-.837.096-.386-.192-1.63-.596-3.104-1.901-1.148-1.016-1.922-2.27-2.148-2.654-.225-.383-.024-.59.17-.782.173-.171.386-.447.579-.67.193-.224.257-.384.386-.64.128-.255.064-.48-.033-.67-.096-.192-.846-2.087-1.19-2.845'/%3E%3C/g%3E%3C/svg%3E");
}

.hdr-share-i--copylink {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496.158 496.158'%3E%3Cpath d='M0 248.085C0 111.064 111.07.003 248.076.003c137.012 0 248.082 111.061 248.082 248.082 0 137.002-111.07 248.07-248.082 248.07C111.07 496.155 0 385.087 0 248.085z' fill='%23e9e9e9'/%3E%3Cg fill='%231b1b1b'%3E%3Cpath d='M394.463 151.309l-49.615-49.614c-10.727-10.728-28.119-10.726-38.844 0l-76.631 76.63c-10.726 10.728-10.727 28.119-.001 38.847l49.615 49.614c10.727 10.727 28.119 10.726 38.845-.002l76.631-76.63c10.725-10.725 10.726-28.118 0-38.845zm-81.873 84.114c-6.289 6.288-16.484 6.289-22.772.001l-29.084-29.084c-6.288-6.288-6.287-16.483.001-22.772l50.511-50.511c6.287-6.287 16.482-6.288 22.771 0l29.084 29.085c6.288 6.287 6.287 16.482 0 22.77l-50.511 50.511zM266.786 278.986l-49.614-49.614c-10.727-10.727-28.119-10.726-38.845 0l-76.631 76.632c-10.726 10.726-10.727 28.118 0 38.844l49.615 49.615c10.726 10.727 28.119 10.725 38.844 0l76.632-76.633c10.724-10.725 10.726-28.117-.001-38.844zM184.912 363.1c-6.288 6.288-16.482 6.29-22.771.001l-29.084-29.084c-6.289-6.288-6.288-16.483 0-22.771l50.512-50.512c6.287-6.287 16.482-6.288 22.771 0l29.084 29.084c6.288 6.289 6.287 16.484 0 22.771L184.912 363.1z'/%3E%3C/g%3E%3Cpath d='M306.907 191.673l-2.42-2.421c-7.742-7.743-20.34-7.743-28.083 0l-87.151 87.151c-7.742 7.742-7.742 20.34 0 28.082l2.42 2.421c7.742 7.741 20.34 7.741 28.083 0l87.151-87.152c7.742-7.741 7.742-20.34 0-28.081z' fill='%23e9e9e9'/%3E%3Cpath d='M215.398 302.548c-5.348 5.348-14.02 5.349-19.368.001l-2.421-2.421c-5.348-5.348-5.348-14.02 0-19.367l87.152-87.152c5.348-5.349 14.019-5.348 19.368.002l2.42 2.42c5.347 5.348 5.349 14.019 0 19.366l-87.151 87.151z' fill='%231b1b1b'/%3E%3C/svg%3E");
}

.hdr-share-i--copylink-active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496.158 496.158'%3E%3Cpath d='M0 248.085C0 111.064 111.07.003 248.076.003c137.012 0 248.082 111.061 248.082 248.082 0 137.002-111.07 248.07-248.082 248.07C111.07 496.155 0 385.087 0 248.085z' fill='%2379d400'/%3E%3Cg fill='%23fff'%3E%3Cpath d='M394.463 151.309l-49.615-49.614c-10.727-10.728-28.119-10.726-38.844 0l-76.631 76.63c-10.726 10.728-10.727 28.119-.001 38.847l49.615 49.614c10.727 10.727 28.119 10.726 38.845-.002l76.631-76.63c10.725-10.725 10.726-28.118 0-38.845zm-81.873 84.114c-6.289 6.288-16.484 6.289-22.772.001l-29.084-29.084c-6.288-6.288-6.287-16.483.001-22.772l50.511-50.511c6.287-6.287 16.482-6.288 22.771 0l29.084 29.085c6.288 6.287 6.287 16.482 0 22.77l-50.511 50.511zM266.786 278.986l-49.614-49.614c-10.727-10.727-28.119-10.726-38.845 0l-76.631 76.632c-10.726 10.726-10.727 28.118 0 38.844l49.615 49.615c10.726 10.727 28.119 10.725 38.844 0l76.632-76.633c10.724-10.725 10.726-28.117-.001-38.844zM184.912 363.1c-6.288 6.288-16.482 6.29-22.771.001l-29.084-29.084c-6.289-6.288-6.288-16.483 0-22.771l50.512-50.512c6.287-6.287 16.482-6.288 22.771 0l29.084 29.084c6.288 6.289 6.287 16.484 0 22.771L184.912 363.1z'/%3E%3C/g%3E%3Cpath d='M306.907 191.673l-2.42-2.421c-7.742-7.743-20.34-7.743-28.083 0l-87.151 87.151c-7.742 7.742-7.742 20.34 0 28.082l2.42 2.421c7.742 7.741 20.34 7.741 28.083 0l87.151-87.152c7.742-7.741 7.742-20.34 0-28.081z' fill='%2379d400'/%3E%3Cpath d='M215.398 302.548c-5.348 5.348-14.02 5.349-19.368.001l-2.421-2.421c-5.348-5.348-5.348-14.02 0-19.367l87.152-87.152c5.348-5.349 14.019-5.348 19.368.002l2.42 2.42c5.347 5.348 5.349 14.019 0 19.366l-87.151 87.151z' fill='%23fff'/%3E%3C/svg%3E");
}

.shr-lnk {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 10em;
    background: transparent none 50% 50%/20px no-repeat;
    cursor: pointer;
}

.shr-lnk--rss {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd' transform='translate(3 2)'%3E%3Ccircle cx='1.5' cy='13.5' r='1.5'/%3E%3Cpath fill-rule='nonzero' d='M7.6 13.6a5.9 5.9 0 0 0-5.9-5.9 1 1 0 1 0 0 2 3.9 3.9 0 0 1 3.9 3.9 1 1 0 0 0 2 0z'/%3E%3Cpath fill-rule='nonzero' d='M11.443 13.6c0-5.517-4.214-9.704-9.743-9.704a1 1 0 1 0 0 2c4.427 0 7.743 3.295 7.743 7.704a1 1 0 0 0 2 0z'/%3E%3Cpath fill-rule='nonzero' d='M15.3 13.6C15.3 6.089 9.211 0 1.7 0a1 1 0 1 0 0 2c6.407 0 11.6 5.193 11.6 11.6a1 1 0 1 0 2 0z'/%3E%3C/g%3E%3C/svg%3E");
}

.shr-lnk--facebook {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M13.688 10.005h-2.412V18H7.7v-7.995H6V7.181h1.7V5.353C7.7 4.047 8.368 2 11.308 2l2.648.01v2.742h-1.922c-.315 0-.758.146-.758.77v1.662H14l-.312 2.821z'/%3E%3C/svg%3E");
}

.shr-lnk--twitter {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M18 5.539a6.554 6.554 0 0 1-1.886.516 3.294 3.294 0 0 0 1.444-1.815 6.57 6.57 0 0 1-2.084.796A3.281 3.281 0 0 0 13.077 4 3.283 3.283 0 0 0 9.88 8.03 9.32 9.32 0 0 1 3.113 4.6 3.282 3.282 0 0 0 4.13 8.982a3.262 3.262 0 0 1-1.486-.41v.04a3.284 3.284 0 0 0 2.633 3.219 3.267 3.267 0 0 1-1.483.056 3.286 3.286 0 0 0 3.067 2.28A6.585 6.585 0 0 1 2 15.524 9.285 9.285 0 0 0 7.031 17c6.039 0 9.34-5 9.34-9.338 0-.142-.003-.284-.009-.425A6.655 6.655 0 0 0 18 5.54'/%3E%3C/svg%3E");
}

.shr-lnk--insta {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M16.33 13.374c-.043.89-.326 1.692-1.059 2.273-.452.359-.978.542-1.54.597-.6.06-1.205.093-1.81.1-1.318.014-2.638.02-3.957-.002-.7-.012-1.41-.027-2.097-.152-1.336-.242-2.16-1.166-2.28-2.52a32.9 32.9 0 0 1-.102-2.723 156.56 156.56 0 0 1 .05-4.28c.009-.375.068-.76.169-1.122.315-1.13 1.095-1.781 2.235-1.959.657-.102 1.33-.127 1.995-.138a121.31 121.31 0 0 1 4.01.002c.705.012 1.422.033 2.112.164 1.312.249 2.106 1.167 2.242 2.5.06.594.083 1.193.099 1.79.016.621.003 1.243.003 1.865h.032c-.032 1.202-.043 2.405-.102 3.605m1.485-5.684c-.012-.727-.054-1.463-.178-2.178-.207-1.196-.847-2.138-1.895-2.777-.799-.487-1.69-.65-2.61-.676-1.058-.03-2.118-.04-3.177-.059v.022c-.738 0-1.476-.022-2.212.006-.73.029-1.468.044-2.18.18-1.579.299-2.654 1.23-3.184 2.76-.273.791-.3 1.616-.309 2.437a179.22 179.22 0 0 0-.002 4.695c.011.728.04 1.467.179 2.179.304 1.574 1.235 2.649 2.771 3.174.791.27 1.617.297 2.439.306 1.561.016 3.122.026 4.682.002.73-.01 1.468-.042 2.181-.177 1.578-.3 2.654-1.23 3.183-2.762.273-.79.3-1.615.309-2.436.017-1.565.026-3.13.003-4.696'/%3E%3Cpath d='M9.94 12.52a2.64 2.64 0 0 1-2.626-2.626A2.638 2.638 0 0 1 9.943 7.27a2.64 2.64 0 0 1 2.626 2.626 2.64 2.64 0 0 1-2.63 2.624m.04-6.671c-2.265-.002-4.087 1.783-4.088 4.007 0 2.28 1.785 4.084 4.046 4.085a4.032 4.032 0 0 0 4.054-4.043c0-2.233-1.798-4.048-4.012-4.05m4.164-1.103a.948.948 0 0 0-.946.94.963.963 0 0 0 .953.958.949.949 0 0 0 .947-.957.929.929 0 0 0-.954-.941'/%3E%3C/g%3E%3C/svg%3E");
}

.shr-lnk--youtube {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M8 13.835V7l5.14 3.417L8 13.835zm11-7.121C19 5.214 17.796 4 16.31 4H3.69C2.205 4 1 5.215 1 6.714v7.278c0 1.499 1.204 2.714 2.69 2.714h12.62c1.486 0 2.69-1.215 2.69-2.714V6.714z'/%3E%3C/svg%3E");
}

.shr-lnk--viber {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M15.618 3.615c-.402-.379-2.028-1.587-5.648-1.603 0 0-4.27-.264-6.351 1.691-1.159 1.186-1.566 2.922-1.61 5.074-.042 2.153-.098 6.186 3.7 7.28l.003.001-.002 1.669s-.024.676.41.813c.526.167.834-.346 1.336-.9.276-.303.656-.75.943-1.09 2.597.222 4.595-.289 4.821-.364.525-.175 3.493-.564 3.975-4.597.498-4.158-.241-6.787-1.577-7.974m.45 7.674c-.409 3.368-2.815 3.58-3.259 3.726-.189.062-1.944.51-4.15.361l-2.391 2.65-.002-3.053-.02-.005c-3.212-.914-3.104-4.339-3.068-6.137.037-1.797.366-3.27 1.347-4.26 1.76-1.633 5.387-1.39 5.387-1.39 3.062.015 4.53.958 4.87 1.275 1.13.99 1.706 3.36 1.285 6.833'/%3E%3Cpath d='M13.302 11.791a22.024 22.024 0 0 0-.724-.594 9.285 9.285 0 0 0-.78-.51c-.357-.203-.723-.075-.874.125l-.313.403c-.16.205-.408.17-.473.157-.463-.116-.956-.406-1.46-.894-.51-.492-.818-1.006-.928-1.54l-.008-.036a.61.61 0 0 1 .097-.471l.016-.014c.212-.197.605-.436.657-.665.154-.396-.515-1.222-.61-1.368 0 0-.488-.645-.66-.768-.188-.155-.478-.244-.77-.065l-.015.011c-.839.568-1.143.894-1.06 1.382l.043.195c.426 1.342 1.248 2.772 2.473 4.046 1.212 1.257 2.523 2.01 3.816 2.532.335.112.684.016 1.04-.29l.007-.004c.273-.256.49-.53.652-.822l.001-.006c.157-.31.104-.604-.127-.804M11.29 8.854a.097.097 0 0 1-.096-.094c-.017-.348-.11-.614-.279-.792-.167-.177-.418-.275-.744-.293a.098.098 0 0 1-.091-.104.098.098 0 0 1 .102-.094c.376.02.67.14.872.354.201.213.313.522.333.919a.098.098 0 0 1-.092.104h-.005'/%3E%3Cpath d='M12.246 9.182h-.002a.098.098 0 0 1-.095-.101c.015-.668-.18-1.232-.58-1.679a2.112 2.112 0 0 0-.718-.523 2.9 2.9 0 0 0-.965-.228.098.098 0 0 1-.089-.106.098.098 0 0 1 .103-.092c.771.058 1.38.332 1.812.816.434.485.647 1.096.63 1.816a.098.098 0 0 1-.096.097'/%3E%3Cpath d='M13.225 9.574a.098.098 0 0 1-.097-.098 4.67 4.67 0 0 0-.264-1.587 3.315 3.315 0 0 0-.766-1.202 3.45 3.45 0 0 0-1.14-.763c-.421-.17-.89-.26-1.394-.263a.098.098 0 0 1-.096-.1.099.099 0 0 1 .097-.098c1.059.008 1.956.372 2.668 1.083a3.5 3.5 0 0 1 .811 1.273 4.88 4.88 0 0 1 .278 1.655c0 .055-.043.1-.096.1'/%3E%3C/g%3E%3C/svg%3E");
}

.shr-lnk--telegram {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20' height='20'%3E%3Cdefs%3E%3Cpath id='a' d='M7.55 10.688l7.105 5.25c.811.447 1.397.215 1.598-.753l2.893-13.63C19.442.368 18.693-.171 17.918.18L.934 6.731c-1.16.464-1.153 1.11-.212 1.4l4.359 1.36 10.09-6.366c.476-.29.914-.134.555.184'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' d='M7.25 17.182c.44 0 .636-.201.882-.44l2.35-2.286-2.932-1.769'/%3E%3Cg transform='translate(0 2)'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='%23FFF' d='M7.55 10.688l7.105 5.25c.811.447 1.397.215 1.598-.753l2.893-13.63C19.442.368 18.693-.171 17.918.18L.934 6.731c-1.16.464-1.153 1.11-.212 1.4l4.359 1.36 10.09-6.366c.476-.29.914-.134.555.184' mask='url(%23b)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media screen and (max-width: 767px) {
    .shr-lnk {
        width: 32px;
        height: 32px;
        background-size: 16px;
    }

    .shr-lst span:not(:first-child) {
        margin-left: 0.5rem;
    }
}

.shorthand-embed-body .hdr {
    position: relative;
    z-index: 9999;
}

.shorthand-embed-body .hdr + .l-main-content {
    padding-top: 0;
}

.c-modal.js-modal-search {
    z-index: 99991;
}

.c-inner-body {
    overflow: unset;
}

.evt-nav {
    padding-top: 114px;
}

@media screen and (max-width: 1024px) {
    .evt-nav {
        padding-top: 70px;
    }
}

@media screen and (max-width: 767px) {
    .evt-nav {
        padding-top: 60px;
    }
}

.evt-h {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 2rem 0;
}

.evt-h-i {
    min-width: 100px;
    max-width: 100px;
    width: 100px;
    height: 100px;
    margin-right: 32px;
    border-radius: 50%;
    border: 1px solid var(--very-light-pink);
}

.evt-h-i img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.evt-h-t {
    font-weight: 600;
    font-size: 24px;
}

.evt-m {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 144px;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.95);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    overflow: auto;
    -webkit-transition: top 0.25s;
    transition: top 0.25s;
    z-index: 10;
}

@media screen and (max-width: 1023px) {
    .evt-m {
        top: 70px;
    }
}

@media screen and (max-width: 767px) {
    .evt-m {
        top: 60px;
    }
}

.evt-nv {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 2px solid var(--very-light-pink);
    white-space: nowrap;
}

.hdr-stick .evt-m {
    top: 70px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.35);
}

.hdr-stick .evt-nv {
    border: unset;
    padding-bottom: 2px;
}

.evt-m-l {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.evt-m-i:not(:first-child) {
    margin-left: 2rem;
}

.evt-m-a {
    font-size: 0.875rem;
    text-decoration: none;
    line-height: 1;
    padding: 1em 0;
    color: var(--brownish-grey);
}

.evt-m-c {
    font-weight: 600;
    color: var(--black);
    cursor: default;
}

.evt-m-c:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--module-color);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

.evt-m + .l-main-content {
    padding-top: 3rem;
}

.evt-m + .l-main-content .c-breadcrumbs__item-container {
    width: 100%;
    padding-top: 0;
    margin-top: 0;
    text-align: left;
}

.evt-m + .l-main-content .c-breadcrumbs__item-container h2 {
    font-size: 24px;
}

.evt-m + .l-main-content .c-breadcrumbs:after,
.evt-m + .l-main-content .c-breadcrumbs:before {
    display: none;
}

.c-search__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.c-search__sort-by-date {
    height: 40px;
    border: none;
    position: relative;
    background-color: #fff;
    outline: none;
    text-transform: uppercase;
    font-size: 13px;
    width: auto;
    padding: 0 40px 0 10px;
    margin: 0 10px 10px 0;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .c-search__sort-by-date {
        font-size: 20px;
    }
}

.c-search__sort-by-date--arrow_downward:after,
.c-search__sort-by-date--arrow_upward:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

.c-search__sort-by-date--arrow_upward:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='22' width='22'%3E%3Cpath d='M0 0h22v22H0V0z' fill='none'/%3E%3Cpath d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E");
}

.c-search__sort-by-date--arrow_downward:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='22' width='22'%3E%3Cpath d='M0 0h22v22H0V0z' fill='none'/%3E%3Cpath d='M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z'/%3E%3C/svg%3E");
}

.c-search__sort-by-date:disabled {
    color: inherit;
    cursor: unset;
    opacity: 0.5;
}

.c-search__by-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    border: none;
    position: relative;
    background-color: #fff;
    outline: none;
    text-transform: uppercase;
    font-size: 13px;
    width: auto;
    padding: 0 10px;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .c-search__by-headline {
        font-size: 20px;
    }
}

.c-search__by-headline:disabled {
    color: inherit;
    cursor: unset;
    opacity: 0.5;
}

.c-search__by-headline-toggle {
    width: 60px;
    height: 34px;
    margin-left: 10px;
    border-radius: 34px;
    background-color: #ccc;
    position: relative;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.c-search__by-headline-toggle-thumb {
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
}

.c-search__by-headline-toggle-active .c-search__by-headline-toggle-thumb {
    left: 30px;
    background-color: var(--module-color);
}

.c-modal {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1.2;
    background-color: #fff;
    z-index: 10;
}

.c-modal--show {
    display: block;
}

.c-modal__close-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--module-color);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Cpath d='M10 55.3L55.3 10 990 944.7 944.7 990 10 55.3z'/%3E%3Cpath d='M10 944.8L944.7 10 990 55.3 55.3 990 10 944.8z'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

@media screen and (min-width: 768px) {
    .c-modal__close-btn {
        top: 20px;
        right: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .c-modal__close-btn {
        top: 40px;
        right: 40px;
    }
}

.c-modal__inner-container {
    padding-top: 70px;
    padding-bottom: 10px;
}

@media screen and (min-width: 1024px) {
    .c-modal__inner-container {
        padding-top: 120px;
    }
}

.c-search {
    padding: 10px 0;
    border-color: var(--very-light-pink);
    border-style: solid;
    border-width: 2px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .c-search {
        padding: 20px 0;
    }
}

@media screen and (min-width: 1024px) {
    .c-search {
        padding: 20px 10px;
    }
}

.c-search__input {
    font-size: 26px;
    border: none;
    width: calc(100% - 40px);
    padding-right: 10px;
    outline: none;
}

@media screen and (min-width: 768px) {
    .c-search__input {
        padding-right: 20px;
    }
}

.c-search__submit {
    cursor: pointer;
    height: 40px;
    width: 40px;
    border: none;
    position: relative;
    background-color: var(--module-color);
    outline: none;
    font-size: 0;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .c-search__submit {
        font-size: 20px;
        width: auto;
        padding: 0 40px 0 10px;
    }
}

.c-search__submit:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='6'/%3E%3Cpath stroke-linecap='round' d='M12.479 12.479L18 18'/%3E%3C/g%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

@media screen and (min-width: 768px) {
    .c-search__submit:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%231B1B1B' fill-rule='evenodd' d='M14.084 4l5.94 5.94-5.94 5.94-1.414-1.414 3.525-3.526H0v-2h16.196L12.67 5.414 14.084 4z'/%3E%3C/svg%3E");
    }
}

.c-search__submit:disabled {
    color: inherit;
    cursor: unset;
    opacity: 0.5;
}

.c-search__result-container {
    overflow: scroll;
    margin-top: var(--base-vertical-gitter);
    height: calc(100vh - 134px - var(--base-vertical-gitter));
}

@media screen and (min-width: 768px) {
    .c-search__result-container {
        height: calc(100vh - 154px - var(--base-vertical-gitter));
    }
}

@media screen and (min-width: 1024px) {
    .c-search__result-container {
        height: calc(100vh - 204px - 2 * var(--base-vertical-gitter));
        margin-top: calc(2 * var(--base-vertical-gitter));
        padding: 0 var(--base-vertical-gitter);
    }
}

.c-search__result-container--empty:after {
    content: attr(data-empty-text);
}

.c-search__empty-text,
.c-search__result-container--empty:after {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-search__marked-text {
    background-color: var(--module-color);
}

.c-search__author-name {
    padding: 0 5px 0 0;
}

.c-search__dot {
    padding: 0 3px;
}

:root {
    --mobile-menu-title-height: calc(10 * var(--base-vertical-gitter));
    --mobile-menu-horisontal-padding: 20px;
}

.c-aside-menu {
    position: fixed;
    top: 0;
    height: 100%;
    display: inline-block;
    width: calc(100vw - 60px);
    max-width: 300px;
    left: -100%;
    background-color: var(--black);
    will-change: left;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}

.c-aside-menu--amp {
    position: static;
}

.c-aside-menu--active {
    left: 0;
    -webkit-box-shadow: 5px 0 9px 0 rgba(27, 27, 27, 0.61);
    box-shadow: 5px 0 9px 0 rgba(27, 27, 27, 0.61);
}

.c-aside-menu--active.c-aside-menu--right {
    right: 0;
}

.c-aside-menu--right {
    left: auto;
    right: -100%;
    will-change: right;
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
    z-index: 50;
}

.c-aside-menu__top {
    height: var(--mobile-menu-title-height);
    padding: 0 var(--mobile-menu-horisontal-padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .c-aside-menu__top {
        padding: 0 calc(2 * var(--mobile-menu-horisontal-padding));
    }
}

.c-aside-menu__title {
    font-family: Open Sans, sans-serif;
    font-size: 20px;
    color: var(--brownish-grey);
    line-height: 1;
    letter-spacing: 0.67px;
    text-transform: uppercase;
}

.c-aside-menu__close-button {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: no-repeat;
    background-size: 20px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%2300A5CF' fill-rule='evenodd' d='M18.106.275a1.025 1.025 0 0 1 1.447.074 1.128 1.128 0 0 1-.042 1.556L11.44 9.92l8.07 8.016c.427.424.445 1.108.042 1.555a1.025 1.025 0 0 1-1.447.075l-.036-.034-8.153-8.099-8.152 8.099-.035.034a1.026 1.026 0 0 1-1.448-.075 1.128 1.128 0 0 1 .043-1.555L8.393 9.92.325 1.905A1.128 1.128 0 0 1 .282.349 1.025 1.025 0 0 1 1.73.275l.035.034 8.152 8.097L18.07.309z'/%3E%3C/svg%3E");
    background-position: 100%;
    border: none;
    background-color: transparent;
}

.c-aside-menu__bottom {
    height: calc(100% - var(--mobile-menu-title-height));
    overflow: scroll;
}

.c-aside-menu__bottom::-webkit-scrollbar {
    display: none;
}

.c-aside-menu__item {
    text-decoration: none;
    cursor: pointer;
    display: block;
    font-family: Open Sans, sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.43px;
    text-transform: uppercase;
    padding: 17px var(--mobile-menu-horisontal-padding);
}

.c-aside-menu__item:hover {
    background-color: var(--brownish-grey);
}

.c-aside-menu__item--active {
    color: var(--black);
    background-color: var(--turquoise-blue);
    position: relative;
}

.c-aside-menu__item--active:after {
    content: "";
    position: absolute;
    top: 20px;
    right: var(--mobile-menu-horisontal-padding);
    border: solid #000;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

html[amp-version] .l-main-content {
    z-index: unset;
}

[data-state="bd-rgns"] .js-aside-regions {
    right: 0;
}

.c-aside-nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: calc(100vh - 60px);
    width: 100vw;
    -webkit-transform: scale(0);
    transform: scale(0);
    margin-top: 60px;
    padding: 12px 25px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--black);
    -webkit-box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.8);
    overflow-y: scroll;
}

@media screen and (min-width: 768px) {
    .c-aside-nav-menu {
        display: none;
    }
}

.c-aside-nav-menu.active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.c-aside-nav-menu__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.c-aside-nav-menu__social-title {
    text-align: left;
    margin-bottom: 15px;
    font-size: 14px;
    color: #fff;
    font-family: Open Sans, sans-serif;
}

.c-aside-nav-menu__social-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (orientation: portrait) {
    .js-aside-regions .c-aside-menu__bottom {
        padding-bottom: 60px;
    }
}

.c-footer {
    background-color: var(--black);
    border-top: 4px solid var(--module-color);
    padding: calc(2 * var(--base-vertical-gitter)) 0;
}

@media screen and (min-width: 768px) {
    .c-footer {
        border: none;
        padding: calc(4 * var(--base-vertical-gitter)) 0;
    }
}

.c-footer-wrapper {
    max-width: calc(
        var(--max-middle-wrapper-width) - var(--base-horisontal-gitter) * 2
    );
    padding-left: var(--base-horisontal-gitter);
    padding-right: var(--base-horisontal-gitter);
    margin-left: auto;
    margin-right: auto;
}

.c-footer-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .c-footer-columns {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media screen and (min-width: 768px) {
    .c-footer-columns__item--logo {
        width: calc(25% - var(--base-horisontal-gitter) / 2);
    }

    .c-footer-columns__item--nav {
        width: calc(75% - var(--base-horisontal-gitter) / 2);
        margin-left: calc(2 * var(--base-vertical-gitter));
    }
}

.c-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .c-footer-nav {
        margin-bottom: calc(2 * var(--base-vertical-gitter));
    }
}

@media screen and (max-width: 767px) {
    .c-footer-nav {
        display: block;
        text-align: center;
    }
}

.c-footer-nav__item {
    font-size: 15px;
    font-family: Open Sans, sans-serif;
    font-weight: 700;
    line-height: 1.33;
    letter-spacing: 0.5px;
    color: #eee;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    margin: 0 7px;
}

.c-footer-nav__item--active,
.c-footer-nav__item:hover {
    color: var(--brownish-grey);
}

@media screen and (max-width: 767px) {
    .c-footer-nav__item {
        display: block;
    }
}

.c-footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: calc(2 * var(--base-vertical-gitter));
}

@media screen and (min-width: 768px) {
    .c-footer-social {
        margin-bottom: calc(4 * var(--base-vertical-gitter));
    }
}

.c-footer-social-item {
    width: 40px;
    height: 40px;
    border-radius: 10em;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 20px;
    cursor: pointer;
    display: inline-block;
    border: 1px solid #fff;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    margin-left: 15px;
}

.c-footer-social-item--rss {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd' transform='translate(3 2)'%3E%3Ccircle cx='1.5' cy='13.5' r='1.5'/%3E%3Cpath fill-rule='nonzero' d='M7.6 13.6a5.9 5.9 0 0 0-5.9-5.9 1 1 0 1 0 0 2 3.9 3.9 0 0 1 3.9 3.9 1 1 0 0 0 2 0z'/%3E%3Cpath fill-rule='nonzero' d='M11.443 13.6c0-5.517-4.214-9.704-9.743-9.704a1 1 0 1 0 0 2c4.427 0 7.743 3.295 7.743 7.704a1 1 0 0 0 2 0z'/%3E%3Cpath fill-rule='nonzero' d='M15.3 13.6C15.3 6.089 9.211 0 1.7 0a1 1 0 1 0 0 2c6.407 0 11.6 5.193 11.6 11.6a1 1 0 1 0 2 0z'/%3E%3C/g%3E%3C/svg%3E");
}

.c-footer-social-item--facebook {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M13.688 10.005h-2.412V18H7.7v-7.995H6V7.181h1.7V5.353C7.7 4.047 8.368 2 11.308 2l2.648.01v2.742h-1.922c-.315 0-.758.146-.758.77v1.662H14l-.312 2.821z'/%3E%3C/svg%3E");
}

.c-footer-social-item--twitter {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M18 5.539a6.554 6.554 0 0 1-1.886.516 3.294 3.294 0 0 0 1.444-1.815 6.57 6.57 0 0 1-2.084.796A3.281 3.281 0 0 0 13.077 4 3.283 3.283 0 0 0 9.88 8.03 9.32 9.32 0 0 1 3.113 4.6 3.282 3.282 0 0 0 4.13 8.982a3.262 3.262 0 0 1-1.486-.41v.04a3.284 3.284 0 0 0 2.633 3.219 3.267 3.267 0 0 1-1.483.056 3.286 3.286 0 0 0 3.067 2.28A6.585 6.585 0 0 1 2 15.524 9.285 9.285 0 0 0 7.031 17c6.039 0 9.34-5 9.34-9.338 0-.142-.003-.284-.009-.425A6.655 6.655 0 0 0 18 5.54'/%3E%3C/svg%3E");
}

.c-footer-social-item--insta {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M16.33 13.374c-.043.89-.326 1.692-1.059 2.273-.452.359-.978.542-1.54.597-.6.06-1.205.093-1.81.1-1.318.014-2.638.02-3.957-.002-.7-.012-1.41-.027-2.097-.152-1.336-.242-2.16-1.166-2.28-2.52a32.9 32.9 0 0 1-.102-2.723 156.56 156.56 0 0 1 .05-4.28c.009-.375.068-.76.169-1.122.315-1.13 1.095-1.781 2.235-1.959.657-.102 1.33-.127 1.995-.138a121.31 121.31 0 0 1 4.01.002c.705.012 1.422.033 2.112.164 1.312.249 2.106 1.167 2.242 2.5.06.594.083 1.193.099 1.79.016.621.003 1.243.003 1.865h.032c-.032 1.202-.043 2.405-.102 3.605m1.485-5.684c-.012-.727-.054-1.463-.178-2.178-.207-1.196-.847-2.138-1.895-2.777-.799-.487-1.69-.65-2.61-.676-1.058-.03-2.118-.04-3.177-.059v.022c-.738 0-1.476-.022-2.212.006-.73.029-1.468.044-2.18.18-1.579.299-2.654 1.23-3.184 2.76-.273.791-.3 1.616-.309 2.437a179.22 179.22 0 0 0-.002 4.695c.011.728.04 1.467.179 2.179.304 1.574 1.235 2.649 2.771 3.174.791.27 1.617.297 2.439.306 1.561.016 3.122.026 4.682.002.73-.01 1.468-.042 2.181-.177 1.578-.3 2.654-1.23 3.183-2.762.273-.79.3-1.615.309-2.436.017-1.565.026-3.13.003-4.696'/%3E%3Cpath d='M9.94 12.52a2.64 2.64 0 0 1-2.626-2.626A2.638 2.638 0 0 1 9.943 7.27a2.64 2.64 0 0 1 2.626 2.626 2.64 2.64 0 0 1-2.63 2.624m.04-6.671c-2.265-.002-4.087 1.783-4.088 4.007 0 2.28 1.785 4.084 4.046 4.085a4.032 4.032 0 0 0 4.054-4.043c0-2.233-1.798-4.048-4.012-4.05m4.164-1.103a.948.948 0 0 0-.946.94.963.963 0 0 0 .953.958.949.949 0 0 0 .947-.957.929.929 0 0 0-.954-.941'/%3E%3C/g%3E%3C/svg%3E");
}

.c-footer-social-item--youtube {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M8 13.835V7l5.14 3.417L8 13.835zm11-7.121C19 5.214 17.796 4 16.31 4H3.69C2.205 4 1 5.215 1 6.714v7.278c0 1.499 1.204 2.714 2.69 2.714h12.62c1.486 0 2.69-1.215 2.69-2.714V6.714z'/%3E%3C/svg%3E");
}

.c-footer-social-item--viber {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M15.618 3.615c-.402-.379-2.028-1.587-5.648-1.603 0 0-4.27-.264-6.351 1.691-1.159 1.186-1.566 2.922-1.61 5.074-.042 2.153-.098 6.186 3.7 7.28l.003.001-.002 1.669s-.024.676.41.813c.526.167.834-.346 1.336-.9.276-.303.656-.75.943-1.09 2.597.222 4.595-.289 4.821-.364.525-.175 3.493-.564 3.975-4.597.498-4.158-.241-6.787-1.577-7.974m.45 7.674c-.409 3.368-2.815 3.58-3.259 3.726-.189.062-1.944.51-4.15.361l-2.391 2.65-.002-3.053-.02-.005c-3.212-.914-3.104-4.339-3.068-6.137.037-1.797.366-3.27 1.347-4.26 1.76-1.633 5.387-1.39 5.387-1.39 3.062.015 4.53.958 4.87 1.275 1.13.99 1.706 3.36 1.285 6.833'/%3E%3Cpath d='M13.302 11.791a22.024 22.024 0 0 0-.724-.594 9.285 9.285 0 0 0-.78-.51c-.357-.203-.723-.075-.874.125l-.313.403c-.16.205-.408.17-.473.157-.463-.116-.956-.406-1.46-.894-.51-.492-.818-1.006-.928-1.54l-.008-.036a.61.61 0 0 1 .097-.471l.016-.014c.212-.197.605-.436.657-.665.154-.396-.515-1.222-.61-1.368 0 0-.488-.645-.66-.768-.188-.155-.478-.244-.77-.065l-.015.011c-.839.568-1.143.894-1.06 1.382l.043.195c.426 1.342 1.248 2.772 2.473 4.046 1.212 1.257 2.523 2.01 3.816 2.532.335.112.684.016 1.04-.29l.007-.004c.273-.256.49-.53.652-.822l.001-.006c.157-.31.104-.604-.127-.804M11.29 8.854a.097.097 0 0 1-.096-.094c-.017-.348-.11-.614-.279-.792-.167-.177-.418-.275-.744-.293a.098.098 0 0 1-.091-.104.098.098 0 0 1 .102-.094c.376.02.67.14.872.354.201.213.313.522.333.919a.098.098 0 0 1-.092.104h-.005'/%3E%3Cpath d='M12.246 9.182h-.002a.098.098 0 0 1-.095-.101c.015-.668-.18-1.232-.58-1.679a2.112 2.112 0 0 0-.718-.523 2.9 2.9 0 0 0-.965-.228.098.098 0 0 1-.089-.106.098.098 0 0 1 .103-.092c.771.058 1.38.332 1.812.816.434.485.647 1.096.63 1.816a.098.098 0 0 1-.096.097'/%3E%3Cpath d='M13.225 9.574a.098.098 0 0 1-.097-.098 4.67 4.67 0 0 0-.264-1.587 3.315 3.315 0 0 0-.766-1.202 3.45 3.45 0 0 0-1.14-.763c-.421-.17-.89-.26-1.394-.263a.098.098 0 0 1-.096-.1.099.099 0 0 1 .097-.098c1.059.008 1.956.372 2.668 1.083a3.5 3.5 0 0 1 .811 1.273 4.88 4.88 0 0 1 .278 1.655c0 .055-.043.1-.096.1'/%3E%3C/g%3E%3C/svg%3E");
}

.c-footer-social-item--telegram {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20' height='20'%3E%3Cdefs%3E%3Cpath id='a' d='M7.55 10.688l7.105 5.25c.811.447 1.397.215 1.598-.753l2.893-13.63C19.442.368 18.693-.171 17.918.18L.934 6.731c-1.16.464-1.153 1.11-.212 1.4l4.359 1.36 10.09-6.366c.476-.29.914-.134.555.184'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' d='M7.25 17.182c.44 0 .636-.201.882-.44l2.35-2.286-2.932-1.769'/%3E%3Cg transform='translate(0 2)'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='%23FFF' d='M7.55 10.688l7.105 5.25c.811.447 1.397.215 1.598-.753l2.893-13.63C19.442.368 18.693-.171 17.918.18L.934 6.731c-1.16.464-1.153 1.11-.212 1.4l4.359 1.36 10.09-6.366c.476-.29.914-.134.555.184' mask='url(%23b)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.c-footer-social-item:not(.c-footer-social-item--desktop):first-of-type {
    display: inline-block;
}

.c-footer-social-item--desktop {
    display: none;
}

@media screen and (min-width: 1024px) {
    .c-footer-social-item--desktop {
        display: inline-block;
    }
}

.c-footer-info {
    margin-bottom: calc(2 * var(--base-vertical-gitter));
}

.c-footer-copyright--desktop {
    display: none;
}

@media screen and (min-width: 768px) {
    .c-footer-copyright--mobile {
        display: none;
    }

    .c-footer-copyright--desktop {
        display: block;
    }
}

.c-footer-copyright__text,
.c-footer-info__text {
    display: block;
    font-family: Open Sans, sans-serif;
    font-size: 13px;
    line-height: 1.54;
    color: var(--brownish-grey);
}

.c-footer-info__text-link {
    color: inherit;
}

.c-footer-logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media screen and (min-width: 768px) {
    .c-footer-logo-wrapper {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.c-footer-logo {
    margin: 0 7px calc(2 * var(--base-vertical-gitter));
    cursor: pointer;
    display: block;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .c-footer-logo {
        margin: 0 0 calc(4 * var(--base-vertical-gitter));
    }
}

.c-footer-logo__img {
    max-width: 100%;
    width: 185px;
}

.c-share-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 10em;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 20px;
    cursor: pointer;
}

.c-share-item--rss {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd' transform='translate(3 2)'%3E%3Ccircle cx='1.5' cy='13.5' r='1.5'/%3E%3Cpath fill-rule='nonzero' d='M7.6 13.6a5.9 5.9 0 0 0-5.9-5.9 1 1 0 1 0 0 2 3.9 3.9 0 0 1 3.9 3.9 1 1 0 0 0 2 0z'/%3E%3Cpath fill-rule='nonzero' d='M11.443 13.6c0-5.517-4.214-9.704-9.743-9.704a1 1 0 1 0 0 2c4.427 0 7.743 3.295 7.743 7.704a1 1 0 0 0 2 0z'/%3E%3Cpath fill-rule='nonzero' d='M15.3 13.6C15.3 6.089 9.211 0 1.7 0a1 1 0 1 0 0 2c6.407 0 11.6 5.193 11.6 11.6a1 1 0 1 0 2 0z'/%3E%3C/g%3E%3C/svg%3E");
}

.c-share-item--facebook {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M13.688 10.005h-2.412V18H7.7v-7.995H6V7.181h1.7V5.353C7.7 4.047 8.368 2 11.308 2l2.648.01v2.742h-1.922c-.315 0-.758.146-.758.77v1.662H14l-.312 2.821z'/%3E%3C/svg%3E");
}

.c-share-item--twitter {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M18 5.539a6.554 6.554 0 0 1-1.886.516 3.294 3.294 0 0 0 1.444-1.815 6.57 6.57 0 0 1-2.084.796A3.281 3.281 0 0 0 13.077 4 3.283 3.283 0 0 0 9.88 8.03 9.32 9.32 0 0 1 3.113 4.6 3.282 3.282 0 0 0 4.13 8.982a3.262 3.262 0 0 1-1.486-.41v.04a3.284 3.284 0 0 0 2.633 3.219 3.267 3.267 0 0 1-1.483.056 3.286 3.286 0 0 0 3.067 2.28A6.585 6.585 0 0 1 2 15.524 9.285 9.285 0 0 0 7.031 17c6.039 0 9.34-5 9.34-9.338 0-.142-.003-.284-.009-.425A6.655 6.655 0 0 0 18 5.54'/%3E%3C/svg%3E");
}

.c-share-item--insta {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M16.33 13.374c-.043.89-.326 1.692-1.059 2.273-.452.359-.978.542-1.54.597-.6.06-1.205.093-1.81.1-1.318.014-2.638.02-3.957-.002-.7-.012-1.41-.027-2.097-.152-1.336-.242-2.16-1.166-2.28-2.52a32.9 32.9 0 0 1-.102-2.723 156.56 156.56 0 0 1 .05-4.28c.009-.375.068-.76.169-1.122.315-1.13 1.095-1.781 2.235-1.959.657-.102 1.33-.127 1.995-.138a121.31 121.31 0 0 1 4.01.002c.705.012 1.422.033 2.112.164 1.312.249 2.106 1.167 2.242 2.5.06.594.083 1.193.099 1.79.016.621.003 1.243.003 1.865h.032c-.032 1.202-.043 2.405-.102 3.605m1.485-5.684c-.012-.727-.054-1.463-.178-2.178-.207-1.196-.847-2.138-1.895-2.777-.799-.487-1.69-.65-2.61-.676-1.058-.03-2.118-.04-3.177-.059v.022c-.738 0-1.476-.022-2.212.006-.73.029-1.468.044-2.18.18-1.579.299-2.654 1.23-3.184 2.76-.273.791-.3 1.616-.309 2.437a179.22 179.22 0 0 0-.002 4.695c.011.728.04 1.467.179 2.179.304 1.574 1.235 2.649 2.771 3.174.791.27 1.617.297 2.439.306 1.561.016 3.122.026 4.682.002.73-.01 1.468-.042 2.181-.177 1.578-.3 2.654-1.23 3.183-2.762.273-.79.3-1.615.309-2.436.017-1.565.026-3.13.003-4.696'/%3E%3Cpath d='M9.94 12.52a2.64 2.64 0 0 1-2.626-2.626A2.638 2.638 0 0 1 9.943 7.27a2.64 2.64 0 0 1 2.626 2.626 2.64 2.64 0 0 1-2.63 2.624m.04-6.671c-2.265-.002-4.087 1.783-4.088 4.007 0 2.28 1.785 4.084 4.046 4.085a4.032 4.032 0 0 0 4.054-4.043c0-2.233-1.798-4.048-4.012-4.05m4.164-1.103a.948.948 0 0 0-.946.94.963.963 0 0 0 .953.958.949.949 0 0 0 .947-.957.929.929 0 0 0-.954-.941'/%3E%3C/g%3E%3C/svg%3E");
}

.c-share-item--youtube {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M8 13.835V7l5.14 3.417L8 13.835zm11-7.121C19 5.214 17.796 4 16.31 4H3.69C2.205 4 1 5.215 1 6.714v7.278c0 1.499 1.204 2.714 2.69 2.714h12.62c1.486 0 2.69-1.215 2.69-2.714V6.714z'/%3E%3C/svg%3E");
}

.c-share-item--viber {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M15.618 3.615c-.402-.379-2.028-1.587-5.648-1.603 0 0-4.27-.264-6.351 1.691-1.159 1.186-1.566 2.922-1.61 5.074-.042 2.153-.098 6.186 3.7 7.28l.003.001-.002 1.669s-.024.676.41.813c.526.167.834-.346 1.336-.9.276-.303.656-.75.943-1.09 2.597.222 4.595-.289 4.821-.364.525-.175 3.493-.564 3.975-4.597.498-4.158-.241-6.787-1.577-7.974m.45 7.674c-.409 3.368-2.815 3.58-3.259 3.726-.189.062-1.944.51-4.15.361l-2.391 2.65-.002-3.053-.02-.005c-3.212-.914-3.104-4.339-3.068-6.137.037-1.797.366-3.27 1.347-4.26 1.76-1.633 5.387-1.39 5.387-1.39 3.062.015 4.53.958 4.87 1.275 1.13.99 1.706 3.36 1.285 6.833'/%3E%3Cpath d='M13.302 11.791a22.024 22.024 0 0 0-.724-.594 9.285 9.285 0 0 0-.78-.51c-.357-.203-.723-.075-.874.125l-.313.403c-.16.205-.408.17-.473.157-.463-.116-.956-.406-1.46-.894-.51-.492-.818-1.006-.928-1.54l-.008-.036a.61.61 0 0 1 .097-.471l.016-.014c.212-.197.605-.436.657-.665.154-.396-.515-1.222-.61-1.368 0 0-.488-.645-.66-.768-.188-.155-.478-.244-.77-.065l-.015.011c-.839.568-1.143.894-1.06 1.382l.043.195c.426 1.342 1.248 2.772 2.473 4.046 1.212 1.257 2.523 2.01 3.816 2.532.335.112.684.016 1.04-.29l.007-.004c.273-.256.49-.53.652-.822l.001-.006c.157-.31.104-.604-.127-.804M11.29 8.854a.097.097 0 0 1-.096-.094c-.017-.348-.11-.614-.279-.792-.167-.177-.418-.275-.744-.293a.098.098 0 0 1-.091-.104.098.098 0 0 1 .102-.094c.376.02.67.14.872.354.201.213.313.522.333.919a.098.098 0 0 1-.092.104h-.005'/%3E%3Cpath d='M12.246 9.182h-.002a.098.098 0 0 1-.095-.101c.015-.668-.18-1.232-.58-1.679a2.112 2.112 0 0 0-.718-.523 2.9 2.9 0 0 0-.965-.228.098.098 0 0 1-.089-.106.098.098 0 0 1 .103-.092c.771.058 1.38.332 1.812.816.434.485.647 1.096.63 1.816a.098.098 0 0 1-.096.097'/%3E%3Cpath d='M13.225 9.574a.098.098 0 0 1-.097-.098 4.67 4.67 0 0 0-.264-1.587 3.315 3.315 0 0 0-.766-1.202 3.45 3.45 0 0 0-1.14-.763c-.421-.17-.89-.26-1.394-.263a.098.098 0 0 1-.096-.1.099.099 0 0 1 .097-.098c1.059.008 1.956.372 2.668 1.083a3.5 3.5 0 0 1 .811 1.273 4.88 4.88 0 0 1 .278 1.655c0 .055-.043.1-.096.1'/%3E%3C/g%3E%3C/svg%3E");
}

.c-share-item--telegram {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20' height='20'%3E%3Cdefs%3E%3Cpath id='a' d='M7.55 10.688l7.105 5.25c.811.447 1.397.215 1.598-.753l2.893-13.63C19.442.368 18.693-.171 17.918.18L.934 6.731c-1.16.464-1.153 1.11-.212 1.4l4.359 1.36 10.09-6.366c.476-.29.914-.134.555.184'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23FFF' d='M7.25 17.182c.44 0 .636-.201.882-.44l2.35-2.286-2.932-1.769'/%3E%3Cg transform='translate(0 2)'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Cpath fill='%23FFF' d='M7.55 10.688l7.105 5.25c.811.447 1.397.215 1.598-.753l2.893-13.63C19.442.368 18.693-.171 17.918.18L.934 6.731c-1.16.464-1.153 1.11-.212 1.4l4.359 1.36 10.09-6.366c.476-.29.914-.134.555.184' mask='url(%23b)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.c-article-preloader {
    visibility: hidden;
    height: 50px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cstyle%3E.rec{fill:%23000;x:9px;y:0;width:2px;height:4px;rx:1px}%3C/style%3E%3Cg fill='none' fill-rule='evenodd'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' from='0 10 10' to='360 10 10' dur='3s' repeatCount='indefinite'/%3E%3Crect class='rec' fill-opacity='.1'/%3E%3Crect class='rec' transform='rotate(30 10 10)' fill-opacity='.2'/%3E%3Crect class='rec' transform='rotate(60 10 10)' fill-opacity='.3'/%3E%3Crect class='rec' transform='rotate(90 10 10)' fill-opacity='.4'/%3E%3Crect class='rec' transform='rotate(120 10 10)' fill-opacity='.5'/%3E%3Crect class='rec' transform='rotate(150 10 10)' fill-opacity='.6'/%3E%3Crect class='rec' transform='rotate(180 10 10)' fill-opacity='.7'/%3E%3Crect class='rec' transform='rotate(210 10 10)' fill-opacity='.8'/%3E%3Crect class='rec' transform='rotate(240 10 10)' fill-opacity='.9'/%3E%3Crect class='rec' transform='rotate(270 10 10)'/%3E%3Crect class='rec' transform='rotate(300 10 10)'/%3E%3Crect class='rec' transform='rotate(330 10 10)'/%3E%3C/g%3E%3C/svg%3E")
        50% no-repeat;
}

.c-article-preloader--loading {
    visibility: initial;
}
