@-webkit-keyframes icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes icon-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideIn {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slideOut {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

@keyframes slideOut {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

@-webkit-keyframes shrinkIn {
    0% {
        height: 100%
    }

    to {
        height: 0
    }
}

@keyframes shrinkIn {
    0% {
        height: 100%
    }

    to {
        height: 0
    }
}

@-webkit-keyframes shrinkOut {
    0% {
        height: 0
    }

    to {
        height: 100%
    }
}

@keyframes shrinkOut {
    0% {
        height: 0
    }

    to {
        height: 100%
    }
}

.Article {
    width: 100%
}

@media(min-width:760px) {
    .Article {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        right: 1rem
    }

        .Article > * {
            background-clip: content-box;
            padding-left: 2rem
        }

    @supports(grid-area:auto) {
        .Article {
            display: grid;
            grid-template-columns: repeat(12,minmax(0,1fr));
            position: inherit;
            right: auto;
            grid-column-gap: 2rem
        }

            .Article > * {
                background-clip: border-box;
                padding-left: 0
            }
    }
}

@media(min-width:940px) {
    .Article {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        right: 1.25rem
    }

        .Article > * {
            background-clip: content-box;
            padding-left: 2.5rem
        }

    @supports(grid-area:auto) {
        .Article {
            display: grid;
            grid-template-columns: repeat(12,minmax(0,1fr));
            position: inherit;
            right: auto;
            grid-column-gap: 2.5rem
        }

            .Article > * {
                background-clip: border-box;
                padding-left: 0
            }
    }
}

.Article .Article__header, .Article .Article__meta, .Article .Article__tag {
    width: 100%
}

@media(min-width:760px) {
    .Article .Article__header, .Article .Article__meta, .Article .Article__tag {
        padding-left: 0;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    @supports(grid-area:auto) {
        .Article .Article__header, .Article .Article__meta, .Article .Article__tag {
            grid-column: span 12;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }
    }
}

@media(min-width:940px) {
    .Article .Article__header, .Article .Article__meta, .Article .Article__tag {
        margin-left: 8.33333%;
        -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%
    }

    @supports(grid-area:auto) {
        .Article .Article__header, .Article .Article__meta, .Article .Article__tag {
            grid-column: 2/span 10;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
            margin-left: 0
        }
    }
}

.Article.Article--hse .Article__header, .Article.Article--hse .Article__meta, .Article.Article--hse .Article__tag {
    width: 100%
}

@media(min-width:760px) {
    .Article.Article--hse .Article__header, .Article.Article--hse .Article__meta, .Article.Article--hse .Article__tag {
        margin-left: 8.33333%;
        padding-left: 0;
        -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
        max-width: 91.6666666667%
    }

    @supports(grid-area:auto) {
        .Article.Article--hse .Article__header, .Article.Article--hse .Article__meta, .Article.Article--hse .Article__tag {
            grid-column: 2/span 11;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
            margin-left: 0
        }
    }
}

@media(min-width:940px) {
    .Article.Article--hse .Article__header, .Article.Article--hse .Article__meta, .Article.Article--hse .Article__tag {
        margin-left: 8.33333%;
        -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
        max-width: 83.3333333333%
    }

    @supports(grid-area:auto) {
        .Article.Article--hse .Article__header, .Article.Article--hse .Article__meta, .Article.Article--hse .Article__tag {
            grid-column: 2/span 10;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto;
            margin-left: 0
        }
    }
}

.Article__stripHSE {
    display: block;
    margin-bottom: 2rem;
    position: relative
}

@media(min-width:760px) {
    .Article__stripHSE {
        -ms-grid-row: 1;
        grid-row-start: 1;
        margin-bottom: 0;
        -ms-grid-row-span: 1;
        grid-row-end: 2;
        min-height: 9rem;
        -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
        max-width: 8.3333333333%
    }

    @supports(grid-area:auto) {
        .Article__stripHSE {
            grid-column: span 1;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }
    }
}

.Article__stripHSE-wrapper {
    background-color: #ebedf4;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

@media(min-width:1420px) {
    .Article__stripHSE-wrapper {
        width: 90%
    }
}

.Article__stripHSE-wrapper:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    content: "";
    height: 100%;
    left: 0;
    opacity: .33;
    position: absolute;
    top: 0;
    width: 100%
}

@media(min-width:760px) {
    .Article__stripHSE-wrapper:before {
        background-size: 120% 120%;
        height: 120%;
        left: -40%;
        width: 120%
    }
}

.Article__stripHSE-wrapper span {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 8rem auto;
    display: block;
    height: 4rem;
    position: relative;
    width: 8rem
}

@media(min-width:760px) {
    .Article__stripHSE-wrapper span {
        background-position: 50%;
        background-size: 75% 90%;
        height: 100%;
        width: 75%
    }
}

@media(min-width:940px) {
    .Article__stripHSE-wrapper span {
        background-size: 70% 90%;
        width: 70%
    }
}

@media(min-width:1220px) {
    .Article__stripHSE-wrapper span {
        background-size: 65% 85%;
        width: 65%
    }
}

@media(min-width:1420px) {
    .Article__stripHSE-wrapper span {
        background-size: 60% 80%;
        height: 100%;
        width: 60%
    }
}

.Article__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 1.5rem
}

@media(min-width:760px) {
    .Article__header {
        margin-bottom: 2rem
    }
}

.Article__header-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: .6rem
}

@media(min-width:760px) {
    .Article__header-label {
        font-size: 1.4rem;
        margin-bottom: .8rem
    }
}

@media(min-width:940px) {
    .Article__header-label {
        font-size: 1.5rem;
        margin-bottom: 1rem
    }
}

@media(min-width:1220px) {
    .Article__header-label {
        font-size: 1.6rem;
        margin-bottom: 1.2rem
    }
}

@media(min-width:1420px) {
    .Article__header-label {
        font-size: 1.8rem
    }
}

.Article__header-label span {
    color: #0c0c0f;
    font-weight: 450;
    line-height: 1;
    text-transform: uppercase
}

.Article__header-label-area {
    border: 1px solid #757575;
    font-weight: 500;
    line-height: 1;
    margin-right: 1rem;
    padding: .4rem .8rem .3rem;
    position: relative;
    text-decoration: none;
    top: -.1rem
}

@media(min-width:760px) {
    .Article__header-label-area {
        margin-right: 1.2rem
    }
}

@media(min-width:940px) {
    .Article__header-label-area {
        padding: .45rem .9rem .3rem
    }
}

@media(min-width:1220px) {
    .Article__header-label-area {
        margin-right: 1.5rem;
        padding: .5rem 1rem .4rem
    }
}

.Article__header-label a:active, .Article__header-label a:focus, .Article__header-label a:visited {
    text-decoration: none
}

.Article__header-label a:hover {
    color: #008add;
    text-decoration: none
}

.Article__header-title {
    color: #0c0c0f;
    font-family: "Source Serif 4",Arial,Helvetica Neue,Helvetica,sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    width: 100%
}

@media(min-width:760px) {
    .Article__header-title {
        font-size: 3.5rem;
        line-height: 1.15
    }
}

@media(min-width:940px) {
    .Article__header-title {
        font-size: 3.7rem;
        line-height: 1.2
    }
}

@media(min-width:1220px) {
    .Article__header-title {
        font-size: 4rem
    }
}

@media(min-width:1420px) {
    .Article__header-title {
        font-size: 4.2rem
    }
}

.Article__meta {
    border-bottom: 1px solid #dadada;
    border-top: 1px solid #dadada;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.7rem;
    padding: 1rem 0;
    position: relative
}

@media(min-width:940px) {
    .Article__meta {
        padding: 1.2rem 0
    }
}

@media(min-width:1220px) {
    .Article__meta {
        padding: 1.4rem 0
    }
}

@media(min-width:1420px) {
    .Article__meta {
        padding: 1.6rem 0
    }
}

.Article__meta-authors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    width: 66%
}

@media(min-width:760px) {
    .Article__meta-authors {
        width: 70%
    }
}

.Article__meta-authors-swiper {
    position: static;
    width: 100%
}

@media(min-width:760px) {
    .Article__meta-authors-swiper {
        padding-right: 0;
        width: 130%;
        width: 125%
    }
}

.Article__meta-authors-swiper:after {
    content: none;
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    z-index: 1
}

@media(min-width:760px) {
    .Article__meta-authors-swiper:after {
        background: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),color-stop(70%,#fff));
        background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff 70%);
        content: ""
    }
}

@media(min-width:940px) {
    .Article__meta-authors-swiper:after {
        background: -webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),color-stop(80%,#fff));
        background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff 80%)
    }
}

.Article__meta-authors-wrapper {
    width: 100%
}

.Article__meta-authors-wrapper, .Article__meta-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.Article__meta-date {
    width: 34%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    color: #757575;
    font-size: 1.1rem;
    font-weight: 400;
    justify-content: flex-end;
    letter-spacing: -.02em;
    line-height: 1.3;
    margin-left: auto;
    text-align: right;
    text-transform: uppercase
}

@media(min-width:760px) {
    .Article__meta-date {
        font-size: 1.2rem;
        width: 30%
    }
}

@media(min-width:940px) {
    .Article__meta-date {
        font-size: 1.3rem
    }
}

@media(min-width:1220px) {
    .Article__meta-date {
        font-size: 1.35rem
    }
}

@media(min-width:1420px) {
    .Article__meta-date {
        font-size: 1.4rem
    }
}

.Article__meta-date time {
    color: #0c0c0f;
    display: block;
    font-size: 1.1em;
    font-weight: 500
}

@media(min-width:760px) {
    .Article__meta-date time {
        display: inline
    }
}

@media(min-width:940px) {
    .Article__meta-date time {
        font-size: 1.2em
    }
}

.Article__meta-authors-btn {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 2.2rem auto;
    bottom: auto;
    height: 2.2rem;
    opacity: .7;
    position: absolute;
    right: .2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2.2rem;
    z-index: 2
}

@media(min-width:760px) {
    .Article__meta-authors-btn {
        background-size: 2.7rem auto;
        height: 2.7rem;
        right: 0;
        width: 2.7rem
    }
}

.Article__meta-authors-btn:hover {
    cursor: pointer
}

.postAuthor {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-right: 1.2rem;
    padding-right: 2.5rem;
    position: relative
}

@media(min-width:760px) {
    .postAuthor {
        margin-right: 1.5rem;
        padding-right: 1.5rem
    }
}

@media(min-width:1220px) {
    .postAuthor {
        margin-right: 2rem;
        padding-right: 2.5rem
    }
}

.postAuthor:after {
    background-color: #dadada;
    content: "";
    display: block;
    height: 80%;
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px
}

.postAuthor__img {
    height: 3rem;
    width: 3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem;
    overflow: hidden;
    position: relative
}

@media(min-width:760px) {
    .postAuthor__img {
        height: 3.5rem;
        margin-right: .8rem;
        width: 3.5rem
    }
}

@media(min-width:1220px) {
    .postAuthor__img {
        height: 4rem;
        margin-right: 1rem;
        width: 4rem
    }
}

.postAuthor__img img {
    font-family: "object-fit:cover";
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%
}

.postAuthor__img:empty {
    display: none
}

.postAuthor__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left
}

    .postAuthor__info a {
        color: #474747;
        text-decoration: underline
    }

        .postAuthor__info a:active, .postAuthor__info a:focus, .postAuthor__info a:hover, .postAuthor__info a:visited {
            color: #474747
        }

.postAuthor__info-name {
    color: #474747;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    margin-bottom: .3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    white-space: nowrap
}

@media(min-width:760px) {
    .postAuthor__info-name {
        font-size: 1.4rem
    }
}

@media(min-width:940px) {
    .postAuthor__info-name {
        font-size: 1.5rem;
        margin-bottom: .5rem
    }
}

@media(min-width:1220px) {
    .postAuthor__info-name {
        font-size: 1.55rem
    }
}

@media(min-width:1420px) {
    .postAuthor__info-name {
        font-size: 1.6rem
    }
}

.postAuthor__info-cv {
    color: #757575;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis
}

@media(min-width:760px) {
    .postAuthor__info-cv {
        font-size: 1.3rem
    }
}

@media(min-width:940px) {
    .postAuthor__info-cv {
        font-size: 1.4rem
    }
}

@media(min-width:1220px) {
    .postAuthor__info-cv {
        font-size: 1.45rem
    }
}

@media(min-width:1420px) {
    .postAuthor__info-cv {
        font-size: 1.5rem
    }
}

.Article__tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 2rem
}

.Article--bando .Article__tag {
    position: relative;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: -1.8rem
}

@media(min-width:940px) {
    .Article--bando .Article__tag {
        left: -2rem
    }
}

.Article__tag-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: #f6f6f6;
    color: #474747;
    font-size: .9rem;
    font-weight: 450;
    justify-content: center;
    left: 1.8rem;
    line-height: 1.2;
    padding: .7rem 2.8rem .5rem 1.5rem;
    position: relative;
    text-transform: uppercase
}

@media(min-width:760px) {
    .Article__tag-label {
        font-size: 1rem
    }
}

@media(min-width:940px) {
    .Article__tag-label {
        font-size: 1.1rem;
        left: 2rem;
        padding: .9rem 3.2rem .7rem 1.5rem
    }
}

@media(min-width:1220px) {
    .Article__tag-label {
        font-size: 1.2rem;
        padding: 1rem 3.2rem .75rem 2rem
    }
}

a.Article__tag-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: #fff;
    border: .15rem solid #dadada;
    color: #0c0c0f;
    font-size: 1.25rem;
    font-weight: 520;
    justify-content: center;
    padding: .6rem 1.2rem .45rem;
    position: relative;
    text-decoration: none;
    -webkit-transition: color .3s ease;
    transition: color .3s ease
}

@media(min-width:760px) {
    a.Article__tag-link {
        font-size: 1.4rem;
        padding: .6rem 1.4rem .45rem
    }
}

@media(min-width:940px) {
    a.Article__tag-link {
        font-size: 1.5rem;
        font-weight: 550;
        padding: .9rem 1.6rem .7rem
    }
}

@media(min-width:1220px) {
    a.Article__tag-link {
        font-size: 1.55rem;
        padding: 1rem 1.8rem .75rem
    }
}

@media(min-width:1420px) {
    a.Article__tag-link {
        font-size: 1.6rem
    }
}

a.Article__tag-link:active, a.Article__tag-link:focus, a.Article__tag-link:visited {
    color: #0c0c0f;
    text-decoration: none
}

a.Article__tag-link:hover {
    color: #007ac3;
    text-decoration: none
}

a.Article__tag-link:after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 1.6rem auto;
    content: "";
    display: inline-block;
    height: 1.6rem;
    margin-left: .5rem;
    position: relative;
    width: 1.6rem
}

@media(min-width:760px) {
    a.Article__tag-link:after {
        background-size: 1.8rem auto;
        height: 1.8rem;
        width: 1.8rem
    }
}

.Article__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2rem;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:760px) {
    .Article__content {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%
    }

    @supports(grid-area:auto) {
        .Article__content {
            grid-column: span 12;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }
    }

    .Article__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        right: 1rem
    }

        .Article__content > * {
            background-clip: content-box;
            padding-left: 2rem
        }

    @supports(grid-area:auto) {
        .Article__content {
            display: grid;
            grid-template-columns: repeat(12,minmax(0,1fr));
            position: inherit;
            right: auto;
            grid-column-gap: 2rem
        }

            .Article__content > * {
                background-clip: border-box;
                padding-left: 0
            }
    }
}

@media(min-width:940px) {
    .Article__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        right: 1.25rem
    }

        .Article__content > * {
            background-clip: content-box;
            padding-left: 2.5rem
        }

    @supports(grid-area:auto) {
        .Article__content {
            display: grid;
            grid-template-columns: repeat(12,minmax(0,1fr));
            position: inherit;
            right: auto;
            grid-column-gap: 2.5rem
        }

            .Article__content > * {
                background-clip: border-box;
                padding-left: 0
            }
    }
}

.Article__content-body {
    margin-bottom: 1.5rem;
    width: 100%
}

@media(min-width:760px) {
    .Article__content-body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
        max-width: 66.6666666667%
    }

    @supports(grid-area:auto) {
        .Article__content-body {
            grid-column: span 8;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }
    }
}

@media(min-width:940px) {
    .Article__content-body {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-right: 2%
    }
}

.Article--pinnedSidebar:not(.Article--wkpedia) .Article__content-body {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

@media(min-width:760px) {
    .Article--pinnedSidebar:not(.Article--wkpedia) .Article__content-body {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

.Article__content-body-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2.5rem
}

@media(min-width:940px) {
    .Article__content-body-post {
        margin-bottom: 3.5rem;
        margin-left: auto;
        width: 87%
    }
}

@media(min-width:1420px) {
    .Article__content-body-post {
        margin-bottom: 4rem
    }
}

.Article__content-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:760px) {
    .Article__content-sidebar {
        -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
        max-width: 33.3333333333%
    }

    @supports(grid-area:auto) {
        .Article__content-sidebar {
            grid-column: 9/span 4;
            max-width: none;
            -ms-flex-preferred-size: auto;
            flex-basis: auto
        }
    }
}

.Article__content-sidebar > div, .Article__content-sidebar > section {
    margin-bottom: 3rem;
    width: 100%
}

.Article--pinnedSidebar .Article__content-sidebar {
    position: sticky;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    top: 10vh;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

@media(min-width:760px) {
    .Article--pinnedSidebar .Article__content-sidebar {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.Article__content-body-tools {
    display: none
}

@media(min-width:940px) {
    .Article__content-body-tools {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: sticky;
        width: 4.8rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 50vh;
        top: 10vh
    }
}

.Article__content-body-tools ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.article-tools__utils {
    margin-bottom: .2rem
}

    .article-tools__utils li {
        display: block;
        height: 4rem;
        margin-bottom: .9rem;
        width: 100%
    }

        .article-tools__utils li button {
            background-color: #474747;
            border: 0;
            height: 100%;
            padding: .8rem;
            -webkit-transition: background-color .3s ease;
            transition: background-color .3s ease;
            width: 100%
        }

            .article-tools__utils li button:hover {
                background-color: #828282;
                border: 0
            }

            .article-tools__utils li button span {
                background-position: 50%;
                background-repeat: no-repeat;
                background-size: contain;
                display: block;
                height: 100%;
                position: relative;
                width: 100%
            }

.article-tools__social li {
    display: block;
    height: 4.8rem;
    margin-bottom: .8rem;
    width: 100%
}

    .article-tools__social li button {
        background-color: #ededed;
        border-radius: 50px;
        height: 100%;
        padding: 1.1rem;
        -webkit-transition: background-color .3s ease;
        transition: background-color .3s ease;
        width: 100%
    }

        .article-tools__social li button:hover {
            background-color: #f7f7f7;
            border: 0
        }

        .article-tools__social li button span {
            background-position: 50%;
            background-repeat: no-repeat;
            background-size: contain;
            display: block;
            height: 100%;
            position: relative;
            width: 100%
        }

    .article-tools__social li.article-tools-li-linkedin button {
        padding: 1.3rem
    }

.Article__content-body-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 4rem;
    margin-bottom: 2rem;
    width: 100%
}

@media(min-width:940px) {
    .Article__content-body-share {
        display: none
    }
}

.Article__content-body-share.article-share--bottom {
    margin-bottom: 3rem
}

.article-share__title {
    background-color: #f6f6f6;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-right: 2rem;
    min-width: 30%;
    position: relative;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .article-share__title span {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1
    }

@media(min-width:760px) {
    .article-share__title span {
        font-size: 1.45rem
    }
}

.article-share__title span:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 1.5rem;
    margin-right: .5rem;
    position: relative;
    top: .2rem;
    width: 1.5rem
}

.article-share__title:before {
    border: solid hsla(0,0%,96%,0);
    border-left: solid #f6f6f6;
    border-width: 10px 0 10px 10px;
    content: "";
    height: 0;
    left: 100%;
    margin-top: 0;
    position: absolute;
    top: 25%;
    width: 0;
    z-index: 1
}

.article-share-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0
}

    .article-share-ul li {
        display: block;
        height: 100%;
        margin-right: .8rem;
        width: 5rem
    }

        .article-share-ul li button {
            background-color: #f6f6f6;
            border-radius: 3px;
            height: 100%;
            padding: 1.1rem;
            -webkit-transition: background-color .3s ease;
            transition: background-color .3s ease;
            width: 100%
        }

            .article-share-ul li button span {
                background-position: 50%;
                background-repeat: no-repeat;
                background-size: contain;
                display: block;
                height: 100%;
                position: relative;
                width: 100%
            }

        .article-share-ul li.article-share-li-linkedin button {
            padding: 1.3rem
        }

.Article__content-body-post-editor {
    font-size: 1.55rem;
    line-height: 1.55;
    margin-bottom: 2.5rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor {
        line-height: 1.6
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor {
        font-size: 1.65rem;
        line-height: 1.65
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor {
        font-size: 1.7rem;
        line-height: 1.68
    }
}

@media(min-width:1420px) {
    .Article__content-body-post-editor {
        font-size: 1.75rem;
        line-height: 1.7
    }
}

.Article__content-body-post-editor p {
    font-size: 1.55rem;
    line-height: 1.55
}

@media(min-width:760px) {
    .Article__content-body-post-editor p {
        line-height: 1.6
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor p {
        font-size: 1.65rem;
        line-height: 1.65
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor p {
        font-size: 1.7rem;
        line-height: 1.68
    }
}

@media(min-width:1420px) {
    .Article__content-body-post-editor p {
        font-size: 1.75rem;
        line-height: 1.7
    }
}

.Article__content-body-post-editor small, .Article__content-body-post-editor small p {
    font-size: .9em
}

.Article__content-body-post-editor h1, .Article__content-body-post-editor h2, .Article__content-body-post-editor h3, .Article__content-body-post-editor h4, .Article__content-body-post-editor h5, .Article__content-body-post-editor h6 {
    border: 0;
    color: #0c0c0f;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: .8rem;
    margin-top: 2.5rem;
    padding-bottom: 0;
    text-transform: none
}

@media(min-width:760px) {
    .Article__content-body-post-editor h1, .Article__content-body-post-editor h2, .Article__content-body-post-editor h3, .Article__content-body-post-editor h4, .Article__content-body-post-editor h5, .Article__content-body-post-editor h6 {
        margin-top: 2.8rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor h1, .Article__content-body-post-editor h2, .Article__content-body-post-editor h3, .Article__content-body-post-editor h4, .Article__content-body-post-editor h5, .Article__content-body-post-editor h6 {
        margin-bottom: 1rem;
        margin-top: 3rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor h1, .Article__content-body-post-editor h2, .Article__content-body-post-editor h3, .Article__content-body-post-editor h4, .Article__content-body-post-editor h5, .Article__content-body-post-editor h6 {
        margin-bottom: 1.1rem;
        margin-top: 3.3rem
    }
}

@media(min-width:1420px) {
    .Article__content-body-post-editor h1, .Article__content-body-post-editor h2, .Article__content-body-post-editor h3, .Article__content-body-post-editor h4, .Article__content-body-post-editor h5, .Article__content-body-post-editor h6 {
        margin-bottom: 1.2rem;
        margin-top: 3.5rem
    }
}

.Article__content-body-post-editor h1 .bold, .Article__content-body-post-editor h1 b, .Article__content-body-post-editor h1 strong, .Article__content-body-post-editor h2 .bold, .Article__content-body-post-editor h2 b, .Article__content-body-post-editor h2 strong, .Article__content-body-post-editor h3 .bold, .Article__content-body-post-editor h3 b, .Article__content-body-post-editor h3 strong, .Article__content-body-post-editor h4 .bold, .Article__content-body-post-editor h4 b, .Article__content-body-post-editor h4 strong, .Article__content-body-post-editor h5 .bold, .Article__content-body-post-editor h5 b, .Article__content-body-post-editor h5 strong, .Article__content-body-post-editor h6 .bold, .Article__content-body-post-editor h6 b, .Article__content-body-post-editor h6 strong {
    font-weight: 600
}

.Article__content-body-post-editor h1:first-child, .Article__content-body-post-editor h2:first-child, .Article__content-body-post-editor h3:first-child, .Article__content-body-post-editor h4:first-child, .Article__content-body-post-editor h5:first-child, .Article__content-body-post-editor h6:first-child {
    margin-top: 0
}

.Article__content-body-post-editor h1 {
    font-size: 2.2rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor h1 {
        font-size: 2.3rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor h1 {
        font-size: 2.6rem
    }
}

.Article__content-body-post-editor h2 {
    font-size: 2.1rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor h2 {
        font-size: 2.2rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor h2 {
        font-size: 2.3rem
    }
}

.Article__content-body-post-editor h3 {
    font-size: 2rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor h3 {
        font-size: 2.1rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor h3 {
        font-size: 2.2rem
    }
}

.Article__content-body-post-editor h4 {
    font-size: 1.9rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor h4 {
        font-size: 2rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor h4 {
        font-size: 2.1rem
    }
}

.Article__content-body-post-editor h5 {
    font-size: 1.8rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor h5 {
        font-size: 1.9rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor h5 {
        font-size: 2rem
    }
}

.Article__content-body-post-editor .abstract, .Article__content-body-post-editor .abstractIntroText, .Article__content-body-post-editor .paywall-element > div, .Article__content-body-post-editor aside, .Article__content-body-post-editor blockquote, .Article__content-body-post-editor hr, .Article__content-body-post-editor iframe, .Article__content-body-post-editor img, .Article__content-body-post-editor ol, .Article__content-body-post-editor p, .Article__content-body-post-editor pre, .Article__content-body-post-editor table, .Article__content-body-post-editor ul, .Article__content-body-post-editor > div:not(.paywall-element) {
    margin-bottom: 1.5rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor .abstract, .Article__content-body-post-editor .abstractIntroText, .Article__content-body-post-editor .paywall-element > div, .Article__content-body-post-editor aside, .Article__content-body-post-editor blockquote, .Article__content-body-post-editor hr, .Article__content-body-post-editor iframe, .Article__content-body-post-editor img, .Article__content-body-post-editor ol, .Article__content-body-post-editor p, .Article__content-body-post-editor pre, .Article__content-body-post-editor table, .Article__content-body-post-editor ul, .Article__content-body-post-editor > div:not(.paywall-element) {
        margin-bottom: 1.8rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .abstract, .Article__content-body-post-editor .abstractIntroText, .Article__content-body-post-editor .paywall-element > div, .Article__content-body-post-editor aside, .Article__content-body-post-editor blockquote, .Article__content-body-post-editor hr, .Article__content-body-post-editor iframe, .Article__content-body-post-editor img, .Article__content-body-post-editor ol, .Article__content-body-post-editor p, .Article__content-body-post-editor pre, .Article__content-body-post-editor table, .Article__content-body-post-editor ul, .Article__content-body-post-editor > div:not(.paywall-element) {
        margin-bottom: 2rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .abstract, .Article__content-body-post-editor .abstractIntroText, .Article__content-body-post-editor .paywall-element > div, .Article__content-body-post-editor aside, .Article__content-body-post-editor blockquote, .Article__content-body-post-editor hr, .Article__content-body-post-editor iframe, .Article__content-body-post-editor img, .Article__content-body-post-editor ol, .Article__content-body-post-editor p, .Article__content-body-post-editor pre, .Article__content-body-post-editor table, .Article__content-body-post-editor ul, .Article__content-body-post-editor > div:not(.paywall-element) {
        margin-bottom: 2.2rem
    }
}

@media(min-width:1420px) {
    .Article__content-body-post-editor .abstract, .Article__content-body-post-editor .abstractIntroText, .Article__content-body-post-editor .paywall-element > div, .Article__content-body-post-editor aside, .Article__content-body-post-editor blockquote, .Article__content-body-post-editor hr, .Article__content-body-post-editor iframe, .Article__content-body-post-editor img, .Article__content-body-post-editor ol, .Article__content-body-post-editor p, .Article__content-body-post-editor pre, .Article__content-body-post-editor table, .Article__content-body-post-editor ul, .Article__content-body-post-editor > div:not(.paywall-element) {
        margin-bottom: 2.4rem
    }
}

.Article__content-body-post-editor .copyright {
    font-weight: 600;
    text-align: right
}

.Article__content-body-post-editor .btn--download, .Article__content-body-post-editor .copyright {
    margin: 2.5rem 0
}

@media(min-width:760px) {
    .Article__content-body-post-editor .btn--download, .Article__content-body-post-editor .copyright {
        margin: 2.8rem 0
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .btn--download, .Article__content-body-post-editor .copyright {
        margin: 3rem 0
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .btn--download, .Article__content-body-post-editor .copyright {
        margin: 3.2rem 0
    }
}

@media(min-width:1420px) {
    .Article__content-body-post-editor .btn--download, .Article__content-body-post-editor .copyright {
        margin: 3.4rem 0
    }
}

.Article__content-body-post-editor .btn--download {
    border-radius: .3rem;
    font-size: 1.4rem;
    padding: 1.3rem 2rem 1rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor .btn--download {
        font-size: 1.5rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .btn--download {
        font-size: 1.6rem;
        padding: 1.4rem 2rem 1.1rem
    }
}

@media(min-width:1420px) {
    .Article__content-body-post-editor .btn--download {
        font-size: 1.7rem;
        padding: 1.5rem 2rem 1.2rem
    }
}

.Article__content-body-post-editor img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%
}

.Article__content-body-post-editor iframe, .Article__content-body-post-editor table {
    margin-top: 1rem
}

.Article__content-body-post-editor table {
    font-size: .95em
}

.Article__content-body-post-editor hr {
    border: 0;
    border-bottom: 2px solid #ededed;
    height: 0 !important;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem
}

.Article__content-body-post-editor a:not(.btn) {
    color: #007ac3;
    text-decoration: underline
}

    .Article__content-body-post-editor a:not(.btn):active, .Article__content-body-post-editor a:not(.btn):focus, .Article__content-body-post-editor a:not(.btn):visited {
        color: #007ac3
    }

    .Article__content-body-post-editor a:not(.btn):hover {
        color: #009af6
    }

.Article__content-body-post-editor a:active, .Article__content-body-post-editor a:focus, .Article__content-body-post-editor a:hover {
    outline: 0
}

.Article__content-body-post-editor a.cleanLink {
    font-weight: 400;
    text-decoration: underline
}

.Article__content-body-post-editor a.onefiscaleLink, .Article__content-body-post-editor a.onehseLink, .Article__content-body-post-editor a.onelavoroLink, .Article__content-body-post-editor a.onelegaleLink {
    color: #83b717 !important
}

    .Article__content-body-post-editor a.onefiscaleLink:hover, .Article__content-body-post-editor a.onehseLink:hover, .Article__content-body-post-editor a.onelavoroLink:hover, .Article__content-body-post-editor a.onelegaleLink:hover {
        color: #83b717
    }

.Article__content-body-post-editor a[name] {
    color: inherit;
    font-weight: inherit;
    text-decoration: none
}

    .Article__content-body-post-editor a[name]:hover {
        text-decoration: none
    }

.Article__content-body-post-editor code {
    font-family: Monaco,Consolas,Andale Mono,DejaVu Sans Mono,monospace
}

.Article__content-body-post-editor iframe {
    width: 100%
}

.Article__content-body-post-editor .ipsoaInsights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border: 2px solid #dadada;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem
}

@media(min-width:940px) {
    .Article__content-body-post-editor .ipsoaInsights {
        padding: 2.2rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .ipsoaInsights {
        padding: 2.5rem
    }
}

.Article__content-body-post-editor .ipsoaInsights__title {
    font-size: 1.9rem;
    margin-bottom: 2rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor .ipsoaInsights__title {
        font-size: 2rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .ipsoaInsights__title {
        font-size: 2.1rem
    }
}

.Article__content-body-post-editor .ipsoaInsights__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.Article__content-body-post-editor .ipsoaInsights__list, .Article__content-body-post-editor .ipsoaInsights__list-el {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.Article__content-body-post-editor .ipsoaInsights__list-el {
    margin-bottom: 1.5rem
}

.Article__content-body-post-editor a.ipsoaInsights__list-el-title {
    color: #0c0c0f;
    margin-bottom: .5rem;
    text-decoration: none
}

    .Article__content-body-post-editor a.ipsoaInsights__list-el-title:hover {
        color: #0c0c0f;
        text-decoration: underline
    }

.Article__content-body-post-editor .ipsoaInsights__list-el-author {
    color: #3a3a3a;
    font-size: .9em;
    font-style: italic
}

.Article__content-body-post-editor .oneInsights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #f6f6f6;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights {
        padding: 2.2rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .oneInsights {
        padding: 2.5rem
    }
}

.Article__content-body-post-editor .oneInsights .oneInsights__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #474747;
    font-size: .9em;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase
}

.Article__content-body-post-editor .oneInsights--fiscale, .Article__content-body-post-editor .oneInsights--lavoro, .Article__content-body-post-editor .oneInsights--scadenze {
    padding-bottom: 3.7rem
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights--fiscale, .Article__content-body-post-editor .oneInsights--lavoro, .Article__content-body-post-editor .oneInsights--scadenze {
        padding-bottom: 3.9rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .oneInsights--fiscale, .Article__content-body-post-editor .oneInsights--lavoro, .Article__content-body-post-editor .oneInsights--scadenze {
        padding-bottom: 4.2rem
    }
}

.Article__content-body-post-editor .oneInsights--fiscale:after, .Article__content-body-post-editor .oneInsights--lavoro:after, .Article__content-body-post-editor .oneInsights--scadenze:after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 2rem;
    content: "";
    display: block;
    height: 1.7rem;
    pointer-events: none;
    position: absolute;
    right: 2rem;
    width: 10rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor .oneInsights--fiscale:after, .Article__content-body-post-editor .oneInsights--lavoro:after, .Article__content-body-post-editor .oneInsights--scadenze:after {
        bottom: 2.2rem;
        height: 1.9rem;
        right: 2.2rem;
        width: 11.5rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights--fiscale:after, .Article__content-body-post-editor .oneInsights--lavoro:after, .Article__content-body-post-editor .oneInsights--scadenze:after {
        bottom: 2.5rem;
        height: 2.2rem;
        right: 2.5rem;
        width: 13rem
    }
}

.Article__content-body-post-editor .oneInsights--lavoro .oneInsights__header span {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: .3rem;
    display: inline-block;
    height: 1.8rem;
    margin-bottom: 0;
    margin-left: 1rem;
    position: relative;
    width: 10.5rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor .oneInsights--lavoro .oneInsights__header span {
        height: 2rem;
        width: 12rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights--lavoro .oneInsights__header span {
        height: 2.3rem;
        width: 14rem
    }
}

.Article__content-body-post-editor .oneInsights--fiscale .oneInsights__header span {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: .3rem;
    display: inline-block;
    height: 1.8rem;
    margin-bottom: 0;
    margin-left: 1rem;
    position: relative;
    width: 10.5rem
}

@media(min-width:760px) {
    .Article__content-body-post-editor .oneInsights--fiscale .oneInsights__header span {
        height: 2rem;
        width: 12rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights--fiscale .oneInsights__header span {
        height: 2.3rem;
        width: 14rem
    }
}

.Article__content-body-post-editor .oneInsights .oneInsights__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

    .Article__content-body-post-editor .oneInsights .oneInsights__content p, .Article__content-body-post-editor .oneInsights .oneInsights__content strong {
        font-size: .95em
    }

    .Article__content-body-post-editor .oneInsights .oneInsights__content a.btn {
        -ms-flex-item-align: start;
        align-self: flex-start;
        margin-bottom: 0
    }

.Article__content-body-post-editor .oneInsights--scadenze {
    padding: 3rem 2.5rem 7.5rem
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights--scadenze {
        padding: 3.5rem 3rem 8rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .oneInsights--scadenze {
        padding: 4rem 3rem 9rem
    }
}

.Article__content-body-post-editor .oneInsights--scadenze .onefiscaleLink, .Article__content-body-post-editor .oneInsights--scadenze .onelavoroLink {
    font-size: 1.05em
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .oneInsights--scadenze .onefiscaleLink, .Article__content-body-post-editor .oneInsights--scadenze .onelavoroLink {
        font-size: 1.1em
    }
}

.Article__content-body-post-editor .oneInsights--scadenze .oneInsights__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #0c0c0f;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: none
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights--scadenze .oneInsights__header {
        margin-bottom: 2.8rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .oneInsights--scadenze .oneInsights__header {
        font-size: 1.2em;
        margin-bottom: 3rem
    }
}

.Article__content-body-post-editor .oneInsights .oneInsights__scadenze {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem
}

@media(min-width:940px) {
    .Article__content-body-post-editor .oneInsights .oneInsights__scadenze {
        gap: 5.5rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .oneInsights .oneInsights__scadenze {
        gap: 6rem
    }
}

.Article__content-body-post-editor .tooltipWrapper {
    display: inline-block;
    position: relative
}

    .Article__content-body-post-editor .tooltipWrapper:hover .tooltip {
        opacity: 1;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-transition: .3s linear;
        transition: .3s linear;
        visibility: visible
    }

    .Article__content-body-post-editor .tooltipWrapper:hover .tooltipText {
        cursor: help
    }

    .Article__content-body-post-editor .tooltipWrapper .tooltipText {
        color: #83b717;
        font-weight: 500;
        text-decoration: underline
    }

    .Article__content-body-post-editor .tooltipWrapper .tooltipIcon {
        display: inline-block;
        position: relative
    }

        .Article__content-body-post-editor .tooltipWrapper .tooltipIcon:after {
            background-position: 50%;
            background-repeat: no-repeat;
            background-size: 100% auto;
            content: "";
            display: inline-block;
            height: 1.1em;
            margin: 0 .25em;
            position: relative;
            top: .18em;
            width: 1.1em
        }

    .Article__content-body-post-editor .tooltipWrapper .tooltipIcon--scadenze:after {
        height: 1.25em;
        margin: 0 .5em 0 0;
        width: 1.25em
    }

@media(min-width:940px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltipIcon--scadenze:after {
        height: 1.3em;
        width: 1.3em
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltipIcon--scadenze:after {
        height: 1.35em;
        width: 1.35em
    }
}

.Article__content-body-post-editor .tooltipWrapper .tooltipIcon:hover {
    cursor: pointer
}

.Article__content-body-post-editor .tooltipWrapper .tooltip {
    background: #fff;
    background-attachment: scroll;
    background-clip: border-box;
    background-clip: initial;
    background-origin: padding-box;
    background-origin: initial;
    background-position: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    background-size: 10rem;
    border-radius: 6px;
    bottom: 100%;
    -webkit-box-shadow: 0 0 20px rgba(12,12,15,.4);
    box-shadow: 0 0 20px rgba(12,12,15,.4);
    color: #3a3a3a;
    font-size: .8em;
    font-weight: 400;
    left: -20%;
    line-height: 1.4;
    opacity: .4;
    padding: 4.5rem 1.5rem 1.5rem;
    position: absolute;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    width: 23rem;
    z-index: 1
}

@media(min-width:760px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltip {
        background-position: 2rem 2rem;
        background-size: 13rem;
        font-size: .95em;
        left: -25%;
        padding: 5.5rem 2rem 2rem;
        width: 32rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltip {
        width: 35rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltip {
        background-position: 2.5rem 2.5rem;
        padding: 6.5rem 2.5rem 2.5rem;
        width: 40rem
    }
}

.Article__content-body-post-editor .tooltipWrapper .tooltip > a {
    background-color: #e10f1a;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 1rem;
    padding: .8rem 1.2rem;
    text-decoration: none
}

@media(min-width:760px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltip > a {
        font-size: 1.5rem;
        padding: .9rem 1.2rem
    }
}

@media(min-width:940px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltip > a {
        font-size: 1.6rem;
        padding: 1rem 1.3rem
    }
}

@media(min-width:1220px) {
    .Article__content-body-post-editor .tooltipWrapper .tooltip > a {
        padding: 1rem 1.5rem
    }
}

.Article__content-body-post-editor .tooltipWrapper .tooltip > a:hover {
    background-color: #e10f1a;
    text-decoration: none
}

.Article__content-body-post-editor .tooltipWrapper .tooltip:after {
    border-color: #fff transparent transparent;
    border-style: solid;
    border-width: 12px 12.5px 0;
    content: " ";
    height: 0;
    left: 10%;
    position: absolute;
    top: 100%;
    width: 0
}

.abstract, .abstractIntroText, p.abstract {
    font-weight: 500;
    position: relative
}

.abstract--preview:after, .abstractIntroText--preview:after, p.abstract--preview:after {
    background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));
    background: linear-gradient(180deg,hsla(0,0%,100%,0),#fff);
    bottom: 0;
    content: "";
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    width: 100%
}

.abstract:empty, .abstractIntroText:empty, p.abstract:empty {
    display: none
}

.articlePreview {
    display: block;
    position: relative;
    width: 100%
}

    .articlePreview:after {
        background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));
        background: linear-gradient(180deg,hsla(0,0%,100%,0),#fff);
        bottom: 0;
        content: "";
        display: block;
        height: 50%;
        left: 0;
        position: absolute;
        width: 100%
    }

.wall-premium {
    margin-top: 2.5rem;
    padding-bottom: 2rem
}

.wall-premium, .wall-premium__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.wall-premium__title {
    font-size: 2rem;
    letter-spacing: .01em;
    margin-bottom: 2rem;
    text-align: center
}

    .wall-premium__title span {
        color: #007ac3;
        font-size: 2.4rem
    }

    .wall-premium__title h3 {
        font-family: "Source Serif 4",Arial,Helvetica Neue,Helvetica,sans-serif;
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 0;
        text-align: center
    }

.wall-premium__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:760px) {
    .wall-premium__cards {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-bottom: .8rem
    }
}

@media(min-width:940px) {
    .wall-premium__cards {
        margin-bottom: 1.5rem
    }
}

.wall-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border: 1px solid #ccc;
    border-radius: .4rem;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.1);
    box-shadow: 0 0 3px rgba(0,0,0,.1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
    text-align: center;
    width: 100%
}

@media(min-width:760px) {
    .wall-card {
        font-size: 1.5rem;
        width: 47%
    }

    .wall-premium__cards--single .wall-card {
        width: 80%
    }
}

@media(min-width:940px) {
    .wall-card {
        font-size: 1.55rem
    }
}

@media(min-width:1220px) {
    .wall-card {
        font-size: 1.6rem
    }
}

.wall-card__title {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-bottom: 2rem
}

    .wall-card__title span {
        color: #007ac3;
        display: block;
        font-size: 2rem;
        font-weight: 500
    }

        .Article--hse .wall-card__title span, .wall-card__title span.wall-card__title-hse {
            color: #e10f1a;
            font-size: 1.3em;
            font-weight: 600;
            line-height: 1;
            position: relative
        }

@media(min-width:760px) {
    .Article--hse .wall-card__title span, .wall-card__title span.wall-card__title-hse {
        font-size: 1em
    }
}

@media(min-width:940px) {
    .Article--hse .wall-card__title span, .wall-card__title span.wall-card__title-hse {
        font-size: 1.1em
    }
}

@media(min-width:1220px) {
    .Article--hse .wall-card__title span, .wall-card__title span.wall-card__title-hse {
        font-size: 1.2em
    }
}

@media(min-width:1420px) {
    .Article--hse .wall-card__title span, .wall-card__title span.wall-card__title-hse {
        font-size: 1.4em
    }
}

.wall-card__specs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px
}

    .wall-card__specs span {
        display: block;
        line-height: 1.1;
        margin-bottom: .8rem
    }

.wall-card__specs-price {
    font-size: 2.8rem;
    font-weight: 500
}

@media(min-width:760px) {
    .wall-card__specs-price {
        font-size: 2.6rem
    }
}

@media(min-width:1220px) {
    .wall-card__specs-price {
        font-size: 2.7rem
    }
}

@media(min-width:1420px) {
    .wall-card__specs-price {
        font-size: 2.8rem
    }
}

.wall-card__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

    .wall-card__cta .btn {
        margin-bottom: 0;
        width: 100%
    }

@media(min-width:760px) {
    .wall-card__cta .btn {
        width: 86%
    }
}

@media(min-width:940px) {
    .wall-card__cta .btn {
        width: 100%
    }
}

@media(min-width:1420px) {
    .wall-card__cta .btn {
        width: 86%
    }
}

.wall-card__info {
    color: #828282;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.3;
    margin-top: 2rem;
    padding: 0 10%
}

.wall-premium__footer {
    font-size: 1.6rem;
    text-align: center
}

    .wall-premium__footer a {
        color: #007ac3;
        font-weight: 700
    }

.featureInsights, .featureMostViewed, .indiceScadenze, .oneExpertAI, .sommarioGuide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #f6f6f6;
    border-top: 2px solid #0c0c0f;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2.5rem;
    padding: 2rem 1.8rem
}

@media(min-width:760px) {
    .featureInsights, .featureMostViewed, .indiceScadenze, .oneExpertAI, .sommarioGuide {
        padding: 1.8rem 1.2rem
    }
}

@media(min-width:1220px) {
    .featureInsights, .featureMostViewed, .indiceScadenze, .oneExpertAI, .sommarioGuide {
        padding: 2.2rem 2rem
    }
}

@media(min-width:1420px) {
    .featureInsights, .featureMostViewed, .indiceScadenze, .oneExpertAI, .sommarioGuide {
        padding: 2.2rem
    }
}

.featureInsights__content, .featureMostViewed__content, .indiceScadenze__c, .oneExpertAI__c, .sommarioGuide__c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 1rem
}

    .featureMostViewed__content ul {
        list-style-type: none;
        margin: 0;
        padding: 0
    }

        .featureMostViewed__content ul li {
            line-height: 100%;
            margin: 0 0 2rem;
            padding: 0
        }

@media(min-width:760px) {
    .featureMostViewed__content ul li {
        margin-bottom: 1.5rem
    }
}

.featureMostViewed__content ul li a {
    color: #0c0c0f;
    display: block;
    font-family: "Source Serif 4",Arial,Helvetica Neue,Helvetica,sans-serif;
    font-size: calc(var(--font-size)*.9);
    font-weight: 500;
    line-height: 1.3
}

@media(min-width:760px) {
    .featureMostViewed__content ul li a {
        font-size: calc(var(--font-size)*.85)
    }
}

.indiceScadenze__c, .indiceScadenze__c-acc, .indiceScadenze__c-acc-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.indiceScadenze__c-acc {
    border-bottom: 1px solid #dadada
}

    .indiceScadenze__c-acc:first-child {
        padding-top: 0
    }

        .indiceScadenze__c-acc:first-child .indiceScadenze__c-acc-btn {
            padding-top: .5rem
        }

    .indiceScadenze__c-acc:last-child {
        border-bottom: 0
    }

        .indiceScadenze__c-acc:last-child .indiceScadenze__c-acc-list {
            padding-bottom: 0
        }

.indiceScadenze__c-acc-btn {
    color: #0c0c0f;
    font-size: 1.02em;
    font-weight: 550;
    padding: 1.5rem 0;
    position: relative;
    text-align: left
}

    .indiceScadenze__c-acc-btn:after {
        background-size: 3rem auto;
        content: " ";
        height: 1.2rem;
        position: absolute;
        right: .6rem;
        top: 2rem;
        width: 1rem
    }

.indiceScadenze__c-acc-btn--is-active:after {
    top: 1.4rem;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.indiceScadenze__c-acc-list {
    display: none;
    padding: .5rem 0 1.5rem .5rem
}

    .indiceScadenze__c-acc-list > button {
        color: #007ac3;
        display: block;
        font-size: .92em;
        font-weight: 400;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: left;
        text-decoration: underline
    }

@media(min-width:940px) {
    .indiceScadenze__c-acc-list > button {
        font-size: .96em;
        margin-bottom: 1.2rem
    }
}

.indiceScadenze__c-acc-list > button:hover {
    color: #009af6
}

.indiceScadenze__c-acc-list--is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sommarioGuide__c ul {
    list-style: decimal
}

    .sommarioGuide__c ul li {
        font-size: 1.5rem;
        margin-bottom: .8rem
    }

@media(min-width:760px) {
    .sommarioGuide__c ul li {
        font-size: 1.3rem
    }
}

@media(min-width:940px) {
    .sommarioGuide__c ul li {
        font-size: 1.6rem;
        margin-bottom: 1rem
    }
}

.sommarioGuide__c ul li a, .sommarioGuide__c ul li button {
    border: 0;
    color: #232323;
    font-weight: 500;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-align: left
}

    .sommarioGuide__c ul li a:hover, .sommarioGuide__c ul li button:hover {
        color: #007ac3
    }

.sommarioGuide__c ul li::marker {
    color: #474747;
    font-size: .9em;
    font-weight: 300
}

.sommarioGuide__c ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.oneExpertAI__h {
    color: #0c0c0f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: block;
    font-family: Firava,Arial,Helvetica Neue,Helvetica,sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:760px) {
    .oneExpertAI__h {
        font-size: 1.9rem
    }
}

@media(min-width:940px) {
    .oneExpertAI__h {
        font-size: 2.4rem;
        margin-bottom: 1.2rem
    }
}

@media(min-width:1220px) {
    .oneExpertAI__h {
        font-size: 2.6rem
    }
}

@media(min-width:1420px) {
    .oneExpertAI__h {
        font-size: 2.8rem
    }
}

.oneExpertAI__h:before {
    background: -webkit-gradient(linear,left top,right top,from(#007ac3),color-stop(250%,#83b717));
    background: linear-gradient(90deg,#007ac3,#83b717 250%);
    color: #fff;
    content: "Premium";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: .6em;
    font-weight: 400;
    justify-self: flex-start;
    margin-bottom: 1.6rem;
    padding: .7rem 1.6rem .5rem;
    text-transform: uppercase
}

.oneExpertAI {
    background-color: #fff;
    border-bottom: 1px solid #0c0c0f;
    border-left: 1px solid #0c0c0f;
    border-right: 1px solid #0c0c0f
}

.oneExpertAI__c ul {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0
}

    .oneExpertAI__c ul li {
        color: #232323;
        font-size: 1.5rem;
        margin-bottom: .8rem;
        padding-left: 1.8em;
        position: relative
    }

@media(min-width:760px) {
    .oneExpertAI__c ul li {
        font-size: 1.3rem
    }
}

@media(min-width:940px) {
    .oneExpertAI__c ul li {
        font-size: 1.6rem;
        margin-bottom: 1rem
    }
}

.oneExpertAI__c ul li:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDI0IDI0Ij48ZyBzdHJva2U9IiMwMDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIj48cGF0aCBkPSJNMTMuNSAxMC41IDIxIDNNMTYgM2g1djVNMjEgMTR2NWEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMlY1YTIgMiAwIDAgMSAyLTJoNSIvPjwvZz48L3N2Zz4=);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    content: "";
    display: inline-block;
    height: 1.1em;
    left: 0;
    margin: 0;
    position: absolute;
    top: .18em;
    width: 1.1em
}

.oneExpertAI__c ul li a, .oneExpertAI__c ul li button {
    border: 0;
    color: #007ac3;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-align: left
}

    .oneExpertAI__c ul li a:hover, .oneExpertAI__c ul li button:hover {
        color: #007ac3
    }

.oneExpertAI__c ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.featureShopByArg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #f6f6f6;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem;
    position: relative
}

@media(min-width:1220px) {
    .featureShopByArg {
        padding: 2.5rem
    }
}

@media(min-width:1420px) {
    .featureShopByArg {
        padding: 3rem 2.5rem
    }
}

.featureShopByArg__heading {
    font-size: calc(var(--font-size)*1.05);
    position: relative;
    text-align: center
}

@media(min-width:760px) {
    .featureShopByArg__heading {
        font-size: calc(var(--font-size)*.95)
    }
}

@media(min-width:940px) {
    .featureShopByArg__heading {
        font-size: calc(var(--font-size)*1)
    }
}

@media(min-width:1220px) {
    .featureShopByArg__heading {
        font-size: calc(var(--font-size)*1.05)
    }
}

@media(min-width:1420px) {
    .featureShopByArg__heading {
        font-size: calc(var(--font-size)*1.1)
    }
}

.featureShopByArg__title {
    font-size: calc(var(--font-size)*1.1);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center
}

@media(min-width:760px) {
    .featureShopByArg__title {
        font-size: calc(var(--font-size)*.95)
    }
}

@media(min-width:940px) {
    .featureShopByArg__title {
        font-size: calc(var(--font-size)*1)
    }
}

@media(min-width:1220px) {
    .featureShopByArg__title {
        font-size: calc(var(--font-size)*1.05)
    }
}

@media(min-width:1420px) {
    .featureShopByArg__title {
        font-size: calc(var(--font-size)*1.1)
    }
}

.featureShopByArg__title span {
    display: block;
    font-weight: 700
}

.featureShopByArg__btn {
    margin: 0
}

.featureShopByArg__bg {
    opacity: 1
}

    .featureShopByArg__bg, .featureShopByArg__bg img {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%
    }

        .featureShopByArg__bg img {
            font-family: "object-fit:cover";
            -o-object-fit: cover;
            object-fit: cover
        }

.featureInsightsFull {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border: 1px solid #0c0c0f;
    border-top: 3px solid #0c0c0f;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4rem;
    margin-top: 2rem;
    padding: 3.5rem 1rem 1.5rem;
    position: relative
}

@media(min-width:760px) {
    .featureInsightsFull {
        padding: 3.5rem 1.8rem 2.5rem
    }
}

@media(min-width:940px) {
    .featureInsightsFull {
        padding: 3.5rem 1.5rem 3rem
    }
}

@media(min-width:1220px) {
    .featureInsightsFull {
        margin-bottom: 4.5rem;
        padding: 5rem 2.5rem 3.5rem
    }
}

@media(min-width:1420px) {
    .featureInsightsFull {
        padding: 5.5rem 3rem 4rem
    }
}

.featureInsightsFull > div:last-child, .featureInsightsFull > section:last-child {
    margin-bottom: 0
}

.featureInsightsFull__header {
    background-color: #fff;
    display: inline-block;
    left: 50%;
    padding: 0 1.5rem;
    position: absolute;
    right: auto;
    text-align: center;
    top: -2.5rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media(min-width:760px) {
    .featureInsightsFull__header {
        top: -2.4rem
    }
}

@media(min-width:940px) {
    .featureInsightsFull__header {
        top: -2.8rem
    }
}

.featureInsightsFull__header h3 {
    max-width: none;
    white-space: nowrap
}

.featureGuideFull, .featureNotizieFull, .featurePodcastFull {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #f6f6f6;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem 1.8rem;
    position: relative
}

@media(min-width:760px) {
    .featureGuideFull, .featureNotizieFull, .featurePodcastFull {
        margin-bottom: 3rem;
        padding: 0 2rem 2.3rem
    }
}

@media(min-width:940px) {
    .featureGuideFull, .featureNotizieFull, .featurePodcastFull {
        margin-bottom: 3.5rem;
        padding: 0 2.5rem 2.5rem
    }
}

@media(min-width:1220px) {
    .featureGuideFull, .featureNotizieFull, .featurePodcastFull {
        padding: 0 2.8rem 3rem
    }
}

@media(min-width:1420px) {
    .featureGuideFull, .featureNotizieFull, .featurePodcastFull {
        padding: 0 3rem 3.5rem
    }
}

.featurePodcastFull {
    background-color: #5d5d5d;
    border-radius: 10px
}

.featureNotizieFull {
    background-color: transparent;
    border: 1px solid #dadada
}

.featureGuideFull__header, .featureNotizieFull__header, .featurePodcastFull__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 0
}

@media(min-width:1220px) {
    .featureGuideFull__header, .featureNotizieFull__header, .featurePodcastFull__header {
        padding: 2.5rem 0
    }
}

.featureGuideFull__header h3, .featureNotizieFull__header h3, .featurePodcastFull__header h3 {
    margin: 0;
    max-width: 55%;
    padding: 0
}

@media(min-width:1220px) {
    .featureGuideFull__header h3, .featureNotizieFull__header h3, .featurePodcastFull__header h3 {
        min-width: 65%
    }
}

.featureGuideFull__header h3 svg, .featureNotizieFull__header h3 svg, .featurePodcastFull__header h3 svg {
    height: 2.5rem;
    position: relative;
    top: .2rem;
    width: 3rem
}

.featureGuideFull__header a, .featureNotizieFull__header a, .featurePodcastFull__header a {
    color: #007ac3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    margin-left: auto;
    position: relative
}

@media(min-width:1220px) {
    .featureGuideFull__header a, .featureNotizieFull__header a, .featurePodcastFull__header a {
        font-size: 1.5rem
    }
}

@media(min-width:1420px) {
    .featureGuideFull__header a, .featureNotizieFull__header a, .featurePodcastFull__header a {
        font-size: 1.6rem
    }
}

.featureGuideFull__header a:hover, .featureNotizieFull__header a:hover, .featurePodcastFull__header a:hover {
    color: #007ac3;
    text-decoration: underline
}

.featureGuideFull__header a:after, .featureNotizieFull__header a:after, .featurePodcastFull__header a:after {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    content: "";
    display: inline-block;
    height: 1.4rem;
    margin-left: .5rem;
    position: relative;
    width: 1.3rem
}

@media(min-width:940px) {
    .featureGuideFull__header a:after, .featureNotizieFull__header a:after, .featurePodcastFull__header a:after {
        top: .1rem
    }
}

.featurePodcastFull__header h3 {
    color: #fff
}

    .featurePodcastFull__header h3 svg path {
        fill: #fff
    }

.featureGuideFull__entries, .featureNotizieFull__entries, .featurePodcastFull__entries {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -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
}

@media(min-width:760px) {
    .featureGuideFull__entries, .featureNotizieFull__entries, .featurePodcastFull__entries {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.featureGuideFull__entries-tile, .featurePodcastFull__entries-tile, article.featureNotizieFull__entries-article {
    background-color: #fff;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    position: relative;
    width: 100%
}

@media(min-width:760px) {
    .featureGuideFull__entries-tile, .featurePodcastFull__entries-tile, article.featureNotizieFull__entries-article {
        margin-bottom: 0;
        padding: 1.5rem 1.4rem;
        width: 24%
    }
}

@media(min-width:940px) {
    .featureGuideFull__entries-tile, .featurePodcastFull__entries-tile, article.featureNotizieFull__entries-article {
        padding: 1.5rem 2rem;
        width: 23.5%
    }
}

.featureGuideFull__entries-tile:last-child, .featurePodcastFull__entries-tile:last-child, article.featureNotizieFull__entries-article:last-child {
    margin-bottom: 0
}

.featurePodcastFull__entries-tile {
    background-color: #757575;
    border-radius: 8px
}

article.featureNotizieFull__entries-article {
    background-color: #f6f6f6
}

    article.featureNotizieFull__entries-article.article--premium {
        padding-top: 0
    }

.featurePodcastFull__entries-tile-title, .featurePodcastFull__entries-tile-title a, .featurePodcastFull__entries-tile-title:active, .featurePodcastFull__entries-tile-title:focus, .featurePodcastFull__entries-tile-title:hover, .featurePodcastFull__entries-tile-title:visited {
    color: #fff
}

.featureGuideFull__entries-tile-author, .featurePodcastFull__entries-tile-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1rem
}

@media(min-width:940px) {
    .featureGuideFull__entries-tile-author, .featurePodcastFull__entries-tile-author {
        margin-bottom: 1.2rem
    }
}

.featureGuideFull__entries-tile-author figure, .featurePodcastFull__entries-tile-author figure {
    -ms-flex-negative: 0;
    border-radius: .2rem;
    flex-shrink: 0;
    height: 2rem;
    margin-right: .5rem;
    overflow: hidden;
    position: relative;
    width: 2rem
}

    .featureGuideFull__entries-tile-author figure img, .featurePodcastFull__entries-tile-author figure img {
        font-family: "object-fit:cover","object-fit: cover;";
        height: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute;
        top: 0;
        width: 100%
    }

.featureGuideFull__entries-tile-author span, .featurePodcastFull__entries-tile-author span {
    color: #474747;
    display: inline-block;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 380;
    line-height: 1.15
}

@media(min-width:760px) {
    .featureGuideFull__entries-tile-author span, .featurePodcastFull__entries-tile-author span {
        font-size: 1.35rem
    }
}

@media(min-width:1220px) {
    .featureGuideFull__entries-tile-author span, .featurePodcastFull__entries-tile-author span {
        font-size: 1.4rem
    }
}

@media(min-width:1420px) {
    .featureGuideFull__entries-tile-author span, .featurePodcastFull__entries-tile-author span {
        font-size: 1.45rem
    }
}

.featurePodcastFull__entries-tile-author span {
    color: #fff
}

.featureHSEFull {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #ebedf4;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3rem;
    padding: 0 1.5rem 2rem
}

@media(min-width:760px) {
    .featureHSEFull {
        padding: 0 1.5rem 1.5rem
    }
}

@media(min-width:940px) {
    .featureHSEFull {
        margin-bottom: 3.5rem;
        padding: 0 2.5rem 2.5rem
    }
}

.featureHSEFull__bg {
    background-position: -3rem -.5rem;
    background-repeat: no-repeat;
    background-size: 75% auto;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%
}

@media(min-width:760px) {
    .featureHSEFull__bg {
        background-position: -1rem -3rem;
        background-size: 60% auto
    }
}

@media(min-width:940px) {
    .featureHSEFull__bg {
        background-position: -4rem -6rem
    }
}

@media(min-width:1220px) {
    .featureHSEFull__bg {
        background-position: -5rem -7rem
    }
}

.featureHSEFull__bg:before {
    background: -webkit-gradient(linear,left bottom,left top,color-stop(40%,#ebedf4),to(rgba(235,237,244,.6)));
    background: linear-gradient(0deg,#ebedf4 40%,rgba(235,237,244,.6));
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.featureHSEFull__header {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5rem 0 1.5rem
}

@media(min-width:760px) {
    .featureHSEFull__header {
        padding: 2rem 0 1.5rem
    }
}

@media(min-width:940px) {
    .featureHSEFull__header {
        padding: 2.2rem 0 1.8rem
    }
}

@media(min-width:1220px) {
    .featureHSEFull__header {
        padding: 2.4rem 0 2rem
    }
}

.featureHSEFull__header h3 {
    color: #e10f1a;
    font-family: Firava,Arial,Helvetica Neue,Helvetica,sans-serif;
    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative
}

@media(min-width:760px) {
    .featureHSEFull__header h3 {
        font-size: 4.5rem
    }
}

@media(min-width:940px) {
    .featureHSEFull__header h3 {
        font-size: 4.8rem
    }
}

@media(min-width:1220px) {
    .featureHSEFull__header h3 {
        font-size: 5.2rem
    }
}

@media(min-width:1420px) {
    .featureHSEFull__header h3 {
        font-size: 5.4rem
    }
}

.featureHSEFull__header .btn {
    background-color: transparent;
    margin: 0 0 0 auto;
    position: relative
}

.featureHSEFull__entries {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1
}

@media(min-width:760px) {
    .featureHSEFull__entries {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.featureHSEFull__entries-article {
    background-color: #fff;
    padding: 1.6rem 1.4rem;
    width: 100%
}

@media(min-width:760px) {
    .featureHSEFull__entries-article {
        margin-bottom: 0 !important;
        width: 32%
    }
}

@media(min-width:940px) {
    .featureHSEFull__entries-article {
        padding: 2rem 1.7rem 1.8rem
    }
}

@media(min-width:1220px) {
    .featureHSEFull__entries-article {
        padding: 2rem
    }
}

.featureHSEFull__entries-article .article__body-subtitle {
    color: #0c0c0f
}

.featureHSEFull__entries-article:last-child {
    margin-bottom: 0
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-transition-timing-function: ease;
    -webkit-transition-timing-function: initial;
    transition-timing-function: ease;
    -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-slide {
    -ms-flex-negative: 0;
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

    .swiper-autoheight .swiper-wrapper {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transition-property: height,-webkit-transform;
        transition-property: height,-webkit-transform;
        transition-property: transform,height;
        transition-property: transform,height,-webkit-transform
    }

.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

    .swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    -ms-scroll-snap-type: none;
    scroll-snap-type: none
}

    .swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: none
    }

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-left: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-top: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0,0,0,.15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(transparent));
    background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(transparent));
    background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));
    background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(transparent));
    background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent)
}

.swiper-lazy-preloader {
    border: 4px solid #007aff;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    height: var(--swiper-navigation-size);
    margin-top: -22px;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: 50%;
    top: var(--swiper-navigation-top-offset,50%);
    width: 27px;
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
    justify-content: center
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        cursor: auto;
        opacity: .35;
        pointer-events: none
    }

    .swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
        cursor: auto;
        opacity: 0;
        pointer-events: none
    }

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next svg, .swiper-button-prev svg {
    font-family: "object-fit:contain";
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform-origin: center;
    transform-origin: center;
    width: 100%
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px;
    right: var(--swiper-navigation-sides-offset,10px)
}

    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: "next"
    }
