@charset "UTF-8";
/*!
Theme Name: Madavor Child - DSM
Description: Theme for Diabetes Self-Management
Theme URI: https://www.diabetesselfmanagement.com/
Author: Stephen Simon Interactive
Author URI: http://stephensimon.com
Version: 1.0.2
Template: madavor
Text Domain: madavor

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/


This is for CSS specific to Diabetes Self-Management. If looking to modify
styles that all child themes share, go the 'madavor' theme stylesheet.
*/
/* ==========================================================================
   INUITCSS
   ========================================================================== */
/**
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Links................Base link styles.
 * Tables...............Simple table styles.
 * Forms................Simple form styles.
 *
 * OBJECTS
 *
 * COMPONENTS
 * Buttons..............
 * Slider...............
 * Header...............
 * Primary-Navigation...
 * Search-Form..........
 * Breadcrumbs..........
 * Main.................
 * Article Utilities....
 * Home.................
 * Secondary............
 * Related-Stories......
 * Footer...............
 * Dividers.............
 * Pagination...........
 * Icons................
 * Subscriptions........
 * Photo-Galleries......
 * Recipes..............
 * Commentss............
 * Share................
 * Ads..................
 * NGGC.................
 * GDPR.................
 * Contributors.........
 * Call to Action.......
 * Modal................
 * Section Sponsors.....
 *
 * UTILITIES
 * Alignment............Text alignment at various widths
 * Headings.............Reassigning our heading styles to helper classes.
 * Helpers..............Various text styling helper classes
 */
/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background-color: #ffffff;
  color: #5c5c5e;
  font-size: 0.9375em;
  /* [1] */
  line-height: 1.6666666667;
  /* [1] */
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-font-smoothing: antialiased; }

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

/**
 * Remove underlines from links.
 */
a {
  text-decoration: none; }

/* Forms
   ========================================================================== */
label,
button,
input,
optgroup,
select,
textarea {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

input,
select,
textarea {
  background-color: #ffffff;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }
  input:focus,
  select:focus,
  textarea:focus {
    outline-color: #e2e5ea; }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #343841;
  font-family: "Cabin", Verdana, serif; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit; }

h1 {
  font-size: 48px;
  font-size: 3.2rem;
  line-height: 1.1458333333;
  font-weight: 500; }

h2 {
  font-size: 37px;
  font-size: 2.4666666667rem;
  line-height: 1.2162162162; }

h3 {
  font-size: 27px;
  font-size: 1.8rem;
  line-height: 1.2222222222; }

h4 {
  font-size: 20px;
  font-size: 1.3333333333rem;
  line-height: 1.25; }

h5 {
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: 1.375; }

h6 {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: 1.2142857143; }

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  height: auto;
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  color: #00b4bd;
  transition: color 300ms ease-in-out; }
  a:hover {
    color: #343841; }
  a > svg {
    fill: #00b4bd;
    transition: fill 300ms ease-in-out; }

a.u-secondary-link {
  color: #a9d834; }
  a.u-secondary-link:hover {
    color: #343841; }
  a.u-secondary-link > svg {
    fill: #a9d834; }

a.u-tertiary-link {
  color: #7e8d9e; }
  a.u-tertiary-link:hover {
    color: #2b2d4f; }
  a.u-tertiary-link > svg {
    fill: #7e8d9e; }

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%;
  /* [1] */ }

/* ==========================================================================
   #FORMS
   ========================================================================== */
label,
button,
input,
optgroup,
select,
textarea {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

button {
  background-color: transparent; }

input,
select,
textarea {
  background-color: #ffffff;
  border: 1px solid #c7c7c7;
  border-radius: 7px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  transition: all 300ms ease-in-out; }
  input:focus,
  select:focus,
  textarea:focus {
    outline-color: #00b4bd; }

select {
  -webkit-appearance: none;
  background-image: url(assets/images/dropdown.png);
  background-position: 95% 50%;
  background-repeat: no-repeat; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    select {
      background-image: url(assets/images/svg/dropdown.svg);
      background-size: 10px 14px; } }
/* Gravity Forms */
.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  min-height: 44px; }

.gform_wrapper select {
  min-height: 44px;
  outline: none !important;
  padding: 9px !important; }

.gchoice_select_all, .gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label,
.gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label,
.gform_wrapper label.gfield_label,
.gform_wrapper legend.gfield_label {
  font-weight: 600 !important; }

.gform_wrapper .gfield_required {
  color: #00b4bd; }

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * See parent theme for full definitions
 */
/* Gutter size modifiers
   ========================================================================== */
.o-layout--medium {
  margin-left: -30px; }
  .o-layout--medium > .o-layout__item {
    padding-left: 30px; }

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  border: none; }

.c-btn svg,
input[type="submit"] svg,
button svg {
  transition: all 300ms ease-in-out; }

.c-btn:focus,
input[type="submit"]:focus,
button:focus {
  outline: none; }
  .c-btn:focus svg,
  input[type="submit"]:focus svg,
  button:focus svg {
    opacity: 0.5; }

/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn,
input[type="submit"],
#reset-pass-submit {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  font-family: "Cabin", Verdana, serif;
  font-weight: 500;
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: 1px solid;
  padding: 10px 24px;
  transition: all 300ms ease-in-out;
  border-radius: 22px; }
  .c-btn, .c-btn:hover, .c-btn:active, .c-btn:focus,
  input[type="submit"],
  input[type="submit"]:hover,
  input[type="submit"]:active,
  input[type="submit"]:focus,
  #reset-pass-submit,
  #reset-pass-submit:hover,
  #reset-pass-submit:active,
  #reset-pass-submit:focus {
    text-decoration: none;
    /* [4] */ }

.c-btn--block {
  display: block;
  width: 100%; }

.c-btn--circle {
  border-radius: 100px; }

.c-btn--print {
  height: 44px;
  padding: 8px;
  width: 44px; }

/* Style variants
   ========================================================================== */
.c-btn--primary,
input[type="submit"],
#reset-pass-submit {
  background-color: #00b4bd;
  border-color: #00b4bd;
  text-transform: uppercase; }
  .c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus,
  input[type="submit"],
  input[type="submit"]:hover,
  input[type="submit"]:active,
  input[type="submit"]:focus,
  #reset-pass-submit,
  #reset-pass-submit:hover,
  #reset-pass-submit:active,
  #reset-pass-submit:focus {
    color: #fff;
    text-decoration: none;
    /* [4] */ }
  .c-btn--primary:hover, .c-btn--primary:focus,
  input[type="submit"]:hover,
  input[type="submit"]:focus,
  #reset-pass-submit:hover,
  #reset-pass-submit:focus {
    background-color: #fff;
    border-color: #00b4bd;
    color: #00b4bd; }
    .c-btn--primary:hover svg, .c-btn--primary:focus svg,
    input[type="submit"]:hover svg,
    input[type="submit"]:focus svg,
    #reset-pass-submit:hover svg,
    #reset-pass-submit:focus svg {
      fill: #00b4bd; }

.c-btn--primary-alt {
  background-color: #fff;
  border-color: #e0e0e0;
  color: #343841;
  text-transform: uppercase; }
  .c-btn--primary-alt, .c-btn--primary-alt:hover, .c-btn--primary-alt:active, .c-btn--primary-alt:focus {
    text-decoration: none;
    /* [4] */ }
  .c-btn--primary-alt:hover, .c-btn--primary-alt:focus {
    background-color: #00b4bd;
    color: #fff;
    border-color: #fff; }
    .c-btn--primary-alt:hover svg, .c-btn--primary-alt:focus svg {
      fill: #fff; }

.c-btn--secondary {
  background-color: #a9d834;
  border-color: #a9d834;
  text-transform: uppercase; }
  .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
    color: #fff;
    text-decoration: none; }
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    background-color: #fff;
    border-color: #a9d834;
    color: #a9d834; }
    .c-btn--secondary:hover svg, .c-btn--secondary:focus svg {
      fill: #a9d834; }

.c-btn--secondary-alt {
  background-color: #fff;
  border-color: #a9d834;
  color: #a9d834;
  text-transform: uppercase; }
  .c-btn--secondary-alt, .c-btn--secondary-alt:hover, .c-btn--secondary-alt:active, .c-btn--secondary-alt:focus {
    text-decoration: none;
    /* [4] */ }
  .c-btn--secondary-alt:hover, .c-btn--secondary-alt:focus {
    background-color: #a9d834;
    border-color: #fff;
    color: #fff; }
    .c-btn--secondary-alt:hover svg, .c-btn--secondary-alt:focus svg {
      fill: #fff; }

.c-btn--tertiary {
  background-color: #fb8244;
  border-color: #fb8244;
  text-transform: uppercase; }
  .c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:active, .c-btn--tertiary:focus {
    color: #fff;
    text-decoration: none; }
  .c-btn--tertiary:hover, .c-btn--tertiary:focus {
    background-color: #fff;
    border-color: #fb8244;
    color: #fb8244; }
    .c-btn--tertiary:hover svg, .c-btn--tertiary:focus svg {
      fill: #fb8244; }

.c-btn--tertiary-alt {
  background-color: #fff;
  border-color: #fb8244;
  color: #fb8244;
  text-transform: uppercase; }
  .c-btn--tertiary-alt, .c-btn--tertiary-alt:hover, .c-btn--tertiary-alt:active, .c-btn--tertiary-alt:focus {
    text-decoration: none;
    /* [4] */ }
  .c-btn--tertiary-alt:hover, .c-btn--tertiary-alt:focus {
    border-color: #fff;
    background-color: #fb8244;
    color: #fff; }
    .c-btn--tertiary-alt:hover svg, .c-btn--tertiary-alt:focus svg {
      fill: #fff; }

/* Size variants
   ========================================================================== */
.c-btn--small-header {
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: 1.8461538462;
  padding: 6px 30px; }

.c-btn--modal {
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: 1.8461538462;
  padding: 6px 30px;
  margin-bottom: 12px;
  max-width: 208px; }
  @media (min-width: 41.25em) {
    .c-btn--modal {
      width: 100%; } }
.c-btn--small {
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: 1.8461538462;
  padding: 4px 24px; }

.c-btn--large {
  padding: 24px 48px; }

/* Ghost buttons
   ========================================================================== */
/**
 * Ghost buttons have see-through backgrounds and are bordered.
 */
.c-btn--ghost {
  border: 2px solid currentColor;
  padding: 10px 22px; }
  .c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
    background: none; }
  .c-btn--ghost.c-btn--small {
    padding: 4px 10px; }
  .c-btn--ghost.c-btn--large {
    padding: 22px 46px; }
  .c-btn--ghost.c-btn--primary {
    color: #4a8ec2; }
    .c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
      color: #3774a2; }
  .c-btn--ghost.c-btn--secondary {
    color: #2f4054; }
    .c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
      color: #1d2733; }
  .c-btn--ghost.c-btn--tertiary {
    color: #fff; }
    .c-btn--ghost.c-btn--tertiary:hover, .c-btn--ghost.c-btn--tertiary:focus {
      color: #fff; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
    .owl-carousel .owl-stage:after {
      content: ".";
      display: block;
      clear: both;
      visibility: hidden;
      line-height: 0;
      height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

.owl-carousel.owl-loaded {
  overflow: hidden; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
  .owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  bottom: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  @media (min-width: 41.25em) {
    .owl-theme .owl-dots {
      bottom: 12px; } }
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-theme .owl-dots .owl-dot span {
  width: 11px;
  height: 11px;
  margin: 5px 7px;
  background: #d7d7d7;
  border: 2px solid #d7d7d7;
  display: block;
  opacity: 0.5;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; }

.owl-theme .owl-dots .owl-dot:focus {
  outline: none; }
  .owl-theme .owl-dots .owl-dot:focus > span {
    opacity: 0.9; }

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #00b4bd;
  border-color: #00b4bd;
  border-collapse: transparent; }

/**
 * Recipe Theme
 */
.c-carousel-wrapper {
  background: #f8f8f8;
  min-height: 380px; }

.recipe-carousel .item {
  min-height: 380px; }
  @media (min-width: 41.25em) {
    .recipe-carousel .item {
      min-height: 380px; } }
  .recipe-carousel .item .o-wrapper {
    height: 100%;
    position: relative; }

/* ==========================================================================
   #HEADER
   ========================================================================== */
.ad--header {
  background-color: #f8f8f8; }

.ad---vertical {
  background: url(assets/images/leaderboard-ad-heading.png) -2px 50% no-repeat;
  display: inline-block;
  min-height: 75px;
  min-width: 300px;
  padding-left: 11px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ad---vertical {
      background-image: url(assets/images/leaderboard-ad-heading@2x.png);
      background-size: 11px 73px; } }
.site-header {
  border-top: 1px solid #e0e0e0;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  padding-top: 20px;
  position: relative; }

.site-header--overlay {
  z-index: 2; }
  .site-header--overlay .site-header__top {
    background-color: #2e3e53;
    color: #fff; }

@media (min-width: 41.25em) {
  .site-header__favorites,
  .site-header__branding,
  .site-header__social-search {
    display: inline-block; } }

@media (min-width: 41.25em) {
  .site-header__social-search {
    min-width: 402px; } }

.site-header__favorites,
.site-header__social-search {
  display: none; }
  @media (min-width: 41.25em) {
    .site-header__favorites,
    .site-header__social-search {
      display: inline-block; } }
@media (min-width: 62.5em) {
  .site-header__top {
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between; } }

@media (min-width: 41.25em) and (max-width: 62.49em) {
  .site-header__branding {
    display: none; } }

@media (min-width: 62.5em) {
  .site-header__branding {
    flex: 1; } }

.site-title {
  margin: 0 auto;
  padding: 10px;
  position: relative;
  text-align: center;
  width: 100%; }
  @media (min-width: 20em) {
    .site-title {
      padding: 0; } }
  @media (min-width: 41.25em) {
    .site-title {
      padding: 0; } }
  @media (min-width: 62.5em) {
    .site-title {
      margin: 0 80px 0 auto;
      padding-bottom: 20px;
      width: 287px; } }
  .site-title svg {
    fill: #343841;
    max-width: 100%; }

.site-title__wordmark {
  height: 120px; }
  @media (min-width: 20em) {
    .site-title__wordmark {
      height: 60px; } }
  @media (min-width: 41.25em) {
    .site-title__wordmark {
      height: 60px; } }
  @media (min-width: 62.5em) {
    .site-title__wordmark {
      height: 89px; } }
.site-header .menu-social-navigation-container {
  display: inline-block; }
  .site-header .menu-social-navigation-container li {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle; }
  .site-header .menu-social-navigation-container a {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 60px;
    color: #343841;
    display: inline-block;
    text-align: center; }
    .site-header .menu-social-navigation-container a svg {
      fill: #343841;
      padding: 9px;
      height: 32px;
      width: 32px; }
    .site-header .menu-social-navigation-container a:hover {
      background-color: #00b4bd;
      color: #fff; }
      .site-header .menu-social-navigation-container a:hover svg {
        fill: #fff; }

.site-header .facebook svg {
  height: 16px;
  width: 9px; }

.site-header .twitter svg {
  height: 15px;
  width: 18px; }

.site-header .flickr svg {
  height: 12px;
  width: 18px; }

.user-menu-mobile {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  line-height: 1;
  display: block;
  height: 32px;
  margin: auto;
  padding: 8px;
  position: relative;
  width: 32px; }
  .user-menu-mobile svg {
    fill: #5c5c5e; }
  .logged-in .user-menu-mobile svg {
    fill: #00b4bd; }

.site-header--overlay svg {
  fill: #fff; }

.site-header--overlay ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff; }

.site-header--overlay ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff; }

.site-header--overlay :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff; }

.site-header--overlay :-moz-placeholder {
  /* Firefox 18- */
  color: #fff; }

.site-header--overlay .menu-social-navigation-container a {
  color: #fff; }
  .site-header--overlay .menu-social-navigation-container a svg {
    fill: #fff; }
  .site-header--overlay .menu-social-navigation-container a:hover {
    color: #4db3e6; }
    .site-header--overlay .menu-social-navigation-container a:hover svg {
      fill: #4db3e6; }

.c-btn--header-subscribe {
  margin: auto; }
  @media (max-width: 41.24em) {
    .c-btn--header-subscribe {
      font-size: 11px;
      font-size: 0.7333333333rem;
      line-height: normal;
      padding: 6px 20px; } }
.c-favorites-link {
  color: #343841;
  font-family: "Cabin", Verdana, serif;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase; }
  .c-favorites-link > .c-favorites-link__icon {
    fill: #343841;
    margin-right: 7px;
    vertical-align: middle; }
  .c-favorites-link:hover, .c-favorites-link:focus {
    color: #1cb5bd; }
    .c-favorites-link:hover > .c-favorites-link__icon, .c-favorites-link:focus > .c-favorites-link__icon {
      fill: #1cb5bd; }

.menu {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }
  .menu a {
    color: #343841; }
    .menu a:hover {
      color: #00b4bd; }

@media (min-width: 62.5em) {
  .site-header--default .main-navigation {
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0; } }

.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden; }

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%; }

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%; }

/* User Menu */
.user-icon {
  background: url(assets/images/user-icon.png) 50% no-repeat;
  display: block;
  height: 32px;
  padding: 9px;
  position: relative;
  width: 32px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .user-icon {
      background-image: url(assets/images/user-icon.svg);
      background-size: 14px 15px;
      fill: #343841; } }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .logged-in .user-icon {
      background-image: url(assets/images/user-icon-logged-in.svg); } }
.menu-user-navigation-container {
  display: inline-block;
  vertical-align: middle; }
  .menu-user-navigation-container ul {
    list-style: none;
    padding-left: 0; }
    @media (min-width: 62.5em) {
      .menu-user-navigation-container ul {
        margin: 7px 5px 0 0; } }
    .menu-user-navigation-container ul ul {
      display: inline-block;
      margin: 0;
      padding: 12px 0;
      text-align: center; }
      @media (min-width: 62.5em) {
        .menu-user-navigation-container ul ul {
          background-color: #fff;
          border: 1px solid #e1e1e1; } }
      @media (min-width: 62.5em) {
        .menu-user-navigation-container ul ul {
          position: absolute;
          top: 100%;
          left: -999em;
          z-index: 99999; } }
      @media (min-width: 62.5em) {
        .menu-user-navigation-container ul ul ul {
          left: -999em;
          top: 0; } }
      .menu-user-navigation-container ul ul li {
        font-size: 14px;
        font-size: 0.9333333333rem;
        line-height: 1.2;
        margin-right: 0;
        padding: 5px 12px 8px; }
        .menu-user-navigation-container ul ul li:hover > ul, .menu-user-navigation-container ul ul li.focus > ul {
          left: 100%; }
      .menu-user-navigation-container ul ul a {
        color: #757679;
        width: 114px; }
    @media (min-width: 62.5em) {
      .menu-user-navigation-container ul li:hover > ul,
      .menu-user-navigation-container ul li.focus > ul {
        left: 50%;
        margin-left: -57px; } }
  .menu-user-navigation-container li {
    display: block;
    margin-right: 10px;
    padding: 0;
    position: relative; }
    @media (min-width: 62.5em) {
      .menu-user-navigation-container li {
        display: inline-block; } }
    .menu-user-navigation-container li:last-child {
      margin-right: 0; }
  .menu-user-navigation-container a {
    display: block;
    text-decoration: none; }
  .menu-user-navigation-container ul li.menu-item-has-children > a {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 60px;
    color: #343841;
    display: inline-block;
    text-align: center; }
  .menu-user-navigation-container ul li.menu-item-has-children:after,
  .menu-user-navigation-container ul li.page_item_has_children:after {
    border-style: solid;
    border-width: 6px;
    border-color: transparent transparent #fff transparent;
    content: "";
    display: none;
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    bottom: -1px;
    width: 0;
    z-index: 100000; }
  .menu-user-navigation-container ul li.menu-item-has-children:before,
  .menu-user-navigation-container ul li.page_item_has_children:before {
    border-style: solid;
    border-width: 7px;
    border-color: transparent transparent #e0e0e0 transparent;
    content: "";
    display: none;
    height: 0;
    left: 50%;
    margin-left: -6px;
    position: absolute;
    bottom: -1px;
    width: 0;
    z-index: 100000; }
  @media (min-width: 62.5em) {
    .menu-user-navigation-container ul li.menu-item-has-children.focus:before,
    .menu-user-navigation-container ul li.menu-item-has-children:hover:before,
    .menu-user-navigation-container ul li.menu-item-has-children.focus:after,
    .menu-user-navigation-container ul li.menu-item-has-children:hover:after,
    .menu-user-navigation-container ul li.page_item_has_children.focus:before,
    .menu-user-navigation-container ul li.page_item_has_children:hover:before,
    .menu-user-navigation-container ul li.page_item_has_children.focus:after,
    .menu-user-navigation-container ul li.page_item_has_children:hover:after {
      display: block; } }
  @media (min-width: 62.5em) {
    .menu-user-navigation-container ul {
      display: block; } }
.menu-logged-in-user {
  color: #5c5c5e;
  letter-spacing: 4px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: normal;
  text-transform: uppercase; }
  .menu-logged-in-user .menu-item {
    position: relative; }
    .menu-logged-in-user .menu-item:after {
      color: #dfdfdf;
      content: " | ";
      padding: 0 .5em 0 .2em; }
    .menu-logged-in-user .menu-item:last-child:after {
      content: none; }
  .menu-logged-in-user a {
    color: #5c5c5e; }
  .menu-logged-in-user .current-menu-item a {
    color: #00b4bd; }

.site-favorites-menu {
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal;
  font-family: "Cabin", Verdana, serif;
  font-weight: bold;
  margin-bottom: 24px; }
  @media (min-width: 41.25em) {
    .site-favorites-menu {
      font-size: 16px;
      font-size: 1.0666666667rem;
      line-height: normal; } }
  .site-favorites-menu .menu-item {
    display: inline-block; }
    .site-favorites-menu .menu-item a {
      border: 1px solid #fff;
      border-bottom-color: transparent;
      border-radius: 7px 7px 0 0;
      border-bottom-color: #fff;
      display: inline-block;
      padding: 12px; }
      @media (min-width: 41.25em) {
        .site-favorites-menu .menu-item a {
          padding: 12px 48px; } }
      .site-favorites-menu .menu-item a:hover, .site-favorites-menu .menu-item a:focus {
        color: #00b4bd; }
  .site-favorites-menu .current-menu-item {
    margin-bottom: -1px; }
    .site-favorites-menu .current-menu-item a {
      border-color: #e0e0e0;
      border-bottom-color: #fff;
      color: #00b4bd;
      padding-bottom: 13px; }

/* ==========================================================================
   #SEARCH FORM
   ========================================================================== */
.search-form {
  background-color: #ffffff;
  border: 1px solid #d1d8df;
  border-radius: 3px;
  display: inline-block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }
  .search-form:focus {
    outline-color: #e2e5ea; }

.search-field {
  background-color: transparent;
  border: none;
  width: calc(100% - 40px); }
  .search-field:focus {
    outline: none; }

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none; }

.js .header-search {
  display: none;
  transition: all .2s ease-in-out;
  opacity: 0; }

.toggled .header-search {
  display: inline-block;
  opacity: 1; }

.header-search svg {
  fill: #343841;
  height: 18px;
  vertical-align: middle; }

.site-header .search-form {
  border: none;
  border-bottom: 1px solid #e1e1e1;
  border-radius: 0;
  min-height: 32px; }
  @media (max-width: 62.49em) {
    .site-header .search-form {
      margin-bottom: 20px; } }
.site-header__top .search-form:focus, .site-header__top .search-form:focus-within {
  outline: 6px auto #e0e0e0; }

.site-header--overlay .search-form {
  background-color: #000;
  border-bottom: 1px solid #fff; }

.site-header--overlay .search-field {
  background-color: #000;
  color: #fff; }

.mobile-search-toggle {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: none;
  height: 60px;
  vertical-align: middle;
  width: 30px; }
  .js .mobile-search-toggle {
    display: block; }
  .mobile-search-toggle svg {
    fill: #343841;
    vertical-align: middle; }

.mobile-search {
  width: 100%; }
  @media (min-width: 62.5em) {
    .mobile-search {
      display: none; } }
  .toggled .mobile-search {
    display: block;
    opacity: 1; }
  .mobile-search .search-form {
    display: block; }
    .mobile-search .search-form:focus .mobile-search .search-form:focus-within {
      border: 1px solid #e1e1e1; }

#site-navigation .mobile-search-toggle .icon-close {
  display: none; }

#site-navigation .mobile-search-toggle .icon-search {
  display: inline-block; }

#site-navigation.toggled .mobile-search-toggle .icon-close {
  display: inline-block; }

#site-navigation.toggled .mobile-search-toggle .icon-search {
  display: none; }

.header-search-toggle {
  background: none;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: none;
  vertical-align: middle; }
  .js .header-search-toggle {
    display: initial; }
  .header-search-toggle svg {
    fill: #343841;
    vertical-align: middle; }
  @media (min-width: 62.5em) {
    .header-search-toggle {
      border-right: 1px solid #d3dae2;
      margin-right: 15px;
      padding-right: 15px;
      position: relative; }
      .site-header--overlay .header-search-toggle {
        border-right-color: #404040; } }
  .site-header--overlay .header-search-toggle svg {
    fill: #fff; }

@media (min-width: 62.5em) {
  #header-social-search.toggled .header-search-toggle {
    border-right: none; } }

#header-social-search .header-search-toggle .icon-close {
  display: none; }

#header-social-search .header-search-toggle .icon-search {
  display: inline-block; }

#header-social-search.toggled .header-search-toggle .icon-close {
  display: inline-block; }

#header-social-search.toggled .header-search-toggle .icon-search {
  display: none; }

#header-social-search.toggled .menu-social-navigation-container,
#header-social-search.toggled a.c-btn {
  display: none; }

.content-area .search-form {
  padding: 7px; }

/* ==========================================================================
   #BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  clear: both;
  color: #757679;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  padding-bottom: 6px;
  padding-top: 24px; }
  .breadcrumbs a {
    color: #343841; }

.c-site-wide-banner {
  background-color: #00b4bd;
  clear: both;
  color: #fff;
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: normal;
  padding: 12px 0;
  text-align: center; }
  .c-site-wide-banner a {
    color: inherit; }

#news-scroll-container {
  overflow: hidden; }

@media (min-width: 20em) {
  #news-scroll-text {
    text-align: center;
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 14s linear infinite;
    -webkit-animation: my-animation 14s linear infinite;
    animation: my-animation 14s linear infinite; } }

@media (min-width: 62.5em) {
  #news-scroll-text {
    text-align: center;
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: my-animation 20s linear infinite;
    -webkit-animation: my-animation 20s linear infinite;
    animation: my-animation 20s linear infinite; } }

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%); }
  to {
    -moz-transform: translateX(-100%); } }

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%); }
  to {
    -webkit-transform: translateX(-100%); } }

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@media (min-width: 62.5em) {
  .primary-content-container {
    width: 62%; } }

@media (min-width: 78.4375em) {
  .primary-content-container {
    max-width: 870px;
    width: 80%; } }

.site-content {
  clear: both;
  padding-top: 33px; }

.site-content--full-width-hero {
  padding-top: 0;
  position: relative;
  z-index: 1; }
  @media (min-width: 41.25em) {
    .site-content--full-width-hero {
      top: -66px; } }
.single .site-main .post-thumbnail {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px; }

.single-post .site-main .entry-header,
.single-post .site-main .entry-content,
.single-post .site-main .entry-footer,
.single-post .site-main .comments-area {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; }

.page .entry-content,
.single .entry-content {
  font-weight: 600; }

.entry-content.font-size--small,
.entry-content.font-size--small .recipe-directions,
.entry-content.font-size--small .recipe-ingredients {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: 1.2; }

.entry-content.font-size--large,
.entry-content.font-size--large .recipe-directions,
.entry-content.font-size--large .recipe-ingredients {
  font-size: 20px;
  font-size: 1.3333333333rem;
  line-height: 1.4; }

.single .site-main .entry-meta {
  font-size: 12px;
  font-size: 0.8rem;
  line-height: normal;
  letter-spacing: 4px;
  text-transform: uppercase; }

@media (min-width: 41.25em) {
  .strapline {
    letter-spacing: 4px; } }

.entry-excerpt {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.5333333333; }
  .entry-excerpt p:last-child {
    margin-bottom: 0; }

.lede {
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 1.2857142857; }

.c-author {
  color: #757679;
  margin-bottom: 24px;
  margin-top: 24px; }
  .c-author h3 {
    color: #00b4bd;
    font-size: 21px;
    font-size: 1.4rem;
    line-height: 1.4285714286; }
    .c-author h3 a {
      color: #00b4bd; }

.c-author__img > img {
  border: 4px solid #f8f8f8;
  border-radius: 100px;
  height: 155px;
  object-fit: cover;
  overflow: hidden;
  width: 155px; }

.o-layout .c-author__content {
  padding-top: 24px; }

.c-author__content p {
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 600; }

.author-social .icon {
  height: 12px; }

.author-social a {
  color: #c7c7c7;
  fill: #c7c7c7; }

.author-social a:focus,
.author-social a:hover {
  color: #00b4bd;
  fill: #00b4bd; }

.entry-footer__disclaimer {
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5; }

blockquote {
  border-top: 6px solid #4db3e6;
  border-bottom: 2px solid #4db3e6;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-size: 1.3333333333rem;
  line-height: 1.5;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 17px;
  padding-top: 17px;
  text-align: center; }
  blockquote.alignleft {
    border-bottom: none;
    border-left: 6px solid #4db3e6;
    border-top: none;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 0;
    padding-top: 0;
    text-align: left; }
  blockquote.alignright {
    border-bottom: none;
    border-right: 6px solid #4db3e6;
    border-top: none;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 24px;
    padding-top: 0;
    text-align: right; }

.entry-meta {
  color: #5c5c5e;
  display: block;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.2; }
  .entry-meta a {
    color: #343841; }
  .entry-meta .entry-meta-term {
    letter-spacing: 2px; }
  .overlay--boxed .entry-meta {
    color: #fff; }
    .overlay--boxed .entry-meta a {
      color: #fff; }

.entry-footer .byline,
.entry-footer .posted-on {
  color: #343841;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: 1.2; }
  .entry-footer .byline a,
  .entry-footer .posted-on a {
    color: #343841; }

figcaption,
.wp-caption-text {
  color: #757679;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  padding-top: 10px; }

.entry-content ol, .entry-content ul {
  padding-left: 24px; }

.entry-content li {
  margin-bottom: 18px;
  margin-bottom: 1.125rem; }

.archive-description {
  color: #5c5c5e;
  font-family: "Cabin", Verdana, serif;
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 1.2682926829; }

.module-section {
  padding-bottom: 24px;
  padding-top: 24px; }

.module-section--bg-color {
  padding-bottom: 48px;
  padding-top: 48px; }

.module-section--bg-image {
  padding-bottom: 48px;
  padding-top: 48px;
  position: relative; }
  @media (max-width: 62.49em) {
    .module-section--bg-image:before {
      background-color: #000;
      background-color: rgba(0, 0, 0, 0.25);
      bottom: 0;
      display: block;
      content: "";
      height: 100%;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      z-index: 1; } }
  .module-section--bg-image .o-wrapper {
    position: relative;
    z-index: 5; }
  .module-section--bg-image a:focus, .module-section--bg-image a:hover {
    color: #ddd; }

.module-section__header {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .module-section--3-col .module-section__header {
      width: calc(50% - 171px) !important; } }
  @media (min-width: 78.4375em) {
    .module-section--3-col .module-section__header {
      width: 70.83333333% !important; } }
.module-section__header-link {
  color: #7e8d9e; }
  .module-section__header-link .icon {
    height: 11px; }

@media (max-width: 62.49em) {
  .module-section__content .o-layout__item {
    margin-bottom: 20px; } }

@media (min-width: 62.5em) {
  .module-section__non-post-content {
    width: 342px; } }

@media (min-width: 62.5em) {
  .module-section--2-col .module-section__post-content {
    width: calc(100% - 348px); } }

@media (min-width: 41.25em) {
  .module-section--3-col .module-section__post-content {
    width: 50%; } }

@media (min-width: 62.5em) {
  .module-section--3-col .module-section__post-content {
    width: calc(50% - 171px); } }

@media (min-width: 78.4375em) {
  .module-section--3-col .module-section__post-content {
    width: 440px; } }

.o-layout--equal-height .stacked {
  display: flex;
  flex-direction: column;
  height: 100%; }

.stacked:not(.stacked--border) .post-thumbnail {
  display: block;
  margin-bottom: 12px; }

.stacked--border {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 7px; }
  .stacked--border .post-thumbnail {
    border-bottom: 1px solid #e0e0e0; }
    .stacked--border .post-thumbnail img {
      border-radius: 7px 7px 0 0;
      display: block;
      height: 250px;
      object-fit: cover;
      width: 100%; }
  .stacked--border .entry-footer {
    background-color: transparent;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 7px 7px;
    padding: 22px 36px; }

.stacked__content .entry-title a {
  color: #343841; }

.stacked--border .stacked__content {
  background-color: #fff;
  border-radius: 7px;
  padding: 24px 36px; }

.has-post-thumbnail .stacked--border .stacked__content {
  border-radius: 0 0 7px 7px; }

.u-1\/3\@tablet .stacked--border .stacked__content {
  padding: 24px; }

.o-layout--equal-height .stacked__content {
  flex: 1; }

.listing .entry-header,
.listing .entry-content {
  max-width: 90%; }

.overlay {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 7px;
  height: 385px;
  min-height: 385px;
  position: relative; }
  @media (max-width: 41.24em) {
    .overlay {
      display: flex;
      flex-direction: column; } }
  @media (min-width: 41.25em) {
    .overlay {
      min-height: 508px;
      height: 508px; } }
  .o-layout--equal-height .overlay {
    height: 100%; }
  @media (min-width: 41.25em) {
    .overlay.overlay--no-image {
      min-height: initial;
      height: auto; } }
.overlay--thin {
  height: 195px;
  max-height: 216px;
  min-height: 195px; }
  @media (min-width: 41.25em) {
    .overlay--thin {
      height: 216px; } }
  @media (min-width: 62.5em) {
    .overlay--thin {
      max-height: 225px;
      height: 216px; } }
  .overlay--thin:first-child {
    margin-bottom: 32px; }

.archive .overlay__title {
  font-size: 24px;
  font-size: 1.6rem;
  line-height: 1; }

.overlay--boxed .overlay__title {
  color: #fff; }

.tip .overlay--boxed .overlay__title {
  color: #343841; }

.overlay--gradient {
  position: relative; }
  .overlay--gradient:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */
    z-index: 1; }

.overlay__content {
  padding: 24px;
  margin-top: auto;
  text-align: center;
  width: 100%;
  z-index: 5; }
  @media (min-width: 20em) {
    .overlay__content {
      bottom: 0;
      left: 0;
      top: auto;
      padding: 0;
      position: absolute;
      width: 100%; } }
  .overlay--boxed .overlay__content {
    background-color: #00b4bd;
    border-radius: 0 0 7px 7px;
    color: #fff;
    padding: 21px 25px; }
  .post-type-archive-recipe .overlay--boxed .overlay__content {
    background-color: #a9d834; }
  .tip .overlay--boxed .overlay__content {
    background-color: #f8f8f8;
    color: #5c5c5e; }
  .overlay--no-image .overlay__content {
    border-radius: 7px; }
    @media (min-width: 41.25em) {
      .overlay--no-image .overlay__content {
        position: relative; } }
  .overlay__content a {
    color: #fff; }
  .tip .overlay__content a {
    color: #00b4bd; }
  .overlay__content :last-child {
    margin-bottom: 0; }

@media (max-width: 41.24em) {
  .module-section--post-count-1 .overlay {
    height: 300px; } }

@media (max-width: 41.24em) {
  .module-section--post-count-1 .overlay__content {
    bottom: 0;
    position: absolute; } }

.more-link {
  display: block;
  font-weight: 700;
  margin: 12px 0;
  text-transform: uppercase; }
  .module-section--bg-image .more-link {
    color: #a9d834;
    display: block; }
    .module-section--bg-image .more-link:hover {
      color: #343841; }
  .overlay__content .more-link {
    display: none; }

@media (min-width: 41.25em) {
  .module-section__non-post-content {
    width: 318px; } }

@media (max-width: 41.24em) {
  .o-layout .module-section__non-post-content .ad--sidebar {
    margin-left: -10px; }
  .o-layout--medium .module-section__non-post-content .ad--sidebar {
    margin-left: -15px; } }

@media (min-width: 41.25em) {
  .module-section__non-post-content .ad--sidebar {
    border: 1px solid #e1e1e1;
    padding: 8px; } }

.module-section__non-post-content .widget {
  margin-left: auto;
  margin-right: auto;
  max-width: 318px; }
  @media (min-width: 41.25em) {
    .module-section__non-post-content .widget {
      width: 318px; } }
  .module-section__non-post-content .widget:first-child {
    margin-bottom: 24px; }
  .module-section__non-post-content .widget:last-child {
    margin-bottom: 0; }

.type-videos a.post-thumbnail,
.type-videos .overlay,
.type-t1_diabetes_videos a.post-thumbnail,
.type-t1_diabetes_videos .overlay {
  display: block;
  position: relative;
  text-align: center;
  width: 100%; }
  .type-videos a.post-thumbnail:after,
  .type-videos .overlay:after,
  .type-t1_diabetes_videos a.post-thumbnail:after,
  .type-t1_diabetes_videos .overlay:after {
    background: url(assets/images/video-play-icon.png) 50% no-repeat;
    background-size: 82px 82px;
    content: ' ';
    height: 82px;
    left: 50%;
    margin-top: -41px;
    margin-left: -41px;
    position: absolute;
    top: 50%;
    width: 82px;
    z-index: 5; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .type-videos a.post-thumbnail:after,
    .type-videos .overlay:after,
    .type-t1_diabetes_videos a.post-thumbnail:after,
    .type-t1_diabetes_videos .overlay:after {
      background-image: url(assets/images/video-play-icon@2x.png);
      background-size: 82px 82px; } }
.type-videos .overlay:after,
.type-t1_diabetes_videos .overlay:after {
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px; }

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .type-videos .overlay:after,
  .type-t1_diabetes_videos .overlay:after {
    background-size: 100px 100px; } }

.type-videos .overlay__content,
.type-t1_diabetes_videos .overlay__content {
  background-color: #fd8443; }

figure {
  max-width: 100%; }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.content-highlight {
  border: 1px solid #d1d8df;
  margin-bottom: 24px;
  padding: 30px; }
  .content-highlight:last-child {
    margin-bottom: 12px; }
  .content-highlight p:last-child {
    margin-bottom: 0; }

.account-page-form legend {
  font-family: "Cabin", Verdana, serif;
  color: #343841;
  font-size: 48px;
  font-size: 3.2rem;
  line-height: 1.1458333333;
  font-weight: 500;
  margin-bottom: 24px; }

.account-page-form #somfrp_user_info {
  min-height: 44px;
  padding: 12px; }

/* ==========================================================================
   #ARTICLE UTILITIES
   ========================================================================== */
.article-utilities__item {
  color: #5c5c5e; }
  .article-utilities__item a {
    color: #5c5c5e; }
    .article-utilities__item a:hover, .article-utilities__item a:focus {
      color: #00b4bd; }
  .article-utilities__item .c-launch-modal,
  .article-utilities__item .simplefavorite-button {
    -webkit-appearance: none;
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 0; }
  .article-utilities__item .icon-print {
    fill: #e0e0e0; }
  @media (max-width: 41.24em) {
    .article-utilities__item .o-layout__item {
      margin: 0 auto 12px;
      width: 100%; } }
.article-utilities__item {
  margin-right: 24px; }

.c-text-adjust {
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  margin: 0 2px;
  padding: 0;
  vertical-align: middle; }
  .c-text-adjust:hover, .c-text-adjust:focus {
    border-color: #00b4bd; }

.c-text-adjust__icon {
  background: #fff;
  border-radius: 2px;
  color: #5c5c5e;
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  font-size: 1rem;
  line-height: 15px;
  width: 15px; }
  .c-text-adjust__icon:hover, .c-text-adjust__icon:focus {
    color: #00b4bd; }

.single-recipe .c-text-adjustment {
  display: block; }
  @media (min-width: 41.25em) {
    .single-recipe .c-text-adjustment {
      display: inline-block; } }
@media (min-width: 41.25em) {
  .single-recipe .c-text-adjustment__label {
    padding: 0 12px; } }

.single-recipe .c-text-adjust {
  border-color: #00b4bd; }
  .single-recipe .c-text-adjust:hover, .single-recipe .c-text-adjust:focus {
    border-color: #5c5c5e; }

.single-recipe .c-text-adjust__icon {
  color: #00b4bd; }
  .single-recipe .c-text-adjust__icon:hover, .single-recipe .c-text-adjust__icon:focus {
    color: #5c5c5e; }

/* ==========================================================================
   #HOME
   ========================================================================== */
.home-section {
  padding-bottom: 12px;
  padding-top: 12px; }

.home-section--recipes {
  padding-bottom: 24px;
  padding-top: 24px; }

.home-section--type-1-type-2 {
  padding-top: 24px; }

.home-primary-feature .post-thumbnail {
  border-bottom: none;
  display: block; }

.home-primary-feature .post-thumbnail img {
  height: auto; }

.home-primary-feature .stacked__content {
  background-color: #00b4bd;
  border-radius: 0 0 7px 7px;
  color: #fff;
  text-align: center; }

.home-primary-feature .entry-meta,
.home-primary-feature a {
  color: #fff !important; }

.home-primary-feature.post-22010 .post-thumbnail {
  background-color: #e0e4e7;
  border-radius: 7px 7px 0 0; }

@media (min-width: 41.25em) {
  .home-featured-secondary.stacked {
    max-width: none; } }

.home-featured-secondary.stacked .post-thumbnail img {
  height: 203px; }

.home-featured-secondary.stacked .stacked__content {
  padding: 12px; }
  @media (min-width: 41.25em) {
    .home-featured-secondary.stacked .stacked__content {
      padding: 24px; } }
.home-news-primary .post-thumbnail img {
  height: 275px;
  object-fit: cover;
  width: 100%; }
  @media (min-width: 41.25em) {
    .home-news-primary .post-thumbnail img {
      height: 660px; } }
.home-news-secondary .post-thumbnail img {
  height: 226px;
  object-fit: cover;
  width: 100%; }
  @media (min-width: 41.25em) {
    .home-news-secondary .post-thumbnail img {
      height: 290px; } }
.home-type-1-2-primary .entry-excerpt {
  font-size: 15px;
  font-size: 1rem;
  line-height: normal; }

.home-type-1-2-secondary .entry-excerpt {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: normal; }

.home-latest-videos .videos {
  border: 1px solid #e0e0e0;
  border-radius: 7px; }

.home-latest-videos .post-thumbnail {
  margin-bottom: 0; }

.home-latest-videos .post-thumbnail img {
  border-radius: 7px 7px 0 0; }
  @media (min-width: 41.25em) {
    .home-latest-videos .post-thumbnail img {
      border-radius: 7px 0 0 7px; } }
.home-latest-videos .listing__content {
  border-radius: 0 0 7px 7px;
  padding: 24px; }
  @media (min-width: 41.25em) {
    .home-latest-videos .listing__content {
      border-radius: 0 7px 7px 0; } }
  @media (min-width: 62.5em) {
    .home-latest-videos .listing__content {
      padding: 48px 24px 12px 12px; } }
/* ==========================================================================
   #WIDGETS
   ========================================================================== */
.secondary-content-container {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .secondary-content-container {
      width: 342px; } }
.widget-area--sidebar {
  margin-left: auto;
  margin-right: auto; }

.widget--contained,
.widget-area--sidebar .widget {
  border-radius: 7px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px; }
  @media (min-width: 41.25em) {
    .widget--contained,
    .widget-area--sidebar .widget {
      max-width: 302px; } }
.widget--padding {
  padding: 8px; }

@media (min-width: 41.25em) {
  .widget-area--sidebar .ad--sidebar {
    padding: 8px; } }

.widget__heading:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 2px;
  margin: 14px auto 0;
  width: 110px; }

.newsletter__heading {
  font-size: 24px;
  font-size: 1.6rem;
  line-height: normal; }
  .newsletter__heading:after {
    background: #a7d433; }

.newsletter__content {
  color: #343841;
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: normal;
  font-weight: 600; }

.newsletter__form {
  border: 1px solid #a7d433;
  border-radius: 60px;
  display: flex;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal;
  justify-content: space-between; }

.newsletter__form > input {
  border: none;
  border-radius: 60px;
  padding: 15px 3px 15px 15px;
  max-width: 60%; }

.widget-area--sidebar .widget-newsletter-alt {
  background: #fb8244;
  border-radius: 0;
  color: #fff;
  padding: 24px; }
  .widget-area--sidebar .widget-newsletter-alt .u-h4 {
    color: #fff; }
  .widget-area--sidebar .widget-newsletter-alt .c-btn {
    font-size: 13px;
    font-size: 0.8666666667rem;
    line-height: normal; }

.widget--current-issue {
  padding: 11px 14px;
  height: 100%; }
  .widget--current-issue img,
  .widget--current-issue .c-btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 220px; }

.widget--current-issue__heading {
  font-size: 33px;
  font-size: 2.2rem;
  line-height: normal;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 700; }

.widget--current-issue__sub-heading {
  font-size: 23px;
  font-size: 1.5333333333rem;
  line-height: normal;
  color: #00b4bd; }

.widget-area--sidebar .widget-featured-recipe {
  background-color: #a9d834; }

.widget-featured-recipe .featured-recipe__sub-head {
  color: #fff;
  font-weight: 600;
  letter-spacing: 4px; }

.widget-featured-recipe img {
  border-radius: 7px 7px 0 0; }

.widget-featured-recipe .featured-recipe__content {
  padding: 24px; }

.widget-featured-recipe .entry-title a {
  color: #fff; }

.widget-featured-recipe .c-btn {
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal; }

.widget-area--sidebar .widget-quick-tip {
  padding: 24px; }
  .widget-area--sidebar .widget-quick-tip .quick-tip {
    margin-left: auto;
    margin-right: auto;
    max-width: 225px; }
  .widget-area--sidebar .widget-quick-tip .c-btn {
    font-size: 13px;
    font-size: 0.8666666667rem;
    line-height: normal; }

.latest__heading {
  font-size: 24px;
  font-size: 1.6rem;
  line-height: normal; }
  .latest__heading:after {
    background: #27b4bc; }

@media (max-width: 62.49em) {
  .widget-latest-stories .widget-latest-stories__item-wrapper {
    padding: 0 6px; } }

.widget-latest-stories .o-list-bare__item {
  margin-bottom: 20px; }
  @media (max-width: 62.49em) {
    .widget-latest-stories .o-list-bare__item {
      float: left;
      text-align: center; } }
.featured__heading {
  font-size: 24px;
  font-size: 1.6rem;
  line-height: normal; }
  .featured__heading:after {
    background: #27b4bc; }

.widget-featured-stories .o-list-bare__item {
  margin-bottom: 20px; }

/* ==========================================================================
   #RELATED STORIES
   ========================================================================== */
.page-bottom-feature {
  background-color: #f8f8f8;
  padding-bottom: 48px;
  padding-top: 48px; }

.related-stories__heading:after {
  background: #27b4bc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 2px;
  margin: 14px auto 0;
  width: 110px; }

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.site-footer {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

.site-footer__top {
  background-color: #f8f8f8;
  padding-bottom: 24px;
  padding-top: 24px; }

.site-footer__footer-menu {
  color: #bcbcbc;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center; }
  .site-footer__footer-menu li {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase; }
    @media (min-width: 41.25em) {
      .site-footer__footer-menu li {
        display: inline-block;
        margin-right: 8px;
        vertical-align: middle; }
        .site-footer__footer-menu li:after {
          content: " | "; }
        .site-footer__footer-menu li:last-child:after {
          content: none; } }
  .site-footer__footer-menu a {
    color: #343841; }
    .site-footer__footer-menu a:hover, .site-footer__footer-menu a:focus {
      color: #00b4bd; }

.site-footer__middle {
  background-color: #2e3e53;
  color: #fff;
  padding-bottom: 24px;
  padding-top: 24px; }

.site-footer__logo {
  fill: #fff;
  margin: 30px 0; }

.site-footer__middle .widget-title {
  font-family: "Cabin", Verdana, serif;
  font-size: 17px;
  font-size: 1.1333333333rem;
  line-height: 1.4117647059;
  color: #fff;
  text-transform: uppercase; }

.site-footer__middle .textwidget {
  color: #899cb2; }

.menu-footer-navigation-column-1-container li,
.menu-footer-navigation-column-2-container li,
.menu-footer-navigation-container li {
  display: block;
  margin-bottom: 6px; }

.site-footer__social-menu {
  margin-bottom: 24px; }
  .site-footer__social-menu li {
    display: inline-block;
    margin-right: 24px;
    vertical-align: middle; }
  .site-footer__social-menu svg {
    fill: #fff; }
  .site-footer__social-menu a {
    color: #fff; }
    .site-footer__social-menu a svg {
      fill: #fff; }
    .site-footer__social-menu a:hover {
      color: #899cb2; }
      .site-footer__social-menu a:hover svg {
        fill: #899cb2; }

.site-footer .icon-facebook {
  height: 20px;
  width: 11px; }

.site-footer .icon-twitter {
  height: 20px;
  width: 25px; }

.site-footer .icon-pinterest-p {
  height: 20px;
  width: 16px; }

.site-footer .icon-youtube {
  height: 20px;
  width: 25px; }

.site-footer__bottom {
  background-color: #2e3e53;
  color: #899cb2;
  border-top: 1px solid #626f80;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: 1.8461538462;
  padding-bottom: 12px;
  padding-top: 12px; }
  .site-footer--3-col .site-footer__bottom, .site-footer--inline .site-footer__bottom {
    text-align: center; }

/* ==========================================================================
   #DIVIDERS
   ========================================================================== */
.bottom-divider {
  border-bottom: 1px solid #d8dee3;
  margin-bottom: 48px;
  padding-bottom: 48px; }

.bottom-divider--margin-none {
  margin-bottom: 0; }

.bottom-divider--padding-none {
  padding-bottom: 0; }

.heading-bottom-divider {
  border-bottom: 1px solid #d8dee3;
  margin-bottom: 12px;
  padding-bottom: 12px; }

.top-divider {
  border-top: 1px solid #d8dee3;
  margin-top: 48px;
  padding-top: 48px; }

.top-divider--margin-none {
  margin-top: 0; }

.top-divider--padding-none {
  padding-top: 0; }

/* ==========================================================================
   #PAGINATION
   ========================================================================== */
.pagination {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center; }
  .pagination .page-numbers {
    border: 1px solid #e0e0e0;
    border-radius: 60px;
    display: inline-block;
    height: 31px;
    padding: 5px;
    vertical-align: middle;
    width: 31px; }
  .pagination a {
    color: #343842; }
    .pagination a:hover {
      background-color: #00b4bd;
      border-color: #00b4bd;
      color: #fff; }
  .pagination .icon {
    height: 12px;
    width: 7px; }
  .pagination .next,
  .pagination .prev {
    vertical-align: middle; }
  .pagination .current {
    background: #fff;
    color: #00b4bd;
    font-weight: 600; }

/* ==========================================================================
   #ICONS
   ========================================================================== */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  position: relative;
  transition: all 300ms ease-in-out;
  top: -0.0625em;
  vertical-align: middle;
  width: 1em; }

/* ==========================================================================
   #SUBSCRIBE
   ========================================================================== */
.magazine-template-subscribe .site-content {
  padding-top: 0; }

.landing-page-top--bg-image {
  padding-top: 24px; }
  @media (min-width: 41.25em) {
    .landing-page-top--bg-image {
      padding-top: 62px; } }
@media (min-width: 41.25em) {
  .subscription-tiers {
    align-items: flex-end; } }

@media (min-width: 62.5em) {
  .subscription-tier-container:nth-child(1) {
    order: 2; }
  .subscription-tier-container:nth-child(2) {
    order: 1; }
  .subscription-tier-container:nth-child(3) {
    order: 3; } }

.subscription-tier {
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 100%; }
  @media (min-width: 62.5em) {
    .subscription-tier {
      min-height: 770px; } }
.subscription-tier__header {
  background: #343841;
  color: #fff;
  font-size: 19px;
  font-size: 1.2666666667rem;
  line-height: 1.5789473684;
  letter-spacing: 0.05em;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }
  .subscription-tier-container:first-child .subscription-tier__header {
    background: #00b4bd; }

.subscription-tier__head {
  font-size: 19px;
  font-size: 1.2666666667rem;
  line-height: 1.5789473684;
  color: #fff;
  margin-bottom: 0; }

.subscription-tier__subhead {
  color: #343841;
  letter-spacing: 0.135em; }

.subscription-tier__main {
  background: #fff;
  padding: 24px 40px;
  width: 100%; }

.subscription-tier-section__title {
  font-size: 17px;
  font-size: 1.1333333333rem;
  line-height: 1.4117647059;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  position: relative; }
  .subscription-tier-section__title > strong {
    background: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 0 0.5em;
    position: relative; }
  .subscription-tier-section__title:before {
    background: #d9d9d9;
    content: '';
    left: 0;
    height: 1px;
    position: absolute;
    top: 50%;
    width: 100%; }

.subscription-tier__price {
  font-size: 52px;
  font-size: 3.4666666667rem;
  line-height: 1.1538461538;
  margin-bottom: 24px; }
  .subscription-tier__price sup {
    font-size: 46.15384615%;
    top: -1em; }

.curency {
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  vertical-align: middle; }

.subscription-tier__content p {
  margin-bottom: 12px; }

.subscription-tier__content ul {
  list-style: none; }

.subscription-tier__content li {
  font-weight: 300;
  margin-bottom: 24px;
  padding-left: 7px;
  position: relative; }
  .subscription-tier__content li:before {
    background: url(assets/images/gray-check.png) no-repeat;
    content: '';
    display: block;
    height: 11px;
    left: -1em;
    position: absolute;
    top: 7px;
    width: 14px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .subscription-tier__content li:before {
        background-image: url(assets/images/gray-check@2x.png);
        background-size: 14px auto; } }
.subscription-tier__footer {
  background: #fff;
  padding: 20px 40px 40px;
  margin-top: auto;
  width: 100%; }

.subscription-cta .content {
  background: #fff;
  padding: 48px; }
  .subscription-cta .content p:last-child {
    margin-bottom: 0; }

.subscription-cta {
  text-align: center; }
  @media (min-width: 62.5em) {
    .subscription-cta {
      text-align: left; } }
  @media (max-width: 62.49em) {
    .subscription-cta .subscription-cta-link {
      margin-top: 24px; } }
.magazine-feature {
  padding: 48px; }
  .magazine-feature:nth-child(even) {
    background: #f8f8f8; }
  .magazine-feature .feature__image {
    margin-bottom: 24px;
    text-align: center; }
    @media (min-width: 62.5em) {
      .magazine-feature .feature__image {
        text-align: left; } }
@media (min-width: 62.5em) {
  .feature__content {
    padding: 48px; } }

.subscribe-faq {
  background: #fff;
  padding: 48px 0; }
  @media (min-width: 41.25em) {
    .subscribe-faq {
      padding: 96px 0; } }
.subscribe-faq .ui-accordion-header:before {
  content: "+ ";
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  width: 24px; }

.subscribe-faq .ui-accordion-header.ui-state-active:before {
  content: "\2013 ";
  font-size: 24px;
  vertical-align: -4%;
  color: #fff; }

.subscribe-faq .ui-accordion-header {
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.6666666667;
  background: #00b4bd;
  border-radius: 5px;
  color: #FFF;
  padding: .5em 1em;
  margin: .75em 0 0;
  cursor: pointer;
  outline: none !important; }

.subscribe-faq .ui-accordion-header.ui-state-active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.subscribe-faq__question-label,
.subscribe-faq__question {
  display: inline-block;
  vertical-align: top; }

.subscribe-faq__question {
  width: 85%; }

.subscribe-faq .ui-accordion-content {
  border: 1px solid #e1e1e1;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #969899;
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.6666666667;
  padding: 1.5em 1.5em 1.5em 2.5em; }

.ui-accordion-content p:first-of-type {
  display: inline; }

.ui-accordion-content p {
  margin: 1.5em 0; }

/* ==========================================================================
   #SUBSCRIPTIONS
   ========================================================================== */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-primary {
  border-color: #dfdfdf; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #454647;
  border-color: #454647; }

.panel-title {
  margin: 1em 0;
  font-size: 20px;
  color: inherit; }

.panel-body {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: normal;
  padding: 15px; }

/* ==========================================================================
   #RECIPES
   ========================================================================== */
/* Utilities */
.recipe-utilities {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px; }

.recipe-utilities__item {
  padding: 12px 12px;
  text-align: center;
  width: 100%; }
  @media (min-width: 41.25em) {
    .recipe-utilities__item {
      border-right: 1px solid #e0e0e0;
      padding: 40px 12px; }
      .o-layout__item:last-child .recipe-utilities__item {
        border-right: none; } }
.c-btn--save-recipe {
  padding: 9px 24px;
  max-width: 174px;
  width: 100%; }
  .c-btn--save-recipe > svg {
    stroke: #fff; }
  .c-btn--save-recipe:hover > svg, .c-btn--save-recipe:focus > svg {
    stroke: #00b4bd; }

/* Pre Column Meta */
.recipe-meta {
  font-weight: 600; }
  @media (min-width: 41.25em) {
    .recipe-meta {
      font-size: 18px;
      font-size: 1.2rem;
      line-height: normal; } }
.timing__item {
  display: block;
  margin-bottom: 12px; }

.nutrition-information {
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  color: #757679;
  margin-bottom: 24px; }
  .nutrition-information .nutrition-information__header {
    background-color: #00b4bd;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 7px 7px 0 0;
    color: #fff;
    line-height: normal;
    margin-bottom: 0;
    padding: 24px; }
  .nutrition-information .nutrition-information__content {
    padding: 24px; }
    .nutrition-information .nutrition-information__content p {
      margin-bottom: 0; }
  .nutrition-information strong {
    color: #343841; }

/* Checkboxes */
.entry-content .recipe-ingredients {
  padding-left: 0; }

.p-ingredient {
  position: relative; }
  @media (min-width: 62.5em) {
    .p-ingredient {
      margin-bottom: 48px; } }
.logged-out-checkbox-placeholder {
  border: 2px solid #c7c7c7;
  border-radius: 50%;
  height: 18px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 18px; }

.p-ingredient {
  position: relative; }
  .p-ingredient label {
    display: block;
    padding-left: 48px; }
  .p-ingredient input {
    height: 18px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 4px;
    width: 18px; }
  .p-ingredient input + label:before {
    border: 2px solid #c7c7c7;
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 18px; }
  .p-ingredient input + label:after {
    content: "";
    background: #00b4bd url(assets/images/checkmark.png) 50% no-repeat;
    border-radius: 50%;
    border-left: 0;
    border-top: 0;
    height: 18px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 4px;
    width: 18px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .p-ingredient input + label:after {
        background-image: url(assets/images/checkmark@2x.png);
        background-size: 9px 10px; } }
  .p-ingredient input:checked + label::after {
    opacity: 1; }

/* Directions */
.directions ol {
  list-style: none;
  counter-reset: direction-counter;
  margin-left: 0; }
  .directions ol li {
    counter-increment: direction-counter;
    margin: 0 0 48px 0;
    min-height: 36px;
    padding-left: 36px;
    position: relative; }
    .directions ol li:before {
      border: 1px solid #c7c7c7;
      border-radius: 50%;
      color: #c7c7c7;
      content: counter(direction-counter);
      font-weight: bold;
      left: -24px;
      height: 36px;
      font-size: 12px;
      font-size: 0.8rem;
      line-height: 34px;
      position: absolute;
      text-align: center;
      top: 0;
      width: 36px; }

/* Category Links */
.category-link {
  border: 2px solid #00b4bd;
  border-radius: 50px;
  color: #343841;
  display: inline-block;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: normal;
  margin-bottom: 6px;
  margin-right: 6px;
  padding: 3px 12px; }
  .category-link:hover, .category-link:focus {
    background-color: #00b4bd;
    color: #fff; }

/* Meal Type Preview */
.c-recipe-category-browser {
  margin-bottom: 48px;
  overflow: auto;
  overflow-y: hidden;
  white-space: nowrap; }

.c-recipe-category-browser__item {
  line-height: normal;
  margin-right: 30px;
  vertical-align: top;
  width: 115px; }

.c-recipe-category-browser__item-image-container {
  border-radius: 50%;
  display: block;
  height: 115px;
  margin-bottom: 6px;
  overflow: hidden;
  width: 115px; }
  .c-recipe-category-browser__item-image-container > img {
    display: block;
    margin: auto; }

.c-recipe-category-browser__item-name {
  white-space: normal; }

/* Search */
.recipe-search__ad {
  margin-bottom: 24px; }
  @media (min-width: 41.25em) {
    .recipe-search__ad {
      margin-bottom: 0;
      width: 324px !important; } }
@media (min-width: 41.25em) {
  .recipe-search__content {
    width: calc(100% - 324px) !important; } }

.search-recipes {
  border-radius: 7px;
  padding: 24px; }
  @media (min-width: 41.25em) {
    .search-recipes {
      height: 250px;
      padding: 33px; } }
  .recipe-search__content .search-recipes {
    max-width: 800px; }

.search-recipes__form {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 60px;
  display: flex;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal;
  justify-content: space-between; }
  .search-recipes__form > input {
    border: none;
    border-radius: 60px;
    padding: 15px 3px 15px 15px;
    max-width: 40%;
    width: 100%; }
    @media (min-width: 41.25em) {
      .search-recipes__form > input {
        max-width: 70%; } }
/* Ranking */
.entry-header__rating {
  margin: 12px auto; }
  @media (min-width: 41.25em) {
    .entry-header__rating {
      margin: 24px auto; } }
  @media (min-width: 41.25em) {
    .entry-header__rating .review_rate,
    .entry-header__rating .entry-header__rating-count {
      display: inline-block;
      vertical-align: middle; } }
  .entry-header__rating .review_rate {
    height: 23px; }
  @media (min-width: 41.25em) {
    .entry-header__rating .entry-header__rating-count {
      padding-left: 24px; } }
/* Sponsor */
.entry-header__sponsor-label {
  color: #343841;
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase; }

.entry-header__sponsor > img {
  max-width: 156px; }

/* Recipe Preview */
.recipe-meta-calories {
  color: #343841;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 4px; }
  .recipe-meta-calories .icon {
    fill: #5c5c5e;
    margin-left: 1px; }

/* Trending Recipes */
.trending-recipes {
  margin-bottom: 24px;
  padding: 24px 0; }
  @media (min-width: 41.25em) {
    .trending-recipes {
      margin-bottom: 48px;
      padding: 48px 0; } }
.trending-recipes__content img {
  height: 197px;
  object-fit: cover; }

/* Videos */
.post-thumbnail--diabetic-featured-cooking-video {
  width: 100%; }

/* Whisk */
#DHGQ-CQYE-STTR-PLTZ {
  margin: 24px auto; }
  @media (min-width: 41.25em) {
    #DHGQ-CQYE-STTR-PLTZ {
      margin: 48px auto; } }
/* ==========================================================================
   #COMMENTS
   ========================================================================== */
.comment-form {
  position: relative; }
  .comment-form:after {
    content: "" !important;
    display: block !important;
    clear: both !important; }

.comment-list .comment {
  margin-bottom: 48px; }

.form-submit {
  text-align: right;
  width: 40%; }
  @media (min-width: 33.125em) {
    .form-submit {
      float: right; } }
  @media (min-width: 41.25em) {
    .form-submit {
      font-size: 13px;
      font-size: 0.8666666667rem;
      line-height: normal; } }
  .form-submit .submit {
    padding: 10px 34px; }

.comment-author {
  font-family: "Cabin", Verdana, serif; }
  .comment-author .fn {
    color: #343841;
    font-size: 20px;
    font-size: 1.3333333333rem;
    line-height: normal;
    font-style: normal; }
    .comment-author .fn a {
      color: #343841; }
  @media (min-width: 41.25em) {
    .comment-author {
      display: inline-block; } }
  .comment-author .avatar {
    border-radius: 50%;
    margin-left: -60px;
    margin-right: 12px; }

.says {
  display: none;
  visibility: hidden; }

.comment-metadata {
  margin-bottom: 12px;
  color: #5c5c5e;
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: normal; }
  .comment-metadata a {
    color: #5c5c5e; }
  @media (min-width: 41.25em) {
    .comment-metadata {
      display: inline-block; }
      .comment-metadata:before {
        content: ' \2022 ';
        color: #5c5c5e;
        padding: 0 .025em; } }
.comment-body {
  padding-left: 60px; }

/* Ratings */
#commentform #add_comment_rating_wrap {
  width: 100%; }
  @media (min-width: 41.25em) {
    #commentform #add_comment_rating_wrap {
      bottom: 40px;
      position: absolute;
      width: 70%; } }
#commentform #add_comment_rating_wrap {
  color: #343841;
  font-family: "Cabin", Verdana, serif;
  font-size: 24px;
  font-size: 1.6rem;
  line-height: normal;
  padding-right: 12px; }
  @media (min-width: 41.25em) {
    #commentform #add_comment_rating_wrap {
      padding-right: 24px; } }
.review_rate .cancel-on-png,
.review_rate .cancel-off-png,
.review_rate .star-on-png,
.review_rate .star-off-png,
.review_rate .star-half-png {
  font-size: 19px;
  font-size: 1.2666666667rem;
  line-height: 1; }

.star-on-png:before,
.star-off-png:before {
  background-repeat: no-repeat;
  content: " " !important;
  display: inline-block;
  height: 19px;
  width: 19px; }

.entry-header__rating .star-on-png:before,
.entry-header__rating .star-off-png:before {
  height: 23px;
  width: 23px; }

.star-on-png:before {
  background-image: url("assets/images/star-on.svg"); }

.star-off-png:before {
  background-image: url("assets/images/star-off.svg"); }

/* ==========================================================================
   #SHARING (ADDTHIS)
   ========================================================================== */
.c-sharing--vertical {
  width: 48px; }
  @media (min-width: 41.25em) {
    .c-sharing--vertical {
      float: left;
      margin-bottom: 24px;
      margin-left: -100px;
      margin-right: 24px;
      margin-top: 12px; } }
.c-sharing--vertical .at-icon-wrapper.at-share-btn,
.c-sharing--horizontal.c-sharing--b-w .at-icon-wrapper.at-share-btn {
  background: #fff !important; }

.c-sharing--vertical .at-icon,
.c-sharing--horizontal.c-sharing--b-w .at-icon {
  fill: #000 !important; }

.c-sharing--horizontal.c-sharing--color .at-icon-wrapper.at-share-btn {
  border-radius: 50px !important;
  height: 44px;
  line-height: 44px;
  text-align: center;
  width: 44px; }

.c-sharing--horizontal.c-sharing--color .at-icon-wrapper .at-icon {
  height: 44px; }

/* ==========================================================================
   #TOOLTIP
   ========================================================================== */
.c-tooltip {
  position: relative; }

.c-tooltip__text {
  visibility: hidden;
  width: 200px;
  background-color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 15px;
  bottom: 110%;
  left: 50%;
  margin-left: -100px;
  border: 1px solid #e0e0e0;
  position: absolute;
  z-index: 1; }
  .c-tooltip__text:after, .c-tooltip__text:before {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    border-style: solid; }
  .c-tooltip__text:before {
    margin-left: -6px;
    border-width: 6px;
    border-color: #e0e0e0 transparent transparent transparent; }
  .c-tooltip__text:after {
    margin-left: -5px;
    border-width: 5px;
    border-color: #fff transparent transparent transparent; }

.c-tooltip:hover .c-tooltip__text {
  visibility: visible; }

/* ==========================================================================
   #Media.NET
   ========================================================================== */
.medianet-desktop-outer-box {
  background-color: transparent;
  margin: 0 10px 20px 10px;
  padding: 8px 0;
  text-align: center; }

.medianet-desktop-inner-box {
  background-color: transparent;
  min-height: 70px;
  min-width: 600px;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto; }

.medianet-mobile-outer-box {
  background-color: transparent;
  margin: 0 0 1.5em;
  padding: 2px 0 5px 0;
  clear: both; }

.medianet-mobile-outer-box select {
  max-width: 100%; }

@media screen and (min-width: 720px) and (max-width: 1023px) {
  .medianet-mobile-outer-box {
    width: 95%; } }

.medianet-mobile-inner-box {
  background-color: transparent;
  display: block;
  min-width: 300px;
  min-height: 50px;
  margin-top: -15px;
  margin-left: auto;
  margin-right: auto; }

/* ==========================================================================
   #In-Content Styles
   ========================================================================== */
.desktop-incontent-outer-box {
  background-color: transparent;
  margin: 0 10px 20px 10px;
  padding: 8px 0;
  text-align: center;
  clear: both; }

.desktop-incontent-inner-box {
  background: url(assets/images/leaderboard-ad-heading.png) -2px 50% no-repeat;
  min-height: 90px;
  min-width: 728px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px; }

.mobile-incontent-outer-box {
  display: block;
  width: 95%;
  margin: 0 auto;
  border-top: 1px solid #ebecee;
  border-bottom: 1px solid #ebecee;
  text-align: center; }

.mobile-incontent-inner-box {
  display: block;
  padding-bottom: 24px;
  text-align: center; }

.mobile-incontent-ad-label {
  height: 15px;
  margin-top: 0;
  color: #707070;
  font-size: 10px;
  text-align: center; }

.oop-ad {
  height: 0; }

/* ==========================================================================
 #HOME PAGE IN-CONTENT ADS
 ========================================================================== */
.homepage-ad-box-L3 {
  width: 100%;
  min-height: 90px;
  padding: 40px 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.homepage-ad-box-L4 {
  width: 100%;
  min-height: 90px;
  padding-top: 80px;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

/* ==========================================================================
   #NGGC
   ========================================================================== */
.nggc-imagebrowser {
  min-width: 300px; }

.nggc-container {
  position: relative;
  max-width: 100%;
  min-width: 300px;
  padding: 0px;
  z-index: 1; }

.nggc-background {
  background: #CCCCCC; }

@media (min-width: 740px) {
  .nggc-anchor-spacing {
    height: 50px; }
  .nggc-image {
    position: relative;
    max-width: 800px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 600px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    top: 46%;
    margin: 0px; }
  .nggc-next {
    top: 46%;
    margin: 0px; } }

@media (min-width: 660px) and (max-width: 739px) {
  .nggc-anchor-spacing {
    height: 50px; }
  .nggc-image {
    position: relative;
    max-width: 600px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 400px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    top: 46%;
    margin-top: -25%; }
  .nggc-next {
    top: 46%;
    margin-top: -25%; } }

@media (min-width: 501px) and (max-width: 659px) {
  .nggc-anchor-spacing {
    height: 50px; }
  .nggc-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-height: 400px; }
  .nggc-ad-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    margin: -15% 0 0 -25%; }
  .nggc-back {
    top: 46%;
    margin: 0px; }
  .nggc-next {
    top: 46%;
    margin: 0px; } }

@media (min-width: 300px) and (max-width: 500px) {
  .nggc-anchor-spacing {
    height: 0px; }
  .nggc-image {
    position: relative;
    max-width: 300px;
    min-width: 300px;
    margin: 0 auto; }
  .nggc-image-ad {
    min-width: 300px;
    min-height: 250px; }
  .nggc-ad-wrapper {
    min-width: 300px; }
  .nggc-back {
    top: 43%;
    margin: 0px; }
  .nggc-next {
    top: 43%;
    margin: 0px; } }

.nggc-container a {
  display: block !important;
  font-size: 0;
  margin: 0px;
  text-align: center; }

.nggc-container-ad {
  text-align: center; }

.nggc-imagebrowser-nav {
  padding: 5px;
  text-align: center; }

.nggc-back {
  position: absolute;
  left: 15px;
  width: 32px;
  height: 58px;
  padding: 0px;
  z-index: 3; }

.nggc-next {
  position: absolute;
  right: 15px;
  width: 32px;
  height: 58px;
  padding: 0px;
  z-index: 3; }

.nggc-dot-container {
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px; }

.nggc-dot-float {
  float: left;
  height: 40px; }

.nggc-dot-padding {
  padding-right: 19px; }

.nggc-imagebrowser-desc {
  clear: both; }

/* ==========================================================================
   #GDPR
   ========================================================================== */
#cookie-law-info-bar {
  padding: 20px 20px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }
  @media screen and (max-width: 767px) {
    #cookie-law-info-bar {
      bottom: 50px !important; } }
.cli-plugin-button,
.cli-plugin-button:visited,
.medium.cli-plugin-button,
.medium.cli-plugin-button:visited {
  border-radius: 4px; }

@media screen and (max-width: 767px) {
  .cli-plugin-button-mobile {
    display: block; } }

/* ==========================================================================
   #CONTRIBUTORS LOGIN FORM
   ========================================================================== */
.contributor-form {
  box-sizing: border-box;
  margin: 0 auto 24px;
  max-width: 510px;
  position: relative; }

.contributor-form label {
  color: #5c5c5e;
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal;
  font-weight: 600; }

.required {
  color: #00b4bd; }

.contributor-login-username,
.contributor-login-password {
  box-sizing: border-box;
  margin-bottom: 24px;
  width: 100%;
  text-align: left; }

#user_login,
#user_pass {
  display: block;
  padding: 12px;
  width: 100%; }

.contributor-login-remember {
  color: #5c5c5e;
  font-size: 15px;
  font-size: 1rem;
  line-height: normal;
  margin-bottom: 24px;
  position: relative; }
  .contributor-login-remember label {
    display: block;
    padding: 3px 0 4px 31px; }
  .contributor-login-remember input {
    height: 18px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 4px;
    width: 18px; }
  .contributor-login-remember input + label:before {
    border: 2px solid #c7c7c7;
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 18px; }
  .contributor-login-remember input + label:after {
    content: "";
    background: #00b4bd url(assets/images/checkmark.png) 50% no-repeat;
    border-radius: 50%;
    border-left: 0;
    border-top: 0;
    height: 18px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 4px;
    width: 18px; }
    @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
      .contributor-login-remember input + label:after {
        background-image: url(assets/images/checkmark@2x.png);
        background-size: 9px 10px; } }
  .contributor-login-remember input:checked + label {
    font-weight: bold; }
  .contributor-login-remember input:checked + label::after {
    opacity: 1; }

.contributor-login-submit .c-btn {
  font-size: 13px;
  font-size: 0.8666666667rem;
  line-height: normal; }

.contributor-form__forget-password {
  margin-bottom: 24px; }
  @media (min-width: 62.5em) {
    .contributor-form__forget-password {
      bottom: 0;
      position: absolute;
      right: 0; } }
/* ==========================================================================
   #CALL TO ACTION
   ========================================================================== */
.c-cta__col {
  color: #fff; }
  .c-cta__col .u-h1,
  .c-cta__col .u-h2,
  .c-cta__col .u-h3,
  .c-cta__col .u-h4,
  .c-cta__col .u-h5,
  .c-cta__col .u-h6 {
    color: #fff; }
  .c-cta__col .u-text-upper.u-margin-bottom-tiny {
    letter-spacing: 4px; }

.c-cta__content {
  margin: auto;
  padding: 24px; }
  @media (min-width: 41.25em) {
    .c-cta__content {
      max-width: 500px;
      padding: 50px 10px; } }
.c-cta__col-1 {
  background-color: #fd8443;
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 1.4285714286; }
  .c-cta__col-1 a {
    font-size: 13px;
    color: #fff; }

.c-cta__col-2 {
  background: #a7d433 url(assets/images/cta-col-2-bg.jpg) 50% no-repeat;
  background-size: cover;
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 1.4285714286; }
  .c-cta__col-2 a {
    font-size: 13px;
    color: #fff; }
  .c-cta__col-2 .widget__heading:after {
    background-color: #e5ff64; }

.c-cta__col-3 {
  background-color: #00b4bd;
  font-size: 21px;
  font-size: 1.4rem;
  line-height: 1.4285714286; }
  .c-cta__col-3 a {
    font-size: 13px;
    color: #fff; }

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

#cboxWrapper {
  max-width: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  background: rgba(0, 0, 0, 0.75); }

#colorbox {
  outline: 0; }

#cboxContent {
  border-radius: 7px;
  margin-top: 32px;
  overflow: visible;
  background: #fff; }

.cboxIframe {
  background: #fff; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxLoadedContent {
  background: #fff;
  border-radius: 7px;
  padding: 30px; }

#cboxLoadingGraphic {
  background: url(assets/images/loading.gif) no-repeat center center; }

#cboxLoadingOverlay {
  background: #000; }

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000; }

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px; }

#cboxClose {
  -webkit-appearance: none;
  background: #fff;
  border: 0;
  position: absolute; }

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxClose:active {
  outline: 0; }

#cboxClose {
  right: 15px;
  top: 15px; }

#cboxClose svg {
  fill: #000; }

#cboxClose:hover svg {
  fill: #00b4bd; }

/* ==========================================================================
   #SECTION SPONSORS
   ========================================================================== */
.c-section-sponsors {
  padding: 35px 12px;
  margin-bottom: 48px; }

.c-section-sponsor__label {
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: normal;
  letter-spacing: 4px;
  text-transform: uppercase; }

.c-section-sponsors--recipe {
  padding: 12px 0;
  margin-bottom: 24px; }

/* ==========================================================================
   #INSTAGRAM
   ========================================================================== */
@media (min-width: 1040px) {
  .inst-content {
    width: 965px;
    margin: 60px auto 20px auto;
    overflow: hidden; } }

@media (max-width: 960px) {
  .inst-content {
    width: 100%;
    margin: 40px auto 20px auto;
    overflow: hidden; } }

.inst-row {
  clear: both;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 15px; }

@media (max-width: 1039px) {
  .inst-row {
    margin-right: -15px;
    margin-left: -15px; } }

.inst-col-4 {
  width: 33.33333333%;
  float: left; }

@media (max-width: 1039px) {
  .inst-col-4 {
    padding-right: 2px !important;
    padding-left: 2px !important;
    padding-bottom: 4px !important; } }

.inst-col-12, .inst-col-4 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px; }

/*
@media (min-width: 960px) {
.inst-col-12 {
  width: 100%;
	 float: left;}}
*/
@media (max-width: 1039px) {
  .inst-col-12 {
    padding-right: 0px;
    padding-left: 0px; } }

.inst-container {
  position: relative;
  width: 100%; }

.inst-image {
  display: block;
  width: 100%;
  height: auto; }

.inst-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(0, 0, 0, 0.3); }

.inst-container:hover .inst-overlay {
  opacity: 1; }

.inst-text {
  color: white;
  font-size: 20px;
  font-size: 1.3333333333rem;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center; }

@media (max-width: 959px) {
  .inst-text {
    font-size: 14px;
    font-size: 0.9333333333rem;
    line-height: 1.7142857143; } }

.inst-footer-menu {
  margin: auto 30px; }

.inst-footer-menu div {
  display: inline; }

.inst-footer-menu li {
  list-style-type: none;
  display: inline; }

.inst-footer-menu ul {
  margin: auto;
  padding: inherit; }

.inst-footer-menu a {
  font-family: "Cabin", Verdana, serif;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 600;
  line-height: 14px;
  color: #8e8e8e;
  color: rgba(var(--f52, 142, 142, 142), 1);
  margin-right: 8px;
  margin-left: 8px; }

.inst-footer-menu a:hover, a:focus, a:active {
  color: #616161; }

.inst-footer-branding {
  font-family: "Cabin", Verdana, serif;
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  color: #a5a6a7;
  margin-top: 15px; }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Redefine all of our basic heading styles against utility classes so as to
 * allow for double stranded heading hierarchy, e.g. we semantically need an H2,
 * but we want it to be sized like an H1:
 *
 *   <h2 class="u-h1"></h2>
 *
 */
.u-h1,
.u-h2,
.u-h3,
.u-h4,
.u-h5,
.u-h6 {
  color: #343841;
  font-family: "Cabin", Verdana, serif; }
  .u-h1 a,
  .u-h2 a,
  .u-h3 a,
  .u-h4 a,
  .u-h5 a,
  .u-h6 a {
    color: inherit; }

.u-h1 {
  font-size: 48px;
  font-size: 3.2rem;
  line-height: 1.1458333333;
  font-weight: 500; }

.u-h2 {
  font-size: 37px;
  font-size: 2.4666666667rem;
  line-height: 1.2162162162; }

.u-h3 {
  font-size: 27px;
  font-size: 1.8rem;
  line-height: 1.2222222222; }

.u-h4 {
  font-size: 20px;
  font-size: 1.3333333333rem;
  line-height: 1.25; }

.u-h5 {
  font-size: 16px;
  font-size: 1.0666666667rem;
  line-height: 1.375; }

.u-h6 {
  font-size: 14px;
  font-size: 0.9333333333rem;
  line-height: 1.2142857143; }

/* ==========================================================================
   #HELPERS
   ========================================================================== */
.u-sans-serif {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

.u-sans-serif-alt {
  font-family: "Cabin", Verdana, serif; }

.u-font-size-small {
  font-size: 10px;
  font-size: 0.6666666667rem;
  line-height: normal; }
  @media (min-width: 41.25em) {
    .u-font-size-small {
      font-size: 14px;
      font-size: 0.9333333333rem;
      line-height: normal; } }
.u-font-color-primary {
  color: #00b4bd !important; }
  .u-font-color-primary:hover, .u-font-color-primary:focus {
    color: #343841 !important; }

.u-font-color-secondary {
  color: #a9d834 !important; }
  .u-font-color-secondary:hover, .u-font-color-secondary:focus {
    color: #343841 !important; }

.u-font-color-teriary {
  color: #fb8244 !important; }
  .u-font-color-teriary:hover, .u-font-color-teriary:focus {
    color: #343841 !important; }

.u-font-color-heading {
  color: #343841 !important; }

.u-font-color-text {
  color: #5c5c5e !important; }

.u-font-color-white {
  color: #fff !important; }

.u-font-weight-light {
  font-weight: 300; }

.u-font-weight-regular {
  font-weight: 400; }

.u-font-weight-medium {
  font-weight: 600; }

.u-font-weight-bold {
  font-weight: 700; }

.u-heading-divider {
  text-align: center; }
  .u-heading-divider:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #00b4bd;
    box-sizing: border-box;
    content: "";
    display: block;
    height: 2px;
    margin: 14px auto 0;
    width: 110px; }

.u-heading-divider--secondary:after {
  background: #a9d834; }

.u-heading-divider--tertiary:after {
  background: #fb8244; }

.u-bg-light-gray {
  background-color: #f8f8f8; }

/**
 * Clear both for items following WordPress' .alignleft/.alignright classes.
 */
.u-clear-both {
  clear: both; }

@media print {
  * {
    background: #fff;
    color: #000; }
  html {
    font: 100%/1.5 sans-serif; }
  .ad,
  .site-header__favorites,
  #header-social-search,
  #site-navigation,
  .article-utilities__item,
  .recipe-utilities__item,
  .secondary-content-container,
  .related-stories,
  #colophon,
  .unic,
  .unic-bar.bottom {
    display: none !important;
    visibility: hidden !important; } }

/*# sourceMappingURL=style.css.map */