/* Mixins */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
@media only screen and (min-width: 960px) {
  .paragraph--type--webform .layout-inner-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 123rem;
  }
}
.paragraph--type--webform .title {
  font-family: "Roboto-Light", sans-serif !important;
  font-size: 2.6rem;
  line-height: 1.15 !important;
  margin-bottom: 1.5rem;
}
.paragraph--type--webform .title h1:last-child,
.paragraph--type--webform .title h2:last-child,
.paragraph--type--webform .title h3:last-child,
.paragraph--type--webform .title h4:last-child,
.paragraph--type--webform .title h5:last-child,
.paragraph--type--webform .title h6:last-child,
.paragraph--type--webform .title p:last-child,
.paragraph--type--webform .title ul:last-child,
.paragraph--type--webform .title ol:last-child,
.paragraph--type--webform .title dl:last-child,
.paragraph--type--webform .title pre:last-child,
.paragraph--type--webform .title address:last-child,
.paragraph--type--webform .title fieldset:last-child,
.paragraph--type--webform .title figure:last-child,
.paragraph--type--webform .title table:last-child {
  margin-bottom: 0;
}
.paragraph--type--webform .summary {
  font-family: "Roboto-Medium", sans-serif !important;
  font-size: 2.2rem;
  line-height: 1.4 !important;
  margin-bottom: 1.5rem;
}
.paragraph--type--webform .summary h1:last-child,
.paragraph--type--webform .summary h2:last-child,
.paragraph--type--webform .summary h3:last-child,
.paragraph--type--webform .summary h4:last-child,
.paragraph--type--webform .summary h5:last-child,
.paragraph--type--webform .summary h6:last-child,
.paragraph--type--webform .summary p:last-child,
.paragraph--type--webform .summary ul:last-child,
.paragraph--type--webform .summary ol:last-child,
.paragraph--type--webform .summary dl:last-child,
.paragraph--type--webform .summary pre:last-child,
.paragraph--type--webform .summary address:last-child,
.paragraph--type--webform .summary fieldset:last-child,
.paragraph--type--webform .summary figure:last-child,
.paragraph--type--webform .summary table:last-child {
  margin-bottom: 0;
}