:root {
    --yellow: #FFE01A;
    --yellow-alt: #D5A700;
    --orange: #FF6A3D;
    --orange-alt: #DB4C20;
    --green: #93E515;
    --green-alt: #2B8B06;
    --blue: #00EAFF;
    --blue-alt: #01B6D2;
    --pink: #F01891;
    --pink-alt: #AC1068;
    --violett: #7C4DFF;
    --violett-alt: #5C35B3;
    --text-color: #12141C;
    --white: #FBFAF7;
}

/* latin */
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://bmagcdn.blob.core.windows.net/static/notosans/noto-sans-normal.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    font-size: 16px;
    line-height:1.778em;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-weight:500;
    color: #12141C;
    background: var(--white);
    overflow-x: hidden;
}

h1 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2em;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom:16px;

    span{
        font-size: 1.75rem;
        font-weight: 800;
    }
}

h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2em;
    text-wrap: balance;
    text-transform: uppercase;
    margin-bottom:20px;

    &.subhead{
        font-size: .875rem;
        font-weight:400
    }
}

h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
    text-wrap: balance;
}

h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4em;
    text-wrap: balance;
}

h5 {
    font-family: 'Noto Sans', sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.2em;
    text-wrap: balance;
}

header {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;

    p{
        text-transform:uppercase;
        font-size:.875rem;
    }
}

p {
    margin-bottom: calc((1.5em - 1em) * 2 + 1em);
    line-height: 1.4em;
    font-weight: 400;
}

.teaser-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
}

strong, .paragraph-strong {
    font-weight: 600;
}

.bg-yellow {
    background-color: var(--yellow);
}
.bg-yellow-alt {
    background-color: var(--yellow-alt);
}
.bg-orange {
    background-color: var(--orange);
}
.bg-orange-alt {
    background-color: var(--orange-alt);
}
.bg-green {
    background-color: var(--green);
}
.bg-green-alt {
    background-color: var(--green-alt);
}
.bg-blue {
    background-color: var(--blue);
}
.bg-blue-alt {
    background-color: var(--blue-alt);
}
.bg-pink {
    background-color: var(--pink);
}
pink-alt {
    background-color: var(--pink-alt);
}
.bg-violett {
    background-color: var(--violett);
}
.bg-violett-alt {
    background-color: var(--violett-alt);
}

.color-yellow {
    color: var(--yellow);
}

.color-yellow-alt {
    color: var(--yellow-alt);
}

.color-orange {
    color: var(--orange);
}

.color-orange-alt {
    color: var(--orange-alt);
}

.color-green {
    color: var(--green);
}

.color-green-alt {
    color: var(--green-alt);
}

.color-blue {
    color: var(--blue);
}

.color-blue-alt {
    color: var(--blue-alt);
}

.color-pink {
    color: var(--pink);
}

.color-pink-alt {
    color: var(--pink-alt);
}

.color-violett {
    color: var(--violett);
}

.color-violett-alt {
    color: var(--violett-alt);
}

.filter-green {
    filter: invert(82%) sepia(57%) saturate(3158%) hue-rotate(34deg) brightness(111%) contrast(84%);
}

a.button, button.button {
    display: inline-block;
    align-items: center;
    width: auto;
    line-height: 52px;
    padding: 0px 32px;
    margin-bottom: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: .889rem;
    font-weight: 700;
    border-width:2px;
    border-radius:0;
    transition: all .3s ease-in-out;
    text-align: center;
}

a.button:hover, button.button:hover {
    transition: all .4s ease-in-out;
}

a.button-primary, button.button-primary {
    color: rgba(18, 18, 24, 1) !important;
    background: var(--green) !important;
    border: 2px solid var(--green);
    padding-left: 48px;
    padding-right: 48px;
}

a.button-primary:hover, button.button-primary:hover {
    background-color: var(--green-alt) !important;
    border-color: var(--green-alt);
}

a.button-secondary, button.button-secondary {
    border: 2px solid var(--text-color);
    background-color: var(--white) !important;
    color: var(--text-color) !important;
}

a.button-secondary:hover, button.button-secondary:hover {
    background-color: rgba(46, 46, 51, .2) !important;
}

.button.button-paypal {
    color: rgba(18, 18, 24, 1) !important;
    border-width: 2px;

    img{
        vertical-align:middle;
    }
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;

    .button{
        width: 100%;
        color: var(--text-color);
    }
}

.no-margin {
    margin: 0;
}

#header-banner-container {
    top:0;
    z-index:2!important;
}

.header-banner-active .letter-landingpage {
    padding-top:40px;
}

.container {
    max-width: 1440px;
    padding: 60px 10px 60px;
    margin: 0 auto;
}

.background-blue {
    background-color: #151C4A;
}

.background-darkgrey {
    background-color: #12141C;
    color:var(--white);
}

.background-brightgrey {
    background-color: #F1EFE9;
}

#landingpage-header {    
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FBFAF7;
    z-index: 4;
    font-size: .70rem;

    .container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;

        img{
            width: 150px;
            height: auto;
        }
    }
    
    a.hide-mobile {
        display: none;
    }
}

#menu-button {
    border:1px solid var(--text-color);
    background-color:transparent;
    text-transform:uppercase;
    font-size:1rem;
    padding:15px 20px;
}

#navigation {
    position: fixed;
    right: 0;
    left: 0;
    top: 80px;
    bottom: 0;
    background-color: rgba(242,240,235,.15);
    backdrop-filter: blur(20px);
    transform:translateY(-100%);
    z-index: 4;
    transition:all .3s ease;

    nav{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
        background-color: #FBFAF7;
        position: absolute;
        top: 0;
        right: 10px;
        bottom: 30px;
        padding: 90px 20px 20px;        
        transform: translateX(100%, 100%);

        ul{
            list-style: none;
            margin-bottom: 10px;
            padding-left: 0;

            li {
                margin:0;

                a{
                    display:inline-block;
                    padding:3px 0;
                }
            }
        }
    }
}

#nav-social {
    display:flex;
    flex-direction:column;
    gap:3px;

    span{
        font-weight:700;
    }
}

.active #navigation {
    transform:translateX(0%)
}

#magierdermaerkte-intro {
    padding-top: 80px;

    header{
        gap:16px
    }
    
    #intro-book{
        display:block;
        width:100%;
        max-width:265px;
        margin:0 auto 40px;
        z-index:1;
        position:relative;
    }

    #intro-image-container {
        position: relative;
        max-width: 265px;
        margin: 0 auto 40px;

        &:after{
            content: '';
            position: absolute;
            bottom: -5%;
            top: 93%;
            left: -50%;
            right: -30%;
            background-color: rgba(251, 250, 247, 1);
            border-radius: 50%;
            filter: blur(28px);
            opacity: 0.3;
            z-index: 0;
        }

        &:before {
            content: '';
            position: absolute;
            bottom: 40%;
            top: -60%;
            left: -30%;
            right: -30%;
            border-bottom-right-radius: 158px;
            border-bottom-left-radius: 100px;
            background: linear-gradient(97deg, rgba(253, 253, 202, .4) 1.27%, #FFFFFF 90.51%, rgba(251, 250, 149, 0.580392) 100.74%);
            transform: rotate(20deg);
            transform-origin: bottom right;
            filter: blur(28px);
            opacity: 0.2;
            z-index: 0;
        }
    }
}


#magierdermaerkte-book .container {
    display:grid;
    gap:80px;
}

.book-dl {
    display: grid;
    grid-template-columns: auto auto;
    border-top: 1px solid var(--text-color);
    max-width:450px;

    dt{
        text-transform:uppercase;
        font-weight:500;
        border-top:1px solid var(--text-color);
        padding:9px 10px 9px 0;
    }

    dd {
        font-weight: 700;
        border-top:1px solid var(--text-color);
        padding:9px 0;
        text-align:right;
    }
}

.quote-big {
    margin-bottom:60px;

    img{
        width:243px;
        height:auto;
        margin-bottom:40px;
    }

    p {
        font-size: 1.75rem;
        font-weight: 800;
        line-height: 1.2em;
        text-transform:uppercase;
        margin-bottom:20px;
    }

    footer {
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.2em;
        text-transform:uppercase;
    }
}

.quote-small {
    border-top: 3px solid var(--green);
    margin-bottom: 80px;
   
    p {
        padding:20px 0;
        margin:0;
    }

    footer {
        border-top: 3px solid var(--green);
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.2em;
        text-transform: uppercase;
        padding-top:20px;
        margin-bottom:80px;
    }
}

#magierdermaerkte-video {
    &.container{
        display:grid;
        gap:40px;
    }

    video{
        width:100%;        
    }

    h2 {
        max-width:412px;
    }
}

#magierdermaerkte-readingsample {
    display: grid;
    gap:10px;
}

#newsletter {
    background-color: rgba(251, 250, 247, 0.1);
    padding: 20px;
    border-top: 3px solid var(--green);

    strong{
        text-transform:uppercase;
        font-size:16px;
        letter-spacing:6%;
    }

    .button {
        width:100%;
    }
}

#newsletter form {
    max-width: none;
}

.text-field label {
    top: 15px;
}

.text-field input[type="email"] {
    padding: 29px 15px 11px 15px;
    max-width:482px;
}

.text-field input[type="email"]:focus ~ label, .text-field input[type="email"]:not(:placeholder-shown) ~ label, .text-field input[type="text"]:focus ~ label, .text-field input[type="text"]:not(:placeholder-shown) ~ label, .text-field .number-text-input:focus ~ label, .text-field .number-text-input:not(:placeholder-shown) ~ label, .text-field select:focus ~ label, .text-field select:not(:placeholder-shown) ~ label, .text-field textarea:focus ~ label, .text-field textarea:not(:placeholder-shown) ~ label {
    top: 0;
}

.text-field input[type="email"], input[type="checkbox"] + label::before {
    background-color: transparent !important;
    color: inherit;
    border-color: rgba(251, 250, 247, 1) !important;
    border-radius:0;
}

input[type="checkbox"]:checked + label::after {
    filter: invert(82%) sepia(57%) saturate(3158%) hue-rotate(34deg) brightness(111%) contrast(84%);
}

input[type="checkbox"]:checked + label {
    color: inherit !important;
}

.newsletter-subscribe-form .button-primary {
    font-size: .889rem;
    font-weight: 700;
    padding-left: 48px;
    padding-right: 48px;
    height:56px;
}

.error-message {
    color: #FFB3B3;
    top: -28px;
}

#newsletter .small-paragraph {
    margin-bottom:0;
}

#magierdermaerkte-opinions{
    header{
        border-bottom:3px solid var(--text-color);
        margin-bottom:50px;

        h2{
            margin-bottom:30px;
        }
    }

    .container blockquote {
        border-bottom: 1px solid var(--text-color);
        padding-bottom: 50px;
        margin-bottom: 30px;
        p{
            margin-bottom:20px;
        }

        footer{
            font-size:0.875rem;
            font-weight:500;
            text-transform:uppercase;
        }

        &:last-child{
            border-bottom:none;
            margin-bottom:0;

        }
    }
}

#magierdermaerkte-authors .container {
    display: grid;
    gap: 90px;

    .author-slider{
        position:relative;
        width:100%;
        max-width:350px;
        height:466px;
        overflow:hidden;

        & > div{
            display: flex;
            transition: transform .3s ease;

            

            &.first{
                transform:translateX(0);

                & + div .button-second{
                    opacity:0;
                }

                & + div.button-first {
                    opacity: 1;
                }
            }

            &.second {
                transform: translateX(-100%);

                & + div .button-second{
                    opacity:1;
                }

                & + div .button-first {
                    opacity: 0;
                }
            }
        }

        .button-second {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%) rotate(-180deg);
            display: block;
            width: 50px;
            height: 50px;
            background-color: rgba(18, 20, 28, 0.35);
            cursor: pointer;
            transition: opacity .3s ease;
            border: none;
            border-radius: 50%;
            background-image: url('https://images.boersenmedien.com/images/7fa9a2fc-32cf-4943-847f-6f9553c23b66.svg');
            background-repeat: no-repeat;
            background-position: 54% center;
            background-size: 27%;
        }

        .button-first {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            display: block;
            width: 50px;
            height: 50px;
            background-color: rgba(18, 20, 28, 0.35);
            cursor: pointer;
            transition: opacity;
            border: none;
            border-radius:50%;
            background-image: url('https://images.boersenmedien.com/images/7fa9a2fc-32cf-4943-847f-6f9553c23b66.svg');
            background-repeat:no-repeat;
            background-position: 54% center;
            background-size: 27%;
        }
    }

    #book-slider{
        margin:20px -10px 0;
    }
}

#magierdermaerkte-buy {
    color:var(--white);
}

.book-buy-container {
    position:relative;
}

.book-buy-container:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.boersenmedien.com/images/9e806a7b-35a0-4276-a9bb-a05e1c14eee8.svg');
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
    opacity:.2;
    z-index:0;
}

#magierdermaerkte-buy .container {
    display:flex;
    flex-direction:column-reverse;
    gap:30px;
}

#magierdermaerkte-buy .container > img {
    width:100%;
    max-width:170px;
    margin:0 auto;

}

.buy-options {
    margin-bottom: 40px;
}

.buy-options input[type="checkbox"] {
    display: none;
}

.buy-options input[type="checkbox"]:checked + label {
    border: 3px solid var(--green);
}

    .buy-options label {
        border: 3px solid rgba(255,255,255,.3);
        background-color: rgba(21, 28, 74, 1);
        font-size: .875rem;
        font-weight: 500;
        padding: 23px !important;
        max-width: 416px;
        strong{
        display:block;
        font-size:1.75rem;
        font-weight:800;
        
    padding:25px 0;
    }

    &:after{
        content:none!important;
    }

    &:before {
        content: none !important;
    }
}

#magierdermaerkte-faq header{
    margin-bottom: 47px;
}

details {
    border-top: 1px solid rgba(251, 250, 247, 0.6);
    padding: 0 0 25px;
    overflow: hidden;
}

summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: grid;
    grid-template-columns:42px auto;
    gap:20px;
    user-select: none;
    padding:20px 50px 11px 0;
    position:relative;
 
}

summary::-webkit-details-marker {
    display: none;
}

    summary::after {
        content: '';
        background-image: url('https://images.boersenmedien.com/images/0c01acbf-d43b-4e07-8f2a-52b810e26fd9.svg');
        background-position: center;
        background-size: 12px 12px;
        background-repeat: no-repeat;
        display: bock;
        width: 30px;
        height: 30px;
        transition: transform 300ms ease, filter 300ms ease;
        position: absolute;
        right: 0;
        top: 20px;
        filter: invert(91%) sepia(83%) saturate(3149%) hue-rotate(23deg) brightness(93%) contrast(92%);
        transform: rotate(45deg);
        transform-origin: center;
        transform-box: fill-box;
    }

summary::before {
    content: "";
    display: bock;
    width: 30px;
    height: 30px;
    position:absolute;
    top: 20px;
    right: 0;
    background-color:rgba(251, 250, 247, 0.1);
}

details.is-open summary::after {
    transform: rotate(0deg);
    filter: invert(97%) sepia(3%) saturate(14%) hue-rotate(83deg) brightness(103%) contrast(103%);
}

.content-wrapper {
    overflow: hidden;
    height: 0;
    transition: height 300ms ease;
}

.content-inner {
    padding: 0 0 20px;
}

#magierdermaerkte-recommend .container {
    text-align:center;
}

.recommenation-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin:40px auto 20px;
}

.recommenation-icons img {
    width:48px;

    &:nth-child(3){
        width:64px;
    }
}

#magierdermaerkte-recommend .container .button-container{
    justify-content:center;
}

#magierdermaerkte-social .container div{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-bottom:4px;
    font-size:14px;

    img{
        width: 160px;
    }
}

#magierdermaerkte-social .container a{
    display:inline-block;

    &:last-child{
        margin-left:5px;
    }

    img{
        width: 44px;
    }
}

#landingpage-footer {
    background-color: #12141C;
    color: var(--white);

    ul{
        border-top:0;

        li{
            margin: 10px 20px 0 0;

            &:last-child{
                margin-right:0;

                &:after{
                    content:none;
                }
            }

            &:after{
            display:inline-block;
            content: '';
            width:4px;
            height:4px;
            border-radius:50%;
            background-color:var(--white);
            margin-left:20px;
            vertical-align:middle;
        }
        }

    }
}

@media screen and (min-width: 768px) {
    #magierdermaerkte-authors .container #book-slider {
        margin: 20px 0 0;
    }
}

@media screen and (min-width: 810px) {
    html {
        font-size:18px;
    }

    h1 {
        font-size: 2.67rem;

        span{
            font-size: 2.05rem;
        }
    }

    h2 {
        font-size: 2.05rem;

        &.subhead{
            font-size: .889rem;
        }
    }

    h3 {
        font-size: 1.111rem;
    }

    h4 {
        font-size: .889rem;
    }

    h5 {
        font-size: .889rem;
    }

    header p{
        font-size:.8889rem;
    }

    #landingpage-header .container{
        padding-left:40px;
        padding-right:40px;

        div{
               display:flex;
               gap:20px;
        }

        img{
            width:250px;
        }

        .show-tablet{
            display:inherit;
        }

        .button-primary {
            line-height:46px;
        }

        #menu-button {
            padding-top:12px;
            padding-bottom:12px;
        }
    }

    .container {
        padding: 80px 40px 80px;
    }

    .button-container {
        flex-direction: row;
        flex-wrap: wrap;

        .button{
            max-width: 280px;
        }
    }

    #magierdermaerkte-intro .container{
        display:grid;
        grid-template-columns:292px auto;
        gap:85px;

        & > div{
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #intro-image-container {
            max-width: none;
        }

        #intro-book{
            max-width:none;
            margin-bottom:0;
        }        
    }

    .quote-big {
        margin-bottom:80px;
        display:grid;
        grid-template-columns:367px auto;
        grid-template-rows: max-content 100%;
        gap:10px 40px;

        img{
            width:367px;
            height:auto;
            margin-bottom:0px;
            grid-row:1 / span 2;
        }

        p {
            font-size: 2.05rem;
            margin:0;
        }

        footer {
            font-size: .889rem;
        }
    }

    #magierdermaerkte-quotes > div {
        display: grid;
        grid-template-columns: 1fr 1fr ;
        gap: 40px;

        .quote-small:last-child{
            display:none;
        }
    }

    .quote-small {
        border-top: 3px solid var(--green);
        margin-bottom: 80px;   

        footer {
            margin-bottom:80px;
        }
    }

    #magierdermaerkte-video {
        &.container {
            display: grid;
            gap: 40px;
        }

        video {
            width: 100%;
        }
    }

    #newsletter {
        max-width:880px;
    }

    #newsletter .newsletter-subscribe-form .text-field label {
        top: 16px;
    }

    #newsletter .newsletter-subscribe-form .text-field input[type="email"]:focus ~ label, #newsletter .newsletter-subscribe-form .text-field input[type="email"]:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field input[type="text"]:focus ~ label, #newsletter .newsletter-subscribe-form .text-field input[type="text"]:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field .number-text-input:focus ~ label, #newsletter .newsletter-subscribe-form .text-field .number-text-input:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field select:focus ~ label, #newsletter .newsletter-subscribe-form .text-field select:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field textarea:focus ~ label, #newsletter .newsletter-subscribe-form .text-field textarea:not(:placeholder-shown) ~ label {
        top: 2px;
    }

    #magierdermaerkte-authors .container {
        .author-slider{
            max-width:411px;
            height: 549px;
        }
    }

    #magierdermaerkte-buy .container {
        flex-direction:row-reverse;
        justify-content:flex-end;
        gap:60px;
    }

    #magierdermaerkte-buy .container > img {
        object-fit:contain;
        max-width:220px;
        margin:0;
    }
 
    .buy-options label {
        strong {
            font-size:2.05rem;
        }
    }

    .recommenation-icons {
        gap:40px;
    }

    .recommenation-icons img {
        width: 83px;
        
        &:nth-child(3) {
            width: 110px;
        }
    }

    #magierdermaerkte-social .container{
        display:flex;
        gap:10px;
        align-items:center;

        div{
        margin-bottom:0px;

        img{
            width: 160px;
        }
       }
    }

    #magierdermaerkte-social .container a img {
        width: 44px;
    }
}

@media screen and (min-width: 1440px) {

    h1 {
        font-size: 3.11rem;

        span{
            font-size: 2.556rem;
        }
    }

    h2 {
        font-size: 2.556rem;
    }

    .container {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    #magierdermaerkte-intro .container {
        grid-template-columns:400px auto;
    }

    #magierdermaerkte-book .container {
        grid-template-columns:3fr 2fr;
    }

    .quote-big {
        margin-bottom:80px;
        display:grid;
        grid-template-columns:344px auto;
        gap:20px 40px;

        img{
            width:344px;
        }

        p {
            font-size: 2.556rem;
            margin: 0;
        }
    }

    #magierdermaerkte-quotes > div{
        display:grid;
        grid-template-columns: 1fr 1fr 1fr;

        .quote-small:last-child{
            display:block;
        }
    }

    #magierdermaerkte-video {
        &.container{
            grid-template-columns: 3fr 2fr;
        }
    }

    #magierdermaerkte-readingsample {
        grid-template-columns:3fr 2fr;
        gap: 40px;
    }

    #newsletter h3, #newsletter div > p {
        text-align: left;
    }

    .newsletter-subscribe-form #Email {
        padding-right: 225px;
    }

    .newsletter-subscribe-form .text-field label {
        top:9px;
    }

    #newsletter .newsletter-subscribe-form .text-field label {
        top: 13px;
    }

    #newsletter .newsletter-subscribe-form .text-field input[type="email"]:focus ~ label, #newsletter .newsletter-subscribe-form .text-field input[type="email"]:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field input[type="text"]:focus ~ label, #newsletter .newsletter-subscribe-form .text-field input[type="text"]:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field .number-text-input:focus ~ label, #newsletter .newsletter-subscribe-form .text-field .number-text-input:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field select:focus ~ label, #newsletter .newsletter-subscribe-form .text-field select:not(:placeholder-shown) ~ label, #newsletter .newsletter-subscribe-form .text-field textarea:focus ~ label, #newsletter .newsletter-subscribe-form .text-field textarea:not(:placeholder-shown) ~ label {
        top: 2px;
    }

    #magierdermaerkte-opinions {
        header{
            margin-bottom:20px;
        }
    
        .container > div{
            display:grid;
            grid-template-columns:1fr 1fr 1fr;
            gap:40px;
        }

        .container blockquote {
            position:relative;
            border-bottom:0;
            padding:0 0 5px;
            margin-bottom:0px;

            &:first-child:after{
                content:'';
                display:block;
                position:absolute;
                width:1px;
                right:-20px;
                top:0;
                bottom:0;
                background-color:var(--text-color);
            }

            &:last-child:before{
                content:'';
                display:block;
                position:absolute;
                width:1px;
                left:-20px;
                top:0;
                bottom:0;
                background-color:var(--text-color);
            }
        }
    }

    #magierdermaerkte-authors .container {
        grid-template-columns: 411px auto;
        gap: 90px 109px;    

        #authors-books {
            grid-column: 1 / span 2;
        }
    }

#magierdermaerkte-buy .container {
    gap:120px;
}

    #magierdermaerkte-buy .container > img {
        max-width: 260px;
    }

    .buy-options label {
        strong {
            font-size: 2.556rem;
        }
    }

    #magierdermaerkte-recommend .container {
        display: grid;
        grid-template-columns: auto 630px;

        h2{
            display:flex;
            align-items:center;
            justify-content:flex-start;
            max-width: 570px;
            text-align:left;
        }

        .recommenation-icons {
            margin-top:0;
        }

        .button-container {
            grid-column: 2;
            display: flex;
            justify-content: center;
        }
    }

    #landingpage-footer {
        text-align: right;
        max-width: 1400px;
        margin: 0 auto;
    }

    #magierdermaerkte-social{
        margin-bottom:-204px;
    }
}



