/*!**********************************************************************************************************************************************************************************************!*\
  !*** 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/recipe/keyfacts.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 */
.recipe-keyfact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .recipe-keyfact {
    flex-direction: column;
    width: calc(50% - 12px);
    flex-wrap: wrap;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) {
  .recipe-keyfact {
    flex: 1;
  }
}

.recipe-keyfact__image {
  background-color: var(--recipe-keyfact-background-color, white);
  box-shadow: var(--box-shadow-l);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.recipe-keyfact__image svg {
  width: 32px;
  height: 32px;
}

.recipe-keyfact__caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px 0;
}
.recipe-keyfact__caption strong {
  display: block;
  color: var(--recipe-keyfact-title-color);
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 150%;
}
@media only screen and (min-width: 768px) {
  .recipe-keyfact__caption strong {
    text-align: center;
  }
}
.recipe-keyfact__caption span {
  display: block;
  font-family: "Istok Web", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 130%;
}
@media only screen and (min-width: 768px) {
  .recipe-keyfact__caption span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .recipe-keyfact__caption span {
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .recipe-keyfact__caption span {
    text-align: center;
  }
}

.recipe-keyfacts {
  margin-top: 64px;
  margin-bottom: 64px;
  margin-inline: auto;
  width: var(--content-width);
}
@media only screen and (min-width: 768px) {
  .recipe-keyfacts {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .recipe-keyfacts {
    margin-top: 104px;
  }
}
@media only screen and (min-width: 768px) {
  .recipe-keyfacts {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .recipe-keyfacts {
    margin-bottom: 104px;
  }
}

.recipe-keyfacts__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .recipe-keyfacts__inner {
    gap: var(--grid-gutter);
  }
}
