/* Tavolozza colore */
:root {
    --accent: #C62A1E;
    --dark: #050101;
    --light: #FFFF;
    --primary: #ffa500;
}

/* Reset  */
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--dark);
}

li {
    list-style-type: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Utility */
html {
    scroll-behavior: smooth;
}

.res {
    width: 100%;
    max-width: 380px;
}

.res1 {
    height: 500px;
    width: 400px;

}

/* -------------------------------------------------------------------------------- */
/* ! ANIMAZIONI */
/* -------------------------------------------------------------------------------- */
/* Animazione pulsante fisso shop - apertura tre pallini */
@keyframes bounce-nds {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animazione pulsante fisso shop - chiusura tre pallini */
@keyframes bounce-out-nds {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* Animazione scroll libri carosello */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 7));
    }
}

/* Animazione details */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(-50%);
    }

    40% {
        transform: translateY(-70%);
    }

    60% {
        transform: translateY(-60%);
    }
}

/* Animazione apertura menù */
@keyframes animateopen {
    0% {
        top: -100%;

    }

    100% {
        top: 0;
        opacity: 1;
    }
}

/* Animazioni per hero h1 */
@keyframes fadeInUpOpacity {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animazione del pulsante fisso dello shop */
@keyframes edit-in {
    from {
        opacity: 0;
        transform: rotateZ(-70deg);
    }

    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

@keyframes edit-out {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }

    to {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
}


/* -------------------------------------------------------------------------------- */
/* ! LAYOUT */
/* -------------------------------------------------------------------------------- */
section {
    padding: 15px;
    margin: 40px 0;
}

#footer {
    margin-bottom: 0;
    gap: 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 10px 20px;
}

/* Tipografia */
body {
    font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Merriweather", serif;
    color: #C62A1E;
    font-weight: 500;
}

h1 {
    font-size: 2.0em;
}

p.leading {
    font-size: 1.6em;
    line-height: 1.6em;
    margin: 15px 0 15px 0
}

p.evidenza {
    text-align: center;
    margin-bottom: 20px;
    font-family: "Merriweather", serif;
}

p {
    font-size: 21px;
    line-height: 1.4em;
}

details>summary {
    cursor: pointer;
}



/* -------------------------------------------------------------------------------- */
/* ! CSS - ELEMENTI HTML */
/* -------------------------------------------------------------------------------- */
/* Header */

header {
    background-color: var(--primary);
}

.site-nav__menu {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.site-nav__menu a {
    color: var(--light);
    font-size: 40px;
    transition: font-size 0.3s ease;
    font-family: "Merriweather", serif;

}

.site-nav__logo h2 {
    color: var(--light);
}

.site-nav__logo {
    grid-column: 1/4;
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 20px;
}

.open .site-nav__menu {
    align-items: center;
    position: fixed;
    max-height: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    z-index: 2;
    animation: animateopen 0.5s;
}

.cover__hb {
    cursor: pointer;
    grid-column: 8/9;
    justify-self: end;
    color: var(--light);
    font-size: x-large;
    z-index: 3;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover__hb:hover {
    transform: rotate(90deg);
}

.open .cover__hb {
    margin-top: 11px;
    position: fixed;
}

/* Hero */
.hero {
    background: url(../img/Hero.Agrumi.jpg) no-repeat center center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    height: 80vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    z-index: 1;
    grid-column: 1/9;
    color: var(--dark);
    padding: 20px;
    text-align: center;
    justify-content: center;
}

.button__hero {
    grid-column: 1/9;
    justify-content: center;
    display: flex;
    gap: 20px;
}

.hero h1 {
    font-size: 60px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUpOpacity 1s forwards 0.3s;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hero h2 {
    font-size: 40px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUpOpacity 1s forwards 0.6s;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hero h3 {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUpOpacity 1s forwards 0.9s;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}


/* Libro */
.book__text {
    grid-column: 1/9;
    margin-top: 20px;
}

.book__img {
    grid-column: 1/9;
    grid-column: 1/9;
    display: flex;
    justify-content: center;
}

/* Autore */
.autore__text {
    grid-column: 1/9;
}

.autore__img {
    grid-column: 1/9;
    display: flex;
    justify-content: center;
}

.autore {
    margin-top: 20px;
}

/* cta */
.cta-group {
    font-size: 1.8em;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 40px;
    grid-column: 1/9;
    justify-content: center;
}

.cta__primary,
.cta__secondary {
    border: 2px solid var(--primary);
    padding: 10px 20px;
    border-radius: 26px;
    font-weight: 700;
}

.cta__primary {
    background: var(--primary);
    color: var(--light);
}

.cta__primary:hover {
    background: var(--accent);
    border: 2px solid var(--accent);
}

.cta__secondary {
    background: var(--light);
    color: var(--primary);
}

.cta__secondary:hover {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--light);
}

/* -------------------------------------------------------------------------------- */
/* ! ACCORDION */
/* -------------------------------------------------------------------------------- */

.dettagli {
    flex-direction: column;
    display: flex;
    grid-column: 1/9;
}

.dettagli a {
    justify-content: end;
    display: flex;
}

details div {
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;

}

details div>*+* {
    margin-top: 1.5em;
}

details+details {
    margin-top: 10px;
}

summary {
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    border: 2px solid var(--primary);
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-family: 'Work Sans', sans-serif;
    font-size: larger;
    border-radius: 10px;
    color: var(--light);
    background-color: var(--primary);
}

summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    content: "⭣";
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    color: var(--light);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.35s;
}

details p {
    margin-top: 20px;
    font-size: 16px;
}

details p.evidenza {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bolder;
}

details a p:hover {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);

}

summary:hover::before {
    animation: bounce 0.5s;
}

/* Rassegna stampa */
#rassegnastampa li {
    grid-column: 1/9;
    padding: 12px;
    border: 1px solid var(--dark);
    border-radius: 10px;
}

#rassegnastampa p {
    font-size: smaller;
    text-align: left;
    margin-top: 30px;

}

#rassegnastampa a {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
}

#rassegnastampa a:hover {
    color: var(--accent);
}

/* Autore */
.autore {
    flex-direction: column;
    display: flex;
    gap: 20px;
    align-items: center;
}

.autore img {
    max-width: 200px;
    height: auto;
    border-radius: 30px;
}

/* Altre pubblicazioni */

.pubblicazioni {
    grid-column: 1/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.pubblicazioni__img img {
    transition: transform 0.3s ease-in-out;
}

.pubblicazioni__img img:hover {
    transform: scale(1.1);
}

#pubblicazioni {
    margin-top: 50px;
    align-items: center;
}

#pubblicazioni h1 {
    grid-column: 1/9;
}

#pubblicazioni p {
    font-size: 18px;
}

/* Recensioni */

#recensioni li {
    grid-column: 1/9;
    text-align: center;
    padding: 12px;
    color: var(--light);
}

.stelline {
    font-size: 20px;
    margin-bottom: 20px;
}

.recensione {
    font-size: 15px;
    font-style: italic;
    font-weight: 200;
}

#recensioni {
    background-color: var(--primary);
    border-radius: 10px;
}

#recensioni img {
    margin-bottom: 20px;
}

/* Libri consigliati */

#altrilibri h1 {
    grid-column: 1/9;
}

.catalogo {
    grid-column: 1/9;
    justify-self: center;
    margin-top: 20px;
}

.catalogo a:hover {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);

}

.catalogo a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

/* Carosello */

.slider {
    width: 90%;
    overflow-x: scroll;
    border-radius: 10px;
    position: relative;
    grid-column: 2/9;
}

.slide-track {
    display: flex;
}

.slide {
    min-width: 400px;
}

.slide img {
    width: 100%;
    display: block;
}


/* Footer */
.pagina {
    grid-column: 1/9;
    justify-self: center;
    margin-bottom: 50px;
}

.pagina a:hover {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);

}

.pagina a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
}

footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 12px;
}

footer a {
    color: var(--light);
    font-size: smaller;
    align-items: center;
}

footer p {
    font-size: smaller;
    color: var(--light);
}

footer h3 {
    margin-bottom: 12px;
    text-align: center;
    color: var(--light);
    font-weight: 600;
}

.footer__policy {
    grid-column: 1/9;
}

.footer__policy a {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.footer__policy a:hover {
    font-weight: 900;
}

.footer__riassunto a {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.footer__riassunto a:hover {
    font-weight: 900;
}

.footer__contatti {
    grid-column: 1/9;
    text-align: center;

}

.footer__riassunto {
    grid-column: 1/9;
    text-align: center;

}

.riassunto__elementi {
    font-family: 'Work Sans', sans-serif;

}

.riassunto__elementi a:hover {
    align-items: center;
    border-bottom: 1px solid #252121;
}

/* Pulsante SHOP */

#floating-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #376b0f;
    position: fixed;
    right: 30px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: var(--light);
    bottom: 30px;
}


#container-floating {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    z-index: 50px;
}

#container-floating:hover {
    height: 400px;
    width: 90px;
    padding: 30px;
}

#container-floating:hover .plus {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}

.edit {
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    padding: 0;
    opacity: 0;
    margin: auto;
    line-height: 65px;
    transform: rotateZ(-70deg);
    transition: all 0.3s;
    animation: edit-out 0.3s;
}

#container-floating:hover .edit {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}


.nds {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    z-index: 300;
    transform: scale(0);
    cursor: pointer;
}

.nd1 {
    background: #c64d02;
    right: 40px;
    bottom: 120px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode: forwards;
}

.nd3 {
    background: #c6751e;
    right: 40px;
    bottom: 180px;
    animation-delay: 0.15s;
    animation: bounce-out-nds 0.15s linear;
    animation-fill-mode: forwards;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.nd3 i {
    color: var(--light);
}

.nd4 img {
    align-items: end;
    display: flex;
    justify-content: end;
    width: 30px;
    color: var(--light);
}

.nd4 {
    background: var(--accent);
    right: 40px;
    bottom: 240px;
    animation-delay: 0.1s;
    animation: bounce-out-nds 0.1s linear;
    animation-fill-mode: forwards;

}

#container-floating:hover .nds {
    animation: bounce-nds 0.1s linear;
    animation-fill-mode: forwards;
}


#container-floating:hover .nd3 {
    animation-delay: 0.08s;
}

#container-floating:hover .nd4 {
    animation-delay: 0.15s;
}

#container-floating:hover .nd5 {
    animation-delay: 0.2s;
}

.letter {
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    line-height: 40px;
}

.reminder {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    line-height: 40px;
}

.profile {
    border-radius: 50%;
    width: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
}

/* -------------------------------------------------------------------------------- */
/* ! METTO TUTTO CIò CHE è MEDIUM */
/* -------------------------------------------------------------------------------- */
@media (min-width:768px) {

    /* Accordion */
    .dettagli p {
        text-align: left;

    }

    #rassegnastampa li {
        grid-column: span 4;
    }

    .autore {
        flex-direction: row;
    }

    .autore img {
        object-fit: contain;
    }


    /* Sul libro */
    .book__text {
        grid-column: 1/5;
        margin-top: 80px;
    }

    .book__img {
        grid-column: 6/9;
        display: flex;
        justify-content: center;
    }

    .book__img img {
        object-fit: contain;
    }

    /* Altre pubblicazioni */

    .pubblicazioni {
        display: flex;
        flex-direction: column;
    }

    /* Footer */
    .pagina {
        justify-self: end;
    }

    .footer__contatti {
        grid-column: 1/4;
        text-align: center;
    }

    .footer__riassunto {
        grid-column: 4/6;
        text-align: center;
    }

    .footer__policy {
        grid-column: 6/9;
    }

    /* Recensioni */
    #recensioni li {
        grid-column: span 4;
        gap: 40px;
    }

}

@media(min-width: 920px) {

    /* Header */
    .site-nav__menu {
        all: unset;
        grid-column: 5/9;
        display: flex;
        flex-direction: row;
        gap: 30px;
    }

    .site-nav__menu a {
        font-size: 16px;
    }

    .site-nav__menu a:hover {
        font-size: 16px;
        border-bottom: 1px solid white;
    }

    .cover__hb {
        display: none;
    }

    .pubblicazioni {
        flex-direction: row;
    }
}

/* -------------------------------------------------------------------------------- */
/* ! METTO TUTTO CIò CHE è LARGE */
/* -------------------------------------------------------------------------------- */
@media (min-width: 992px) {

    /* in questo modo la griglia fa anche da container */
    .grid {
        max-width: 1060px;
        /* per mettere la griglia in mezzo */
        margin: 0 auto;
    }

    /* SLIDER (AUTOMATICO PER DESKTOP) */
    .slide-track {
        display: flex;
        width: calc(400px * 14);
        animation: scroll 40s linear infinite;
    }

    .catalogo {
        justify-self: end;
    }

    .slide {
        min-width: 400px;
        transition: transform 0.5s ease;
    }

    .slide img {
        width: 100%;
        display: block;
    }

    .slider {
        overflow-x: hidden;
    }

    .slider:hover .slide-track {
        animation-play-state: paused;
    }
}

/* -------------------------------------------------------------------------------- */
/* ! NEWSLETTER - codice Mailchimp */
/* -------------------------------------------------------------------------------- */
#Newsletter p {
    font-size: 18px;
}

#feedback {
    color: var(--accent);
}

#mc_embed_shell {
    grid-column: 1/9;
}

#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    margin: 20px
}

#mc_embed_signup h2 {
    font-weight: bold;
    padding: 0;
    margin: 15px 0;
}

#mc_embed_signup input {
    border: 1px solid #ABB0B2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#mc_embed_signup input[type=checkbox] {
    -webkit-appearance: checkbox;
    margin: 10px 0 20px 0;
}

#mc_embed_signup input[type=radio] {
    -webkit-appearance: radio;
}

#mc_embed_signup input:focus {
    border-color: #333;
}

#mc_embed_signup .button {
    clear: both;
    background-color: var(--primary);
    border: 0 none;
    border-radius: 28px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: normal;
    height: 32px;
    line-height: 32px;
    margin: 0 5px 10px 0;
    padding: 0 24px;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
    width: fit-content;
    width: -moz-fit-content;
}

#mc_embed_signup .button:hover {
    background: var(--accent);
}

#mc_embed_signup .small-meta {
    font-size: 11px;
}

#mc_embed_signup .nowrap {
    white-space: nowrap;
}

#mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: 96%;
    padding-bottom: 3%;
    min-height: 50px;
    display: grid;
}

#mc_embed_signup .size1of2 {
    clear: none;
    float: left;
    display: inline-block;
    width: 46%;
    margin-right: 4%;
}

* html #mc_embed_signup .size1of2 {
    margin-right: 2%;
    /* Fix for IE6 double margins. */
}

#mc_embed_signup .mc-field-group label {
    display: block;
    margin-bottom: 8px;
}

#mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-indent: 2%;
    border-radius: 28px;
}


#mc_embed_signup .mc-field-group select {
    display: inline-block;
    width: 99%;
    padding: 5px 0;
    margin-bottom: 2px;
    border-radius: 28px;
}

#mc_embed_signup .mc-address-fields-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 96%;
    gap: 15px;
}

#mc_embed_signup .mc-sms-phone-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 96%;
    gap: 15px;
    padding-top: 5px;
}

#mc_embed_signup .datefield,
#mc_embed_signup .phonefield-us {
    padding: 5px 0;
}

#mc_embed_signup .datefield input,
#mc_embed_signup .phonefield-us input {
    display: inline;
    width: 60px;
    margin: 0 2px;
    letter-spacing: 1px;
    text-align: center;
    padding: 5px 0 2px 0;
}

#mc_embed_signup .phonefield-us .phonearea input,
#mc_embed_signup .phonefield-us .phonedetail1 input {
    width: 40px;
}

#mc_embed_signup .datefield .monthfield input,
#mc_embed_signup .datefield .dayfield input {
    width: 30px;
}

#mc_embed_signup .datefield label,
#mc_embed_signup .phonefield-us label {
    display: none;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    font-size: 11px;
    margin-right: 4%;
}

#mc_embed_signup .asterisk {
    color: var(--accent);
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
}

#mc_embed_signup .clear {
    clear: both;
}

#mc_embed_signup .foot {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 96%;
    align-items: center;
}

@media screen and (max-width:400px) {
    #mc_embed_signup .foot {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        align-items: center;
    }
}

@media screen and (max-width:400px) {
    #mc_embed_signup .referralBadge {
        width: 50%;
    }
}

#mc_embed_signup .brandingLogo {
    justify-self: right;

}

@media screen and (max-width:400px) {
    #mc_embed_signup .brandingLogo {
        justify-self: left;
    }
}

#mc_embed_signup .mc-field-group.input-group ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
}

#mc_embed_signup .mc-field-group.input-group ul li {
    display: block;
    padding: 3px 0;
    margin: 0;
}

#mc_embed_signup .mc-field-group.input-group label {
    display: inline;
}

#mc_embed_signup .mc-field-group.input-group input {
    display: inline;
    width: auto;
    border: none;
}

#mc_embed_signup div#mce-responses {
    float: left;
    top: -1.4em;
    padding: 0em .5em 0em .5em;
    overflow: hidden;
    width: 90%;
    margin: 0 5%;
    clear: both;
}

#mc_embed_signup div.response {
    margin: 1em 0;
    padding: 1em .5em .5em 0;
    font-weight: bold;
    float: left;
    top: -1.5em;
    z-index: 1;
    width: 80%;
}

#mc_embed_signup #mce-error-response {
    display: none;
}

#mc_embed_signup #mce-success-response {
    color: #529214;
    display: none;
}

#mc_embed_signup label.error {
    display: block;
    float: none;
    width: auto;
    margin-left: 1.05em;
    text-align: left;
    padding: .5em 0;
}

#mc_embed_signup .helper_text {
    color: #8d8985;
    margin-top: 2px;
    display: inline-block;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
}

#mc-embedded-subscribe {
    clear: both;
    width: auto;
    display: block;
    margin: 1em 0 1em 5%;
}

#mc_embed_signup #num-subscribers {
    font-size: 1.1em;
}

#mc_embed_signup #num-subscribers span {
    padding: .5em;
    border: 1px solid #ccc;
    margin-right: .5em;
    font-weight: bold;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    display: inline-block;
    margin: 2px 0 1em 0;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
    color: var(--accent);
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    border: 2px solid var(--accent);
}

#mc-embedded-subscribe-form input[type=checkbox] {
    display: inline;
    width: auto;
    margin-right: 10px;
}

#mergeRow-gdpr {
    margin-top: 20px;
}

#mergeRow-gdpr fieldset label {
    font-weight: normal;
}

#mc-embedded-subscribe-form .mc_fieldset {
    border: none;
    min-height: 0px;
    padding-bottom: 0px;
}