html {
}

body {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: rgba(0,0,0,0.85);
    font-weight: 400;
    line-height: 140%;
    position: relative;
}

a {
    color: rgb(120,120,120);
}

strong, b {
    font-weight: 700;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    display: block;
    line-height: 125%;
    text-wrap: balance;
}

h1 {
    font-size: 36px;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: var(--global-text-color-dark);
}
h2 {
    font-size: 24px;
    margin-bottom: 0.25em;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 17px;
}

p {
    margin-bottom: 0.8em;
}

h2.divider {
    position: relative;
    text-align: center;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 25px;
}

h2.divider:before {
    content: "";
    width: 100%;
    height: 15px;
    background-color: #D3D3D3;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

h2.divider.dark:before {
    background-color: var(--global-color-pink);
}

h2.divider span {
    display: inline-block;
    background-color: white;
    padding: 3px 35px;
    margin-top: -10px;
    line-height: 100%;
}


.divider-lined {
    width: 100%;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    padding: 5px 3px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: #404040;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    text-align: center;
}

.divider-line-single {
    width: 100%;
    border-bottom: 1px solid #b2b2b2;
    padding: 5px 3px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: #404040;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    text-align: center;
}

p.divider-intro {
    text-align: center;
    margin-bottom: 35px;
}

figure {
    margin: 0;
}

.content {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 0 20px;
    margin: 0 auto;
}

main {
    padding-top: 130px;
    position: relative;
    margin-bottom: 70px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: var(--global-color-pink);
    color: white;
    opacity: 0.98;
}
html:lang(de) header {
    background-color: white;
    color: var(--global-color-pink);
}

header .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header a.logo {
    display: block;
}

header a.logo img {
    width: 150px;
    margin: 10px 0 5px 10px;
}

header nav {
    display: none;
}

header.collapsed a.burger {
    margin-top: 5px;
}

header.collapsed a.logo img {
    width: 100px;
    margin: 10px 0 5px 10px;
}

a.burger {
    display: block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 5px 0 5px 0;
    width: 30px;
    height: auto;
}

a.burger span {
    display: block;
    width: 100%;
    margin-bottom: 7px;
    height: 0;
    border-bottom: 3px solid white;
}
html:lang(de) a.burger span {
    border-bottom: 3px solid var(--global-color-pink);
}
a.burger.toggled span:first-child {
    transform: translateY(10px) rotate(45deg);
}
a.burger.toggled span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}
a.burger.toggled span {
    transform-origin: center center 0;
}
a.burger.toggled span:nth-child(2) {
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}



.ad {
    display: block;
    text-align: center;
    color: #808080;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.startpage-container {
    margin-bottom: 35px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 30px;
    row-gap: 30px;
}

.grid-item {
    display: flex;
    align-items: stretch;
    align-content: stretch;
}

.story-teaser {
    width: 100%;
    background-color: var(--global-bg-color-light);
    border-radius: 5px;
    min-height: 380px;
}

.story-teaser figure {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    inset: 0;
    display: block;
}

.story-teaser figure a {
    display: block;
}

.story-teaser figure:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.story-teaser .category:before {
    background-image: url('/styles/icons/chevrons-right.svg');
    width: 18px;
    height: 18px;
    content: "";
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 24px;
}
html:lang(en) .story-teaser .category:before {
    filter: invert(26%) sepia(68%) saturate(6511%) hue-rotate(324deg) brightness(99%) contrast(88%);
}
html:lang(de) .story-teaser .category:before {
    filter: invert(22%) sepia(96%) saturate(2227%) hue-rotate(186deg) brightness(95%) contrast(104%);
}
.story-teaser-default .category {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: white;
    z-index: 20;
}

.story-teaser figure img {
    width: 100%;
    aspect-ratio: 320 / 250;
    object-fit: cover;
    display: block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.story-teaser .text {
    padding: 15px 20px;
}

.story-teaser .text .headline {
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
}

.story-teaser .text .headline a {
    color: black;
}

.story-teaser .text .subheadline {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 0;
}

.story-teaser .text .date {
    font-size: 13px;
    line-height: 130%;
    color: var(--global-text-color-light);
    margin-bottom: 5px;
}

.story-teaser-overlay {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 420px;
    overflow: hidden;
}

.story-teaser-overlay img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px;
    transition-duration: 3s;
}

.story-teaser-overlay:hover img {
    transform: scale(110%) rotate(-2deg);
}


.story-teaser-overlay:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 10;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.story-teaser-overlay > a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
}

.story-teaser-overlay .text {
    color: white;
    position: absolute;
    bottom: 0;
    z-index: 100;
}

.story-teaser-overlay .text .headline {
    margin-top: 10px;
}

.story-teaser-overlay .text .headline a {
    color: white;
}

.quote-teaser {
    background-color: var(--global-color-pink);
    color: white;
    text-align: center;
    font-size: 22px;
    line-height: 135%;
    min-height: 420px;
    padding: 35px;
    font-family: 'Bodoni Moda', serif;
    border-radius: 5px;
    width: 100%;
}

.quote-teaser a {
    color: white;
}

.quote-teaser svg {
    width: 50px;
    margin-bottom: 20px;
}

.custom-teaser {
    width: 100%;
    text-align: center;
    color: white;
    padding: 35px;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.custom-teaser img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px;
    transition-duration: 3s;
}

.custom-teaser:hover img {
    transform: scale(120%) rotate(-3deg);
}

.custom-teaser .text-wrapper {
    color: white;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    z-index: 30;
}

.custom-teaser span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.custom-teaser .prehead {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-teaser .headline {
    font-size: 24px;
    font-weight: bold;
    line-height: 130%;
}

.custom-teaser.dark:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 10;
}

.video-teaser {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    padding-bottom: 62%;
    height: 0;
    background-color: black;
}

.video-teaser iframe {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    padding-bottom: 62%;
    height: 0;
    background-color: black;
    overflow: hidden;
}

.video-placeholder img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    filter: brightness(.8) blur(2px);
}

.video-placeholder .video-privacy-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 14px;
    line-height: 120%;
}

.video-placeholder .video-privacy-info h3 {
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.video-placeholder .video-privacy-info p.description {
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.video-placeholder .video-privacy-info .video-privacy-info-small {
    font-size: 12px;
    line-height: 120%;
}

.video-placeholder .video-privacy-info .video-privacy-info-small p {
    margin-bottom: 0.3em;
    opacity: 0.8;
}

.feature-swiper-container .swiper-pagination {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: auto;
    width: auto;
    z-index: 100;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--global-bg-color-light);
    opacity: 1;
    margin-left: 3px;
}

.swiper-pagination-bullet-active {
    background: var(--global-color-pink) !important;
}

.feature-swiper-container .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: white;
    margin-left: 5px;
}

button,
a.button {
    display: inline-block;
    background-color: var(--global-color-pink);
    color: white;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 16px;
    line-height: 100%;
    border: none;
}

a.button-small {
    display: inline-block;
    color: var(--global-color-pink);
    padding: 5px 10px;
    font-weight: normal;
    font-size: 13px;
    border: 1px solid var(--global-color-pink);
    border-radius: 3px;
    line-height: 100%;
}

a.button-small.grey {
    color: var(--global-text-color-light);
    border-color: #B2B2B2;
}

a.button-small.grey:hover {
    border-color: var(--global-text-color-light);
}

a.button-small.grey.selected {
    background-color: var(--global-color-pink);
    border-color: var(--global-color-pink);
    color: white;
}

ul.tags li {
    margin-bottom: 10px;
}

.banner {
    display: block;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}

.cube-banner-wrapper .swiper-slide {
    width: 320px;
    height: 420px;
}

.cube-banner-wrapper {
    position: relative;
    width: 320px;
    height: 420px;
}

.cube-banner-wrapper .swiper-slide img {
    width: 100%;
}

.swiper-cube .swiper-cube-shadow {
    opacity: 0.2;
}

.feature-swiper-container {
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.feature-swiper-container {

}

.feature-swiper-container .swiper-slide {
    position: relative;
    border-radius: 5px;
}

.feature-swiper-container .swiper-slide img {
    display: block;
    border-radius: 5px;
}

.feature-swiper-container .swiper-slide:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
    z-index: 10;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.feature-swiper-container .swiper-slide .slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 100px 20px 20px 20px;
    color: black;
    z-index: 20;
    background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%,  rgba(255,255,255,0.8) 50%, transparent 100%);
}

.feature-swiper-container .swiper-slide .slide-text .category:before {
    background-image: url('/styles/icons/chevrons-right.svg');
    width: 18px;
    height: 18px;
    content: "";
    background-position: left center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 8px;
    vertical-align: -2px;
}
.feature-swiper-container .swiper-slide .slide-text .category {
    font-weight: 600;
    color: var(--global-color-pink)
}

html:lang(en) .feature-swiper-container .swiper-slide .slide-text .category:before {
    filter: invert(26%) sepia(68%) saturate(6511%) hue-rotate(324deg) brightness(99%) contrast(88%);
}
html:lang(de) .feature-swiper-container .swiper-slide .slide-text .category:before {
    filter: invert(22%) sepia(96%) saturate(2227%) hue-rotate(186deg) brightness(95%) contrast(104%);
}

.feature-swiper-container .swiper-slide .slide-text .headline {
    font-size: 22px;
    font-weight: 700;
    line-height: 125%;
    margin-top: 10px;
}

.feature-swiper-container .swiper-slide .slide-text .description {
    margin-bottom: 5px;
}

#skyscraper-left-wrapper,
#skyscraper-right-wrapper {
    display: none;
}

/* NEWS */

.news-swiper-container {
    overflow: hidden;
    margin-bottom: 30px;
}
.news-swiper-container .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.story-news-teaser {
    display: block;
    width: 100%;
    width: 230px;
    background-color: var(--global-bg-color-light);
    border-radius: 5px;
    position: relative;
    color: black;
    margin-right: 33.33px;
    height: auto;
}

.story-news-teaser img {
    width: 100%;
}

.story-news-teaser > img {
    aspect-ratio: 230 / 120;
    object-fit: cover;
}

.story-news-teaser div.logo-overlay {
    position: absolute;
    top: 90px;
    left: 0;
    width: 115px;
    height: 50px;
    background-color: white;
    text-align: center;
}

.story-news-teaser div.logo-overlay img {
    max-width: 100px;
    max-height: 35px;
    width: auto;
    margin: 7px 10px;
}

.story-news-teaser .text {
    padding: 20px;
}

.story-news-teaser .text .headline {
    font-size: 14px;
    font-weight: bold;
    line-height: 130%;
}

.story-news-teaser .text .manufacturer-name {
    margin-top: 15px;
    font-size: 13px;
    line-height: 130%;
    color: var(--global-text-color-light);
}

/* Hersteller */

.manufacturer-swiper-container {
    overflow: hidden;
    margin-bottom: 30px;
}
.manufacturer-swiper-container .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.manufacturer-teaser {
    display: block;
    width: 100%;
    width: 230px;
    background-color: var(--global-bg-color-light);
    border-radius: 5px;
    position: relative;
    color: black;
    margin-right: 25px;
    height: auto;
}

.manufacturer-teaser .premium {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    padding: 4px 8px;
    letter-spacing: 1px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}

.manufacturer-teaser img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.manufacturer-teaser div.image-placeholder {
    height: 120px;
    background-color: #DFDFDF;
}

.manufacturer-teaser div.logo-overlay {
    position: absolute;
    top: 90px;
    left: 0;
    width: 115px;
    height: 50px;
    background-color: white;
    text-align: center;
}

.manufacturer-teaser div.logo-overlay img {
    max-width: 100px;
    max-height: 35px;
    width: auto;
    margin: 7px 10px;
    object-fit: contain;
}

.manufacturer-teaser .text {
    padding: 20px;
}

.manufacturer-teaser .text .headline {
    font-size: 13px;
    font-weight: bold;
    line-height: 130%;
    margin-top: 10px;
}

.manufacturer-teaser .text .address {
    font-size: 13px;
    line-height: 130%;
}

.manufacturer-teaser .text .keywords {
    font-size: 13px;
    line-height: 130%;
    color: var(--global-text-color-light);
    margin-bottom: 0;
}

.manufacturer-teaser .text .manufacturer-name {
    margin-top: 15px;
    font-size: 13px;
    line-height: 130%;
    color: var(--global-text-color-light);
}

.news-swiper-container .swiper-pagination,
.manufacturer-swiper-container .swiper-pagination {
    margin: 20px auto 5px auto;
    position: relative;
}

/* Ausgabe */
.issue-list {
    margin-top: 3em;
}
.issue-list .item .image img{
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}

.issue-list .item h2 {
    font-size: 20px;
}

/* Footer */

footer {
    background-color: #000000;
    color: white;
}
html:lang(de) footer {
    background-color: var(--global-color-pink);
}
footer a {
    color: white;
}

.flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.body img {
    max-width: 100%;
}

article h3 {
    margin: 20px 0 10px 0;
}

article .story-meta {
    width: 100%;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    padding: 5px 3px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #404040;
    font-weight: 300;
    margin: 20px 0;
}

article .story-meta img.author-portrait {
    width: 40px;
    border-radius: 50%;
    margin-right: 20px;
}

article .intro-image {
    width: 100%;
    position: relative;
}

article .intro-image img {
    width: 100%;
}

article .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 20px 0;
}

article .gallery a {
    width: 19%;
    position:relative;
    display: block;
    line-height: 100%;
}

article .gallery a:hover:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    background-image: url('/styles/icons/arrows-maximize.svg');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.9;
}

article .gallery a img {
    width: 100%;
}

article figure.story-content-image {
    margin: 20px 0;
}

article figure.story-content-image img {
    width: 100%;
}

article figure.intro-image {
    margin-bottom: 20px;
}

div.videowrapper {
    width: 100%;
    margin-bottom: 20px;
}

div.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


figure .source,
figure .caption {
    font-size: 13px;
    color: #808080;
    margin-bottom: 3px;
}

.manufacturer-box h5 {
    margin-bottom: 1em;
}

.manufacturer-box img.logo {
    max-width: 200px;
    max-height: 100px;
    margin-bottom: 1em;
}

.article-context .banner {
    margin-top: 30px;
}

.fixed-share-buttons {
    position: fixed;
    right: 0px;
    top: 300px;
    z-index: 1000;
}

.fixed-share-buttons ul.wj-share-buttons {
    position: relative;
}

.fixed-share-buttons ul.wj-share-buttons:before {
    content: 'Share';
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -20px;
    display: block;
}

.fixed-share-buttons ul li a {
    margin-bottom: 5px;
    margin-right: 5px;
}

.category-header {
    text-align: center;
    margin-bottom: 35px;
}

.category-header .intro {
}

.manufacturer-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.manufacturer-list .manufacturer-teaser {
    margin-bottom: 20px;
}

.manufacturer-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 30px;
}

.manufacturer-filters .filter {
    display: block;
    background-color: var(--global-bg-color-light);
    border-radius: 5px;
    position: relative;
    color: black;
    height: auto;
    padding: 20px;
    width: clamp(200px, 100%, 320px);
}

.small-header {
    color: var(--global-text-color-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
}

.small-header i {
    font-size: 16px;
    margin-right: 5px;
}

.filter h3.small-header {
    display: block;
    margin-bottom: 20px;
}

.filter ul {
    display: inline-block;
    margin-bottom: 20px;
}

.filter ul li {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.filter ul.manufacturer-category-filter li {
    display: block;
}

.manufacturer-box {
    margin-bottom: 35px;
}

section.search form {
    text-align: center;
    margin-top: 100px;
}

input[type=search] {
    font-size: 20px;
    width: 15em;
    font-weight: bold;
    border: 3px solid var(--global-color-pink);
    margin-right: 20px;
    padding: 5px 20px;
    border-radius: 20px;
}

input[type=search]::placeholder {
    font-weight: 400;
    font-size: 16px;
}

form.manufacturer-search input[type=search] {
    font-size: 16px;
    width: 15em;
    font-weight: bold;
    border: 2px solid var(--global-color-pink);
    margin-right: 20px;
    padding: 3px 20px;
    border-radius: 20px;
}

.team-item {
    text-align: center;
}
.team-item .body {
    text-align: center;
    line-height: 150%;
}

.team-item .body h3 {
    margin: 10px 0;
}

.team-item img {
    border-radius: 50%;
}



/*******************************************/
/* Responsive-Navigation
/*******************************************/

.sidr-open #sidr-body-overlay {
    display: block;
}

#sidr-body-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999998;
}

.sidr {
    background-color: var(--global-color-pink);
    box-shadow: none;
    color: white;
    font-size: 17px;
    padding-top: 30px;
}

.sidr h3 {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

.sidr ul {

}

.sidr ul:first-of-type {

}

.sidr ul li {
    line-height: 36px;
}

.sidr ul li a {
    color: white;
    font-weight: 700;
}

.sidr ul li a, .sidr ul li span {
    color: white;
    display: block;
    padding: 0 15px;
    text-decoration: none;
}

.sidr ul.sidr-class-top li a {
    color: rgb(180, 180, 180);
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.sidr ul.sidr-class-categories li a {
    font-weight: 600;
}

.sidr ul li.sidr-class-selected a {
    color: black;
}

.sidr ul.sidr-class-language-switch li {
    display: inline-block;
    font-weight: 600;
}

.sidr ul.sidr-class-language-switch li:last-child a {
    padding-left: 0;
}

.sidr form {
    margin: 30px 15px 30px 15px;
}

.manufacturer-box address {
    margin-bottom: 1em;
}

form.default {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

form.default div.contact_manufacturer {
    width: 100%;
}

form.default div.contact_info,
form.default div.contact_address,
form.default div.contact_global {
    width: calc((100% - 30px) / 2);
}

form.default input {
    width: 100%;
}

form.default textarea {
    height: 100px;
}

section.newsletter-form {
    text-align: center;
}

form.newsletter-subscribe {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    align-items: flex-start;
    align-content: flex-start;
    margin-top: 30px;
}

form.default div.field-wrapper {
    width: 100%;
}

form.newsletter-subscribe button {
    margin: 0 auto;
}

footer .social {
    text-align: center;
}

footer .social a {
    font-size: 32px;
    color: white;
    display: inline-block;
    margin: 30px;
}

footer .footer-description {
    text-align: center;
    font-size: 14px;
    line-height: 130%;
}

footer .footer-description h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.manufacturer-view .manufacturer-logo {
    width: 50%;
    max-width: 250px;
}

article.single div.sidenote {
    padding: 20px;
    background-color: var(--global-color-pink);
    color: white;
    font-family: 'Bodoni Moda', serif;
    position: relative;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
}

article.single div.sidenote:before {
    content: '';
    background-image: url('/styles/images/quote.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 20px auto;
}

.banner.banner-tablet,
.banner.banner-desktop {
    display: none;
}

div.related-article-list {
    float: none;
    padding: 15px 0px 25px 0px;
    margin: 10px 0 30px 0;
    width: 100%;
    border-top: 3px solid var(--global-color-pink);
    border-bottom: 3px solid var(--global-color-pink);
}

div.related-article-list > p {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0.5em;
    margin-top: 0;
}

div.related-article-list div.related-article {
    margin-top: 15px;
    line-height: 100%;
    display: flex;
    flex-direction: row;
}

div.related-article-list div.related-article img {
    object-fit: cover;
    width: 55px;
    height: 55px;
    margin-right: 10px;
    border-radius: 5px;
}

div.related-article-list div.related-article div.text {
}

div.related-article-list div.related-article .prehead {
    font-size: 13px;
}

div.related-article-list div.related-article .prehead a {
    color: var(--global-text-color-light);
}

div.related-article-list div.related-article h3 {
    font-size: 14px;
    margin-top: 3px;
    margin-bottom: 0;
    line-height: 130%;
}

div.related-article-list div.related-article h3 a {
    color: black;
}

img.manufacturer-intro {
    width: 100%;
    margin-bottom: 2em;
}


@media (max-width: 480px) {
    .grid-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (min-width: 481px) and (max-width: 959px) {
    .grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .grid-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}