/*!************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../node_modules/postcss-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./pages/product/nutrition.scss ***!
  \************************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/*
$grids: (
    'default': $mobile_base,
    'switches': (
        $mobile_switch: $mobile_base,
        $tablet_switch: $tablet_base,
        $max_switch: $max_base
    ),
    'definitions': (
        $mobile_base: (
            'columns': 8,
            'column': 44,
            'gutter': 14,
            'fix': false
        ),
        $tablet_base: (
            'columns': 12,
            'column': 56,
            'gutter': 22,
            'fix': false
        ),
        $max_base: (
            'columns': 12,
            'column': 139,
            'gutter': 54,
            'fix': true
        )
    )
);
*/
/* EASING */
/* Font settings */
/************
/** COLOR VARIABLES
/****************************************/
/* **************************** */
/* Pimcore-editmode used colors */
/* **************************** */
/* **************************** */
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
/* stylelint-disable */
.product-nutrition {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1024px) {
  .product-nutrition {
    padding: 40px;
  }
}

.product-nutrition__header {
  margin-bottom: 40px;
}

.product-nutrition__headline {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  line-height: 120%;
  font-size: 1.5rem;
  color: var(--product-nutrition-headline-color, var(--product-detail-subline-color));
}
@media only screen and (min-width: 768px) {
  .product-nutrition__headline {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .product-nutrition__headline {
    font-size: 2.25rem;
  }
}

.product-nutrition__table {
  border-spacing: 0;
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
.product-nutrition__table th,
.product-nutrition__table td {
  font-weight: 400;
  vertical-align: top;
  padding: 0;
  padding-top: 10px;
}
.product-nutrition__table th {
  text-align: left;
  padding-left: 10px;
}
.product-nutrition__table td {
  text-align: right;
}

.product-nutrition__table-row--main th,
.product-nutrition__table-row--main td {
  font-weight: 700;
  padding-top: 0;
}
.product-nutrition__table-row--main th {
  padding-left: 0;
}

.product-nutrition__table-row--divider hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid var(--product-nutrition-border-color);
}
.product-nutrition__table-row--divider th,
.product-nutrition__table-row--divider td {
  padding-top: 20px;
  padding-bottom: 20px;
}
