/* SET UP */
/* MIXINS - - - - - - - - - - - - - - */
/* COLORS - - - - - - - - - - - - - - */
/*
$grey: #BDC7D7;
$lt-grey: #E7ECF2;
$dk-grey: #414141;
$md-grey: #6f7379;
*/
/* FONTS - - - - - - - - - - - - - -  */
/* @import must be at top of file, otherwise CSS will not work */
@font-face {
  font-family: 'Lobster';
  src: local("Lobster-Regular"), url("/wp-content/themes/bistrotheme/assets/fonts/Lobster-Regular.ttf");
}

/* GLOBAL */
/* TEXT STYLES - - - - - - - - - - - - - -  */
body,
input,
select,
button,
textarea {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em;
  line-height: normal;
  color: #004785;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.25px;
  margin: 0;
  color: #004785;
}

h1, .h1 {
  font-size: 80px;
}

h2, .h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

h3, .h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 900;
}

h4, .h4 {
  font-size: 30px;
}

h5, .h5 {
  font-size: 22px;
}

h6, .h6 {
  font-size: 25px;
}

p {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4em;
}

i, em {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-style: italic;
}

b, strong {
  font-weight: 700;
}

sub, sup {
  font-size: 60%;
}

.light {
  font-size: 400;
}

.regular {
  font-size: 400;
}

.semi-bold {
  font-size: 700;
}

.bold {
  font-size: 800;
}

/* LINKS / BUTTONS - - - - - - - - - - - - - -  */
a, a:hover, a:focus {
  color: #000;
  text-decoration: none;
}

p a, .text a, p a:hover, .text a:hover, p a:focus, .text a:focus {
  border-bottom: 1px solid #2D8EFF;
  color: #2D8EFF;
}

footer p a, footer .text a, footer p a:hover, footer .text a:hover, footer p a:focus, footer .text a:focus {
  border: 0;
}

a, i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
a:hover, a:focus {
	color: $white; 
}
*/
body > img:first-of-type {
  position: absolute;
}

button,
.btn {
  font-size: 14px;
}

button,
.btn,
input[type=submit] {
  background: 0;
  padding: 20px 25px;
  box-shadow: none;
  text-shadow: none;
  border: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #004785;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover,
.btn:hover,
input[type=submit]:hover {
  color: #ffffff;
  background-color: #FAE146;
}

button:focus,
.btn:focus,
input[type=submit]:focus {
  color: #ffffff;
  background-color: #FAE146;
}

@media (max-width: 767px) {
  button,
  .btn,
  input[type=submit] {
    font-size: 14px;
    padding: 15px 20px;
  }
}

@media (max-width: 575px) {
  button,
  .btn,
  input[type=submit] {
    font-size: 12px;
  }
}

a.btn, .text button, .cn-button.bootstrap {
  font-size: .75rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 2px solid #004785;
  color: #004785;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-top: 1rem;
}

a.btn:hover, a.btn:focus, .text button:hover, .text button:focus, .cn-button.bootstrap:hover, .cn-button.bootstrap:focus {
  background: #004785;
  color: white;
  border: 2px solid #004785;
}

.dark a.btn, .dark .text button, .dark .cn-button.bootstrap {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.dark a.btn:hover, .dark a.btn:focus, .dark .text button:hover, .dark .text button:focus, .dark .cn-button.bootstrap:hover, .dark .cn-button.bootstrap:focus {
  border: 2px solid #004785;
  background: #004785;
}

button.clear {
  border: 3px solid #004785;
  padding: 17px 22px;
  background-color: transparent;
  color: #004785;
  font-weight: 700;
}

button.clear:hover {
  background-color: #004785;
  border-color: #004785;
  color: #ffffff;
}

@media (max-width: 767px) {
  button.clear {
    padding: 12px 17px;
  }
}

input[type=text],
input[type=search],
input[type=submit] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

input[type=text]:focus,
input[type=search]:focus,
input[type=submit]:focus {
  outline: none;
  box-shadow: none;
}

.slick-list .slick-slide:focus {
  outline: none;
}

/* GENERAL - - - - - - - - - - - - - -  */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.ie11 main {
  flex: inherit;
}

main:focus {
  outline: none;
}

nav dl, nav ol, nav ul, nav li, section nav dl, section nav ol, section nav ul, section nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

form.search {
  display: flex;
}

form.search input {
  text-transform: none;
}

form.search input[type=search] {
  text-align: left;
  background-color: #ffffff;
  cursor: text;
  color: #000;
}

form.search input[type=search]:focus {
  outline: none;
  box-shadow: none;
}

.gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
  margin-bottom: 0;
}

body .gform_wrapper ul li.gfield {
  margin-top: 30px !important;
}

.gform_wrapper ul.gfield_checkbox li label, .gform_wrapper ul.gfield_radio li label {
  line-height: 1em;
  padding-left: 10px;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input, .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin-top: 0 !important;
}

.grecaptcha-badge {
  display: none !important;
}

section {
  padding: 60px 0;
  /*
	&#hero.bottom-header {
		position: relative;
		h1 {
		    position: absolute;
		    bottom: -20px;
		    left: 0;
	        width: 100%;
			text-align: center;
		}
	}
*/
}

@media (max-width: 767px) {
  section {
    padding: 60px 20px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 60px 0;
  }
}

section#hero.bottom-header .container {
  z-index: 2;
  position: absolute;
  text-align: center;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.container,
.wide-container {
  padding-left: 30px;
  padding-right: 30px;
}

.image {
  position: relative;
}

section picture,
.recipe-part picture,
.product-part picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

section picture img,
.recipe-part picture img,
.product-part picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.module-contain picture img,
.module-contain picture img {
  object-fit: contain;
}

#content .message--404 {
  padding: 17vh 0;
}

#cookiescript_copyright {
  display: none !important;
}

#cookiescript_injected,
#cookiescript_reject {
  background: #004785 !important;
}

@media (max-width: 767px) {
  #cookiescript_description {
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  form input,
  form input::placeholder {
    font-size: 16px !important;
    letter-spacing: 0.01em !important;
  }
}

.page-contests-and-sweepstakes #hero:not(.has-bg) + .module--col_text .text {
  padding: 0;
  width: 100%;
}

.page-contests-and-sweepstakes #hero:not(.has-bg) + .module--col_text .text > h2, .page-contests-and-sweepstakes #hero:not(.has-bg) + .module--col_text .text > p {
  display: none;
}

.page-contests-and-sweepstakes #hero:not(.has-bg) + .module--col_text .container {
  padding: 0;
  width: 100%;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding: 0;
}

/* MEDIA QUERIES - - - - - - - - - - - - - -  */
@media (min-width: 768px) {
  .container {
    max-width: 93%;
  }
}

@media (min-width: 1441px) {
  .container {
    max-width: 1240px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

/* KEYFRAME ANIMATIONS - - - - - - - - - - - - - -  */
#hero {
  /*
	background-color: $lt-gray;
	background-size: cover;
    background-position: center;
	
	.container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.hero-text {
		padding-top: 30px;
		button { border: 1px solid; }
	}
	
	@media screen and (min-width: 767px) { .container { flex-direction: row-reverse; } }
	@media (max-width: 767px) { padding: 60px 20px; }
	@media (max-width: 575px) { padding: 60px 0; }
*/
}

.product-part.post, .recipe-part.post, .taxonomy-page-part.post {
  padding: 5px 0 25px;
}

@media (min-width: 992px) {
  .product-part.post:nth-child(3n-2), .recipe-part.post:nth-child(3n-2), .taxonomy-page-part.post:nth-child(3n-2) {
    padding: 25px 15px 35px 0px;
  }
  .product-part.post:nth-child(3n-1), .recipe-part.post:nth-child(3n-1), .taxonomy-page-part.post:nth-child(3n-1) {
    padding: 25px 15px 35px;
  }
  .product-part.post:nth-child(3n), .recipe-part.post:nth-child(3n), .taxonomy-page-part.post:nth-child(3n) {
    padding: 25px 0px 35px 15px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .product-part.post:nth-child(2n-1), .recipe-part.post:nth-child(2n-1), .taxonomy-page-part.post:nth-child(2n-1) {
    padding: 25px 15px 35px 0px;
  }
  .product-part.post:nth-child(2n), .recipe-part.post:nth-child(2n), .taxonomy-page-part.post:nth-child(2n) {
    padding: 25px 0px 35px 15px;
  }
}

.product-part .border-container, .recipe-part .border-container, .taxonomy-page-part .border-container {
  height: 100%;
  box-shadow: 0px 2px 9px -3px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-part .border-container:hover, .recipe-part .border-container:hover, .taxonomy-page-part .border-container:hover {
  transform: translate(0px, -5px);
  box-shadow: 0px 8px 31px -11px rgba(0, 0, 0, 0.5);
}

.product-part .image, .recipe-part .image, .taxonomy-page-part .image {
  height: 25vw;
  max-height: 380px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1441px) {
  .product-part .image, .recipe-part .image, .taxonomy-page-part .image {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .product-part .image, .recipe-part .image, .taxonomy-page-part .image {
    height: 40vw;
  }
}

@media (max-width: 767px) {
  .product-part .image, .recipe-part .image, .taxonomy-page-part .image {
    height: 75vw;
  }
}

.product-part .text, .recipe-part .text, .taxonomy-page-part .text {
  display: block;
  background-color: #ffffff;
  padding: 12px 20px;
}

.product-part .text .buttons, .recipe-part .text .buttons, .taxonomy-page-part .text .buttons {
  text-align: center;
  margin-top: 1rem;
}

.product-part .btn, .product-part .module--col_multis .btn, .product-part button, .product-part .ps-widget[ps-sku].buy-now, .recipe-part .btn, .recipe-part .module--col_multis .btn, .recipe-part button, .recipe-part .ps-widget[ps-sku].buy-now, .taxonomy-page-part .btn, .taxonomy-page-part .module--col_multis .btn, .taxonomy-page-part button, .taxonomy-page-part .ps-widget[ps-sku].buy-now {
  font-size: .75rem;
  padding: 0.8rem 1rem;
  background: transparent;
  border: 2px solid #004785;
  color: #004785;
  margin: 0;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-top: 0;
  min-width: 0 !important;
  width: auto;
  line-height: 1em;
  display: inline-block !important;
  float: none;
  box-sizing: border-box;
  border-radius: 5px;
  vertical-align: top;
}

.product-part .btn.ps-disabled, .product-part .module--col_multis .btn.ps-disabled, .product-part button.ps-disabled, .product-part .ps-widget[ps-sku].buy-now.ps-disabled, .recipe-part .btn.ps-disabled, .recipe-part .module--col_multis .btn.ps-disabled, .recipe-part button.ps-disabled, .recipe-part .ps-widget[ps-sku].buy-now.ps-disabled, .taxonomy-page-part .btn.ps-disabled, .taxonomy-page-part .module--col_multis .btn.ps-disabled, .taxonomy-page-part button.ps-disabled, .taxonomy-page-part .ps-widget[ps-sku].buy-now.ps-disabled {
  display: none !important;
}

.product-part .btn:hover, .product-part .btn:focus, .product-part .module--col_multis .btn:hover, .product-part .module--col_multis .btn:focus, .product-part button:hover, .product-part button:focus, .product-part .ps-widget[ps-sku].buy-now:hover, .product-part .ps-widget[ps-sku].buy-now:focus, .recipe-part .btn:hover, .recipe-part .btn:focus, .recipe-part .module--col_multis .btn:hover, .recipe-part .module--col_multis .btn:focus, .recipe-part button:hover, .recipe-part button:focus, .recipe-part .ps-widget[ps-sku].buy-now:hover, .recipe-part .ps-widget[ps-sku].buy-now:focus, .taxonomy-page-part .btn:hover, .taxonomy-page-part .btn:focus, .taxonomy-page-part .module--col_multis .btn:hover, .taxonomy-page-part .module--col_multis .btn:focus, .taxonomy-page-part button:hover, .taxonomy-page-part button:focus, .taxonomy-page-part .ps-widget[ps-sku].buy-now:hover, .taxonomy-page-part .ps-widget[ps-sku].buy-now:focus {
  background: #004785;
  color: white;
  border: 2px solid #004785;
}

.dark .product-part .btn, .dark .product-part .module--col_multis .btn, .dark .product-part button, .dark .product-part .ps-widget[ps-sku].buy-now, .dark .recipe-part .btn, .dark .recipe-part .module--col_multis .btn, .dark .recipe-part button, .dark .recipe-part .ps-widget[ps-sku].buy-now, .dark .taxonomy-page-part .btn, .dark .taxonomy-page-part .module--col_multis .btn, .dark .taxonomy-page-part button, .dark .taxonomy-page-part .ps-widget[ps-sku].buy-now {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.dark .product-part .btn:hover, .dark .product-part .btn:focus, .dark .product-part .module--col_multis .btn:hover, .dark .product-part .module--col_multis .btn:focus, .dark .product-part button:hover, .dark .product-part button:focus, .dark .product-part .ps-widget[ps-sku].buy-now:hover, .dark .product-part .ps-widget[ps-sku].buy-now:focus, .dark .recipe-part .btn:hover, .dark .recipe-part .btn:focus, .dark .recipe-part .module--col_multis .btn:hover, .dark .recipe-part .module--col_multis .btn:focus, .dark .recipe-part button:hover, .dark .recipe-part button:focus, .dark .recipe-part .ps-widget[ps-sku].buy-now:hover, .dark .recipe-part .ps-widget[ps-sku].buy-now:focus, .dark .taxonomy-page-part .btn:hover, .dark .taxonomy-page-part .btn:focus, .dark .taxonomy-page-part .module--col_multis .btn:hover, .dark .taxonomy-page-part .module--col_multis .btn:focus, .dark .taxonomy-page-part button:hover, .dark .taxonomy-page-part button:focus, .dark .taxonomy-page-part .ps-widget[ps-sku].buy-now:hover, .dark .taxonomy-page-part .ps-widget[ps-sku].buy-now:focus {
  border: 2px solid #004785;
  background: #004785;
}

.product-part .ps-widget[ps-sku].buy-now, .recipe-part .ps-widget[ps-sku].buy-now, .taxonomy-page-part .ps-widget[ps-sku].buy-now {
  opacity: .5;
  pointer-events: none;
}

.product-part .ps-widget[ps-sku].buy-now.ps-enabled, .recipe-part .ps-widget[ps-sku].buy-now.ps-enabled, .taxonomy-page-part .ps-widget[ps-sku].buy-now.ps-enabled {
  opacity: 1;
  pointer-events: all;
}

.product-part {
  /*
 	&, a {
		.product-image, .text {
			&:hover, &:focus {
				cursor: pointer;
				.btn, button {
					background: $dk-blue;
					color:white;
					border:2px solid $dk-blue;
				}
		    }
		}
	}	
*/
}

.product-part h4 {
  padding: 20px 0;
}

@media (min-width: 767px) {
  .product-part img {
    max-width: 60%;
  }
}

.used-products .product-part {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 30px 0px 10px !important;
}

.used-products .product-part .text {
  flex: 0 0 66%;
}

@media (min-width: 475px) {
  .used-products .product-part {
    display: flex;
  }
}

.used-products .product-part a {
  align-items: center;
}

@media (min-width: 475px) {
  .used-products .product-part a {
    display: flex;
  }
}

.used-products .product-part a .image {
  flex: 0 0 50%;
}

.used-products .product-part a .text {
  flex: 0 0 50%;
}

.used-products .product-part:nth-of-type(2),
.used-products .product-part:last-of-type {
  padding: 30px 0px 30px !important;
  border-top: 1px solid;
}

.product-part .text button {
  display: none;
}

.used-products .product-part .text button {
  display: inline-block;
  margin-top: 0.5em;
}

@media (max-width: 474px) {
  .used-products .product-part .text button {
    margin: 1.2em auto 0;
  }
}

a.product-part .text {
  padding-bottom: 0;
}

a.product-part .text > div {
  display: flex;
  justify-content: center;
}

a.product-part .text .btn {
  margin-left: 10px;
}

/*
	.product-image img {
		min-height: 25vw;
		object-fit: cover;
	}
*/
.recipe-part h3, .recipe-part h4 {
  font-weight: 400;
  font-size: 26px;
  font-size: 26px;
  height: 2.6em;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1200px) {
  .recipe-part h3, .recipe-part h4 {
    height: 3.1em;
  }
}

@media (max-width: 767px) {
  .recipe-part h3, .recipe-part h4 {
    height: auto;
    padding: 15px 0;
  }
}

.recipe-part p {
  font-size: 12px;
  color: #414141;
  margin: 0;
  text-align: center;
  line-height: 1em;
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .recipe-part p {
    height: 2.6em;
  }
}

@media (max-width: 575px) {
  .recipe-part p {
    font-size: 14px;
  }
}

#calculator {
  background-color: #D9EFFF;
  padding: 60px 70px 30px;
}

#calculator p {
  margin: 15px 0 30px;
}

#calculator .form-item {
  width: 100%;
}

#calculator select {
  border: 2px solid #004785;
  height: 3.5em;
  width: 100%;
  margin-bottom: 30px;
  outline: none;
  padding: 0 20px;
  background-image: linear-gradient(45deg, transparent 50%, #004785 50%), linear-gradient(135deg, #004785 50%, transparent 50%);
  background-position: calc(100% - 27px) calc(1em + 8px), calc(100% - 20px) calc(1em + 8px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (max-width: 768px) {
  #calculator {
    padding: 40px 30px 10px;
  }
}

@media (min-width: 600px) {
  #calculator .product-group .form-item:not(.last) {
    max-width: 34%;
    margin-right: 2%;
    float: left;
  }
  #calculator .product-group .form-item.last {
    max-width: 64%;
    float: right;
  }
}

body {
  /*
	&:not(.menu) {
		header:after {
	    	transition-delay: 0.3s;
	    }
	}
*/
}

body.menu {
  overflow: hidden;
  /*
		header:after {
			height: 100vh;
		}
		.header-logo {
			.white { opacity: 1; }
			.blue { opacity: 0; }
		}
*/
}

body.menu header .search-button {
  color: #ffffff;
}

body.menu header .mobile-nav-container,
body.menu header .mobile-nav {
  left: 0;
}

@media (max-width: 767px) {
  body.menu header #datafetch {
    max-height: calc(100vh - 132px);
  }
}

header {
  z-index: 1000;
  background-color: #ffffff;
  position: relative;
  /*
    @media (min-width: 768px) {
		//overflow: hidden;
	}
    @include transition(background-color 0.3s ease);
	&:after {
	    content: '';
	    position: absolute;
	    width: 100%;
	    height: 0;
	    top:	0;
	    background-color: $dk-blue;
	    z-index: 1;
	    @include transition(all 0.3s ease);
	    @media (min-width: 768px) {
			display: none;
		}
	}
*/
}

.ie11 header {
  height: 86px;
}

header:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 7px;
  background-color: #FAE146;
  top: 0;
}

header li {
  font-size: 15px;
  font-weight: 700;
}

header .small-header,
header .header-logo,
header #main-nav,
header .search-bar {
  display: flex;
  align-items: center;
}

header .wide-container {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  header .wide-container {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
  header .wide-container {
    align-items: center;
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
  }
}

header div.header-logo {
  padding: 7px 0 0px;
  position: relative;
  /*
		.blue {
			opacity: 1;
		}
		.white {
		    position: absolute;
		    opacity: 0;
// 		    transition-delay: 0.2s;
		}
*/
}

header div.header-logo a {
  padding: 10px 0;
}

header div.header-logo img {
  max-height: 55px;
  width: auto;
  height: auto;
}

@media (max-width: 450px) {
  header div.header-logo img {
    max-height: 45px;
  }
}

header div.header-logo span {
  position: absolute;
  font-weight: 900;
  color: #004785;
  font-size: 8px;
  top: 75%;
  right: -5px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu header div.header-logo span {
  color: white;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

header a.skip-main:focus {
  left: 3px;
  top: 3px;
  width: 30%;
  height: calc(100% - 6px);
  overflow: auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 20px;
  outline: 3px solid #004785;
  background: #FAC0B8;
  color: #004785;
  font-weight: 900;
  text-align: center;
  z-index: 999;
}

.ie11 header .menus {
  position: absolute;
  right: 0;
}

header .small-header {
  justify-content: flex-end;
  overflow: hidden;
  /*
		&:before {
			content: '';
		    position: absolute;
		    background-color: $blue;
		    top: 0;
		    right: 0;
		    height: $small-header-height;
		    @media (max-width: 767px) {
			    width: 30px;
		    }
		    @media (min-width: 768px) {
			    width: calc(30px + 3.5%);
			    width:50px;
		    }
		    @media (min-width: 1441px) {
		    	width: calc((100vw - 1180px)/2);
		    	width:50px;
		    }
		}
*/
}

header .small-header p, header .small-header a {
  color: #ffffff;
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  display: inline;
}

header .small-header li {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0px;
}

header .small-header li:hover a {
  color: #FAE146;
}

header .small-header .lang-menu, header .small-header .health {
  transform: skewX(40deg);
  height: 26px;
  padding: 5px 20px 6px;
}

header .small-header .lang-menu p, header .small-header .lang-menu a, header .small-header .health p, header .small-header .health a {
  display: block;
  transform: skewX(-40deg);
}

header .small-header .lang-menu {
  background-color: #004785;
  position: relative;
  /*
			padding: 6px 0.5em;
			&:before {
				content: '';
			    position: absolute;
			    width: 20px;
			    top: 0;
			    left: -25px;
			    border-top: $small-header-height solid $dk-blue;
			    border-left: 25px solid transparent;
			}
*/
}

header .small-header .health {
  background-color: #2D8EFF;
  position: relative;
  padding-right: 30px;
  margin-right: -10px;
  /*
		    padding: 6px 0.5em 6px 2em;
			&:before {
				content: '';
			    position: absolute;
			    width: 20px;
			    top: 0;
			    left: 0;
			    border-top: $small-header-height solid $blue;
			    border-left: 25px solid $dk-blue;
			}
*/
  /*
			i {
				font-size: 12px;
			}
			ul.menu {
				display: block;
				position: absolute;
		        top: 100%;
			    left: 0;
			    left: 25px;
				right: 0;
			    padding: 0.7em 1.5em 1em;
			    background-color: $dk-blue;
			    border-radius: 0 0 15px 15px;
			    box-shadow: 3px 3px 12px -3px $dk-blue;
				height: auto;
			    opacity: 0;
			    pointer-events: none;
				margin: 0;
    			border: 0;
			    @include transition(opacity 0.2s ease);
			}
			&:hover ul.menu {
				opacity: 1;
				pointer-events: all;
			}
*/
}

@media (max-width: 767px) {
  header .small-header {
    display: none;
  }
}

header .main-header {
  position: relative;
  padding: 15px 0 15px;
  margin: 0 44px 0 15px;
  /*
		.container {
			justify-content: space-between;
			position: relative;
		}
*/
}

@media (max-width: 767px) {
  header .main-header {
    margin: 15px 45px 0 15px;
  }
}

header #main-nav ul.menu {
  display: flex;
  justify-content: flex-end;
}

header #main-nav ul.menu > li {
  margin: 0px;
  padding: 10px;
  position: relative;
}

header #main-nav ul.menu > li > a {
  display: block;
  padding: 0;
  width: 100%;
  color: #004785;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

header #main-nav ul.menu > li:hover > a {
  color: #2D8EFF;
}

@media (max-width: 991px) {
  header #main-nav ul.menu > li {
    font-size: 15px;
    margin: 0;
    letter-spacing: -0.2px;
  }
}

header #main-nav ul.menu > .menu-item-has-children {
  padding-right: 15px;
  margin-right: 5px;
  /*
				&:after {
					content: "\f078";
					font-family: "Font Awesome 5 Free";
					font-weight: 900;
					font-size: 10px;
				    position: absolute;
					top: 17px;
			        right: 8px;
			        color: $dk-blue;
					@include transition(all 0.2s ease);
				}
*/
}

@media (min-width: 992px) {
  header #main-nav ul.menu > .menu-item-has-children {
    margin-right: 15px;
  }
}

header #main-nav ul.menu > .menu-item-has-children:hover:after {
  color: #2D8EFF;
}

header #main-nav ul.menu > .menu-item-has-children button.menubutton {
  padding: 0;
  font-size: 10px;
  position: absolute;
  top: 14px;
  right: 0px;
  background: #fff;
  /*
					&:focus{
						border: solid 1px blue;
					}
					&:focus-visible{
						border: solid 1px blue;
					}*/
}

header #main-nav ul.menu > .menu-item-has-children button.menubutton .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

header #main-nav ul.menu > .menu-item-has-children i {
  font-weight: 900;
  font-size: 10px;
  color: #004785;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu {
  display: none;
  position: absolute;
  background-color: #004785;
  padding: 1em 1.5em;
  left: 50%;
  transform: translate(-50%, 0px);
  width: max-content;
  min-width: 215px;
  border-radius: 15px;
  box-shadow: 3px 3px 12px -3px #004785;
  margin: 0;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu li {
  font-size: 15px;
  font-weight: 600;
  padding: 7px 0px;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu li:hover > a {
  color: #FAE146;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu li a {
  color: #E7ECF2;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu #menu-item-164 ul.sub-menu,
header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu #submenu-menu-item-153 {
  padding: 10px 0 0px 15px;
}

@media (min-width: 768px) {
  header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu #menu-item-164 ul.sub-menu,
  header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu #submenu-menu-item-153 {
    display: flex;
    flex-direction: column;
  }
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu #menu-item-164 ul.sub-menu li,
header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu #submenu-menu-item-153 li {
  font-size: 12px;
  padding: 7px 0;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu#submenu-menu-item-153 {
  width: 250px;
  columns: 2;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu#submenu-menu-item-153 li {
  max-width: 120px;
  padding: 7px 0;
}

header #main-nav ul.menu > .menu-item-has-children > ul.sub-menu:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  position: absolute;
  left: calc(50% - 5px);
  top: -5px;
  background-color: #004785;
}

header #main-nav ul.menu > .menu-item-has-children.submenu-open > ul.sub-menu {
  display: block !important;
}

header #main-nav ul.menu > .menu-item-has-children.open > ul.sub-menu {
  display: block !important;
}

@media (max-width: 767px) {
  header #main-nav {
    display: none;
  }
}

header .mobile-nav-container {
  position: absolute;
  top: 0;
  left: -100vw;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  header .mobile-nav-container {
    display: none;
  }
}

@media (max-width: 450px) {
  header .mobile-nav-container {
    left: -100vw;
  }
}

header .mobile-nav {
  display: none;
  overflow-y: scroll;
  z-index: 7;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  background-color: #004785;
  -webkit-transition: left 0.3s ease;
  -moz-transition: left 0.3s ease;
  -o-transition: left 0.3s ease;
  transition: left 0.3s ease;
}

header .mobile-nav div.header-logo {
  padding: 7px 30px 15px;
  padding-bottom: 50px;
}

header .mobile-nav .mobile-menu-items {
  padding: 0 10px 60px 30px;
  height: calc(100% - 100px);
  overflow-y: scroll;
  overflow-x: hidden;
  /*#menu-mobile-nav > #menu-item-2745 {
				padding-top: 17px;
				 a {
				 	font-size: 14px;
				 	font-weight: 500;
			    }
			    .sub-menu-button {
				    top:12px;
			    }
			    #menu-item-2748 {
				    .sub-menu-button {
					    top:4px;
				    }
			    }
			}*/
}

header .mobile-nav .mobile-menu-items li a {
  font-size: 20px;
}

header .mobile-nav .mobile-menu-items li a, header .mobile-nav .mobile-menu-items li i {
  color: #E7ECF2;
}

header .mobile-nav .mobile-menu-items li:hover > a, header .mobile-nav .mobile-menu-items li:hover i {
  color: #FAE146;
  cursor: pointer;
}

header .mobile-nav ul.menu a.sub-menu-button {
  position: absolute;
  top: 5px;
  right: 0;
  margin-top: 0px;
  font-size: 20px;
  padding: 10px 0 10px 15px;
  background: transparent;
  /*
				&:not(.collapsed) i {
					transform: rotate(135deg);
				}
*/
}

header .mobile-nav ul.menu > li {
  padding-top: 15px;
}

header .mobile-nav ul.menu ul.sub-menu:after,
header .mobile-nav ul.menu li.menu-item-has-children:after {
  content: '';
  background-color: #E7ECF2;
  position: absolute;
  width: calc(100% - 36px);
  height: 1px;
  left: 10px;
  top: 28px;
  opacity: 0.3;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mobile-nav ul.menu ul.sub-menu:hover:after,
header .mobile-nav ul.menu li.menu-item-has-children:hover:after {
  background-color: #FAE146;
}

header .mobile-nav ul.menu li.menu-item-has-children {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mobile-nav ul.menu li.menu-item-has-children a {
  background-color: #004785;
  padding-right: 15px;
}

header .mobile-nav ul.menu li.menu-item-has-children > ul.sub-menu {
  padding-top: 15px;
  padding-bottom: 28px;
}

header .mobile-nav ul.menu li.menu-item-has-children > ul.sub-menu li {
  padding: 6px 0;
  /*
						&:first-of-type {
							padding-top: 24px;
						}
						&:last-of-type {
							padding-bottom: 28px;
						}
*/
}

header .mobile-nav ul.menu li.menu-item-has-children > ul.sub-menu ul.sub-menu li {
  font-size: 12px;
  padding: 5px 0;
}

header .mobile-nav ul.menu ul.sub-menu {
  width: 100%;
  left: calc(100% + 50px);
  background-color: #004785;
  z-index: 1;
  -webkit-transition: left 0.3s ease;
  -moz-transition: left 0.3s ease;
  -o-transition: left 0.3s ease;
  transition: left 0.3s ease;
  position: fixed;
  padding: 30px;
  top: 100px;
  height: calc(100% - 100px);
  justify-content: flex-start;
  overflow-y: scroll;
}

header .mobile-nav ul.menu ul.sub-menu.open {
  left: 0;
}

header .mobile-nav ul.menu ul.sub-menu:after {
  left: 30px;
  width: calc(100% - 70px);
}

header .mobile-nav ul.menu ul.sub-menu > label {
  color: #ffffff;
  width: fit-content;
  padding: 0 15px 10px;
  margin-left: auto;
  background-color: #004785;
}

header .mobile-nav ul.menu ul.sub-menu a.sub-menu-button {
  top: 3px;
}

header .mobile-nav ul.menu ul.sub-menu a.sub-menu-back {
  position: absolute;
  padding: 20px 10px 20px 10px;
  background-color: #004785;
}

header .mobile-nav ul.menu ul.sub-menu a.sub-menu-back i {
  font-size: 20px;
}

header .mobile-nav ul.menu ul.sub-menu > a.sub-menu-back {
  top: 5px;
}

header .mobile-nav ul.menu > li.menu-item-has-children ul.sub-menu li.menu-item-has-children button.sub-menu-button {
  right: 15px;
}

header .mobile-nav ul.menu > li.menu-item-has-children ul.sub-menu li.menu-item-has-children:after {
  top: 15px;
}

header .mobile-nav ul.social {
  display: flex;
  padding-top: 15px;
}

header .mobile-nav ul.social li {
  padding: 8px;
  margin-right: 12px;
}

header .mobile-nav ul.social li i {
  font-size: 25px;
}

header .mobile-nav ul.social li:first-of-type {
  padding-left: 0;
}

header i.toggle {
  padding: 8px;
  cursor: pointer;
}

header .mobile-search {
  z-index: 30;
  /*
		.mobile-close {
			display: flex;
			justify-content: flex-end;
		    background-color: $blue;
			button {
				background: transparent;
			    font-size: 22px;
			    padding: 5px 10px;
			    margin: 0px 10px 0 10px;
			    &:hover {
				    color: $yellow;
			    }
			}
			@media (min-width: 768px) {
				display: none;
			}
		}
*/
}

header .mobile-search .mobile-close button {
  position: absolute;
  color: #004785;
  background-color: transparent;
  padding: 3px 5px;
  right: 10px;
  top: 14px;
}

@media (max-width: 768px) {
  header .mobile-search .mobile-close button {
    top: 68px;
    right: 4px;
  }
}

header .mobile-search .mobile-close button i {
  font-size: 20px;
}

@media (min-width: 768px) {
  header .mobile-search {
    position: absolute;
    bottom: 8px;
    right: 45px;
    width: 56%;
    overflow: inherit;
  }
  header .mobile-search.collapse:not(.show) {
    display: block;
  }
}

@media (max-width: 767px) {
  header .mobile-search {
    position: relative;
    margin-bottom: 10px;
    background-color: #ffffff;
    /*
			right: -400px;
			top: 0;
		    height: 100vh;
		    width: 400px;
*/
    max-width: 100vw;
    width: 100vw;
    top: 100%;
    left: 0;
    -webkit-transition: right 0.3s ease, height 0.3s ease;
    -moz-transition: right 0.3s ease, height 0.3s ease;
    -o-transition: right 0.3s ease, height 0.3s ease;
    transition: right 0.3s ease, height 0.3s ease;
    /*
			&.mobile-search-open {
			    right: 0;
			}
*/
  }
}

header .search-button {
  position: absolute;
  justify-content: flex-end;
  padding: 0;
  left: 100%;
  height: 27px;
  top: 20px;
  font-size: 14px;
  color: #004785;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  background-color: transparent;
  border-radius: 0;
  z-index: 10;
}

header .search-button i:hover {
  color: #2D8EFF;
}

@media (max-width: 767px) {
  header .search-button {
    font-size: 26px;
    padding: 0px 0 0 13px;
    margin-right: 0px;
    top: -8px;
    height: 36px;
  }
}

header ul.search-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: white;
  opacity: 1;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media (min-width: 768px) {
  header ul.search-bar {
    max-width: 500px;
  }
}

header ul.search-bar li {
  width: 100%;
  padding: 10px;
}

header ul.search-bar form input {
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  font-size: 14px;
}

header ul.search-bar form input[type=text] {
  margin-right: 10px;
  text-align: left;
  background-color: #ffffff;
  cursor: text;
  color: #000;
}

header ul.search-bar form input[type=text]:focus {
  outline: none;
  box-shadow: none;
}

header ul.search-bar form input[type=submit] {
  width: 80px;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media (min-width: 768px) {
  header ul.search-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 7px;
    border-radius: 5px;
  }
  header ul.search-bar.close {
    width: 0;
  }
  header ul.search-bar.close input[type=text],
  header ul.search-bar.close input[type=submit] {
    padding: 0;
    margin: 0;
  }
  header ul.search-bar.close input[type=submit] {
    width: 0;
  }
}

@media (max-width: 767px) {
  header ul.search-bar {
    background-color: #CFE4F2;
  }
}

header .navbar-toggle {
  position: absolute;
  right: 0;
  top: 0px;
  padding: 0;
  height: 22px;
  width: 30px;
  background: transparent;
  z-index: 10;
}

header .navbar-toggle .icon-bar {
  position: absolute;
  width: 30px;
  height: 4px;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .navbar-toggle .icon-bar {
  background: #ffffff;
}

header .navbar-toggle .icon-bar:nth-child(1) {
  top: 0;
  opacity: 0;
}

header .navbar-toggle .icon-bar:nth-child(2) {
  transform: rotate(45deg);
}

header .navbar-toggle .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
}

header .navbar-toggle .icon-bar:nth-child(4) {
  opacity: 0;
}

header .navbar-toggle.closed .icon-bar {
  background: #004785;
}

header .navbar-toggle.closed .icon-bar:nth-child(1) {
  top: 0;
  opacity: 1;
}

header .navbar-toggle.closed .icon-bar:nth-child(2) {
  top: 9px;
  transform: rotate(0);
}

header .navbar-toggle.closed .icon-bar:nth-child(3) {
  top: 9px;
  transform: rotate(0);
}

header .navbar-toggle.closed .icon-bar:nth-child(4) {
  top: 18px;
  opacity: 1;
}

@media (min-width: 768px) {
  header .navbar-toggle {
    display: none;
  }
}

header .cancel {
  position: absolute;
  right: 0;
  top: 0;
}

header .cancel .cancel-query {
  padding: 0;
  margin: 15px 20px;
  background-color: transparent;
  color: #004785;
}

header .cancel .cancel-query i {
  font-size: 24px;
}

header .results-dropdown .block {
  background-color: #ffffff;
  padding: 1em;
  box-shadow: 3px 10px 12px -3px #004785;
  border-radius: 0px;
}

header .results-dropdown .block:last-of-type {
  border-radius: 0 0 5px 5px;
}

@media (max-width: 767px) {
  header .results-dropdown .block:last-of-type {
    border-radius: 0;
  }
}

header .results-dropdown .block h4 {
  padding-bottom: 10px;
  font-size: 25px;
}

header .results-dropdown .block h5 {
  padding: 0.4em 0;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .results-dropdown .block a {
  padding: 5px 0;
}

header .results-dropdown .block a:hover h5 {
  color: #2D8EFF;
}

@media (max-width: 767px) {
  header .results-dropdown .block {
    background-color: #FFFBBA;
    box-shadow: none;
  }
}

header .results-dropdown .recipe a {
  display: flex;
  align-items: center;
}

header .results-dropdown .recipe a div.image {
  flex: 0 0 33%;
  height: 100px;
  max-width: 33%;
  margin-right: 15px;
}

@media (max-width: 767px) {
  header .results-dropdown .recipe a div.image {
    height: 90px;
  }
}

@media (min-width: 768px) {
  header .results-dropdown {
    position: absolute;
    width: calc(100% - 45px);
    top: calc(100% + 6px);
    right: 40px;
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  header .results-dropdown {
    max-height: calc(100% - 106px);
    overflow: scroll;
  }
}

header .results-close {
  display: none;
}

.subnav, #recipe-search {
  background-color: #A6C6DD;
  color: #004785;
  padding: 0;
}

@media (max-width: 767px) {
  .subnav, #recipe-search {
    display: none;
  }
}

.subnav .container {
  padding: 0 30px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .subnav .container {
    display: block;
    padding: 0 0px;
  }
}

.subnav .container > div {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

@media (max-width: 991px) {
  .subnav .container > div {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .subnav {
    padding: 15px 30px;
  }
}

.sub-menu, .search-tabs {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .sub-menu, .search-tabs {
    align-content: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .sub-menu, .search-tabs {
    flex-direction: column;
  }
}

.sub-menu ul, .sub-menu li, .search-tabs ul, .search-tabs li {
  list-style: none;
  margin: 0;
}

.sub-menu .dropdown-menu, .search-tabs .dropdown-menu {
  font-size: .9rem;
}

.sub-menu > ul,
.sub-menu .menu-hcp-subnav-container > ul,
.sub-menu .menu-health-subnav-container > ul, .search-tabs > ul,
.search-tabs .menu-hcp-subnav-container > ul,
.search-tabs .menu-health-subnav-container > ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.sub-menu > ul > li,
.sub-menu .menu-hcp-subnav-container > ul > li,
.sub-menu .menu-health-subnav-container > ul > li, .search-tabs > ul > li,
.search-tabs .menu-hcp-subnav-container > ul > li,
.search-tabs .menu-health-subnav-container > ul > li {
  font-size: 14px;
  position: relative;
  font-weight: 600;
  color: #004785;
  padding: 10px 10px 10px;
  margin-right: 12px;
}

.sub-menu > ul > li#net-carbs,
.sub-menu .menu-hcp-subnav-container > ul > li#net-carbs,
.sub-menu .menu-health-subnav-container > ul > li#net-carbs, .search-tabs > ul > li#net-carbs,
.search-tabs .menu-hcp-subnav-container > ul > li#net-carbs,
.search-tabs .menu-health-subnav-container > ul > li#net-carbs {
  display: none;
}

.sub-menu > ul > li a,
.sub-menu .menu-hcp-subnav-container > ul > li a,
.sub-menu .menu-health-subnav-container > ul > li a, .search-tabs > ul > li a,
.search-tabs .menu-hcp-subnav-container > ul > li a,
.search-tabs .menu-health-subnav-container > ul > li a {
  color: #004785;
}

.sub-menu > ul > li a:hover,
.sub-menu > ul > li a:focus,
.sub-menu .menu-hcp-subnav-container > ul > li a:hover,
.sub-menu .menu-hcp-subnav-container > ul > li a:focus,
.sub-menu .menu-health-subnav-container > ul > li a:hover, .sub-menu .menu-health-subnav-container > ul > li a:focus, .search-tabs > ul > li a:hover,
.search-tabs > ul > li a:focus,
.search-tabs .menu-hcp-subnav-container > ul > li a:hover,
.search-tabs .menu-hcp-subnav-container > ul > li a:focus,
.search-tabs .menu-health-subnav-container > ul > li a:hover, .search-tabs .menu-health-subnav-container > ul > li a:focus {
  color: white;
}

.sub-menu > ul > li.menu-item-has-children,
.sub-menu > ul > li.dropdown,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown,
.sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children, .sub-menu .menu-health-subnav-container > ul > li.dropdown, .search-tabs > ul > li.menu-item-has-children,
.search-tabs > ul > li.dropdown,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown,
.search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children, .search-tabs .menu-health-subnav-container > ul > li.dropdown {
  padding: 15px 25px 15px 10px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.sub-menu > ul > li.menu-item-has-children:hover,
.sub-menu > ul > li.menu-item-has-children:focus,
.sub-menu > ul > li.dropdown:hover,
.sub-menu > ul > li.dropdown:focus,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children:hover,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children:focus,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown:hover,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown:focus,
.sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children:hover, .sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children:focus, .sub-menu .menu-health-subnav-container > ul > li.dropdown:hover, .sub-menu .menu-health-subnav-container > ul > li.dropdown:focus, .search-tabs > ul > li.menu-item-has-children:hover,
.search-tabs > ul > li.menu-item-has-children:focus,
.search-tabs > ul > li.dropdown:hover,
.search-tabs > ul > li.dropdown:focus,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children:hover,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children:focus,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown:hover,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown:focus,
.search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children:hover, .search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children:focus, .search-tabs .menu-health-subnav-container > ul > li.dropdown:hover, .search-tabs .menu-health-subnav-container > ul > li.dropdown:focus {
  cursor: pointer;
  background-color: #E8F0B6;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  /*
		            ul.submenu, ul.sub-menu {
			            opacity: 1;
						pointer-events: all;
		            }
*/
}

.sub-menu > ul > li.menu-item-has-children:hover a,
.sub-menu > ul > li.menu-item-has-children:focus a,
.sub-menu > ul > li.dropdown:hover a,
.sub-menu > ul > li.dropdown:focus a,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children:hover a,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children:focus a,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown:hover a,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown:focus a,
.sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children:hover a, .sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children:focus a, .sub-menu .menu-health-subnav-container > ul > li.dropdown:hover a, .sub-menu .menu-health-subnav-container > ul > li.dropdown:focus a, .search-tabs > ul > li.menu-item-has-children:hover a,
.search-tabs > ul > li.menu-item-has-children:focus a,
.search-tabs > ul > li.dropdown:hover a,
.search-tabs > ul > li.dropdown:focus a,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children:hover a,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children:focus a,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown:hover a,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown:focus a,
.search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children:hover a, .search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children:focus a, .search-tabs .menu-health-subnav-container > ul > li.dropdown:hover a, .search-tabs .menu-health-subnav-container > ul > li.dropdown:focus a {
  color: #004785;
}

.sub-menu > ul > li.menu-item-has-children button.menubutton,
.sub-menu > ul > li.dropdown button.menubutton,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children button.menubutton,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown button.menubutton,
.sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children button.menubutton, .sub-menu .menu-health-subnav-container > ul > li.dropdown button.menubutton, .search-tabs > ul > li.menu-item-has-children button.menubutton,
.search-tabs > ul > li.dropdown button.menubutton,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children button.menubutton,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown button.menubutton,
.search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children button.menubutton, .search-tabs .menu-health-subnav-container > ul > li.dropdown button.menubutton {
  padding: 0;
  font-size: 10px;
  position: absolute;
  top: 1.9em;
  right: 0px;
  background: #fff;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  /*
					&:focus{
						border: solid 1px blue;
					}
					&:focus-visible{
						border: solid 1px blue;
					}*/
}

@media (max-width: 991px) {
  .sub-menu > ul > li.menu-item-has-children button.menubutton,
  .sub-menu > ul > li.dropdown button.menubutton,
  .sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children button.menubutton,
  .sub-menu .menu-hcp-subnav-container > ul > li.dropdown button.menubutton,
  .sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children button.menubutton, .sub-menu .menu-health-subnav-container > ul > li.dropdown button.menubutton, .search-tabs > ul > li.menu-item-has-children button.menubutton,
  .search-tabs > ul > li.dropdown button.menubutton,
  .search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children button.menubutton,
  .search-tabs .menu-hcp-subnav-container > ul > li.dropdown button.menubutton,
  .search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children button.menubutton, .search-tabs .menu-health-subnav-container > ul > li.dropdown button.menubutton {
    top: 1em;
  }
}

.sub-menu > ul > li.menu-item-has-children button.menubutton .visuallyhidden,
.sub-menu > ul > li.dropdown button.menubutton .visuallyhidden,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children button.menubutton .visuallyhidden,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown button.menubutton .visuallyhidden,
.sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children button.menubutton .visuallyhidden, .sub-menu .menu-health-subnav-container > ul > li.dropdown button.menubutton .visuallyhidden, .search-tabs > ul > li.menu-item-has-children button.menubutton .visuallyhidden,
.search-tabs > ul > li.dropdown button.menubutton .visuallyhidden,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children button.menubutton .visuallyhidden,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown button.menubutton .visuallyhidden,
.search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children button.menubutton .visuallyhidden, .search-tabs .menu-health-subnav-container > ul > li.dropdown button.menubutton .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 0px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sub-menu > ul > li.menu-item-has-children i,
.sub-menu > ul > li.dropdown i,
.sub-menu .menu-hcp-subnav-container > ul > li.menu-item-has-children i,
.sub-menu .menu-hcp-subnav-container > ul > li.dropdown i,
.sub-menu .menu-health-subnav-container > ul > li.menu-item-has-children i, .sub-menu .menu-health-subnav-container > ul > li.dropdown i, .search-tabs > ul > li.menu-item-has-children i,
.search-tabs > ul > li.dropdown i,
.search-tabs .menu-hcp-subnav-container > ul > li.menu-item-has-children i,
.search-tabs .menu-hcp-subnav-container > ul > li.dropdown i,
.search-tabs .menu-health-subnav-container > ul > li.menu-item-has-children i, .search-tabs .menu-health-subnav-container > ul > li.dropdown i {
  font-weight: 900;
  font-size: .8em;
  right: 10px;
  top: 40%;
  color: #004785;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.sub-menu > ul ul.submenu,
.sub-menu > ul ul.sub-menu,
.sub-menu .menu-hcp-subnav-container > ul ul.submenu,
.sub-menu .menu-hcp-subnav-container > ul ul.sub-menu,
.sub-menu .menu-health-subnav-container > ul ul.submenu, .sub-menu .menu-health-subnav-container > ul ul.sub-menu, .search-tabs > ul ul.submenu,
.search-tabs > ul ul.sub-menu,
.search-tabs .menu-hcp-subnav-container > ul ul.submenu,
.search-tabs .menu-hcp-subnav-container > ul ul.sub-menu,
.search-tabs .menu-health-subnav-container > ul ul.submenu, .search-tabs .menu-health-subnav-container > ul ul.sub-menu {
  display: none;
  position: absolute;
  padding: 10px 15px;
  background-color: #E8F0B6;
  border-radius: 0;
  border: none;
  left: 0;
  width: max-content;
}

.sub-menu > ul ul.submenu > li,
.sub-menu > ul ul.sub-menu > li,
.sub-menu .menu-hcp-subnav-container > ul ul.submenu > li,
.sub-menu .menu-hcp-subnav-container > ul ul.sub-menu > li,
.sub-menu .menu-health-subnav-container > ul ul.submenu > li, .sub-menu .menu-health-subnav-container > ul ul.sub-menu > li, .search-tabs > ul ul.submenu > li,
.search-tabs > ul ul.sub-menu > li,
.search-tabs .menu-hcp-subnav-container > ul ul.submenu > li,
.search-tabs .menu-hcp-subnav-container > ul ul.sub-menu > li,
.search-tabs .menu-health-subnav-container > ul ul.submenu > li, .search-tabs .menu-health-subnav-container > ul ul.sub-menu > li {
  font-weight: 400;
  padding: 6px 0;
}

.sub-menu > ul ul.submenu > li:hover > a,
.sub-menu > ul ul.submenu > li:focus > a,
.sub-menu > ul ul.sub-menu > li:hover > a,
.sub-menu > ul ul.sub-menu > li:focus > a,
.sub-menu .menu-hcp-subnav-container > ul ul.submenu > li:hover > a,
.sub-menu .menu-hcp-subnav-container > ul ul.submenu > li:focus > a,
.sub-menu .menu-hcp-subnav-container > ul ul.sub-menu > li:hover > a,
.sub-menu .menu-hcp-subnav-container > ul ul.sub-menu > li:focus > a,
.sub-menu .menu-health-subnav-container > ul ul.submenu > li:hover > a,
.sub-menu .menu-health-subnav-container > ul ul.submenu > li:focus > a, .sub-menu .menu-health-subnav-container > ul ul.sub-menu > li:hover > a,
.sub-menu .menu-health-subnav-container > ul ul.sub-menu > li:focus > a, .search-tabs > ul ul.submenu > li:hover > a,
.search-tabs > ul ul.submenu > li:focus > a,
.search-tabs > ul ul.sub-menu > li:hover > a,
.search-tabs > ul ul.sub-menu > li:focus > a,
.search-tabs .menu-hcp-subnav-container > ul ul.submenu > li:hover > a,
.search-tabs .menu-hcp-subnav-container > ul ul.submenu > li:focus > a,
.search-tabs .menu-hcp-subnav-container > ul ul.sub-menu > li:hover > a,
.search-tabs .menu-hcp-subnav-container > ul ul.sub-menu > li:focus > a,
.search-tabs .menu-health-subnav-container > ul ul.submenu > li:hover > a,
.search-tabs .menu-health-subnav-container > ul ul.submenu > li:focus > a, .search-tabs .menu-health-subnav-container > ul ul.sub-menu > li:hover > a,
.search-tabs .menu-health-subnav-container > ul ul.sub-menu > li:focus > a {
  color: #2D8EFF;
}

.sub-menu > ul ul.submenu > li a,
.sub-menu > ul ul.sub-menu > li a,
.sub-menu .menu-hcp-subnav-container > ul ul.submenu > li a,
.sub-menu .menu-hcp-subnav-container > ul ul.sub-menu > li a,
.sub-menu .menu-health-subnav-container > ul ul.submenu > li a, .sub-menu .menu-health-subnav-container > ul ul.sub-menu > li a, .search-tabs > ul ul.submenu > li a,
.search-tabs > ul ul.sub-menu > li a,
.search-tabs .menu-hcp-subnav-container > ul ul.submenu > li a,
.search-tabs .menu-hcp-subnav-container > ul ul.sub-menu > li a,
.search-tabs .menu-health-subnav-container > ul ul.submenu > li a, .search-tabs .menu-health-subnav-container > ul ul.sub-menu > li a {
  color: #004785;
}

.sub-menu ul li#carbs, .search-tabs ul li#carbs {
  margin-right: 0;
}

.sub-menu ul li#carbs ul.sub-menu, .search-tabs ul li#carbs ul.sub-menu {
  left: -82px;
}

.sub-menu i, .search-tabs i {
  position: absolute;
  right: 8px;
  top: 35%;
  font-size: 14px;
}

@media (max-width: 991px) {
  .sub-menu .menu-hcp-subnav-container > ul,
  .sub-menu .menu-health-subnav-container > ul, .search-tabs .menu-hcp-subnav-container > ul,
  .search-tabs .menu-health-subnav-container > ul {
    align-content: center;
    text-align: center;
  }
}

.sub-menu .menu-hcp-subnav-container > ul > li,
.sub-menu .menu-hcp-subnav-container > ul li.dropdown,
.sub-menu .menu-health-subnav-container > ul > li, .sub-menu .menu-health-subnav-container > ul li.dropdown, .search-tabs .menu-hcp-subnav-container > ul > li,
.search-tabs .menu-hcp-subnav-container > ul li.dropdown,
.search-tabs .menu-health-subnav-container > ul > li, .search-tabs .menu-health-subnav-container > ul li.dropdown {
  padding: 15px 10px 15px;
  font-size: 14px;
  margin-right: .2em;
}

@media (max-width: 991px) {
  .sub-menu .menu-hcp-subnav-container > ul > li,
  .sub-menu .menu-hcp-subnav-container > ul li.dropdown,
  .sub-menu .menu-health-subnav-container > ul > li, .sub-menu .menu-health-subnav-container > ul li.dropdown, .search-tabs .menu-hcp-subnav-container > ul > li,
  .search-tabs .menu-hcp-subnav-container > ul li.dropdown,
  .search-tabs .menu-health-subnav-container > ul > li, .search-tabs .menu-health-subnav-container > ul li.dropdown {
    padding: 6px 10px;
  }
}

.sub-menu .menu-hcp-subnav-container > ul li.dropdown,
.sub-menu .menu-health-subnav-container > ul li.dropdown, .search-tabs .menu-hcp-subnav-container > ul li.dropdown,
.search-tabs .menu-health-subnav-container > ul li.dropdown {
  padding-right: 1.7em;
  /*			
            &:after {
	           font-family: "Font Awesome 5 Pro";
	           content: "\f078";
	           font-weight: 900;
			    font-size: 10px;
			    position: absolute;
		        top: 1.9em;
				right: 1.05em;
			    color: #004785;
			    @media (max-width: 991px) {
					top: 1em;
				}
	        }
	        */
  /*
            &:hover, &:focus {
	            cursor: pointer;
	            background-color: $lt-green;
	            ul.submenu, ul.sub-menu {
		            opacity: 1;
					pointer-events: all;
	            }
	            a {
		            color:$dk-blue;
	            }
            }
*/
}

#menu-item-2152 ul.sub-menu {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  width: 320px;
  align-items: flex-end;
  align-content: flex-start;
  justify-content: flex-start;
}

#menu-item-2152 ul.sub-menu li {
  flex: 0 0 50%;
}

#menu-item-2153 {
  display: none;
}

.navbar-toggle:hover, .navbar-toggle:focus, .navbar-toggle:active, button.sub-menu-button:hover, button.sub-menu-button:focus, button.sub-menu-button:active, .sub-menu-back:hover, .sub-menu-back:focus, .sub-menu-back:active {
  outline: 0;
}

[data-color="yellow"] {
  background-color: #FAE146;
}

[data-color="yellow"].lr:after {
  background-color: #FAE146;
}

[data-color="yellow"].lr.row:after {
  background: linear-gradient(90deg, #FAE146, #FAE146, transparent);
}

[data-color="yellow"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #FAE146, #FAE146, transparent);
}

@media (max-width: 767px) {
  [data-color="yellow"].lr.row:after {
    background: linear-gradient(180deg, #FAE146, #FAE146, transparent);
  }
  [data-color="yellow"].lr.row-reverse:after {
    background: linear-gradient(180deg, #FAE146, #FAE146, transparent);
  }
}

[data-color="yellow"] h1.mastertitle span, [data-color="yellow"] h2.mastertitle span, [data-color="yellow"] h1.label span, [data-color="yellow"] h2.label span {
  background-color: #FAE146;
}

[data-color="light-yellow"] {
  background-color: #FFFBBA;
}

[data-color="light-yellow"].lr:after {
  background-color: #FFFBBA;
}

[data-color="light-yellow"].lr.row:after {
  background: linear-gradient(90deg, #FFFBBA, #FFFBBA, transparent);
}

[data-color="light-yellow"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #FFFBBA, #FFFBBA, transparent);
}

@media (max-width: 767px) {
  [data-color="light-yellow"].lr.row:after {
    background: linear-gradient(180deg, #FFFBBA, #FFFBBA, transparent);
  }
  [data-color="light-yellow"].lr.row-reverse:after {
    background: linear-gradient(180deg, #FFFBBA, #FFFBBA, transparent);
  }
}

[data-color="light-yellow"] h1.mastertitle span, [data-color="light-yellow"] h2.mastertitle span, [data-color="light-yellow"] h1.label span, [data-color="light-yellow"] h2.label span {
  background-color: #FFFBBA;
}

[data-color="light-green"] {
  background-color: #DDE594;
}

[data-color="light-green"].lr:after {
  background-color: #DDE594;
}

[data-color="light-green"].lr.row:after {
  background: linear-gradient(90deg, #DDE594, #DDE594, transparent);
}

[data-color="light-green"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #DDE594, #DDE594, transparent);
}

@media (max-width: 767px) {
  [data-color="light-green"].lr.row:after {
    background: linear-gradient(180deg, #DDE594, #DDE594, transparent);
  }
  [data-color="light-green"].lr.row-reverse:after {
    background: linear-gradient(180deg, #DDE594, #DDE594, transparent);
  }
}

[data-color="light-green"] h1.mastertitle span, [data-color="light-green"] h2.mastertitle span, [data-color="light-green"] h1.label span, [data-color="light-green"] h2.label span {
  background-color: #DDE594;
}

[data-color="pale-green"] {
  background-color: #f5f9d2;
}

[data-color="pale-green"].lr:after {
  background-color: #f5f9d2;
}

[data-color="pale-green"].lr.row:after {
  background: linear-gradient(90deg, #f5f9d2, #f5f9d2, transparent);
}

[data-color="pale-green"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #f5f9d2, #f5f9d2, transparent);
}

@media (max-width: 767px) {
  [data-color="pale-green"].lr.row:after {
    background: linear-gradient(180deg, #f5f9d2, #f5f9d2, transparent);
  }
  [data-color="pale-green"].lr.row-reverse:after {
    background: linear-gradient(180deg, #f5f9d2, #f5f9d2, transparent);
  }
}

[data-color="pale-green"] h1.mastertitle span, [data-color="pale-green"] h2.mastertitle span, [data-color="pale-green"] h1.label span, [data-color="pale-green"] h2.label span {
  background-color: #f5f9d2;
}

[data-color="teal"] {
  background-color: #D7EDE4;
}

[data-color="teal"]:after {
  background-color: #D7EDE4;
}

[data-color="teal"].lr.row:after {
  background: linear-gradient(90deg, #D7EDE4, #D7EDE4, transparent);
}

[data-color="teal"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #D7EDE4, #D7EDE4, transparent);
}

@media (max-width: 767px) {
  [data-color="teal"].lr.row:after {
    background: linear-gradient(180deg, #D7EDE4, #D7EDE4, transparent);
  }
  [data-color="teal"].lr.row-reverse:after {
    background: linear-gradient(180deg, #D7EDE4, #D7EDE4, transparent);
  }
}

[data-color="teal"] h1.mastertitle span, [data-color="teal"] h2.mastertitle span, [data-color="teal"] h1.label span, [data-color="teal"] h2.label span {
  background-color: #D7EDE4;
}

[data-color="light-teal"] {
  background-color: #F0FAF6;
}

[data-color="light-teal"]:after {
  background-color: #F0FAF6;
}

[data-color="light-teal"].lr.row:after {
  background: linear-gradient(90deg, #F0FAF6, #F0FAF6, transparent);
}

[data-color="light-teal"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #F0FAF6, #F0FAF6, transparent);
}

@media (max-width: 767px) {
  [data-color="light-teal"].lr.row:after {
    background: linear-gradient(180deg, #F0FAF6, #F0FAF6, transparent);
  }
  [data-color="light-teal"].lr.row-reverse:after {
    background: linear-gradient(180deg, #F0FAF6, #F0FAF6, transparent);
  }
}

[data-color="light-teal"] h1.mastertitle span, [data-color="light-teal"] h2.mastertitle span, [data-color="light-teal"] h1.label span, [data-color="light-teal"] h2.label span {
  background-color: #F0FAF6;
}

[data-color="light-blue"] {
  background-color: #CFE4F2;
}

[data-color="light-blue"]:after {
  background-color: #CFE4F2;
}

[data-color="light-blue"].lr.row:after {
  background: linear-gradient(90deg, #CFE4F2, #CFE4F2, transparent);
}

[data-color="light-blue"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #CFE4F2, #CFE4F2, transparent);
}

@media (max-width: 767px) {
  [data-color="light-blue"].lr.row:after {
    background: linear-gradient(180deg, #CFE4F2, #CFE4F2, transparent);
  }
  [data-color="light-blue"].lr.row-reverse:after {
    background: linear-gradient(180deg, #CFE4F2, #CFE4F2, transparent);
  }
}

[data-color="light-blue"] h1.mastertitle span, [data-color="light-blue"] h2.mastertitle span, [data-color="light-blue"] h1.label span, [data-color="light-blue"] h2.label span {
  background-color: #CFE4F2;
}

[data-color="pale-blue"] {
  background-color: #E6F3FE;
}

[data-color="pale-blue"]:after {
  background-color: #E6F3FE;
}

[data-color="pale-blue"].lr.row:after {
  background: linear-gradient(90deg, #E6F3FE, #E6F3FE, transparent);
}

[data-color="pale-blue"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #E6F3FE, #E6F3FE, transparent);
}

@media (max-width: 767px) {
  [data-color="pale-blue"].lr.row:after {
    background: linear-gradient(180deg, #E6F3FE, #E6F3FE, transparent);
  }
  [data-color="pale-blue"].lr.row-reverse:after {
    background: linear-gradient(180deg, #E6F3FE, #E6F3FE, transparent);
  }
}

[data-color="pale-blue"] h1.mastertitle span, [data-color="pale-blue"] h2.mastertitle span, [data-color="pale-blue"] h1.label span, [data-color="pale-blue"] h2.label span {
  background-color: #E6F3FE;
}

[data-color="peach"] {
  background-color: #FFBB7E;
}

[data-color="peach"]:after {
  background-color: #FFBB7E;
}

[data-color="peach"].lr.row:after {
  background: linear-gradient(90deg, #FFBB7E, #FFBB7E, transparent);
}

[data-color="peach"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #FFBB7E, #FFBB7E, transparent);
}

@media (max-width: 767px) {
  [data-color="peach"].lr.row:after {
    background: linear-gradient(180deg, #FFBB7E, #FFBB7E, transparent);
  }
  [data-color="peach"].lr.row-reverse:after {
    background: linear-gradient(180deg, #FFBB7E, #FFBB7E, transparent);
  }
}

[data-color="peach"] h1.mastertitle span, [data-color="peach"] h2.mastertitle span, [data-color="peach"] h1.label span, [data-color="peach"] h2.label span {
  background-color: #FFBB7E;
}

[data-color="pink"] {
  background-color: #FAC0B8;
}

[data-color="pink"]:after {
  background-color: #FAC0B8;
}

[data-color="pink"].lr.row:after {
  background: linear-gradient(90deg, #FAC0B8, #FAC0B8, transparent);
}

[data-color="pink"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #FAC0B8, #FAC0B8, transparent);
}

@media (max-width: 767px) {
  [data-color="pink"].lr.row:after {
    background: linear-gradient(180deg, #FAC0B8, #FAC0B8, transparent);
  }
  [data-color="pink"].lr.row-reverse:after {
    background: linear-gradient(180deg, #FAC0B8, #FAC0B8, transparent);
  }
}

[data-color="pink"] h1.mastertitle span, [data-color="pink"] h2.mastertitle span, [data-color="pink"] h1.label span, [data-color="pink"] h2.label span {
  background-color: #FAC0B8;
}

[data-color="light-pink"] {
  background-color: #ffe4e0;
}

[data-color="light-pink"]:after {
  background-color: #ffe4e0;
}

[data-color="light-pink"].lr.row:after {
  background: linear-gradient(90deg, #ffe4e0, #ffe4e0, transparent);
}

[data-color="light-pink"].lr.row-reverse:after {
  background: linear-gradient(-90deg, #ffe4e0, #ffe4e0, transparent);
}

@media (max-width: 767px) {
  [data-color="light-pink"].lr.row:after {
    background: linear-gradient(180deg, #ffe4e0, #ffe4e0, transparent);
  }
  [data-color="light-pink"].lr.row-reverse:after {
    background: linear-gradient(180deg, #ffe4e0, #ffe4e0, transparent);
  }
}

[data-color="light-pink"] h1.mastertitle span, [data-color="light-pink"] h2.mastertitle span, [data-color="light-pink"] h1.label span, [data-color="light-pink"] h2.label span {
  background-color: #ffe4e0;
}

[data-color="white"] {
  background-color: white;
}

[data-color="white"]:after {
  background-color: white;
}

[data-color="white"].lr.row:after {
  background: linear-gradient(90deg, white, white, transparent);
}

[data-color="white"].lr.row-reverse:after {
  background: linear-gradient(-90deg, white, white, transparent);
}

@media (max-width: 767px) {
  [data-color="white"].lr.row:after {
    background: linear-gradient(180deg, white, white, transparent);
  }
  [data-color="white"].lr.row-reverse:after {
    background: linear-gradient(180deg, white, white, transparent);
  }
}

[data-color="white"] h1.mastertitle span, [data-color="white"] h2.mastertitle span, [data-color="white"] h1.label span, [data-color="white"] h2.label span {
  background-color: white;
}

.dark, .light, .lr[data-color] {
  position: relative;
  overflow: hidden;
}

.dark .text, .light .text, .lr[data-color] .text {
  z-index: 2;
}

.dark:after, .light:after, .lr[data-color]:after {
  content: '';
  z-index: 1;
  position: absolute;
  width: 102%;
  height: 102%;
  left: -1%;
  top: -1%;
}

.page-home .dark:after, .page-home .light:after, .page-home .lr[data-color]:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.dark * {
  color: white;
}

.dark:after {
  opacity: .6;
  background: black;
}

.light * {
  color: #004785;
}

.light:after {
  opacity: .6;
  background: white;
}

.modules {
  overflow: hidden;
}

.module-full {
  padding: 0;
}

@media (max-width: 767px) {
  .module-src.module--text_and_image_block:not(.module-full), .module-special.module--text_and_image_block:not(.module-full) {
    padding: 60px 0 60px;
  }
}

.module .container {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .module .container {
    flex-wrap: wrap;
  }
}

.module .container[data-direction="row-reverse"] {
  flex-direction: row-reverse;
}

@media (min-width: 1200px) {
  .module .container[data-thirds="true"] .image {
    flex: 0 0 66%;
    max-width: 66%;
  }
  .module .container[data-thirds="true"] .text {
    flex: 0 0 34%;
    max-width: 34%;
  }
}

@media (min-width: 992px) {
  .module .container[data-thirds="true"] .image {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .module .container[data-thirds="true"] .text {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.page-webinars .module .container {
  align-items: flex-start;
}

.module-full .container {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 0;
}

h1.mastertitle, h2.mastertitle,
h1.label, h2.label {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  /* display: block; */
  font-size: 2rem;
  line-height: 1em;
}

@media (max-width: 767px) {
  h1.mastertitle, h2.mastertitle,
  h1.label, h2.label {
    margin-bottom: 30px;
  }
}

h1.mastertitle span, h2.mastertitle span,
h1.label span, h2.label span {
  position: relative;
  background-color: white;
  padding: 0 30px;
  z-index: 2;
}

@media (max-width: 575px) {
  h1.mastertitle span, h2.mastertitle span,
  h1.label span, h2.label span {
    max-width: 300px;
    display: block;
    margin: 0 auto;
    padding: 0 5px;
  }
}

h1.mastertitle:after, h2.mastertitle:after,
h1.label:after, h2.label:after {
  content: '';
  border-top: 1px solid #004785;
  position: absolute;
  top: 50%;
  left: calc(3.5% + 30px);
  max-width: calc(93% - 60px);
  width: 100%;
  z-index: 1;
}

@media (min-width: 1200px) {
  h1.mastertitle:after, h2.mastertitle:after,
  h1.label:after, h2.label:after {
    left: calc((100% - 1180px) / 2);
    max-width: 1180px;
  }
}

@media (max-width: 475px) {
  h1.mastertitle:after, h2.mastertitle:after,
  h1.label:after, h2.label:after {
    display: none;
  }
}

h1.label, h2.label {
  margin-bottom: 20px;
}

.recipe-topics h1.label span, .recipe-topics h2.label span {
  background-color: white;
}

h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

h2 em, h2 i {
  display: block;
  font-family: "Lobster";
  font-size: .9em;
  font-style: normal;
}

.page-home h2 em, .page-home h2 i {
  font-size: 2em;
}

@media (max-width: 767px) {
  h2 {
    text-align: center;
  }
}

p {
  color: #004785;
}

.module h2 + a.btn {
  margin-top: 0;
}

.module#image-bg {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.image {
  height: 35vw;
  max-height: 450px;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 1200px) {
  .module-full .image {
    height: 35vw;
  }
}

@media (max-width: 1199px) {
  .image {
    height: 40vw;
  }
}

@media (max-width: 991px) {
  .image {
    height: 50vw;
  }
}

@media (max-width: 767px) {
  .image {
    height: 70vw;
  }
}

.module-contain .image {
  background-size: contain;
  background-repeat: no-repeat;
}

.module-src .image {
  background: none !important;
  text-align: center;
  height: 450px;
}

@media (max-width: 1199px) {
  .module-src .image {
    height: 35vw;
  }
}

@media (max-width: 991px) {
  .module-src .image {
    height: 340px;
  }
}

@media (max-width: 800px) {
  .module-src .image {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .module-src .image {
    height: 80vw;
  }
}

.module-src .image img {
  width: auto;
  height: 100%;
}

.image-short .image {
  height: 29vw;
}

.image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  border: 0;
}

.image a.dark:after, .image a.light:after {
  display: none;
}

.image a.dark {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
}

.image a.light {
  background-color: rgba(255, 255, 255, 0.3);
  color: #004785;
}

.image a i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 80px;
  margin-top: -40px;
  margin-left: -40px;
  z-index: 3;
}

@media (max-width: 991px) and (min-width: 768px) {
  .image a i {
    font-size: 9vw;
    margin-top: -4.5vw;
    margin-left: -4.5vw;
  }
}

.image a:hover.dark, .image a:focus.dark {
  background-color: rgba(0, 0, 0, 0.6);
}

.image a:hover.light, .image a:focus.light {
  background-color: rgba(255, 255, 255, 0.6);
}

.image a:hover i, .image a:focus i {
  transform: scale(1.15);
}

.text {
  padding-left: 60px;
  padding-right: 60px;
  max-width: 600px;
  margin: auto;
}

.text dl, .text ol, .text ul {
  padding-left: 1.3em;
  font-size: 1em;
  color: #004785;
}

.text dl li, .text ol li, .text ul li {
  padding-bottom: 0.75rem;
}

.text dl li::marker, .text ol li::marker, .text ul li::marker {
  margin: 0;
}

.text dl + a.btn, .text ol + a.btn, .text ul + a.btn {
  margin-top: 0;
}

.text h2 + dl, .text h2 + ol, .text h2 + ul {
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .text {
    padding-left: 60px;
    padding-right: 60px;
  }
  [data-direction="row"] .text {
    padding-right: 30px;
  }
  [data-direction="row-reverse"] .text {
    padding-left: 30px;
  }
  [data-thirds="true"] .text {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 767px) {
  .text,
  [data-direction="row"] .text,
  [data-direction="row-reverse"] .text,
  [data-thirds="true"] .text {
    padding-left: 30px;
    padding-right: 30px;
  }
  .text .block_buttons {
    text-align: center;
  }
}

.module-full .text {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .module-src .text,
  .module-special .text {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .module-src .text,
  .module-special .text {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .module-src .text h2,
  .module-special .text h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  .module-src .text h2,
  .module-special .text h2 {
    font-size: 2.75rem;
  }
}

@media (min-width: 992px) {
  .module-src .text p,
  .module-special .text p {
    font-size: 1.25rem;
    line-height: 1.85rem;
    margin-top: .5rem;
  }
}

.text picture img {
  height: 100% !important;
  margin: 0 !important;
}

.module--text_and_image_block a#watch_film > div {
  height: 100%;
}

@media (max-width: 767px) {
  .module--text_and_image_block {
    padding: 30px 0;
  }
  .module--text_and_image_block .text {
    padding: 30px 0px 0;
  }
  .module--text_and_image_block.module-full {
    padding: 0;
  }
  .module--text_and_image_block.module-full .text {
    padding: 30px 0px 30px;
  }
}

@media (max-width: 670px) {
  .module--text_and_image_block.module-full .text {
    max-width: calc(100% - 60px);
  }
}

.page-webinars .module--text_and_image_block strong {
  font-size: .8em;
}

.module--banner {
  text-align: center;
  padding: 60px 30px;
  background-repeat: no-repeat;
  background-size: cover;
}

.module--banner .container {
  min-height: 30vw;
}

.module--banner.slim {
  padding: 30px 30px;
}

.module--banner.slim .container {
  min-height: 0;
}

@media (max-width: 767px) {
  .module--banner .text {
    padding: 0;
  }
}

.module--banner.lr.row {
  margin: 0;
}

.module--banner.lr.row .container {
  justify-content: flex-start;
}

.module--banner.lr.row .container .text {
  text-align: left;
}

.module--banner.lr.row-reverse .container {
  justify-content: flex-start;
}

.module--banner.lr.row-reverse .container .text {
  text-align: right;
}

.module--banner.lr .text {
  max-width: none;
  margin: 0;
}

@media (max-width: 767px) {
  .module--banner.lr .text {
    margin-bottom: 100px;
    padding: 0;
  }
}

.module--banner.lr[data-color]:after {
  opacity: .85;
}

.module--banner a i {
  font-size: 2.5rem;
}

.module--banner a:hover i, .module--banner a:focus i {
  transform: scale(1.15);
}

.module--banner-slide .mastertitle {
  font-size: 1.5rem;
  top: 40px;
  margin-bottom: 30px;
}

.module--banner-slide .slides {
  width: 100%;
  min-height: 25vw;
  display: flex;
  align-items: center;
  opacity: 0;
}

.module--banner-slide .slides .text {
  padding-top: 0;
  padding-bottom: 0;
}

.module--banner-slide .slides.slick-initialized {
  opacity: 1;
}

.module--banner-slide .slides .slick-list {
  overflow: hidden;
}

.module--banner-slide .slides .text--slide {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .module--banner-slide .slides .text--slide h2 {
    font-size: 1.5rem;
  }
}

.module--banner-slide .slides .text--slide > div {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.module--banner-slide .slick-dotted.slick-slider {
  margin: 0;
}

@media (max-width: 767px) {
  .module--banner-slide .slick-arrow {
    display: none !important;
  }
}

.module--banner-slide .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module--banner-slide .slick-dots button {
  display: inline-block;
  padding: 3px;
  border-radius: 50%;
  font-size: 12px;
  width: 10px;
  height: 10px;
  border: 2px solid #004785;
}

.module--banner-slide .slick-dots button:before {
  display: none;
}

.module--banner-slide .slick-dots .slick-active button {
  background: #004785;
}

.module--banner-slide .slick-prev:before, .module--banner-slide .slick-next:before {
  font-family: "Font Awesome 5 Pro";
  color: #004785;
}

.module--banner-slide .slick-prev:before {
  content: "\f053";
}

.module--banner-slide .slick-next:before {
  content: "\f054";
}

.module--col-block .text {
  padding: 0px 0;
  max-width: none;
}

@media (max-width: 991px) {
  .module--col-block .text {
    padding: 0 30px;
  }
}

.module--col_text .text {
  text-align: center;
}

@media (max-width: 991px) {
  .module--col_text .text {
    padding: 30px 5% 0;
  }
}

.module--col_text .text dl, .module--col_text .text ol, .module--col_text .text ul {
  padding-left: 0em;
  font-size: 1em;
  list-style-position: outside;
  padding-left: 1.5em;
}

.module--col_text .text h2 {
  margin-bottom: 1rem;
}

.module--col_text.mw-800 p img {
  max-width: 800px;
}

.module--col_text.text-images-float {
  padding: 30px 0;
}

.module--col_text.text-images-float .text {
  padding: 0;
}

.module--col_text.text-images-float .text img {
  width: 80%;
  margin: 3% auto;
}

@media (min-width: 800px) {
  .module--col_text.text-images-float .text img {
    float: left;
    width: 40%;
    margin: 3% 5%;
  }
}

@media (max-width: 450px) {
  .module--col_text.text-images-float .text img {
    width: 100%;
    margin: 3% auto;
  }
}

.module--col_text.text-sm, .module--col_text blockquote {
  padding-bottom: 60px;
}

.module--col_text.text-sm .text--block, .module--col_text blockquote .text--block {
  padding: 0;
}

.module--col_text.text-sm p, .module--col_text.text-sm ol, .module--col_text.text-sm ul, .module--col_text blockquote p, .module--col_text blockquote ol, .module--col_text blockquote ul {
  font-size: 14px;
  word-break: break-word;
}

.module--col_text.text-sm p a, .module--col_text.text-sm ol a, .module--col_text.text-sm ul a, .module--col_text blockquote p a, .module--col_text blockquote ol a, .module--col_text blockquote ul a {
  color: #004785;
  text-decoration: none;
  border: 0;
}

.module--col_text.text-sm ol, .module--col_text.text-sm ul, .module--col_text blockquote ol, .module--col_text blockquote ul {
  text-align: left;
}

@media (min-width: 768px) {
  .module--col_text.text-sm p, .module--col_text.text-sm ol, .module--col_text.text-sm ul, .module--col_text blockquote p, .module--col_text blockquote ol, .module--col_text blockquote ul {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .module--col_text.text-sm, .module--col_text blockquote {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.module--col_text.text-sm {
  padding: 15px 0px;
}

.module--col_text.text-sm .container {
  max-width: 100%;
}

.module--col_text blockquote {
  padding: 0;
  margin: 0;
}

.module--col_text.dark-bg {
  background-color: #004785;
}

.module--col_text.dark-bg * {
  color: white;
}

#hero:not(.has-bg) + .module--col_text {
  padding-top: 0px;
}

#hero:not(.has-bg) + .module--col_text .text {
  padding: 0px 5% 0;
}

.module--col_multis {
  text-align: center;
}

.module--col_multis .container {
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}

.page-patient-resources .module--col_multis .container {
  align-items: flex-end;
}

.module--col_multis h2 {
  max-width: 600px;
  margin: auto auto 4rem;
  padding: 0 30px;
}

.page-patient-resources .module--col_multis h2 {
  margin: auto auto 2rem;
  font-size: 1rem;
}

.module--col_multis .image {
  height: 25vw;
  max-height: 300px;
  margin-bottom: 1.75rem;
}

@media (max-width: 767px) {
  .module--col_multis .image {
    height: 75vw;
    max-height: none;
  }
}

.module--col_multis .post .image {
  margin-bottom: 0;
}

.module--col_multis .image + h2 {
  margin: 30px auto 15px;
}

.module--col_multis .text h2 {
  margin: auto auto 15px;
}

.module--col_multis img {
  margin-bottom: .5rem;
}

.page-home .module--col_multis img {
  margin-bottom: 1.5rem;
}

.page-home .module--col_multis .btn {
  margin-top: 0;
}

.module--col_multis .product-part, .module--col_multis .text {
  margin: 0 auto;
  max-width: 100%;
  flex: 0 0 33%;
  padding: 1em;
  font-size: 1.2vw;
}

.module--col_multis .product-part h4, .module--col_multis .text h4 {
  font-size: 1.25rem;
  padding: 0 0 0px;
}

@media (min-width: 562px) {
  .module--col_multis .product-part h4, .module--col_multis .text h4 {
    height: 2.9em;
  }
}

.module--col_multis .product-part button, .module--col_multis .text button {
  display: inline-block;
}

@media (max-width: 991px) {
  .module--col_multis .product-part, .module--col_multis .text {
    font-size: 0.8rem;
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
  .module--col_multis .product-part img, .module--col_multis .text img {
    max-width: 16em;
  }
}

@media (max-width: 767px) {
  .module--col_multis .product-part img, .module--col_multis .text img {
    max-width: 100%;
  }
}

@media (max-width: 561px) {
  .module--col_multis .product-part, .module--col_multis .text {
    flex: 0 0 100%;
  }
}

.module--col_multis .link {
  flex: 0 0 100%;
  margin-top: 30px;
}

@media (max-width: 991px) and (min-width: 768px) {
  .module--col_multis .product-part .text {
    margin-bottom: 0px;
  }
}

.module--col_multis .product-part .text img {
  max-width: 11em;
}

@media (max-width: 767px) {
  .module--col_multis .product-part .text img {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .module--col_multis .container > .product-part:last-of-type .text,
  .module--col_multis .container > .product-part:last-of-type,
  .module--col_multis .container > .text--block:last-of-type {
    margin-bottom: 0px;
  }
}

.module--col_multis .text--block .prod--block {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 30px;
}

.module--col_multis .text--block .prod--block h2 {
  display: none;
}

.module--col_multis .text--block .prod--block.has-title h2 {
  display: flex;
  position: relative;
  text-align: left;
  color: white;
  align-self: flex-start;
  padding: 15px 0 15px 15px;
  margin: 0;
  max-width: none;
  font-size: 30px;
}

.module--col_multis .text--block .prod--block .multi_product {
  z-index: 1;
  width: auto;
  height: 19vw;
  align-self: flex-end;
  padding-right: 40px;
  margin: 0;
  max-height: 400px;
}

@media (max-width: 991px) {
  .module--col_multis .text--block .prod--block .multi_product {
    height: 31vw;
    max-width: none;
    max-height: none;
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .module--col_multis .text--block .prod--block .multi_product {
    height: 75vw;
  }
}

.module--col_multis .text--block .prod--block .multi_accent {
  position: absolute;
  z-index: 2;
  bottom: -2.5em;
  left: 30px;
  width: auto;
  height: 30%;
}

@media (max-width: 1199px) {
  .module--col_multis .text--block .prod--block .multi_accent {
    bottom: -3.3em;
  }
}

.module--col_multis[data-cols="2"] .text--block {
  flex: 0 0 46%;
}

.module--col_multis[data-cols="2"] .text--block .image {
  max-height: 400px;
  height: 29vw;
}

.module--col_multis[data-cols="2"] .text--block img {
  width: 100%;
  height: auto;
}

.module--col_multis[data-cols="3"] .text--block {
  flex: 0 0 31%;
}

.module--col_multis[data-cols="3"] .text--block .image {
  max-height: 270px;
  height: 21vw;
}

@media (max-width: 991px) {
  .module--col_multis[data-cols="3"] .text--block .image {
    max-height: none;
    height: 29vw;
  }
}

.module--col_multis[data-cols="3"] .text--block img {
  width: 100%;
  height: auto;
}

.module--col_multis[data-cols="4"] .text--block {
  flex: 0 0 23%;
}

.module--col_multis[data-cols="4"] .text--block .image {
  max-height: 200px;
  height: 17vw;
}

@media (max-width: 991px) {
  .module--col_multis[data-cols="4"] .text--block .image {
    max-height: none;
    height: 29vw;
  }
}

.module--col_multis[data-cols="4"] .text--block img {
  width: 100%;
  height: auto;
}

.module--col_multis[data-cols="2"] .text--block, .module--col_multis[data-cols="3"] .text--block, .module--col_multis[data-cols="4"] .text--block {
  padding: 0;
}

@media (max-width: 991px) {
  .module--col_multis[data-cols="2"] .text--block, .module--col_multis[data-cols="3"] .text--block, .module--col_multis[data-cols="4"] .text--block {
    flex: 0 0 46%;
  }
  .module--col_multis[data-cols="2"] .text--block img, .module--col_multis[data-cols="3"] .text--block img, .module--col_multis[data-cols="4"] .text--block img {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .module--col_multis[data-cols="2"] .text--block, .module--col_multis[data-cols="3"] .text--block, .module--col_multis[data-cols="4"] .text--block {
    flex: 0 0 100%;
  }
  .module--col_multis[data-cols="2"] .text--block .image, .module--col_multis[data-cols="3"] .text--block .image, .module--col_multis[data-cols="4"] .text--block .image {
    height: 70vw;
    max-height: none;
  }
}

@media (min-width: 992px) {
  .module--col_multis.col-multi-quotes .text {
    flex: 0 0 50%;
  }
}

@media (max-width: 991px) {
  .module--col_multis.col-multi-quotes .text {
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .module--col_multis.col-multi-quotes .text {
    flex: 0 0 100%;
    margin-bottom: 0;
  }
}

.module--col_multis.col-multi-quotes .text h2 {
  margin: auto auto 1rem;
  font-size: 1.2rem;
}

.module--col_prods .container {
  align-items: flex-end;
}

.module--2col-text_and_image_block.module-full {
  /*
		.page-toolkits-and-samples & {
			.container {
				align-items: flex-start;
			}
			.mod-product > div {
				flex-direction: column;
				align-items: center;
				.text {
					text-align: center;
				}
				.image {
					height: auto;
				    width: 80%;
				    max-width: none;
				}
			}
		}
*/
}

.module--2col-text_and_image_block.module-full .container {
  background: white;
  padding: 30px;
}

@media (min-width: 900px) and (max-width: 991px) {
  .module--2col-text_and_image_block.module-full .container {
    padding: 15px;
  }
}

@media (max-width: 899px) {
  .module--2col-text_and_image_block.module-full .container {
    flex-direction: column;
  }
}

.module--2col-text_and_image_block.module-full article:first-of-type {
  padding-right: 15px;
}

.module--2col-text_and_image_block.module-full article:last-of-type {
  padding-left: 15px;
}

@media (min-width: 900px) and (max-width: 991px) {
  .module--2col-text_and_image_block.module-full article:first-of-type {
    padding-right: 7.5px;
  }
  .module--2col-text_and_image_block.module-full article:last-of-type {
    padding-left: 7.5px;
  }
}

@media (max-width: 899px) {
  .module--2col-text_and_image_block.module-full article {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .module--2col-text_and_image_block.module-full article:first-of-type {
    padding-right: 0;
    padding-bottom: 30px;
  }
  .module--2col-text_and_image_block.module-full article:last-of-type {
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .module--2col-text_and_image_block.module-full article > div {
    display: flex;
  }
}

.module--2col-text_and_image_block.module-full article h2 {
  font-size: 1.5rem;
  padding-bottom: .5rem;
}

@media (min-width: 900px) and (max-width: 991px) {
  .module--2col-text_and_image_block.module-full article h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .module--2col-text_and_image_block.module-full article h2 {
    font-size: 1.25rem;
  }
}

.module--2col-text_and_image_block.module-full article .image {
  height: 17vw;
}

@media (min-width: 900px) and (max-width: 1199px) {
  .module--2col-text_and_image_block.module-full article .image {
    height: 17vw;
  }
}

@media (max-width: 899px) {
  .module--2col-text_and_image_block.module-full article .image {
    height: 27vw;
  }
}

@media (max-width: 575px) {
  .module--2col-text_and_image_block.module-full article .image {
    height: 48vw;
  }
}

.module--2col-text_and_image_block.module-full article .text {
  padding: 15px 30px;
}

@media (max-width: 767px) {
  .module--2col-text_and_image_block.module-full article .text {
    padding: 15px 30px;
  }
}

@media (max-width: 575px) {
  .module--2col-text_and_image_block.module-full article .text {
    text-align: center;
    padding: 45px 30px;
  }
}

.module--2col-text_and_image_block.module-full article.mod-product .image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.module--2col-text_and_image_block.module-full article.mod-product .image img {
  max-height: 100%;
}

.module--2col-text_and_image_block.module-full article.mod-column > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.module--2col-text_and_image_block.module-full article.mod-column > div .image {
  flex: none;
  max-width: 100%;
  height: 33vw;
  max-height: 400px;
}

.module--2col-text_and_image_block.module-full article.mod-column > div .text {
  text-align: center;
}

.module--2col-text_and_image_block.module-full article.mod-column > div .text h2, .module--2col-text_and_image_block.module-full article.mod-column > div .text p {
  margin-bottom: 0;
}

.module--2col-text_and_image_block.module-full article.mod-column.mod-product > div img {
  max-height: 100%;
}

.module--banner h2 {
  margin-bottom: .5em;
}

.module--recipe_block {
  /*
.container {
			@media (min-width: 1441px) {
				max-width: 1190px;
			}
		}
*/
}

@media (min-width: 768px) {
  .module--recipe_block h2 span {
    font-family: "Lobster";
    font-weight: 400;
  }
}

.module--recipe_block .title.container {
  align-items: center;
}

@media (min-width: 575px) {
  .module--recipe_block .title {
    padding: 0 25px;
  }
}

@media (min-width: 992px) {
  .module--recipe_block .title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .module--recipe_block .title {
    text-align: center;
  }
}

.module--recipe_block .title .recipe-search {
  width: 100%;
  border-bottom: 3px solid #004785;
  margin-top: 25px;
}

@media (min-width: 992px) {
  .module--recipe_block .title .recipe-search {
    width: 50%;
    margin: 0 0 0 20px;
  }
}

.module--recipe_block .title .recipe-search form {
  display: flex;
}

.module--recipe_block .title .recipe-search form input, .module--recipe_block .title .recipe-search form button {
  padding: 0.375rem 0.75rem;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  text-align: left;
  background: transparent;
}

@media (max-width: 475px) {
  .module--recipe_block .title .recipe-search form input, .module--recipe_block .title .recipe-search form button {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .module--recipe_block .title .recipe-search form input, .module--recipe_block .title .recipe-search form button {
    font-size: 14px;
  }
}

.module--recipe_block .title .recipe-search form input[type=search] {
  color: #004785;
}

.module--recipe_block .title .recipe-search form button[type=submit] {
  margin-left: 10px;
  color: #004785;
}

.module--recipe_block .container {
  flex-wrap: wrap;
}

.module--recipe_block .container.recipe--container {
  align-items: flex-start;
  padding: 30px 30px 0;
}

.module--image_slider .container {
  flex-direction: column;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .module--image_slider .container {
    padding: 0 60px;
  }
}

.module--image_slider .slides {
  width: 100%;
  min-height: 30vw;
  opacity: 0;
}

.module--image_slider .slides.slick-initialized {
  opacity: 1;
}

.module--image_slider .slick-slide {
  height: 30vw;
}

.module--image_slider .slick-dotted.slick-slider {
  margin: 0;
}

@media (max-width: 767px) {
  .module--image_slider .slick-arrow {
    display: none !important;
  }
}

.module--image_slider .slick-arrow {
  width: 25px;
  height: 40px;
}

.module--image_slider .slick-arrow:before {
  font-family: "Font Awesome 5 Pro";
  color: #004785;
  font-size: 40px;
}

.module--image_slider .slick-prev {
  left: -50px;
}

.module--image_slider .slick-prev:before {
  content: "\f053";
}

.module--image_slider .slick-next {
  right: -50px;
}

.module--image_slider .slick-next:before {
  content: "\f054";
}

.module--image_slider .buttons p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 0 30px;
  text-align: center;
}

.module--image_slider .buttons p a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 15px;
  margin-bottom: 15px;
  color: #004785;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .module--image_slider .buttons p a {
    width: 48%;
    font-size: 30px;
  }
}

.module--single_image_block img {
  max-width: 500px;
}

@media (max-width: 767px) {
  .module--single_image_block img {
    max-width: 100%;
    width: 100%;
  }
}

.module--coupon-block {
  padding-top: 0;
  /*
		background-color: #71C5AB;
		
		.coupon-frame {
			width: 100%;
			display: flex;
			align-items: center;
			border: 2px dashed white;
			padding: 3vw 5vw;
		    margin: 0 4vw;
		}
		.caption {
		    h2 {
			    font-size: 3rem;
		    }
		    
		}
		
		&.half {
			.coupon-frame {
				width: 48%;
				flex-wrap: wrap;
				margin: 0;
			}
			.image {
				width: 100%;
			}
		}
*/
}

.module--coupon-block .container {
  flex-wrap: wrap;
}

.module--coupon-block .borders {
  width: 100%;
  padding: 1vw 1vw;
  margin: 2vw 0;
}

.module--coupon-block .borders.coupon-border {
  background-color: #FAE146;
}

.page-coffee-creamers .module--coupon-block .borders.coupon-border {
  background-color: #E6F3FE;
}

.page-diabetes-care-shakes .module--coupon-block .borders.coupon-border {
  background-color: #FAC0B8;
}

.module--coupon-block .borders.wtb-border {
  background-color: #FAE146;
}

.module--coupon-block .borders .frame {
  width: 100%;
  display: flex;
  align-items: center;
  border: 2px dashed #004785;
  padding: 3vw 5vw;
}

.module--coupon-block .borders .image {
  width: 50%;
  height: 25vw;
  background-size: contain;
  background-repeat: no-repeat;
}

.module--coupon-block .borders img {
  width: 50%;
  height: auto;
}

@media (max-width: 560px) {
  .module--coupon-block .borders img {
    width: 100%;
    padding-bottom: 15px;
  }
}

.module--coupon-block .borders .caption {
  padding-left: 30px;
}

.module--coupon-block .borders .caption h2 {
  border-bottom: 1px solid #004785;
  padding-bottom: 8px;
  font-size: 4rem;
}

.module--coupon-block .borders .caption p {
  font-size: 2rem;
  line-height: 1em;
}

.module--coupon-block .borders .caption h2, .module--coupon-block .borders .caption p {
  color: #004785;
  font-weight: 600;
}

.module--coupon-block .borders .caption button {
  font-size: .75rem;
  padding: 0.5rem 1rem;
  background: #004785;
  border: 2px solid #004785;
  color: #004785;
  color: white;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-top: 1rem;
}

.module--coupon-block .borders .caption button:hover, .module--coupon-block .borders .caption button:focus {
  background: #004785;
  color: white;
  border: 2px solid #004785;
}

.module--coupon-block .borders .caption > div {
  font-size: 14px;
  padding-top: 5px;
  color: #004785;
}

.module--coupon-block#data-pale-blue .borders.coupon-border {
  background-color: #E6F3FE;
}

.module--coupon-block#data-pink .borders.coupon-border {
  background-color: #FAC0B8;
}

.page-coupons .module--coupon-block {
  padding-bottom: 0;
}

.page-coupons .module--coupon-block:last-of-type {
  padding-bottom: 30px;
}

.module--coupon-block.half .container {
  justify-content: space-between;
}

.module--coupon-block.half .borders {
  width: 49%;
}

.module--coupon-block.half .borders .frame {
  flex-direction: column;
}

.module--coupon-block.half .borders .image {
  width: 100%;
  height: 35vw;
  max-height: 250px;
}

.module--coupon-block.half .borders .caption {
  padding: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .module--coupon-block .container {
    justify-content: space-between;
  }
  .module--coupon-block .borders {
    width: 49%;
  }
  .module--coupon-block .borders .frame {
    flex-direction: column;
  }
  .module--coupon-block .borders .image {
    width: 100%;
    height: 35vw;
    max-height: 250px;
  }
  .module--coupon-block .borders .caption {
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .module--coupon-block .border img {
    width: 80%;
  }
  .module--coupon-block .borders,
  .module--coupon-block.half .borders {
    width: 100%;
  }
}

.module--shortcode_block .container {
  display: block;
}

.module--video_block .video_thumb_default {
  position: absolute;
  height: 100%;
  width: 100%;
}

#hero {
  overflow: visible;
  padding: 60px 30px;
  position: relative;
  z-index: 0;
}

#hero .container, #hero .container h1, .inside #hero .container, .inside #hero .container h1 {
  padding-left: 0px;
  padding-right: 0px;
}

#hero.has-bg {
  padding: 0 30px;
  min-height: 35vw;
}

@media (max-width: 991px) {
  #hero.has-bg {
    min-height: 35vw;
  }
}

@media (max-width: 767px) {
  #hero.has-bg {
    min-height: 45vw;
  }
}

@media (max-width: 450px) {
  #hero.has-bg {
    min-height: 85vw;
  }
}

#hero.has-bg:after {
  content: '';
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  background-color: white;
  opacity: .3;
}

.inside #hero h1 {
  text-align: center;
  width: 100%;
  font-size: 5vw;
  z-index: 2;
  padding: 0 30px;
}

@media (min-width: 1441px) {
  .inside #hero h1 {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .inside #hero h1 {
    font-size: 6vw;
  }
}

@media (max-width: 767px) {
  .inside #hero h1 {
    font-size: 50px;
  }
}

@media (max-width: 400px) {
  .inside #hero h1 {
    font-size: 40px;
  }
}

.inside #hero.has-bg h1 {
  position: absolute;
  bottom: -0.4em;
  left: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .inside #hero.has-bg h1 {
    max-width: 93%;
    left: calc((100% - 93%) / 2);
  }
}

@media (min-width: 1441px) {
  .inside #hero.has-bg h1 {
    max-width: 1240px;
    left: calc((100% - 1240px) / 2);
  }
}

@media (max-width: 767px) {
  .inside #hero.has-bg h1 {
    max-width: calc(100% - 60px);
    left: 30px;
  }
}

.product-categories #hero h1 {
  font-size: 4vw;
}

@media (min-width: 1441px) {
  .product-categories #hero h1 {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  .product-categories #hero h1 {
    font-size: 5vw;
  }
}

@media (max-width: 767px) {
  .product-categories #hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  .product-categories #hero h1 {
    font-size: 30px;
  }
}

#hero .like-icons {
  font-size: 10vw;
}

#hero .like-icons img {
  position: absolute;
  width: 1em;
  height: auto;
  z-index: 3;
  min-width: 100px;
  /*
			@media (max-width:400px) {
				&:first-of-type {
					top: 0.3em;
					left: 1em;
				}
				&:last-of-type {
				    top: 0.8em;
					left: 0.2em;
				}			
			}
*/
}

#hero .like-icons img:first-of-type {
  top: 0.3em;
  left: 1em;
}

#hero .like-icons img:last-of-type {
  top: 0.8em;
  left: 0.2em;
}

@media (max-width: 991px) {
  #hero .like-icons img:first-of-type {
    top: 0.3em;
    left: 1em;
  }
  #hero .like-icons img:last-of-type {
    top: 0.8em;
    left: 0.2em;
  }
}

@media (max-width: 800px) {
  #hero .like-icons img:first-of-type {
    top: 0.1em;
    left: .8em;
  }
  #hero .like-icons img:last-of-type {
    top: 0.7em;
    left: 0.1em;
  }
}

@media (max-width: 991px) {
  #hero .like-icons {
    font-size: 100px;
  }
}

#hero .prod-image {
  position: absolute;
  z-index: 10;
  width: 20%;
  bottom: -30px;
  right: 30px;
}

@media (max-width: 767px) {
  #hero .prod-image {
    width: 30%;
    bottom: -30px;
    left: 50%;
    right: inherit;
    margin-left: -15%;
  }
}

@media (max-width: 575px) {
  #hero .prod-image {
    bottom: -80px;
  }
}

@media (max-width: 370px) {
  #hero .prod-image {
    bottom: -80px;
    width: 44%;
    margin-left: -22%;
  }
}

@media (max-width: 575px) {
  .page-home #hero + section {
    padding-top: 120px;
  }
}

.page-home {
  /*
	.module--text_and_image_block {
		@media(max-width: 767px) {
			p { text-align: center; }
		}
	}
*/
}

.page-home #hero {
  display: flex;
  align-items: center;
  min-height: 400px;
  height: 47vw;
  position: relative;
  z-index: 0;
}

@media (max-width: 767px) {
  .page-home #hero {
    height: 100vw;
  }
}

@media (max-width: 575px) {
  .page-home #hero {
    height: 130vw;
  }
}

@media (max-width: 370px) {
  .page-home #hero {
    height: 170vw;
  }
}

.page-home #hero .container {
  position: relative;
  text-align: center;
  z-index: 2;
}

.page-home #hero .container button {
  margin-top: 35px;
}

@media (max-width: 767px) {
  .page-home #hero .container {
    padding: 0;
  }
}

.page-home #hero:after {
  opacity: .5;
}

.page-home #hero h1 {
  font-size: 70px;
  margin: 2rem auto 1rem;
}

@media (max-width: 1200px) {
  .page-home #hero h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .page-home #hero h1 {
    font-size: 50px;
    max-width: 632px;
  }
}

@media (max-width: 767px) {
  .page-home #hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .page-home #hero h1 {
    margin-top: 5rem;
  }
}

.page-home #hero h1 em, .page-home #hero h1 i {
  display: block;
  font-family: "Lobster";
  font-size: .85em;
  font-style: normal;
}

.page-home #hero a.btn {
  margin: 1rem 0 0;
}

.page-home #image-bg {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 40%;
  background-image: url(/wp-content/uploads/2020/07/packets-knolling-sm.png);
}

.page-home #original h2, .page-home #naturals h2 {
  padding-left: 3.3em;
}

.page-home #original h2 em, .page-home #original h2 i, .page-home #naturals h2 em, .page-home #naturals h2 i {
  margin-left: -1.7em;
  font-size: 2em;
}

.page-home #naturals h2 {
  padding-left: 2em;
}

.page-home #naturals h2 em, .page-home #naturals h2 i {
  margin-left: -1em;
}

@media (max-width: 767px) {
  .page-home #naturals h2 {
    padding: 0;
  }
  .page-home #naturals h2 em {
    margin: 0;
  }
  .page-home #naturals .image picture {
    margin-left: -16px;
  }
}

.page-home .module--recipe_block .recipe--container {
  align-items: unset;
}

.product-landing .product-part.post {
  padding: 25px 15px 35px;
}

.product-landing a.btn {
  margin-top: 0;
}

.product-landing .module--col_multis[data-cols="2"] .text--block {
  padding: 30px 0;
}

.product-landing .module--col_multis[data-cols="2"] .text--block img {
  max-height: 550px;
  height: 30vw;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .product-landing .module--col_multis[data-cols="2"] .text--block img {
    height: 40vw;
  }
}

@media (max-width: 767px) {
  .product-landing .module--col_multis[data-cols="2"] .text--block img {
    height: 70vw;
  }
}

.product-landing .module--col_multis[data-cols="2"] .text h2 {
  font-size: 32px;
  font-weight: 900;
}

@media (max-width: 767px) {
  .product-landing .module--col_multis[data-cols="2"] {
    padding: 0;
  }
  .product-landing .module--col_multis[data-cols="2"] .container {
    flex-direction: column;
  }
  .product-landing .module--col_multis[data-cols="2"] .text {
    max-width: 600px;
    margin: auto;
    text-align: left;
  }
  .product-landing .module--col_multis[data-cols="2"] .text h2 {
    padding: 0;
  }
}

.product-landing .module--col_multis .text h2 + dl, .product-landing .module--col_multis .text h2 + ol, .product-landing .module--col_multis .text h2 + ul {
  margin-top: 0;
}

.product-landing .module--col_multis.bullet-tiles ul li {
  padding: 13px;
  font-size: 14px;
  width: 45%;
  margin: 0 5px 10px;
  flex: 0 0 44%;
  max-width: 44%;
}

body.page-naturals .module--single_image_block img {
  max-width: 800px;
}

.page-product-category.inside #hero picture {
  display: none;
}

.page-product-category .plp-text-blurb {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding-bottom: 0;
}

.page-product-category .plp-products {
  text-align: center;
  /*
		.product-part.post {
			@media (min-width: 992px) {
				&:nth-child(3n-2) { padding: 25px 15px 35px; };
				&:nth-child(3n-1) { padding: 25px 0px 35px 15px; };
				&:nth-child(3n) { padding: 25px 15px 35px 0px; };
				
				&:nth-child(1) { padding: 25px 15px 35px 0px; };
				&:nth-child(2) { padding: 25px 0px 35px 15px; };
			}
		}
*/
}

.page-product-category .plp-products .container {
  align-items: flex-end;
}

.page-product-category .plp-products .product-part.post {
  padding: 25px 15px 35px;
}

.page-product-category .plp-products h5 {
  padding: 10px 0 20px;
}

@media (min-width: 992px) {
  .page-product-category .plp-products .product-part {
    flex: 0 0 33.333333%;
  }
}

.page-product-category .plp-article .article-piece {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  height: 25vh;
}

.page-product-category .plp-recipes {
  text-align: center;
}

.page-product-category .plp-products .container,
.page-product-category .plp-recipes .recipe-pieces {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 577px) {
  .page-product-category #text-blurb, .page-product-category #article {
    padding-left: 25px;
    padding-right: 25px;
  }
}

#product-single .mini-nav {
  padding: 15px 30px 0px;
  font-size: 14px;
}

#product-single .mini-nav span a {
  color: #414141;
}

#product-single .mini-nav span a:hover {
  color: #004785;
}

#product-single .container, #product-single .parts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}

#product-single .parts {
  align-items: flex-end;
}

#product-single #product-info .product-images {
  background-color: white;
}

@media (min-width: 768px) {
  #product-single #product-info .product-images {
    padding-right: 30px;
  }
}

#product-single #product-info .product-images .slider-for {
  overflow: hidden;
}

@media (min-width: 1441px) {
  #product-single #product-info .product-images .slider-for {
    max-height: 560px;
  }
}

@media (max-width: 1440px) {
  #product-single #product-info .product-images .slider-for {
    max-height: 55vw;
  }
}

@media (max-width: 991px) {
  #product-single #product-info .product-images .slider-for {
    max-height: 42vw;
  }
}

@media (max-width: 991px) {
  #product-single #product-info .product-images .slider-for {
    max-height: 630px;
  }
}

#product-single #product-info .product-images .product-image {
  width: 100%;
  height: 42vw;
  text-align: center;
  display: inline-block;
  background-color: white;
  position: relative;
}

#product-single #product-info .product-images .product-image:after {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  border: 3px solid white;
  z-index: 11;
}

@media (max-width: 767px) {
  #product-single #product-info .product-images .product-image {
    height: 87vw;
  }
}

@media (min-width: 1441px) {
  #product-single #product-info .product-images .product-image {
    height: 560px;
  }
}

#product-single #product-info .product-images .product-image img {
  height: 96%;
  top: 2%;
  position: relative;
  margin: 0 auto;
  background-color: white;
}

#product-single #product-info .product-images .product-image .zoomImg {
  position: relative;
  z-index: 10;
  background-color: white;
  border: 2px solid red;
}

#product-single #product-info .product-images .slider-for {
  margin-bottom: 30px;
}

#product-single #product-info .product-images .slider-nav .slick-track {
  transform: none !important;
  width: 100% !important;
  /*
				
				display: flex;
				align-items: center;
				justify-content: center;
				align-content: center;
*/
}

#product-single #product-info .product-images .slider-nav {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

#product-single #product-info .product-images .slider-nav.slick-initialized {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  transition-delay: .5s;
  -webkit-transition-delay: .5s;
}

#product-single #product-info .product-images .slider-nav .slick-list {
  text-align: center;
}

#product-single #product-info .product-images .slider-nav .slick-slide {
  margin: 1px 2px;
  height: 80px;
  width: auto !important;
  border: 1px solid #eee;
  float: none;
  display: inline-block;
  padding: 5px;
}

#product-single #product-info .product-images .slider-nav img {
  padding: 10px;
  width: 100px;
}

#product-single #product-info .info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 45px;
}

@media (min-width: 768px) {
  #product-single #product-info .info {
    padding: 0 0 0 45px;
  }
}

#product-single #product-info .info .icons {
  padding: 30px 0;
}

#product-single #product-info .info .icons img {
  margin-right: 10px;
  margin-bottom: 11px;
  height: 90px;
}

@media (max-width: 768px) {
  #product-single #product-info .info .icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #product-single #product-info .info .icons img {
    margin: 0 10px 10px;
  }
}

#product-single #product-info .info .info-extra {
  display: flex;
  flex-wrap: wrap;
  /*
				.bar {
				    width: 100%;
					height: 5px;
					background-color: $lt-gray;
				    margin-top: 8px;
				    position: relative;
				    &:before {
				        content: '';
					    position: absolute;
					    background-color: $orange;
					    height: 100%;
					    width: 50%;
					    left: 0;
					    @include transition(all 0.3s ease);
				    }
				    &.ratings:before {
					    left: 50%;
				    }
				}
*/
}

#product-single #product-info .info .info-extra h5 {
  width: 50%;
  font-size: 24px;
  font-weight: 600;
}

#product-single #product-info .info .facts ul {
  margin: 15px 0;
  column-count: 2;
  padding: 0 0 20px;
}

@media (max-width: 450px) {
  #product-single #product-info .info .facts ul {
    margin: 15px 0 0;
    column-count: 1;
    padding: 0;
  }
}

#product-single #product-info .info .facts li {
  padding: 10px 0;
  font-size: 16px;
  margin-left: 30px;
}

#product-single #product-info .info .ps-disabled {
  display: none !important;
}

#product-single #ratings-reviews {
  background-color: #E6F3FE;
}

#product-single #ratings-reviews.empty {
  display: none;
}

#product-single #ratings-reviews .container {
  flex-direction: column;
  align-items: center;
}

#product-single #ratings-reviews .ps-widget[ps-sku] {
  background: transparent;
}

#product-single #ratings-reviews .ps-widget[ps-sku] .ps-review-widget {
  border: none;
}

#product-single #ratings-reviews .ps-widget[ps-sku], #product-single #ratings-reviews .ps-widget[data-ps-sku] {
  max-width: none !important;
  border: 0 !important;
  padding: 30px 30px 0 !important;
}

#product-single #ratings-reviews .ps-widget[ps-sku] *, #product-single #ratings-reviews .ps-widget[data-ps-sku] * {
  color: #004785 !important;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}

#product-single #ratings-reviews .ps-widget[ps-sku] .ps-review-stars, #product-single #ratings-reviews .ps-widget[data-ps-sku] .ps-review-stars {
  padding-bottom: 15px !important;
}

#product-single #ratings-reviews .ps-widget[ps-sku] .ps-review-stars .ps-five-star > svg > g > path, #product-single #ratings-reviews .ps-widget[data-ps-sku] .ps-review-stars .ps-five-star > svg > g > path {
  stroke: #004785 !important;
}

#product-single #related-recipes {
  background-color: #E8F0B6;
}

#product-single #related-recipes .container {
  justify-content: center;
}

#product-single .text_sm p {
  margin: 0;
  display: inline;
}

#product-single .text_sm p sup {
  font-size: 100%;
  top: 0;
  font-weight: bold;
}

#product-single #coupon--shakes .borders.coupon-border {
  background-color: #FAC0B8;
}

#product-single #coupon--creamers .borders.coupon-border {
  background-color: #E6F3FE;
}

#coupon--creamers, #coupon--shakes {
  display: none;
}

[data-category="diabetes-care-shakes"] #coupon--shakes {
  display: block;
}

[data-category="diabetes-care-shakes"] #coupon--original {
  display: none;
}

[data-category="coffee-creamers"] #coupon--original {
  display: none;
}

[data-category="coffee-creamers"] #coupon--creamers {
  display: block;
}

[data-category="sweet-teas"] .module--coupon-block {
  display: none;
}

.ps-widget.buy-now[ps-sku] {
  margin: 15px 0 30px;
  border-color: #004785;
}

.ps-widget.buy-now[ps-sku]:not(.ps-disabled) {
  background-color: transparent;
  color: #004785;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 700;
}

.ps-widget.buy-now[ps-sku]:not(.ps-disabled):hover, .ps-widget.buy-now[ps-sku]:not(.ps-disabled):focus {
  cursor: pointer;
  background-color: #004785;
  color: white;
}

.page-recipes .featured,
.recipe-categories .featured,
.page-recipe-search .featured,
.page-search-recipes .featured {
  background-color: #FFFBBA;
}

.page-recipe-categories.inside #hero picture {
  display: none;
}

.recipes section:nth-of-type(3), #indiv-collection section:nth-of-type(3) {
  padding-top: 90px;
}

.recipes .block, #indiv-collection .block {
  padding-top: 44px;
}

.recipes .recipe-topics, #indiv-collection .recipe-topics {
  /*
		background-color: $pale-blue;
		.sect {
		    padding: 44px 0;
		    border-bottom: solid 2px $dk-blue;
		    &:last-of-type {
			    border: none;
		    }
		}
*/
}

.recipes .recipe-topics:nth-of-type(0), #indiv-collection .recipe-topics:nth-of-type(0) {
  background-color: transparent;
}

.recipes .recipe-topics .parts, #indiv-collection .recipe-topics .parts {
  display: flex;
  flex-wrap: wrap;
}

.recipes .recipe-topics .see-all, #indiv-collection .recipe-topics .see-all {
  text-align: center;
}

.recipes #description, #indiv-collection #description {
  padding-top: 80px;
}

.recipes #description p, #indiv-collection #description p {
  max-width: 560px;
  margin: auto;
}

.recipes .featured h2.label, #indiv-collection .featured h2.label {
  text-align: center;
}

.recipes .featured .recipe-block, #indiv-collection .featured .recipe-block {
  display: flex;
  flex-wrap: wrap;
}

.recipes .featured .image, #indiv-collection .featured .image {
  height: 400px;
}

.recipes .featured .text, #indiv-collection .featured .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recipes .featured .text a, #indiv-collection .featured .text a {
  width: max-content;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .recipes .featured .text, #indiv-collection .featured .text {
    padding-left: 45px;
  }
}

@media (max-width: 787px) {
  .recipes .featured .text, #indiv-collection .featured .text {
    padding-top: 25px;
  }
}

.recipes .featured.flipped .recipe-block, #indiv-collection .featured.flipped .recipe-block {
  flex-direction: row-reverse;
}

.recipes .featured.flipped .text, #indiv-collection .featured.flipped .text {
  padding: 0 45px 0 0;
}

.recipes #recipe-search:not(.recipe-page-search) .search-bar {
  display: none;
}

.recipes #recipe-search.recipe-page-search {
  background-color: #ffffff;
}

.recipes #recipe-search .search-bar {
  max-width: 600px;
  margin: auto;
  padding-bottom: 20px;
}

.recipes .search-tabs,
.recipes .search-bar {
  width: 100%;
  padding: 0px;
}

.recipes .featured .label, .recipes .collection .label {
  text-align: center;
  font-size: 40px;
}

.recipes .collection sect {
  padding-top: 19px;
}

@media (min-width: 768px) {
  .recipes #seasonal .text {
    padding-left: 0;
    padding-right: 45px;
  }
}

#indiv-collection #feat-recipes {
  padding-top: 0;
}

#indiv-collection #feat-recipes .container {
  display: flex;
  flex-wrap: wrap;
}

#recipe-single #hero {
  min-height: 300px;
  height: 50vw;
}

#recipe-single #recipe-info h1 {
  font-size: 4vw;
}

@media (min-width: 1441px) {
  #recipe-single #recipe-info h1 {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  #recipe-single #recipe-info h1 {
    font-size: 5vw;
  }
}

@media (max-width: 767px) {
  #recipe-single #recipe-info h1 {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  #recipe-single #recipe-info h1 {
    font-size: 30px;
  }
}

#recipe-single #recipe-info .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 10px;
}

#recipe-single #recipe-info .categories {
  margin-top: 1em;
  color: #004785;
}

#recipe-single #recipe-info .recipe-share {
  color: #004785;
  display: flex;
}

#recipe-single #recipe-info .recipe-share strong {
  font-weight: 400;
  font-size: 1rem;
  padding-right: 5px;
}

@media (max-width: 561px) {
  #recipe-single #recipe-info .recipe-share strong {
    display: none;
  }
}

#recipe-single #recipe-info .recipe-share span {
  padding-right: 15px;
  display: flex;
  align-items: center;
}

@media (max-width: 561px) {
  #recipe-single #recipe-info .recipe-share span {
    padding-right: 0;
    margin-bottom: 15px;
  }
}

#recipe-single #recipe-info .recipe-share a {
  font-size: 1.4rem;
  padding: 0 5px;
  color: #2D8EFF;
}

#recipe-single #recipe-info .recipe-share .at-icon-wrapper {
  padding: 0;
  line-height: 32px;
  height: 30px;
  width: 27px;
}

#recipe-single #recipe-info .gen-info {
  font-size: 16px;
}

#recipe-single #recipe-info .gen-info span.divider {
  /*
			    padding: 6px 10px 6px 0;
			    margin-right: 8px;
			    border-right: 1px solid $dk-blue;
			    &:last-of-type { border: none; }
*/
  padding: 9px 16px;
  margin: 0 8px 8px 0;
  display: inline-block;
  border: 2px solid #E7ECF2;
}

#recipe-single #recipe-info .gen-info span.divider strong {
  color: #004785;
}

#recipe-single #recipe-info .description {
  padding-top: 15px;
}

#recipe-single .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

#recipe-single .embed-container iframe,
#recipe-single .embed-container object,
#recipe-single .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#recipe-single #info {
  padding-top: 0;
}

#recipe-single #info .container {
  display: flex;
  flex-wrap: wrap;
}

#recipe-single #info h2 {
  padding-bottom: 20px;
}

#recipe-single #info .list {
  background-color: #E7ECF2;
  padding: 25px 30px;
}

@media (min-width: 768px) {
  #recipe-single #info .list {
    max-width: 330px;
  }
}

#recipe-single #info .ingredients p {
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  #recipe-single #info .ingredients p {
    font-size: 1rem;
  }
}

#recipe-single #info .nutrition {
  margin-top: 60px;
  width: 100%;
}

#recipe-single #info .nutrition > p {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  #recipe-single #info .nutrition.small {
    display: none;
  }
}

@media (max-width: 767px) {
  #recipe-single #info .nutrition {
    padding-left: 30px;
    padding-right: 30px;
  }
  #recipe-single #info .nutrition.wide {
    display: none;
  }
}

#recipe-single #info .nutrition table, #recipe-single #info .nutrition table tbody {
  display: block;
  width: 100%;
}

#recipe-single #info .nutrition table tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #c6d2e0;
  padding-bottom: 0.3em;
  margin-bottom: .3rem;
}

#recipe-single #info .nutrition table tr:last-child {
  border: none;
}

#recipe-single #info .nutrition table td {
  display: block;
}

#recipe-single #info .steps li, #recipe-single #info .note li {
  line-height: 1.4em;
  padding-bottom: 1em;
  font-size: 16px;
}

#recipe-single #info .steps .steps-list, #recipe-single #info .note .steps-list {
  padding: 30px 0 0 20px;
}

@media (max-width: 767px) {
  #recipe-single #info .steps, #recipe-single #info .note {
    margin-top: 60px;
  }
}

#recipe-single #info .used-products {
  display: block;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  #recipe-single #info .side-bar {
    padding-right: 40px;
  }
  #recipe-single #info .main {
    padding-left: 40px;
  }
}

#recipe-single #related-recipes {
  background-color: #E8F0B6;
}

#recipe-single #related-recipes .container,
#recipe-single #related-recipes .parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

#recipe-single #recipe-search {
  background-color: #E6F3FE;
  padding: 60px 0;
}

#recipe-single #recipe-search .container {
  max-width: 600px;
}

@media print {
  header:before, header .main-header, header .small-header {
    display: none;
  }
  .container {
    display: block;
  }
  .container > div {
    display: block;
    width: 100%;
  }
  #hero,
  .subnav,
  .meta,
  footer,
  #recipe-single #recipe-info .meta,
  .product-part,
  .embed-container,
  .used-products,
  #related-recipes,
  #recipe-search {
    display: none;
  }
  #recipe-info {
    padding-top: 40px;
  }
  .divider {
    display: block;
    border: 0;
    padding: 0;
  }
  #recipe-single #recipe-info h1 {
    font-size: 30px;
    padding-bottom: 20px;
  }
  header div.header-logo img {
    max-height: 35px;
  }
  h2.h4 {
    font-size: 20px;
  }
  .used-products {
    display: none !important;
  }
  #recipe-single .container, #recipe-single #info .container {
    display: block;
    max-width: none;
  }
  #recipe-single #info {
    padding-bottom: 0;
  }
  #recipe-single #info .side-bar, #recipe-single #info .main {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #recipe-single #info .list {
    max-width: 100%;
    columns: 2;
  }
  #recipe-single #info .nutrition.wide {
    display: none !important;
  }
  #recipe-single #info .nutrition.small {
    display: block !important;
    margin-top: 0;
  }
  #recipe-single #info .steps {
    padding-top: 30px;
  }
  #recipe-single #recipe-info {
    padding: 30px 0;
  }
}

.recipe-index h3 {
  padding-top: 30px;
}

.recipe-index p {
  margin-bottom: 5px;
}

.recipe-index p a:not(:hover) {
  color: black;
  border-bottom: none;
}

.recipe-index .category {
  columns: 3;
  -webkit-columns: 3;
}

#about h2 {
  text-align: center;
}

main section.has-bg + section {
  padding-top: 6vw;
}

.packet {
  position: relative;
  z-index: 1;
  overflow: visible;
}

@media (max-width: 850px) {
  .packet {
    padding-bottom: 130px;
  }
}

@media (max-width: 767px) {
  .packet {
    padding-bottom: 150px;
    margin-bottom: 0px;
  }
  .packet + section.module {
    padding-top: 80px;
  }
}

.packet.module--col_text {
  padding-bottom: 130px;
  margin-bottom: 0px;
}

.packet.module--col_text + section.module--col_text {
  padding-top: 80px;
}

.packet:after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: -50px;
  left: 50%;
  margin-left: -125px;
  background-image: url(../images/packet-sunshine.png);
  width: 250px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}

.packet.packet--sunshine:after {
  background-image: url(../images/packet-sunshine.png);
}

.packet.packet--smile:after {
  background-image: url(../images/packet-smile.png);
}

.packet.packet--happy:after {
  background-image: url(../images/packet-happy.png);
}

.page-privacy-policy h4,
.page-terms-of-use h4 {
  padding-top: 1em;
  padding-bottom: .5em;
}

#hc-cols .container > div {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 23vw;
  text-align: center;
  align-items: center;
  padding: 30px;
}

#hc-cols .container > div:nth-of-type(1) {
  background-color: #FAC0B8;
}

#hc-cols .container > div:nth-of-type(2) {
  background-color: #D7EDE4;
}

#hc-cols .container > div:nth-of-type(3) {
  background-color: #E8F0B6;
}

#hc-cols .container > div img, #hc-cols .container > div h2 {
  margin: 0;
}

#hc-cols .container > div h2.h3 {
  font-weight: 900;
  font-size: 2rem;
}

#hc-cols .container > div img {
  width: 100%;
  margin: 15px auto 5px;
}

@media (max-width: 991px) {
  #hc-cols .container > div {
    flex: 0 0 47%;
  }
}

@media (max-width: 680px) {
  #hc-cols .container > div {
    flex: 0 0 100%;
  }
}

#hc-cols h2 {
  text-align: center;
}

#banner {
  background-color: white !important;
  padding-bottom: 0;
}

#banner.module--col_text .text {
  padding: 0 !important;
}

#banner .text--block {
  padding: 0;
  text-align: center;
  max-width: 100%;
  width: 90%;
  position: relative;
}

@media (max-width: 767px) {
  #banner .text--block {
    width: 100%;
  }
}

#banner .text--block p {
  background-color: #FAC0B8;
  padding: 1em 4em;
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #banner .text--block:before, #banner .text--block:after {
    content: '';
    width: 40px;
    height: 100%;
    position: absolute;
    z-index: 1;
    bottom: -5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  #banner .text--block:before {
    left: -27px;
    background-image: url(../images/bannerL.jpg);
  }
  #banner .text--block:after {
    right: -27px;
    background-image: url(../images/bannerR.jpg);
  }
}

#banner h2, #banner p, #banner p > a {
  margin: 0;
  font-weight: 700;
  color: #004785;
}

#science_banner {
  position: relative;
  padding: 10px 0;
  /*
	@media (min-width:992px) {
		padding-bottom: 10px;
	}
*/
}

#science_banner h1.mastertitle {
  font-size: 2.25rem;
  padding: 0 30px;
}

@media (min-width: 768px) {
  #science_banner h1.mastertitle {
    margin-bottom: 30px;
  }
}

#science_banner h1.mastertitle span {
  max-width: 460px;
  display: block;
  margin: auto;
}

#science_banner .container {
  padding: 20px 0 60px;
}

@media (min-width: 992px) {
  #science_banner .container {
    max-width: 60%;
    margin: 0 0 0 100px;
  }
}

@media (max-width: 991px) {
  #science_banner .container {
    flex-direction: column;
    padding-bottom: 0;
  }
}

#science_banner .slides {
  padding-top: 20px;
}

#science_banner .text-slide {
  padding-left: 30px;
  padding-right: 30px;
}

#science_banner .slick-prev {
  left: -10px;
}

#science_banner .slick-next {
  right: -10px;
}

#science_banner .science-blocks {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  #science_banner .science-blocks {
    flex: 0 0 35%;
    flex-direction: column;
    padding: 0 0 0 30px;
  }
}

@media (max-width: 991px) {
  #science_banner .science-blocks {
    width: 100%;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  #science_banner .science-blocks {
    padding: 0 30px;
  }
}

@media (max-width: 574px) {
  #science_banner .science-blocks {
    flex-direction: column;
  }
}

#science_banner .science-blocks > a {
  width: 100%;
  height: 40%;
  color: #004785;
  font-weight: 900;
  text-align: center;
  margin: 5px;
  padding: 50px 30px;
}

#science_banner .science-blocks > a:first-of-type {
  background: #FFBB7E;
}

#science_banner .science-blocks > a:last-of-type {
  background: #E8F0B6;
}

#toolkit_form, #toolkit_form_bulk {
  display: none;
  background-color: #CFE4F2;
}

#toolkit_form .container, #toolkit_form_bulk .container {
  max-width: 760px;
}

#toolkit_form .gform_wrapper, #toolkit_form_bulk .gform_wrapper {
  display: block !important;
}

.bullet-tiles .text--block {
  max-width: none;
  padding: 0 5%;
}

.bullet-tiles ol, .bullet-tiles ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
  align-content: center;
}

.bullet-tiles ol li, .bullet-tiles ul li {
  /*
			    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
*/
  list-style: none;
  padding: 30px;
  font-size: 18px;
  width: 45%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  margin: 0 10px 20px;
  flex: 0 0 45%;
  max-width: 50%;
}

.bullet-tiles[data-color="white"] ol li, .bullet-tiles[data-color="white"] ul li {
  background: #CFE4F2;
}

.page-sweet-successes .module p + a.btn,
.page-sweet-successes-professionals .module p + a.btn {
  margin-top: 0;
}

.page-sweet-successes .module h2 + a.btn,
.page-sweet-successes-professionals .module h2 + a.btn {
  margin-top: 1rem;
}

.page-patient-resources .module--col_multis[data-cols="2"] .text--block, .page-patient-resources .module--col_multis[data-cols="3"] .text--block, .page-patient-resources .module--col_multis[data-cols="4"] .text--block {
  flex: 0 0 26%;
}

.page-patient-resources .module--col_multis[data-cols="2"] .text--block .image, .page-patient-resources .module--col_multis[data-cols="3"] .text--block .image, .page-patient-resources .module--col_multis[data-cols="4"] .text--block .image {
  max-height: 270px;
  height: 21vw;
}

@media (max-width: 991px) {
  .page-patient-resources .module--col_multis[data-cols="2"] .text--block .image, .page-patient-resources .module--col_multis[data-cols="3"] .text--block .image, .page-patient-resources .module--col_multis[data-cols="4"] .text--block .image {
    max-height: none;
    height: 29vw;
  }
}

.page-patient-resources .module--col_multis[data-cols="2"] .text--block img, .page-patient-resources .module--col_multis[data-cols="3"] .text--block img, .page-patient-resources .module--col_multis[data-cols="4"] .text--block img {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .page-patient-resources .module--col_multis[data-cols="2"] .text--block, .page-patient-resources .module--col_multis[data-cols="3"] .text--block, .page-patient-resources .module--col_multis[data-cols="4"] .text--block {
    flex: 0 0 46%;
  }
  .page-patient-resources .module--col_multis[data-cols="2"] .text--block img, .page-patient-resources .module--col_multis[data-cols="3"] .text--block img, .page-patient-resources .module--col_multis[data-cols="4"] .text--block img {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .page-patient-resources .module--col_multis[data-cols="2"] .text--block, .page-patient-resources .module--col_multis[data-cols="3"] .text--block, .page-patient-resources .module--col_multis[data-cols="4"] .text--block {
    flex: 0 0 100%;
  }
  .page-patient-resources .module--col_multis[data-cols="2"] .text--block .image, .page-patient-resources .module--col_multis[data-cols="3"] .text--block .image, .page-patient-resources .module--col_multis[data-cols="4"] .text--block .image {
    height: 70vw;
    max-height: none;
  }
}

.page-patient-resources .module--col_multis h2 {
  padding: 0;
}

.page-patient-resources .in-the-kitchen .container > div:nth-of-type(1),
.page-patient-resources .in-the-kitchen .container > div:nth-of-type(2),
.page-patient-resources .in-the-kitchen .container > div:nth-of-type(3) {
  margin-bottom: 4rem;
}

.page-diabetes-management .module--banner.lr[data-color]:after {
  opacity: 0.45;
}

.page-the-safety-of-sweeteners .module--col-block .container dl, .page-the-safety-of-sweeteners .module--col-block .container ol, .page-the-safety-of-sweeteners .module--col-block .container ul, .page-lncs-help-with-diabetes-and-weight-management .module--col-block .container dl, .page-lncs-help-with-diabetes-and-weight-management .module--col-block .container ol, .page-lncs-help-with-diabetes-and-weight-management .module--col-block .container ul, .page-expert-consensus .module--col-block .container dl, .page-expert-consensus .module--col-block .container ol, .page-expert-consensus .module--col-block .container ul {
  text-align: left;
  padding-left: 1.3em;
  font-size: 1em;
  list-style-position: outside;
}

.page-the-safety-of-sweeteners .module--col-block .container h2, .page-lncs-help-with-diabetes-and-weight-management .module--col-block .container h2, .page-expert-consensus .module--col-block .container h2 {
  font-size: 1.6rem;
  margin-bottom: .5rem;
  text-align: left;
}

.page-the-safety-of-sweeteners #hero:not(.has-bg) + .module--col_text .text, .page-lncs-help-with-diabetes-and-weight-management #hero:not(.has-bg) + .module--col_text .text, .page-expert-consensus #hero:not(.has-bg) + .module--col_text .text {
  padding: 0;
}

@media (max-width: 991px) {
  .page-the-safety-of-sweeteners .module--col_text .text, .page-lncs-help-with-diabetes-and-weight-management .module--col_text .text, .page-expert-consensus .module--col_text .text {
    padding: 30px 0 0;
  }
}

.page-share-your-story .module--shortcode_block {
  background-color: #E6F3FE;
}

.page-share-your-story #gform_wrapper_4 {
  display: block !important;
  margin: 0 auto;
  min-width: 700px;
}

@media only screen and (min-width: 641px) {
  .page-share-your-story .gform_wrapper .top_label input.medium, .page-share-your-story .gform_wrapper .top_label select.medium {
    width: calc(100%);
  }
}

.module--col_text.health-icons {
  padding-bottom: 0;
}

.module--col_text.health-icons img {
  display: inline-block;
  width: 20%;
  padding: 0 2%;
  height: auto;
}

@media (max-width: 991px) {
  .module--col_text.health-icons img {
    width: 28%;
  }
}

.module--col_text.health-icons + section.module--col_text {
  padding-top: 0;
}

.page-sweet-swaps #calculator {
  margin-top: 2rem;
}

.page-sweet-swaps #calculator h2, .page-sweet-swaps #calculator p {
  display: none;
}

.page-sweet-successes .module--banner-slide .slick-dots,
.page-sweet-successes-professionals .module--banner-slide .slick-dots {
  bottom: 20px;
}

.page-sweet-successes .module--banner-slide .container,
.page-sweet-successes-professionals .module--banner-slide .container {
  max-width: 600px;
  padding: 0px 0;
}

.page-toolkit-request #hero:not(.has-bg) + .module--col_text,
.page-sample-request #hero:not(.has-bg) + .module--col_text {
  padding: 60px 0;
}

.page-toolkit-request .module--single_image_block img,
.page-sample-request .module--single_image_block img {
  margin: -140px 0 -60px;
  max-width: 300px;
}

.page-toolkit-request .gform_wrapper,
.page-sample-request .gform_wrapper {
  display: block !important;
}

.page-products-for-professionals .product-part .ps-widget[ps-sku].buy-now {
  display: none !important;
}

@media (min-width: 993px) {
  .page-taste-influences-food-choices-eating-behaviors-and-food-intake section p img {
    max-width: 780px;
  }
}

#gform_wrapper_5 {
  display: block !important;
}

.page-contact-us .module--shortcode_block, .page-food-service-contact .module--shortcode_block {
  padding-top: 30px;
  background-color: #CFE4F2;
}

.page-contact-us main .gform_wrapper, .page-food-service-contact main .gform_wrapper {
  padding-top: 60px;
}

.page-contact-us .gform_wrapper li.gfield.gfield_error, .page-contact-us .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning, .page-food-service-contact .gform_wrapper li.gfield.gfield_error, .page-food-service-contact .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: rgba(255, 223, 224, 0);
  margin-bottom: 0px !important;
  border-top: 0px solid #c89797;
  border-bottom: 0px solid #c89797;
  padding-bottom: 0px;
  padding-top: 0px;
}

.page-contact-us #contact, .page-food-service-contact #contact {
  padding: 60px 0 !important;
}

@media (min-width: 768px) {
  .page-contact-us #contact form.wpcf7-form p:nth-of-type(1), .page-contact-us #contact form.wpcf7-form p:nth-of-type(2), .page-contact-us #contact form.wpcf7-form p:nth-of-type(3), .page-contact-us #contact form.wpcf7-form p:nth-of-type(4), .page-contact-us #contact form.wpcf7-form p:nth-of-type(5), .page-contact-us #contact form.wpcf7-form p:nth-of-type(6), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(1), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(2), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(3), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(4), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(5), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(6) {
    width: 50%;
    float: left;
  }
  .page-contact-us #contact form.wpcf7-form p:nth-of-type(1), .page-contact-us #contact form.wpcf7-form p:nth-of-type(3), .page-contact-us #contact form.wpcf7-form p:nth-of-type(5), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(1), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(3), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(5) {
    padding: 0 30px 0 0;
  }
}

.page-contact-us #contact form.wpcf7-form p textarea, .page-food-service-contact #contact form.wpcf7-form p textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  border: solid 1px #eee;
}

.page-contact-us #contact form.wpcf7-form p select, .page-food-service-contact #contact form.wpcf7-form p select {
  height: 41px;
  border-radius: 0;
  background-color: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  box-sizing: border-box;
  border: 1px solid #eee;
  background-image: url("/wp-content/uploads/2020/08/blue-dd-arrow.png");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: .75em auto, 100%;
  padding: 0 5px;
}

.page-contact-us #contact form.wpcf7-form p input, .page-food-service-contact #contact form.wpcf7-form p input {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  border: solid 1px #eee;
  box-shadow: none;
  height: 41px;
  padding: 0 5px;
}

.page-contact-us #contact form.wpcf7-form p input.wpcf7-submit, .page-food-service-contact #contact form.wpcf7-form p input.wpcf7-submit {
  border: none;
  max-width: 100%;
}

@media (min-width: 768px) {
  .page-contact-us #contact form.wpcf7-form p input.wpcf7-submit, .page-food-service-contact #contact form.wpcf7-form p input.wpcf7-submit {
    max-width: 300px;
  }
}

.page-contact-us #contact form.wpcf7-form label, .page-contact-us #contact form.wpcf7-form p input, .page-contact-us #contact form.wpcf7-form p textarea, .page-contact-us #contact form.wpcf7-form p select, .page-food-service-contact #contact form.wpcf7-form label, .page-food-service-contact #contact form.wpcf7-form p input, .page-food-service-contact #contact form.wpcf7-form p textarea, .page-food-service-contact #contact form.wpcf7-form p select {
  width: 100%;
}

.page-contact-us #contact form.wpcf7-form .country-select input, .page-food-service-contact #contact form.wpcf7-form .country-select input {
  padding-left: 50px;
}

.page-contact-us #contact form.wpcf7-form .wpcf7 form.sent .wpcf7-response-output, .page-food-service-contact #contact form.wpcf7-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #004785;
  text-align: center;
  padding: 20px;
}

@media (min-width: 768px) {
  .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(1), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(2), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(3), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(4), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(5), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(6), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(7), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(8), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(9), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(10) {
    width: 50%;
    float: left;
  }
  .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(1), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(3), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(5), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(7), .page-food-service-contact #contact form.wpcf7-form p:nth-of-type(9) {
    padding: 0 30px 0 0;
  }
}

#faq h1,
#faq-single h1,
#faq-search-page h1 {
  text-align: center;
}

#faq h2.title,
#faq-single h2.title,
#faq-search-page h2.title {
  font-size: 2.2rem;
}

#faq h3.h2,
#faq-single h3.h2,
#faq-search-page h3.h2 {
  font-size: 1.6rem;
}

#faq h3 a,
#faq-single h3 a,
#faq-search-page h3 a {
  color: #004785;
}

#faq form .search-inputs,
#faq-single form .search-inputs,
#faq-search-page form .search-inputs {
  display: flex;
}

#faq form .search-inputs input,
#faq form .search-inputs button,
#faq-single form .search-inputs input,
#faq-single form .search-inputs button,
#faq-search-page form .search-inputs input, #faq-search-page form .search-inputs button {
  padding: 10px 20px;
  height: 50px;
}

#faq #faq-search-hero .container,
#faq-single #faq-search-hero .container,
#faq-search-page #faq-search-hero .container {
  text-align: center;
}

#faq #faq-search-hero h2:not(.title),
#faq-single #faq-search-hero h2:not(.title),
#faq-search-page #faq-search-hero h2:not(.title) {
  font-size: 60px;
}

#faq #faq-search-hero p,
#faq-single #faq-search-hero p,
#faq-search-page #faq-search-hero p {
  padding: 10px 0 20px;
}

#faq #faq-search-hero form,
#faq-single #faq-search-hero form,
#faq-search-page #faq-search-hero form {
  justify-content: center;
}

#faq #faq-search-hero form .search-inputs,
#faq-single #faq-search-hero form .search-inputs,
#faq-search-page #faq-search-hero form .search-inputs {
  width: 700px;
  max-width: 100%;
}

#faq #faq-search-hero form .search-inputs::placeholder,
#faq-single #faq-search-hero form .search-inputs::placeholder,
#faq-search-page #faq-search-hero form .search-inputs::placeholder {
  color: #CFE4F2;
}

#faq .results .articles,
#faq-single .results .articles,
#faq-search-page .results .articles {
  display: flex;
  flex-wrap: wrap;
  /*
			@media (min-width: 768px) {
				div:nth-of-type(2n) { padding-left: 30px; }
				div:nth-of-type(2n-1) { padding-right: 30px; }
			}
*/
}

#faq .faq-part,
#faq-single .faq-part,
#faq-search-page .faq-part {
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  #faq .faq-part,
  #faq-single .faq-part,
  #faq-search-page .faq-part {
    padding: 0 15px;
  }
}

#faq #content .container {
  display: flex;
}

@media (max-width: 767px) {
  #faq #content .container {
    flex-direction: column-reverse;
  }
}

#faq #content .categories h2 {
  margin-bottom: 30px;
}

#faq #content .categories .cat-list div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #004785;
  background: #CFE4F2;
  padding: 0 30px;
  margin: 20px 0;
  width: 100%;
  height: 25vw;
  font-weight: 700;
}

@media (min-width: 768px) {
  #faq #content .categories .cat-list div {
    max-width: 250px;
    height: 100px;
  }
}

@media (min-width: 768px) {
  #faq #content .questions {
    padding-left: 40px;
  }
}

#faq #content .questions h2 {
  margin-bottom: 50px;
}

#faq-single #faq-head {
  text-align: center;
  padding: 15px 30px;
}

#faq-single #faq-head h4 {
  padding-bottom: 15px;
}

#faq-single #faq-head i {
  padding-right: 10px;
}

#faq-single #content h2.title {
  padding-bottom: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  #faq-single #content h2.title {
    font-size: 3rem;
  }
}

#faq-single #content p {
  font-size: 1rem;
}

#search-contact .container > h4 {
  padding-bottom: 30px;
}

#search-contact h2 {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  #search-contact h2 {
    text-align: center;
  }
}

#search-contact .search-actions {
  display: flex;
  align-items: center;
}

#search-contact .search-actions form {
  flex: 1;
}

#search-contact .search-actions form .search-inputs {
  width: 100%;
}

#search-contact .search-actions h4 {
  padding: 0 30px;
}

#search-contact .search-actions a {
  margin: 0;
}

@media (max-width: 767px) {
  #search-contact .search-actions {
    align-items: inherit;
    flex-direction: column;
  }
  #search-contact .search-actions > form, #search-contact .search-actions > h4, #search-contact .search-actions > a {
    margin: 5px auto;
  }
  #search-contact .search-actions form {
    margin: 5px 0;
  }
  #search-contact .search-actions h4 {
    text-align: center;
  }
}

#questions-related {
  background-color: #FFFBBA;
}

#questions-related h2 {
  text-align: center;
  padding-bottom: 60px;
}

#faq-search-page .text-center {
  padding-top: 60px;
}

#faq-search-page .results {
  padding-top: 0;
}

#faq-search-page .contact {
  padding-top: 0;
  text-align: center;
}

main.sweepstakes .sweeps-part,
main.pressrelease .sweeps-part {
  border-top: 2px solid;
  padding: 20px 0;
}

.post-type-other #content .title {
  margin-bottom: 1.5rem;
}

.post-type-other #content sup {
  vertical-align: 0;
}

#archive, #search-page {
  text-align: center;
}

#archive .results.articles, #search-page .results.articles {
  padding-top: 0;
}

#archive .results.articles .container > h3, #search-page .results.articles .container > h3 {
  border-bottom: 1px solid;
  padding: 15px 20px;
  margin: 15px -30px 0;
}

#archive .results.articles .block, #search-page .results.articles .block {
  padding: 20px 0 50px;
}

#archive .results.articles .block.row, #search-page .results.articles .block.row {
  justify-content: center;
  align-items: flex-end;
}

#archive .results.articles .block.list, #search-page .results.articles .block.list {
  text-align: left;
}

#archive .results.articles .block.list div, #search-page .results.articles .block.list div {
  margin-bottom: 15px;
}

#archive .results.articles .block.product-results .product-part.post, #search-page .results.articles .block.product-results .product-part.post {
  display: none;
}

#archive .results.articles .block.product-results .product-part.post:nth-of-type(-n+6), #search-page .results.articles .block.product-results .product-part.post:nth-of-type(-n+6) {
  display: block;
}

#archive .results.articles .block.page-results, #search-page .results.articles .block.page-results {
  columns: 2;
}

@media (max-width: 767px) {
  #archive .results.articles .block.page-results, #search-page .results.articles .block.page-results {
    columns: 1;
  }
}

#archive .results.articles .block.faq-results, #search-page .results.articles .block.faq-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*
#post {
	text-align: center;
	
	.article { position: relative; }
	.back {
		position: absolute;
		top: -2em;
	}
	
	.post-image {
		width: 100%;
		height: 50vh;
		max-height: 500px;
		background-size: cover;
		background-position: center;
	}
	
	.content { text-align: left; }
}
*/
#recipe-search {
  padding: 6vw 0 15px;
}

#recipe-search .container {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  #recipe-search {
    display: block;
  }
}

@media (max-width: 991px) {
  #recipe-search .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.recipe-search .search-inputs,
.recipe-search .search-select {
  display: flex;
  align-items: center;
}

.recipe-search p {
  display: none;
}

.recipe-search ul li.search {
  padding: 15px 25px 15px 10px;
}

.recipe-search.search-bar {
  padding-right: 0px;
  width: 370px;
}

.recipe-search.search-bar form.search {
  display: flex;
  flex-direction: column;
  margin-bottom: 2px;
  border-bottom: 2px solid #004785;
}

.recipe-search.search-bar form.search input {
  background-color: transparent;
  padding: 0;
  color: #004785;
  height: auto;
}

.subnav .recipe-search.search-bar form.search input {
  font-size: 14px;
  padding: 5px;
}

.subnav .recipe-search.search-bar form.search input::placeholder {
  color: #004785;
}

.recipe-search.search-bar form.search input[type=search] {
  padding-left: 0;
}

.recipe-search.search-bar form.search button[type=submit] {
  padding: 0.375rem 0.75rem 0.375rem 0;
  margin-left: 10px;
  font-size: 20px;
  color: #004785;
  background: transparent;
}

.subnav .recipe-search.search-bar form.search button[type=submit] {
  font-size: 14px;
}

.recipe-search.search-bar p {
  margin: 0;
  font-size: 12px;
  display: none;
}

#recipe-search .recipe-search.search-bar p {
  display: block;
}

#recipe-search .recipe-search.search-bar {
  width: 100%;
}

@media (max-width: 991px) {
  .recipe-search.search-bar,
  .recipe-search.search-tabs {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .recipe-search.search-tabs {
    display: none;
  }
}

@media (max-width: 767px) {
  body.page-recipe-search.recipe-search-open {
    overflow: hidden;
  }
  body.page-recipe-search.recipe-search-open #recipe-search-page .results.articles .sidebar {
    height: calc(100vh - 40px);
    overflow: scroll;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  body:not(page-recipe-search) .parts > .recipe-part:nth-of-type(3), body:not(page-recipe-search) .recipe--container > .recipe-part:nth-of-type(3) {
    max-width: 100%;
    flex: 0 0 100%;
    padding-right: 0;
  }
  body:not(page-recipe-search) .parts > .recipe-part:nth-of-type(3) .border-container, body:not(page-recipe-search) .recipe--container > .recipe-part:nth-of-type(3) .border-container {
    display: flex;
  }
  body:not(page-recipe-search) .parts > .recipe-part:nth-of-type(3) .image, body:not(page-recipe-search) .recipe--container > .recipe-part:nth-of-type(3) .image {
    background-position: center center;
    flex: 0 0 60%;
  }
}

#recipe-search-page .results.articles {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 8px #004785;
  padding: 0;
  overflow: hidden;
}

#recipe-search-page .results.articles > div {
  padding: 60px 30px;
}

#recipe-search-page .results.articles label {
  margin-bottom: .7em;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#recipe-search-page .results.articles label:hover {
  cursor: pointer;
  color: #2D8EFF;
}

#recipe-search-page .results.articles button.remove-filter,
#recipe-search-page .results.articles button.remove-search {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #000;
  font-size: 16px;
  padding: 0;
  background: transparent;
}

#recipe-search-page .results.articles button.remove-filter:hover,
#recipe-search-page .results.articles button.remove-filter:focus,
#recipe-search-page .results.articles button.remove-search:hover, #recipe-search-page .results.articles button.remove-search:focus {
  cursor: pointer;
  color: #2D8EFF;
}

#recipe-search-page .results.articles .row {
  margin: 0;
}

#recipe-search-page .results.articles .row .show-more {
  width: 100%;
  text-align: center;
}

#recipe-search-page .results.articles button.sidebar-collapse {
  padding: 5px 10px;
  font-size: 14px;
}

@media (min-width: 992px) {
  #recipe-search-page .results.articles button.sidebar-collapse {
    display: none;
  }
}

@media (min-width: 768px) {
  #recipe-search-page .results.articles button.sidebar-collapse {
    position: absolute;
    top: 30px;
    right: 30px;
  }
}

#recipe-search-page .results.articles .sidebar {
  background-color: #E6F3FE;
  max-width: 267px;
  width: 267px;
  flex: 0 0 267px;
  padding-top: 30px;
}

#recipe-search-page .results.articles .sidebar form.search {
  flex-direction: column;
  margin-top: 0;
}

#recipe-search-page .results.articles .sidebar form.search .filter {
  margin-bottom: 40px;
}

#recipe-search-page .results.articles .sidebar form.search .filter > div {
  display: flex;
  justify-content: space-between;
}

#recipe-search-page .results.articles .sidebar form.search .sidebar-clear-filters {
  margin-bottom: 20px;
  align-items: center;
}

#recipe-search-page .results.articles .sidebar form.search .sidebar-clear-filters p {
  font-size: 12px;
  line-height: 1em;
  max-width: 60px;
  margin: 0;
  text-align: right;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#recipe-search-page .results.articles .sidebar form.search .sidebar-clear-filters p:hover {
  cursor: pointer;
  color: #2D8EFF;
}

#recipe-search-page .results.articles .sidebar form.search label {
  font-size: 14px;
  max-width: 71%;
}

@media (max-width: 767px) {
  #recipe-search-page .results.articles .sidebar form.search label {
    font-size: 16px;
  }
}

#recipe-search-page .results.articles .sidebar form.search .checked > label {
  font-weight: 700;
}

#recipe-search-page .results.articles .sidebar form.search input[type=checkbox] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  background-color: white;
  border: 1px solid #004785;
  outline: none;
}

#recipe-search-page .results.articles .sidebar form.search input[type=checkbox]:hover {
  cursor: pointer;
}

#recipe-search-page .results.articles .sidebar form.search input[type=checkbox]:focus {
  outline: #5d9dd5 solid 1px;
  box-shadow: 0 0px 8px #5e9ed6;
}

#recipe-search-page .results.articles .sidebar form.search input[type=checkbox]:checked {
  background-color: #004785;
}

@media (max-width: 767px) {
  #recipe-search-page .results.articles .sidebar form.search input[type=checkbox] {
    height: 15px;
    width: 15px;
  }
}

@media (max-width: 991px) {
  #recipe-search-page .results.articles .sidebar {
    position: absolute;
    max-width: 450px;
    width: 100%;
    right: 0;
    z-index: 10;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #recipe-search-page .results.articles .sidebar form.search {
    margin-top: 50px;
  }
  #recipe-search-page .results.articles .sidebar.closed {
    right: -450px;
  }
}

@media (max-width: 767px) {
  #recipe-search-page .results.articles .sidebar {
    max-width: 100%;
  }
  #recipe-search-page .results.articles .sidebar.closed {
    right: -100%;
  }
}

@media (max-width: 450px) {
  #recipe-search-page .results.articles .sidebar.closed {
    right: -100%;
  }
}

#recipe-search-page .results.articles .sidebar .net-carbs.filter {
  display: none;
}

#recipe-search-page .results.articles .search-results {
  padding-top: 30px;
  min-height: 1900px;
}

@media (min-width: 992px) {
  #recipe-search-page .results.articles .search-results {
    -ms-flex: 0 0 calc(100% - 267px);
    flex: 0 0 calc(100% - 267px);
    width: calc(100% - 267px);
    max-width: calc(100% - 267px);
  }
}

#recipe-search-page .results.articles .search-results h2 {
  margin-bottom: 22px;
}

#recipe-search-page .results.articles .search-results .filter-labels {
  display: flex;
  flex-wrap: wrap;
}

#recipe-search-page .results.articles .search-results .filter-labels > span,
#recipe-search-page .results.articles .search-results .filter-labels > div {
  margin-right: 15px;
  margin-bottom: .7em;
}

@media (max-width: 991px) {
  #recipe-search-page .results.articles .search-results h2 {
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  #recipe-search-page .results.articles .search-results .row .post:first-of-type {
    padding-top: 25px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  #recipe-search-page .results.articles .search-results .col-lg-4 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  #recipe-search-page .results.articles .search-results .recipe-part.post:nth-child(2n) {
    padding: 25px 0px 35px 15px;
  }
  #recipe-search-page .results.articles .search-results .recipe-part.post:nth-child(2n-1) {
    padding: 25px 15px 35px 0px;
  }
}

#recipe-search-page a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

#recipe-search-page a.skip-main:focus {
  left: 3px;
  top: 3px;
  width: 30%;
  height: 100px;
  overflow: auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 20px;
  outline: 3px solid #004785;
  background: #FAC0B8;
  color: #004785;
  font-weight: 900;
  text-align: center;
  z-index: 999;
}

footer {
  background-color: #004785;
  padding: 60px 0 0;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 30px 20px 15px;
}

footer h5 {
  font-size: 18px;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 767px) {
  footer h5 {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  footer h5 {
    font-size: 16px;
  }
}

footer p {
  color: #ffffff;
}

footer a {
  color: #ffffff;
  font-size: 16px;
}

footer a:hover {
  color: #FAE146;
}

@media (max-width: 575px) {
  footer a {
    font-size: 14px;
  }
}

footer .links {
  display: flex;
  flex-wrap: wrap;
}

footer .links li {
  padding: 5px 0;
}

footer .links > div {
  padding: 0 10px;
}

footer .links .logo {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  footer .links .logo {
    padding: 0 40px 60px 0;
  }
}

@media (max-width: 575px) {
  footer .links .logo {
    justify-content: center;
  }
}

footer .links .logo img {
  max-width: 200px;
  width: 100%;
}

footer .connect {
  padding-left: 10px;
}

@media (max-width: 991px) {
  footer .connect {
    padding-top: 50px;
  }
}

footer .connect img {
  width: 195px;
  margin-bottom: 10px;
}

footer .connect p, footer .connect a {
  font-size: 14px;
}

footer .connect p.recipe-club, footer .connect a.recipe-club {
  color: #FAE146;
}

footer .connect .social {
  padding: 30px 0px;
}

footer .connect .social a {
  padding: 8px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

footer .connect .social a:first-of-type {
  padding-left: 0;
}

footer .connect .social i {
  font-size: 35px;
}

footer .connect #connect-form form {
  display: flex;
}

footer .connect #connect-form .gform_wrapper,
footer .connect #connect-form .gfield,
footer .connect #connect-form .ginput_container,
footer .connect #connect-form .gform_footer,
footer .connect #connect-form input {
  margin: 0 !important;
}

footer .connect #connect-form ul, footer .connect #connect-form li,
footer .connect #connect-form .gform_footer {
  padding: 0;
  width: auto;
}

footer .connect #connect-form .gform_body {
  width: 100%;
}

footer .connect #connect-form input {
  line-height: normal;
}

footer .connect #connect-form input:focus {
  outline: none;
}

footer .connect #connect-form input[type=text] {
  background-color: rgba(255, 255, 255, 0.12);
  border: none;
  color: #E7ECF2;
  padding: 14px;
  width: 100%;
}

footer .connect #connect-form input[type=submit] {
  background-color: #2D8EFF;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 0;
  font-size: 16px;
}

footer .connect #connect-form ::placeholder {
  color: #E7ECF2;
  opacity: 0.5;
}

footer .connect #connect-form :-ms-input-placeholder {
  color: #E7ECF2;
}

footer .connect #connect-form ::-ms-input-placeholder {
  color: #E7ECF2;
}

footer .copyright {
  border-top: 1px solid #ffffff;
  padding: 10px 20px 15px;
  margin: 10px 30px 0;
  opacity: 50%;
}

footer .copyright p {
  font-size: 11px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

footer .copyright a {
  font-size: inherit;
  text-decoration: underline;
}

footer ul.global-dropdown-menu {
  padding: 0;
  list-style: none;
}

footer ul.global-dropdown-menu li.dropdown {
  color: white;
  cursor: pointer;
  /*
			border-color: white;
			font-size: .75rem;
			padding:.5rem 1rem;
			border-radius: 5px;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 1px;
*/
  /*
		    &:hover, &:focus {
			    background: transparent;
				color: white;
				border-color: white;
		    }
*/
}

@media (max-width: 767px) {
  footer ul.global-dropdown-menu li.dropdown {
    font-size: 14px;
    padding-left: 10px;
  }
}

footer ul.global-dropdown-menu li.dropdown i {
  font-size: .75em;
}

footer ul.global-dropdown-menu li.dropdown ul.dropdown-menu {
  margin-top: 0;
  display: block;
}

@media (max-width: 767px) {
  footer ul.global-dropdown-menu li.dropdown ul.dropdown-menu {
    width: 100%;
    text-align: center;
  }
}

footer ul.global-dropdown-menu li.dropdown ul.dropdown-menu li {
  padding: 0;
}

@media (min-width: 768px) {
  footer ul.global-dropdown-menu li.dropdown ul.dropdown-menu li a {
    font-size: .75em;
  }
}

footer ul.global-dropdown-menu li.dropdown ul.dropdown-menu li a:hover {
  color: #FAE146;
  background-color: transparent;
}

footer #global-sites ul.submenu {
  display: none;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  footer {
    padding: 20px 0;
  }
  footer .container {
    text-align: center;
  }
  footer .connect .social {
    border-top: 1px solid #ffffff;
    margin-top: 30px;
  }
  footer .connect #connect-form form {
    flex-direction: column;
    align-items: center;
  }
  footer .connect #connect-form form .gform_footer {
    padding-top: 10px;
  }
  footer .connect #connect-form form .gform_footer input {
    width: auto;
  }
  footer .copyright {
    display: none;
  }
}

#cookie-notice {
  background-color: #004785 !important;
}

#cookie-notice .btn {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  padding: 0.125rem 0.5rem;
  font-size: .5rem;
}

#cookie-notice .btn:hover, #cookie-notice .btn:focus {
  background: white;
  color: white;
  border: 2px solid white;
}
