.bfkBody {
    font-family: inherit;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
}

.bfkGrid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin-top: 1%;
    column-gap: 1%;
}

.bfkCollapsible {
    color: white;
    cursor: pointer;
    padding: 2%;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    margin-top: 5%;
}

.bfkCollapsibleContent {
    padding: 5% 2%;
    display: none;
    overflow: hidden;
}

.bfkContainer {
    max-width: 100%;
    margin: 0 auto;
    padding: 3%;
}

.bfkButton {
    line-height: 1.4rem;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.product-image {
    display: flex;
    align-items: end;
    margin-right: 10%;
    justify-items: center;
}

.product-image img {
    max-height: 100%;
    height: auto;
    float: right;
    margin-right: 2%;
    align-self: end;
    justify-self: center;
    margin-left: auto;
}

@media only screen and (max-width: 700px) {
    .product-image img {
        float: none;
        margin: 0 2%;
    }
}

.flex_row {
    display: flex;
    flex-direction: row;
    gap: 2%;
}
.flex_column{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-size: 1.4rem;
}
.bio_logos {
    min-width: 50px;
    max-width: 100px;
}
.eu_bio{
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    margin-top: 14%;
}

.product-table table {
    width: 100%;
    border: solid 1px;
    border-collapse: collapse;
}

.product-table table td {
    padding: 2%;
    border: solid 1px;
}
#vegan_logo{
    width: 15%;
    height: auto;
}
.lable_font{
    font-size: 1rem;
    line-height: 1rem;
}
.bfkicon{
    color: white;
    height: 20px;
    width: 20px;
    display: block;
    font-size: 2rem;
}
.naehrwerttabelle {
    width: 70%;
    border-collapse: collapse;
    font-family: sans-serif;
  }

  .naehrwerttabelle tr:nth-child(odd) {
    background-color: #e6e6e6; /* 10% K */
  }
  .naehrwerttabelle tr:nth-child(even) {
    background-color: white; 
  }
  .naehrwerttabelle tr:nth-child(even):hover {
    background-color: white !important; 
  }

  .naehrwerttabelle td {
    padding: 6px 10px;
    border: none;
  }

  .label {
    text-align: left;
  }

  .value {
    text-align: right;
  }

  .bold {
    font-weight: bold;
  }
@media (max-width: 700px){
    .bfkGrid {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 1%;
        column-gap: 1%;
    }
    .naehrwerttabelle {
        width: 100%;
    }
}