/** Shopify CDN: Minification failed

Line 152:9 Expected "}" to go with "{"

**/
/* Allgemeine Schriftarten und Basisstile */
body {
    font-family: 'Roboto', sans-serif;
    color: #69727b;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Überschriften */
h2, h3 {
    font-weight: bold;
    color: #69727b;
    margin: 0;
}

/* Produktüberschrift */
.headline_product {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 10px;
}

/* Unterüberschrift Produkt */
.subhead_product {
    font-size: 19px;
    font-style: italic;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #ec008c;
    text-align: left;
}

/* Spezifikationen */
.specs_product {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #ec008c;
}

/* Inhalt der Liste */
.content_list {
  font-size: 16px;
    margin: 10px 0;
}

/* Text Produkt */
.text_product {
    font-size: 16px;
  
}

/* Hervorgehobener Text */
strong {
    font-size: 20px;
    color: #ec008c;
}
p  {
    font-size: 16px;

}

/* Bilder */
img {
    max-width: 100%;
    height: auto;
}

/* Zentrierter Text */
.center-text {
    text-align: center;
}

/* Anpassung des unteren Abstands für Section-Elemente auf 0px */
section {
    margin-bottom: 0px;
}

/* Anpassung des Margens und Paddings für H3- und P-Elemente innerhalb von Section */
section h3,
section p {
    margin: 0;
    padding: 0;
    margin-bottom: 0px; /* Harmonischer Abstand zwischen Elementen */
}

.smaller-text span
{
font-size: 14px;
line-height: 14px;


    /* Table section styling */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        th, td {
            padding: 10px;
            text-align: left;
        }

        /* Header and subheader styling */
        h2, h3 {
            margin: 0;
            padding: 0;
        }

        /* Table header row styling */
        thead {
            background-color: #f2f2f2;
        }

        /* Table rows alternate colors styling */
        tbody tr:nth-child(odd) {
            background-color: #e9e9e9;
        }

        tbody tr:nth-child(even) {
            background-color: #ffffff;
        }

        /* Details section and summary styling */
        details {
            margin: 10px 0;
        }

        summary {
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        /* Mouse-over effect on summary */
        summary:hover {
            color: #EC008C;
            font-weight: bold;
        }

        /* Adjust column width for better mobile display */
        td, th {
            width: calc(100% / 3 + 6.67%);
        }