/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Variables */
/* Import Sass mixins, variables, Compass modules, etc. */
@media (min-width: 62em) {
  body:before {
    content: "desktop";
    display: none;
    /* Prevent from displaying. */
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  body:before {
    content: "tablet";
    display: none;
    /* Prevent from displaying. */
  }
}
@media only screen and (max-width: 47.9375em) {
  body:before {
    content: "mobile";
    display: none;
    /* Prevent from displaying. */
  }
}
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
/*
@font-face {
  font-family: 'Example';
  src: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/fonts/example.eot?yocs=_&yoloc=eu');
  src: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/fonts/example.eot?iefix&yocs=_&yoloc=eu') format('eot'),
    url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/fonts/example.woff?yocs=_&yoloc=eu') format('woff'),
    url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/fonts/example.ttf?yocs=_&yoloc=eu') format('truetype'),
    url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/fonts/example.svg#webfontOkOndcij?yocs=_&yoloc=eu') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  line-height: 1.5em;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1.5em 0;
}

blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.9125em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.9125em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-collapse: collapse;
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
.with-wireframes #header, .with-wireframes .header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer, .with-wireframes .footer_nav
.region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
#skip-link {
  margin: 0;
}
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

/* Logo image. */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
.header__region {
  /* Clear the logo. */
  clear: both;
}

/**
 * Navigation bar.
 */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
#navigation .block {
  margin-bottom: 0;
}
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Breadcrumb navigation.
 */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/**
 * Titles.
 */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
.messages, .messages--status, .messages--warning, .messages--safety-warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

.messages--safety-warning {
  border: none;
  background-image: none;
  margin: .75em 0;
  padding: 10px 0;
}
.messages--safety-warning:before {
  font-family: hfcicons;
  content: '\e00b';
  line-height: 1em;
  color: #000;
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 8px;
}

.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
.messages--error p.error {
  color: #333;
}

/* System status report. */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

.safety-warning,
.messages--safety-warning {
  color: #5B4D4E;
  font-size: 16px;
}

.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  background-image: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

.tabs-primary__tab.is-active {
  border-bottom-color: #fff;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -moz-border-radius: 0.75em;
  -webkit-border-radius: 0.75em;
  border-radius: 0.75em;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
.more-link {
  text-align: right;
  /* LTR */
}

.more-help-link {
  text-align: right;
  /* LTR */
}

.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis {
  /* A concatenation of several list items using an ellipsis. */
}

/* The current page's list item. */
.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
.block {
  margin-bottom: 1.5em;
}

/**
 * Menus.
 */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/* The active item in a Drupal menu. */
.menu a.active {
  color: #000;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
.comments {
  margin: 1.5em 0;
}

/* Preview of the comment before submitting new or updated comment. */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
.comment {
  /* Comment's permalink wrapper. */
}
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
.form-item .description {
  font-size: 0.85em;
}

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/* Password confirmation. */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
form tbody {
  border-top: 1px solid #ccc;
}
form table ul {
  margin: 0;
}

tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

tr.even {
  background-color: #fff;
}

/* Markup generated by theme_tablesort_indicator(). */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background-color: #0072b9;
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/progress.gif?yocs=_&yoloc=eu');
}

.section-separator-h {
  margin: 60px 0 30px;
  border-top: solid 1px #5B4D4E;
  position: relative;
  margin: 25px 0;
}
.section-separator-h:after {
  position: absolute;
  content: '';
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/smiling-h/red-oval.png?yocs=_&yoloc=eu');
  background-size: 100% 100%;
  width: 18px;
  height: 18px;
  left: calc(50% - 8px);
  top: -8px;
  display: block;
}

.section-separator {
  border-top: solid 1px #5B4D4E;
  position: relative;
  margin: 25px 0;
}

.double-section-separator {
  border-top: solid 1px #5B4D4E;
  position: relative;
  margin: 25px 0;
  height: 5px;
  border-bottom: solid 1px #5B4D4E;
}

@media only screen and (max-width: 47.9375em) {
  .hidden-xs {
    display: none;
  }
}

.region-google-analytics {
  display: none;
}

body > img[src*="mathtag"] {
  position: absolute;
  z-index: -99999;
  bottom: 0;
}

.btn, .panel-display.product_page .container-fluid > .row .form-submit {
  border-radius: 5px;
  border: solid 1px #E02619;
  background-color: white;
  padding: 0.8em;
  font-size: 22px;
  display: block;
  color: #fff;
  background-color: #E02619;
}
.btn:hover, .panel-display.product_page .container-fluid > .row .form-submit:hover {
  background-color: #F92506;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer, .footer_nav
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header, .header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer, .footer_nav {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Containers for grid items and flow items. */
#header:before, #header:after, .header:before, .header:after,
#main:before,
#main:after,
#footer:before,
#footer:after, .footer_nav:before, .footer_nav:after {
  content: "";
  display: table;
}
#header:after, .header:after,
#main:after,
#footer:after, .footer_nav:after {
  clear: both;
}

/* Navigation bar */
@media all and (min-width: 480px) {
  #main {
    /* Move all the children of #main down to make room. */
    padding-top: 3em;
    position: relative;
  }

  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 3em;
    width: 100%;
  }
}
/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 480px) and (max-width: 959px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  .sidebar-first {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  .sidebar-second {
    /* Span 2 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 3rd column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 200%;
    margin-left: 0%;
    margin-right: -200%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .two-sidebars {
    /* Span 2 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Start a new row and span all 3 columns. */
  }
  .two-sidebars #content {
    float: left;
    width: 200%;
    margin-left: 100%;
    margin-right: -300%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 300%;
    margin-left: 0%;
    margin-right: -300%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
    /* Span 1 column, starting in the 1st column from left. */
    /* Span 1 column, starting in the 2nd column from left. */
    /* Span 1 column, starting in the 3rd column from left. */
  }
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 100%;
    margin-left: 100%;
    margin-right: -200%;
  }
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 100%;
    margin-left: 200%;
    margin-right: -300%;
  }
}
/**
 * Use 5 grid columns for larger screens.
 */
@media all and (min-width: 960px) {
  /**
   * The layout when there is only one sidebar, the left one.
   */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
  }
  .sidebar-first #content {
    float: left;
    width: 400%;
    margin-left: 100%;
    margin-right: -500%;
  }
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /**
   * The layout when there is only one sidebar, the right one.
   */
  .sidebar-second {
    /* Span 4 columns, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .sidebar-second #content {
    float: left;
    width: 400%;
    margin-left: 0%;
    margin-right: -400%;
  }
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }

  /**
   * The layout when there are two sidebars.
   */
  .two-sidebars {
    /* Span 3 columns, starting in 2nd column from left. */
    /* Span 1 column, starting in 1st column from left. */
    /* Span 1 column, starting in 5th column from left. */
  }
  .two-sidebars #content {
    float: left;
    width: 300%;
    margin-left: 100%;
    margin-right: -400%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 400%;
    margin-right: -500%;
  }
}
/*Customizations*/
#main {
  margin-left: auto;
  margin-right: auto;
}
#main #content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
#main #content .breadcrumb {
  display: none;
}
#main fieldset {
  clear: both;
}

#tinymce .accordion {
  border: 1px solid grey;
}
#tinymce .accordion .accordion_title {
  color: lightgrey;
  border-bottom: 1px dashed grey;
}

/* SMACSS theme rules */
/* @import "//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/css/theme-A?yocs=_&yoloc=eu"; */
/* @import "//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/css/theme-B?yocs=_&yoloc=eu"; */
* {
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: "Merriweather", serif;
  font-size: 18px;
  font-weight: inherit;
  line-height: 1.75em;
  color: #4a4a4a;
  margin: 0;
  padding: 0;
}

p {
  font-family: "Merriweather", serif;
  font-size: 20px;
  line-height: 36px;
}

h1, h2, h3, h4, h5, h6 {
  color: #E02619;
  font-family: "Montserrat", Verdana, sans-serif;
  font-weight: normal;
}

h1,
header h1 {
  font-size: 42px;
  line-height: 46px;
  margin: 0;
}

h2 {
  font-size: 36px;
  line-height: 42px;
}

h3 {
  font-size: 32px;
  line-height: 38px;
}

h4 {
  font-size: 26px;
  line-height: 32px;
}

h3,
h4,
h5,
h6 {
  margin: 1em 0;
}

p {
  margin: 1em 0;
}

a {
  text-decoration: none;
  color: #127B89;
}
a:hover {
  color: #0EBECE;
  text-decoration: underline;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  padding-left: 0;
}

ul.menu {
  text-align: left;
}

#primary {
  border-right: 0.0625em solid #e1e1e1;
}

form .searchbox, .search-submit {
  display: none;
}

#page,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  overflow: hidden;
}

.clearfix:before, .container:before, .row:before,
.footermap:before,
.region-header:before, .clearfix:after, .container:after, .row:after,
.footermap:after,
.region-header:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after, .container:after, .row:after,
.footermap:after,
.region-header:after {
  clear: both;
}

.container {
  width: 64em;
  margin: 0 auto;
}

.col3 {
  width: 21.3125em;
  float: left;
  padding: 0 1.875em;
  margin-top: 1.875em;
}

.col9 {
  width: 42.6875em;
  float: left;
  padding: 0 1.875em;
  margin-top: 1.875em;
}

.col12 {
  width: 100%;
  max-width: 64em;
  margin: 0 auto;
}

@media only screen and (min-width: 75em) {
  /* full-width header and footer */
  #utility-nav-wrapper,
  .header .container,
  footer .container,
  #footer-main-wrapper,
  .header .col12 {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 61.9375em) {
  .container {
    width: 48em;
  }

  .col3 {
    width: 17.8125em;
    padding: 0 0.9375em;
  }

  .col9 {
    width: 30.1875em;
    padding: 0 1.875em 0 0.9375em;
  }
}
@media only screen and (max-width: 47.9375em) {
  .container {
    width: 100%;
  }

  .col3 {
    width: 100%;
    float: none;
    padding: 0;
  }

  .col9 {
    width: 100%;
    float: none;
    padding: 0 0.625em;
  }
}
@media (min-width: 62em) {
  .about-highlights {
    border-right: solid 1px #A59899;
    padding-right: 20px;
  }
}
.about-highlights h2 {
  color: #E02619;
  margin: 26px 0 28px;
  font-size: 2em;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-weight: normal;
}
@media only screen and (max-width: 47.9375em) {
  .about-highlights h2 {
    font-size: 1.5em;
  }
}
.about-highlights h2:before {
  content: '';
  width: 35px;
  height: 29.4px;
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/smiling-h/rhomboid.png?yocs=_&yoloc=eu');
  background-size: 100% 100%;
  display: inline-block;
  margin-right: 10px;
}
.about-highlights a {
  color: #0995A2;
}
.about-highlights a:hover {
  color: #127B89;
}
.about-highlights a.angle-after {
  font-size: 14px;
  font-family: 'Montserrat', Verdana, sans-serif;
}
.about-highlights a.angle-after:after {
  font-family: fontawesome;
  content: ' \f105';
  font-size: .8em;
}
.about-highlights p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 2em;
}

@media only screen and (max-width: 61.9375em) {
  .about-highlights-int {
    border-top: solid 1px #A59899;
  }
}
.about-highlights-int h2 {
  color: #BC1108;
  font-size: 1.3em;
  margin: 26px 0 10px;
}
.about-highlights-int a {
  color: #0995A2;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-size: 16px;
}
.about-highlights-int a:hover {
  color: #127B89;
}
.about-highlights-int a:after {
  font-family: fontawesome;
  content: ' \f105';
  font-size: .8em;
}
.about-highlights-int ul {
  list-style: none none;
  margin-top: 0;
}

.contact-us-panel {
  text-align: center;
}
.contact-us-panel h2 {
  background: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/zig-zag-background.png?yocs=_&yoloc=eu') repeat-x bottom;
  color: white;
  line-height: 3em;
  margin-left: calc((-100vw + 100%) / 2);
  margin-right: calc((-100vw + 100%) / 2);
  margin-top: 60px;
  font-size: 26px;
  font-weight: 300;
}
@media only screen and (max-width: 47.9375em) {
  .contact-us-panel h2 {
    font-size: .9em;
  }
}
.contact-us-panel h2 > strong {
  font-weight: 400;
}
.contact-us-panel a {
  color: #127B89;
  font-family: 'Montserrat', Verdana, sans-serif;
}
.contact-us-panel a:focus {
  outline: none;
}
@media only screen and (max-width: 61.9375em) {
  .contact-us-panel a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .contact-us-panel a {
    font-size: 12px;
  }
}
.contact-us-panel .row {
  margin-bottom: 20px;
}
.contact-us-panel .mobile-icon {
  line-height: 90px;
  padding-left: 100px;
  display: inline-block;
  position: relative;
}
.contact-us-panel .mobile-icon:before {
  content: '';
  width: 90px;
  height: 90px;
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/phone-icon-outline.png?yocs=_&yoloc=eu');
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-us-panel .mobile-icon:hover:before {
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/phone-icon-solid.png?yocs=_&yoloc=eu');
}
@media only screen and (max-width: 61.9375em) and (max-width: 47.9375em) {
  .contact-us-panel .mobile-icon {
    line-height: 70px;
    padding-left: 73px;
  }
  .contact-us-panel .mobile-icon:before {
    width: 70px;
    height: 70px;
  }
}

.contact-us-panel .email-icon {
  line-height: 90px;
  padding-left: 100px;
  display: inline-block;
  position: relative;
}
.contact-us-panel .email-icon:before {
  content: '';
  width: 90px;
  height: 90px;
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/mail-icon-outline.png?yocs=_&yoloc=eu');
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-us-panel .email-icon:hover:before {
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/mail-icon-solid.png?yocs=_&yoloc=eu');
}
@media only screen and (max-width: 61.9375em) and (max-width: 47.9375em) {
  .contact-us-panel .email-icon {
    line-height: 70px;
    padding-left: 73px;
  }
  .contact-us-panel .email-icon:before {
    width: 70px;
    height: 70px;
  }
}

.contact-us-panel .chat-section {
  position: relative;
  display: inline-block;
}
.contact-us-panel .chat-section .chat-icon {
  line-height: 99px;
  display: block;
  position: relative;
  text-align: left;
}
.contact-us-panel .chat-section .chat-icon:before {
  content: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/chat-outline.png?yocs=_&yoloc=eu');
  position: absolute;
  left: -99px;
  top: 0;
}
.contact-us-panel .chat-section .chat-icon:hover:before {
  content: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/contact-us/chat-solid.png?yocs=_&yoloc=eu');
}
.contact-us-panel .chat-section .chat-icon.open + div {
  display: block;
}
.contact-us-panel .chat-section .field-name-field-live-chat-urls {
  text-align: left;
  margin-top: -40px;
  position: absolute;
  z-index: 1;
  line-height: 18px;
  display: none;
}
.contact-us-panel .chat-section .field-name-field-live-chat-urls a {
  font-size: 12px;
}

.articles-activities-links a {
  color: #0EBECE;
}
.articles-activities-links .field:not(.field-name-field-additional-links) .field-items {
  text-align: center;
}
.articles-activities-links .audio-editions {
  color: #E02619;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  font-size: 12px;
  line-height: 16px;
}
@media only screen and (max-width: 47.9375em) {
  .articles-activities-links .audio-editions {
    font-size: 10px;
  }
}
.articles-activities-links .audio-editions:before {
  content: '';
  display: block;
  width: 100%;
  max-width: 100px;
  padding-top: 100%;
  background: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/articles-activities/headphones.png?yocs=_&yoloc=eu') no-repeat;
  background-size: 100% 100%;
}
.articles-activities-links .audio-editions:hover:before {
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/articles-activities/headphones-solid.png?yocs=_&yoloc=eu');
}
.articles-activities-links .parents-guides {
  color: #E02619;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  font-size: 12px;
  line-height: 16px;
}
@media only screen and (max-width: 47.9375em) {
  .articles-activities-links .parents-guides {
    font-size: 10px;
  }
}
.articles-activities-links .parents-guides:before {
  content: '';
  display: block;
  width: 100%;
  max-width: 100px;
  padding-top: 100%;
  background: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/articles-activities/parent-guide.png?yocs=_&yoloc=eu') no-repeat;
  background-size: 100% 100%;
}
.articles-activities-links .parents-guides:hover:before {
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/articles-activities/parent-guide-solid.png?yocs=_&yoloc=eu');
}
.articles-activities-links .teachers-guides {
  color: #E02619;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
  font-size: 12px;
  line-height: 16px;
}
@media only screen and (max-width: 47.9375em) {
  .articles-activities-links .teachers-guides {
    font-size: 10px;
  }
}
.articles-activities-links .teachers-guides:before {
  content: '';
  display: block;
  width: 100%;
  max-width: 100px;
  padding-top: 100%;
  background: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/articles-activities/teacher-guide.png?yocs=_&yoloc=eu') no-repeat;
  background-size: 100% 100%;
}
.articles-activities-links .teachers-guides:hover:before {
  background-image: url('//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/articles-activities/teacher-guide-solid.png?yocs=_&yoloc=eu');
}
.articles-activities-links .additional-links {
  padding: 10px 0 10px 15px;
}
@media only screen and (max-width: 47.9375em) {
  .articles-activities-links .additional-links {
    border-top: solid 1px #A59899;
    margin-top: 15px;
    padding-left: 0;
    overflow: hidden;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .articles-activities-links .additional-links {
    border-left: solid 1px #A59899;
  }
}

.articles-activities-links .additional-links a {
  font-size: 14px;
  display: block;
}
.articles-activities-links .additional-links a:after {
  content: ' \f105';
  font-family: fontawesome;
}
@media only screen and (max-width: 47.9375em) {
  .articles-activities-links .additional-links a {
    width: 50%;
    float: left;
    font-size: 11px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .articles-activities-links .col-sm-cust:not(:last-child) {
    width: 21.66667%;
  }
  .articles-activities-links .col-sm-cust:last-child {
    width: 35%;
  }
}

.pane-bundle-highlights-guaranteed {
  margin: 20px 0;
}
@media only screen and (max-width: 47.9375em) {
  .pane-bundle-highlights-guaranteed {
    text-align: center;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .pane-bundle-highlights-guaranteed {
    margin: 40px 0;
  }
}

@media (min-width: 62em) {
  .pane-bundle-highlights-guaranteed {
    margin: 60px 0;
  }
}
.pane-bundle-highlights-guaranteed p {
  margin: 20px 0;
  font-size: 15.5px;
  line-height: 2em;
}
@media only screen and (max-width: 47.9375em) {
  .pane-bundle-highlights-guaranteed p {
    line-height: 1.9em;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .pane-bundle-highlights-guaranteed p {
    font-size: 18px;
  }
}

@media (min-width: 62em) {
  .pane-bundle-highlights-guaranteed p {
    font-size: 20px;
  }
}
.pane-bundle-highlights-guaranteed .red {
  color: #E02619;
}
.pane-bundle-highlights-guaranteed > h2.pane-title {
  font-weight: 300;
  font-size: 30px;
  margin: 0;
}
@media only screen and (max-width: 47.9375em) {
  .pane-bundle-highlights-guaranteed > h2.pane-title {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
.pane-bundle-highlights-guaranteed > .fieldable-panels-pane {
  overflow: hidden;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .pane-bundle-highlights-guaranteed > .fieldable-panels-pane > .field.field-name-field-guaranteed-image {
    float: right;
    width: 30%;
    margin: 0 0 20px 40px;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em) and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (min-width: 48em) and (min-width: 62em) and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (min-width: 48em) and (max-width: 61.9375em) and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em), only screen and (min-width: 48em) and (min-width: 62em) and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .pane-bundle-highlights-guaranteed > .fieldable-panels-pane > .field.field-name-field-guaranteed-image {
    margin-top: 30px;
    width: 35%;
  }
}

@media only screen and (max-width: 47.9375em) {
  .pane-bundle-highlights-guaranteed > .fieldable-panels-pane > .field.field-name-field-guaranteed-image img {
    max-width: 250px;
  }
}
.pane-bundle-highlights-guaranteed > .fieldable-panels-pane > .field.field-name-field-guarantee-text {
  text-align: left;
}
.pane-bundle-highlights-guaranteed > .fieldable-panels-pane > .field.field-name-field-guarantee-text a {
  text-decoration: underline;
}

/* Colors for 4cs */
/* Hover over colors for 4cs */
body .content_header_author-date {
  margin: -2px -15px 0;
  overflow: hidden;
}
@media (min-width: 62em) {
  body .content_header_author-date {
    margin: 20px -15px 0;
  }
}
body .content_header_author {
  color: #8f8f8f;
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-right: 5px;
  margin-bottom: 10px;
}
@media (min-width: 62em) {
  body .content_header_author {
    font-size: 20px;
  }
}
body .content_header_author .pane-title {
  display: none;
}
body .content_header_date {
  color: #8f8f8f;
  float: left;
  font-size: 16px;
  line-height: normal;
  padding-right: 15px;
}
@media (min-width: 62em) {
  body .content_header_date {
    font-size: 20px;
  }
}
body .content_header_date .pane-title {
  display: none;
}
body .content_header_date:before {
  content: "|";
}
body .content_header_title {
  color: #ff8b69;
  font-size: 24px;
  font-weight: bold;
  line-height: 29px;
  padding-right: 50px;
  width: 100%;
}
@media (min-width: 62em) {
  body .content_header_title {
    font-size: 32px;
    line-height: normal;
    width: 62%;
  }
}
body .content_header_title.term_creative {
  color: #fbcd51;
}
body .content_header_title.term_confident {
  color: #9ad86d;
}
body .content_header_title.term_caring {
  color: #4ca0d8;
}
body .content_header_title.term_curious {
  color: #fe8c67;
}
body .content_header_title .pane-title {
  display: none;
}
body .content_header_title h1 {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
body .content_header_subtitle {
  color: #595959;
  font-size: 20px;
  font-weight: bold;
  line-height: 29px;
  padding-right: 50px;
  width: 100%;
}
@media (min-width: 62em) {
  body .content_header_subtitle {
    font-size: 32px;
    line-height: normal;
    margin: 0 0 20px;
    width: 62%;
  }
}
body .content_header_subtitle .pane-title {
  display: none;
}
body .content_header_icon {
  position: absolute;
  right: 10px;
}
@media (min-width: 62em) {
  body .content_header_icon {
    top: auto;
  }
}
body .content_header_icon img {
  height: 42px;
  width: 42px;
}
@media (min-width: 62em) {
  body .content_header_icon img {
    height: 62px;
    width: 62px;
  }
}

@media (min-width: 62em) {
  .hide-desktop {
    display: none !important;
  }
}

.show-desktop {
  display: none !important;
}
@media (min-width: 62em) {
  .show-desktop {
    display: block !important;
  }
}

.show-tablet {
  display: none !important;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .show-tablet {
    display: block !important;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .hide-tablet {
    display: none !important;
  }
}

#your-child-and-you {
  color: #1a819a;
  font-family: 'Roboto Slab';
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: .9em;
  margin: 28px 0 32px;
  text-align: center;
  width: 100%;
}
#your-child-and-you .light-blue {
  color: #45c2d4;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #your-child-and-you {
    margin: 0;
    text-align: right;
    width: 130px;
  }
}

@media (min-width: 62em) {
  #your-child-and-you {
    font-size: 52px;
    width: 185px;
  }
}

.pane-node-body {
  clear: both;
}

.pane-highlights-related-content-view-panel-pane-1 .pane-title,
.view-hfc-recent-content .pane-title,
.view-hfc-editors-picks .pane-title {
  color: #555555;
  border-bottom: 1px solid #f3f3f3;
  font-size: 1.25em;
  line-height: normal;
  margin: 0 0 20px;
  padding-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .pane-highlights-related-content-view-panel-pane-1 .pane-title,
  .view-hfc-recent-content .pane-title,
  .view-hfc-editors-picks .pane-title {
    border-bottom: 0;
    margin: 0;
    padding: 20px 35px;
    text-align: left;
  }
}

.pane-highlights-related-content-view-panel-pane-1 .pane-node-title,
.view-hfc-recent-content .pane-node-title,
.view-hfc-editors-picks .pane-node-title {
  font-size: 1.5625em;
  line-height: 20px !important;
  margin-top: 12px;
}
@media (min-width: 62em) {
  .pane-highlights-related-content-view-panel-pane-1 .pane-node-title,
  .view-hfc-recent-content .pane-node-title,
  .view-hfc-editors-picks .pane-node-title {
    font-size: 20px;
  }
}
.pane-highlights-related-content-view-panel-pane-1 .pane-node-title a,
.view-hfc-recent-content .pane-node-title a,
.view-hfc-editors-picks .pane-node-title a {
  color: #92b7bb;
}
@media (min-width: 62em) {
  .pane-highlights-related-content-view-panel-pane-1 .node-readmore,
  .view-hfc-recent-content .node-readmore,
  .view-hfc-editors-picks .node-readmore {
    display: block;
    font-size: 13px;
    font-style: italic;
    line-height: normal;
    text-align: right;
  }
}
.pane-highlights-related-content-view-panel-pane-1 .node-readmore a,
.view-hfc-recent-content .node-readmore a,
.view-hfc-editors-picks .node-readmore a {
  color: #02546f;
  text-decoration: none;
}

.pager {
  color: #02546f;
  display: block;
  font-size: 1.5em;
  font-style: italic;
  line-height: normal;
  margin: 0 0 30px;
  text-align: center;
}
@media (min-width: 62em) {
  .pager {
    font-size: 1.25em;
    margin: 30px 0 0;
    text-align: right;
  }
}
.pager a {
  color: #02546f;
}

.horizontal-list {
  clear: both;
  margin: 30px 15px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .horizontal-list {
    border-top: 2px dotted #7f7f7f;
    float: left;
  }
}

.horizontal-list .pane-title {
  color: #555555;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}
.horizontal-list .item {
  border: 1px solid #f3f3f3;
  height: 230px;
  padding: 15px;
  vertical-align: top;
  margin: 0 2% 1.25em 0;
  min-width: 220px;
  width: 100%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .horizontal-list .item {
    width: 49%;
  }
  .horizontal-list .item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (min-width: 62em) {
  .horizontal-list .item {
    width: 32%;
  }
  .horizontal-list .item:nth-child(2n) {
    margin-right: 2%;
  }
  .horizontal-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.horizontal-list .image-wrapper img {
  height: 133px;
  max-width: none;
  overflow: hidden;
  width: 100%;
}
.horizontal-list .image-wrapper.confident {
  border-bottom: 4px solid #9ad86d;
}
.horizontal-list .image-wrapper.creative {
  border-bottom: 4px solid #fbcd51;
}
.horizontal-list .image-wrapper.caring {
  border-bottom: 4px solid #4ca0d8;
}
.horizontal-list .image-wrapper.curious {
  border-bottom: 4px solid #fe8c67;
}
.horizontal-list .icon {
  border-radius: 50%;
  top: 126px;
  right: 6px;
  position: absolute;
}
.horizontal-list .icon .views-row {
  padding: 0;
}
.horizontal-list .icon img {
  border-radius: 50%;
  width: 34px;
  height: 34px;
}
.horizontal-list .link {
  display: block;
  font-size: 1.25em;
  line-height: 1.25em;
  margin-bottom: 1.25em;
  margin-top: 5px;
}
.horizontal-list .link a {
  color: #92b7bb;
}
.horizontal-list .link .pane-title {
  display: none;
}
.horizontal-list .info {
  display: none;
}
.horizontal-list .read-more {
  bottom: 0;
  position: absolute;
  right: 0;
  margin-bottom: 5px;
  margin-right: 8px;
}
.horizontal-list .read-more a:after {
  content: '\00bb';
}
.horizontal-list .node-readmore {
  font-size: 0.8125em;
  font-style: italic;
  line-height: normal;
  text-align: right;
}
.horizontal-list .node-readmore a {
  color: #02546f;
  text-decoration: none;
}
.horizontal-list--carousel {
  margin: auto;
  max-width: 320px;
}
.horizontal-list--carousel .pane-title {
  font-size: 1.5em;
  font-weight: 300;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.horizontal-list--carousel .slick {
  width: 100%;
}
.horizontal-list--carousel .slick__slide .views-row {
  padding-left: 20px;
  width: auto;
}
.horizontal-list--carousel .slick__arrow {
  top: 35%;
}
.horizontal-list--carousel .slick__arrow .slick-arrow {
  width: 19px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 0;
  top: 35%;
}
.horizontal-list--carousel .slick__arrow .slick-arrow:before {
  content: none;
}
.horizontal-list--carousel .slick__arrow .slick-arrow.slick-next {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/carousel-arrow-right.png?yocs=_&yoloc=eu);
}
.horizontal-list--carousel .slick__arrow .slick-arrow.slick-prev {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/carousel-arrow-left.png?yocs=_&yoloc=eu);
}
.horizontal-list--carousel .slick-dots {
  display: none !important;
}
.horizontal-list--carousel .node-teaser {
  margin: 25px !important;
}
.horizontal-list--carousel .image-wrapper img {
  max-width: 100%;
  width: 270px;
  height: 175px;
}
.horizontal-list--carousel .icon {
  top: 164px;
}
.horizontal-list--carousel .icon img {
  width: 44px;
  height: 44px;
}

.parents_author_image {
  clear: left;
}

.parents_author_name {
  color: #555555;
  font-size: 1.25em;
  font-weight: bold;
  line-height: normal;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .parents_author_name {
    float: left;
    padding-right: 5px;
    width: auto;
  }
}

.parents_author_profession {
  color: #555555;
  font-size: 1.25em;
  font-weight: bold;
  line-height: normal;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .parents_author_profession {
    padding: 0;
    width: auto;
  }
}

.parents_author_history {
  border-bottom: 2px dotted #7f7f7f;
  clear: both;
  color: #555555;
  font-size: 0.875em;
  line-height: normal;
  margin: 0 15px 10px;
  padding: 15px 0 25px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .parents_author_history {
    border-bottom: 0;
    clear: none;
    margin: 0 0 25px;
    padding: 15px;
  }
}

.radix-layouts-content .pane-highlights-4cs-view-panel-pane-1 {
  box-shadow: none;
  margin: 20px 0;
  display: block;
}
@media (min-width: 62em) {
  .radix-layouts-content .pane-highlights-4cs-view-panel-pane-1 {
    display: none;
  }
}

@media (min-width: 62em) {
  .radix-layouts-sidebar {
    width: 25%;
  }
}
.radix-layouts-sidebar .panel-pane.pane-fieldable-panels-pane .pane-title {
  font-weight: normal;
  margin: 0 0 8px;
  line-height: 20px;
}
@media (min-width: 62em) {
  .radix-layouts-sidebar .panel-pane.pane-fieldable-panels-pane {
    margin-bottom: 20px;
  }
}

.panel-share-buttons--content-top,
.panel-share-buttons--content-bottom {
  margin: 0 0 25px;
}
.panel-share-buttons--content-top .pane-title,
.panel-share-buttons--content-bottom .pane-title {
  display: none;
}
@media (min-width: 62em) {
  .panel-share-buttons--content-top .pane-title,
  .panel-share-buttons--content-bottom .pane-title {
    display: block;
  }
}

.panel-share-buttons--content-bottom {
  margin: 25px 0 0;
}
@media (min-width: 62em) {
  .panel-share-buttons--content-bottom {
    float: left;
    border: 0;
    padding-bottom: 0;
    margin: 0;
  }
}

@media (min-width: 62em) {
  .panel-print-button {
    float: right;
    margin: 30px 70px 0 0;
  }
}

.btn--print {
  background: #bd0d1a;
  color: #ffffff;
  font-size: 1.25em;
  line-height: 20px;
  padding: 0;
}
.btn--print .button-icon {
  border-right: 1px solid #ffffff;
  display: inline-block;
  padding: 6px;
  vertical-align: top;
}
.btn--print .button-text {
  display: inline-block;
  padding: 6px 6px 6px 0;
  vertical-align: top;
}

@media (min-width: 62em) {
  .pane-share-print {
    border-bottom: 2px dotted #7f7f7f;
    margin-top: 30px;
    padding-bottom: 15px;
  }
}

.pane-highlights-4cs-view-panel-pane-1 {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.pane-highlights-4cs-view-panel-pane-1 .pane-title {
  color: #bd0d1a;
  font-size: 1.5em;
  font-weight: normal;
  line-height: normal;
  margin: 0;
}
.pane-highlights-4cs-view-panel-pane-1 .view-highlights-4cs-view .views-row {
  float: none;
  margin: 10px -1px;
  display: inline-block;
}
@media (min-width: 62em) {
  .pane-highlights-4cs-view-panel-pane-1 .view-highlights-4cs-view .views-row {
    margin: 10px -3px;
  }
}
.pane-highlights-4cs-view-panel-pane-1 .view-highlights-4cs-view .views-row img {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  padding: 2px;
  background-color: #FFFFFF;
}
.pane-highlights-4cs-view-panel-pane-1 .learn-more {
  color: #02546f;
  font-size: 0.8125em;
  font-style: italic;
}
.pane-highlights-4cs-view-panel-pane-1 .view-footer {
  margin: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  font-family: 'Lato';
}
.pane-highlights-4cs-view-panel-pane-1 .view-footer a {
  font-size: 16px;
}
.pane-highlights-4cs-view-panel-pane-1 .view-footer a:after {
  content: "" !important;
}

.pane-hfc-newsletter-signup-sub-mdb-fwap {
  margin-bottom: 20px;
  margin-top: 60px;
  position: relative;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap:before {
  background: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/envelope.png?yocs=_&yoloc=eu") 95% top no-repeat;
  content: "";
  display: block;
  height: 64px;
  right: 5%;
  position: absolute;
  top: -40px;
  width: 75px;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap form {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 0 15px 50px;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap .form-item {
  margin: 0 0 10px;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap .form-type-textfield label {
  display: none;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap label {
  font-size: 1.125em;
  font-style: italic;
  font-weight: normal;
  line-height: 22px;
  color: #bd0d1a;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap #edit-description label {
  padding: 5px 40% 0 0;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap .form-text {
  border: 1px solid #c8c7de;
  border-radius: 5px;
  font-size: 0.8125em;
  line-height: 16px;
  padding: 5px 8px;
  width: 100%;
}
.pane-hfc-newsletter-signup-sub-mdb-fwap .form-submit {
  background: #bd0d1a;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  float: right;
  font-size: 0.8125em;
  font-weight: bold;
  line-height: 16px;
  padding: 8px 15px;
}

.pane-age-group {
  display: none;
}
@media (min-width: 62em) {
  .pane-age-group {
    border-bottom: 1px solid #f3f3f3;
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.pane-age-group .pane-title {
  display: none;
}

.view-id-highlights_4cs_view h2,
.view-highlights-4cs-selected-view h2 {
  display: none;
}
.view-id-highlights_4cs_view .views-footer,
.view-highlights-4cs-selected-view .views-footer {
  margin-top: 70px;
}
.view-id-highlights_4cs_view .views-row,
.view-highlights-4cs-selected-view .views-row {
  float: left;
  padding: 0.3125em;
  position: relative;
}
.view-id-highlights_4cs_view .views-row .views-field-description,
.view-highlights-4cs-selected-view .views-row .views-field-description {
  z-index: 2;
  display: none;
  font-size: 0.8125em;
  line-height: normal;
  width: 18.75em;
  padding: 8px;
}
.view-id-highlights_4cs_view .views-row .views-field-description a,
.view-highlights-4cs-selected-view .views-row .views-field-description a {
  background-color: #BD0D1A;
  border-radius: 5px;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0 5px;
  padding: 5px;
  text-align: center;
}
.view-id-highlights_4cs_view .views-row .views-field-description a:hover, .view-id-highlights_4cs_view .views-row .views-field-description a:focus, .view-id-highlights_4cs_view .views-row .views-field-description a:active,
.view-highlights-4cs-selected-view .views-row .views-field-description a:hover,
.view-highlights-4cs-selected-view .views-row .views-field-description a:focus,
.view-highlights-4cs-selected-view .views-row .views-field-description a:active {
  text-decoration: none;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup {
  position: absolute;
  padding: 10px;
  color: #FFFFFF;
  font-family: 'Lato';
  width: 260px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_close_button,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_close_button {
  border: 1px solid #FFFFFF;
  border-radius: 30px;
  background: #FFFFFF;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_content,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_content {
  padding: 10px;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_title,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_title {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button {
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #FFFFFF;
  font-size: 14px;
  padding: 10px;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  margin: 5px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button a,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button a {
  text-decoration: none;
  color: #FFFFFF;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.confident:hover,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.confident:hover {
  background-color: #86c654;
  border: 1px solid #86c654;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.creative:hover,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.creative:hover {
  background-color: #f2b149;
  border: 1px solid #f2b149;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.curious:hover,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.curious:hover {
  background-color: #ea7159;
  border: 1px solid #ea7159;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.caring:hover,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup .hfc_4c_popup_button.caring:hover {
  background-color: #288fbc;
  border: 1px solid #288fbc;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.confident,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.confident {
  left: -23px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.confident .hfc_4c_popup_close_button,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.confident .hfc_4c_popup_close_button {
  color: #9ad86d !important;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.creative,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.creative {
  left: -79px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.creative .hfc_4c_popup_close_button,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.creative .hfc_4c_popup_close_button {
  color: #facd51 !important;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.curious,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.curious {
  left: -135px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.curious .hfc_4c_popup_close_button,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.curious .hfc_4c_popup_close_button {
  color: #fe8c67 !important;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.caring,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.caring {
  left: -191px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.caring .hfc_4c_popup_close_button,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.caring .hfc_4c_popup_close_button {
  color: #4ca0d8 !important;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.confident:after,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.confident:after {
  bottom: 100%;
  left: 46px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(154, 216, 109, 0);
  border-bottom-color: #9ad86d;
  border-width: 7px;
  margin-left: -7px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.creative:after,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.creative:after {
  bottom: 100%;
  left: 103px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(250, 205, 81, 0);
  border-bottom-color: #facd51;
  border-width: 7px;
  margin-left: -7px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.curious:after,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.curious:after {
  bottom: 100%;
  left: 158px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(254, 140, 103, 0);
  border-bottom-color: #fe8c67;
  border-width: 7px;
  margin-left: -7px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .hfc_4c_popup.caring:after,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .hfc_4c_popup.caring:after {
  bottom: 100%;
  left: 214px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(76, 160, 216, 0);
  border-bottom-color: #4ca0d8;
  border-width: 7px;
  margin-left: -7px;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .confident,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .confident {
  background-color: #9ad86d;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .creative,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .creative {
  background-color: #facd51;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .curious,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .curious {
  background-color: #fe8c67;
}
.view-id-highlights_4cs_view .views-row .views-field-description .field-content .caring,
.view-highlights-4cs-selected-view .views-row .views-field-description .field-content .caring {
  background-color: #4ca0d8;
}
.view-id-highlights_4cs_view .views-field-description,
.view-highlights-4cs-selected-view .views-field-description {
  position: absolute;
}

.view-id-highlights_4cs_view .views-row:hover .views-field-description {
  display: block;
}

.highlights_share a {
  display: block;
  float: left;
  font-size: 1em;
  margin: 0 0.1875em;
  width: 2.5em !important;
  height: 2.75em !important;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}
.highlights_share a:first-child {
  margin-left: 0.0625em;
}
.highlights_share .addthis_button_facebook {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-facebook.png?yocs=_&yoloc=eu);
}
.highlights_share .addthis_button_twitter {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-twitter.png?yocs=_&yoloc=eu);
}
.highlights_share .addthis_button_pinterest {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-pinterest.png?yocs=_&yoloc=eu);
}
.highlights_share .addthis_button_pinterest span {
  display: none;
}
.highlights_share .addthis_button_email {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-email.png?yocs=_&yoloc=eu);
}
.highlights_share .addthis_button_print {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-print.png?yocs=_&yoloc=eu);
  float: right;
  margin-right: 5em;
  margin-top: 0.1875em;
  width: 9.4375em !important;
  height: 2.375em !important;
}
@media only screen and (max-width: 47.9375em) {
  .highlights_share .addthis_button_print {
    display: none;
    margin-top: 1.25em;
    margin-right: 0;
  }
}
.highlights_share .addthis_button_google_plusone_share {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-googleplus.png?yocs=_&yoloc=eu);
}
.highlights_share .addthis_button_instagram {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-instagram.png?yocs=_&yoloc=eu);
}

@media only screen and (max-width: 47.9375em) {
  .radix-layouts-sidebar {
    margin: 30px auto;
    max-width: 320px;
  }
}
.radix-layouts-sidebar .panel-pane.pane-fieldable-panels-pane {
  display: none;
}
@media (min-width: 62em) {
  .radix-layouts-sidebar .panel-pane.pane-fieldable-panels-pane {
    display: block;
  }
}
.radix-layouts-sidebar #hfc-newsletter-simple-signup-block-form-mdb-fwap {
  clear: both;
}
.radix-layouts-sidebar .panel-pane {
  clear: both;
}
.radix-layouts-sidebar .learn-more {
  display: block;
  clear: both;
}

.region-content ul.flippy {
  padding: 0;
}

.pane-flippy-flippy-pager {
  border: 0;
  margin-bottom: 20px !important;
  padding-bottom: 20px;
}

.highlight_flippy {
  overflow: hidden;
  position: relative;
}
@media (min-width: 62em) {
  .highlight_flippy {
    overflow: hidden;
  }
}
.highlight_flippy:before, .highlight_flippy:after {
  background: #eeeeee;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 20px;
}
.highlight_flippy:before {
  top: 0;
}
.highlight_flippy:after {
  bottom: 0;
}
.highlight_flippy li {
  display: block;
  width: 50% !important;
  float: left;
}
.highlight_flippy li a {
  color: #8f8f8f;
  text-decoration: none;
}
.highlight_flippy li.next {
  border-left: 0.0625em solid #eeeeee;
}
.highlight_flippy li.next .link_text:before {
  display: none;
}
.highlight_flippy li.next .link_text:after {
  background: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/flippy-next-arrow.png?yocs=_&yoloc=eu") left top no-repeat;
  background-size: contain;
  left: 10px;
}
.highlight_flippy li.prev {
  border-right: 0.0625em solid #eeeeee;
  margin-right: -0.0625em;
}
.highlight_flippy li.prev .link_text:before {
  background: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/flippy-prev-arrow.png?yocs=_&yoloc=eu") left top no-repeat;
  background-size: contain;
  right: 10px;
}
.highlight_flippy li.prev .link_text:after {
  display: none;
}
.highlight_flippy li .link_text, .highlight_flippy li .link_thumbnail, .highlight_flippy li .link_name {
  display: block;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
.highlight_flippy li .link_thumbnail {
  display: inline;
  height: 4.6875em;
  width: 4.6875em;
}
.highlight_flippy li .link_thumbnail,
.highlight_flippy li .link_name {
  text-align: center;
}
.highlight_flippy li .link_text {
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.highlight_flippy li .link_text:before, .highlight_flippy li .link_text:after {
  content: "";
  display: inline-block;
  height: 15px;
  position: relative;
  top: 3px;
  width: 6px;
}
.highlight_flippy li .link_name {
  margin: 8px -5px 0;
  padding: 1px 0;
}

.side-promo {
  margin: 35px 0;
  text-align: center;
}
.side-promo--subscribe {
  margin: 0 0 5px;
  padding: 0;
}
.side-promo .pane-title {
  display: none;
}
.side-promo .side-promo {
  margin: 0;
}

.pane-node-field-sidebar-link {
  display: none;
}

.node-poll header,
.node-poll .links {
  display: none;
}

.pane-node-field-parents-poll {
  display: none;
  font-size: 0.75em;
  line-height: 14px;
  text-align: left;
}
@media (min-width: 62em) {
  .pane-node-field-parents-poll {
    display: block;
  }
}
.pane-node-field-parents-poll .parents-poll__inner {
  border: 1px solid #dcdcdc;
  padding: 16px;
}
.pane-node-field-parents-poll .parents-poll__heading {
  margin-right: -16px;
  text-align: right;
  background-image: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/poll-heading.png?yocs=_&yoloc=eu");
  height: 2.1em;
  color: white;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 2.1em;
  padding-right: 10px;
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.pane-node-field-parents-poll .parents-poll__intro {
  border-top: 1px solid #dcdcdc;
  font-weight: bold;
  margin: 10px 0;
  padding-top: 10px;
}
.pane-node-field-parents-poll .parents-poll__item .form-radios .form-item {
  font-weight: normal;
  line-height: 16px;
  margin: 20px 0;
  overflow: hidden;
}
.pane-node-field-parents-poll .parents-poll__item .form-radios .form-item input {
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  width: 20px;
}
.pane-node-field-parents-poll .parents-poll__item .form-radios .form-item label.option {
  display: block;
  margin-left: 30px;
}
.pane-node-field-parents-poll .form-submit {
  background: #bd0d1a;
  color: #ffffff;
  display: block;
  font-size: 1.35em;
  line-height: normal;
  margin: 0 auto;
  text-transform: uppercase;
  width: 162px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 6px 12px;
}
.pane-node-field-parents-poll .bar .foreground {
  background-color: #bd0d1a;
}
.pane-node-field-parents-poll input {
  word-wrap: break-word;
  white-space: normal;
}

.pane-node .node-teaser .node-title,
.pane-node .node-teaser .submitted {
  display: none;
}

.share_pane {
  border-bottom: 2px dotted #7F7F7F;
  clear: both;
  margin: 0 15px 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 61.9375em) {
  .share_pane {
    float: left;
    width: 96%;
  }
}
.share_pane .pane-title {
  color: #554c53;
  font-size: 1.25em;
  font-weight: 500;
  margin-top: 0;
}
@media only screen and (max-width: 47.9375em) {
  .share_pane .pane-title {
    display: none;
  }
}
.share_pane--sidebar {
  border: 0;
  margin: 10px 0 40px 20px;
  padding: 0;
}
.share_pane.hide-desktop {
  border: 0;
  margin-top: 15px;
  padding: 0;
}

.field-type-taxonomy-term-reference .field-item:not(:last-child):after {
  content: ',';
}

.parents_tags {
  font-size: 1.25em;
  margin: 0px 15px 30px;
}
.parents_tags .field-label,
.parents_tags .pane-title {
  color: #555555;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.25em;
  margin: 0 0 3px 0;
}
.parents_tags .field-item {
  color: #44c3d5;
  display: inline-block;
  margin-right: 5px;
}
.parents_tags .field-item a {
  color: #44c3d5;
}

.filter-pane {
  margin: 20px 0;
}
.filter-pane .pane-title {
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: normal;
  margin: 0;
}
.filter-pane .views-exposed-widget {
  float: none;
  padding: 0 0 15px 0;
}
.filter-pane .views-exposed-widget label {
  border-bottom: 1px dotted #555555;
  color: #555555;
  font-size: 1.25em;
  font-weight: 500;
  line-height: normal;
  padding: 8px 14px;
  text-transform: uppercase;
}
.filter-pane .views-exposed-widget .form-item,
.filter-pane .views-exposed-widget .form-checkboxes {
  padding: 8px 14px;
  overflow: hidden;
  text-transform: uppercase;
}
.filter-pane .views-exposed-widget .form-item .form-checkboxes,
.filter-pane .views-exposed-widget .form-checkboxes .form-checkboxes {
  padding: 0;
}
.filter-pane .views-exposed-widget .form-item .form-item,
.filter-pane .views-exposed-widget .form-checkboxes .form-item {
  padding: 8px 0;
}
.filter-pane .views-exposed-widget .form-item .form-item .form-checkboxes,
.filter-pane .views-exposed-widget .form-checkboxes .form-item .form-checkboxes {
  padding: 0;
}
.filter-pane .views-exposed-widget .form-item input,
.filter-pane .views-exposed-widget .form-checkboxes input {
  cursor: pointer;
  float: left;
}
.filter-pane .views-exposed-widget .form-item label,
.filter-pane .views-exposed-widget .form-checkboxes label {
  cursor: pointer;
  border: 0;
  color: #8f8f8f;
  float: left;
  font-size: 1.125em;
  line-height: 22px;
  margin: -4px 0 0 10px;
  padding: 0;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .filter-pane .views-exposed-widget .form-item label,
  .filter-pane .views-exposed-widget .form-checkboxes label {
    max-width: 175px;
  }
}

@media print {
  header,
  footer,
  .radix-layouts-sidebar,
  .parents_article_header_icon,
  .share_pane,
  .hide-desktop,
  .hide-tablet {
    display: none;
  }

  #your-child-and-you {
    text-align: left;
    margin-top: 0;
  }

  #main[style] {
    padding-top: 0 !important;
  }

  .radix-layouts-content {
    width: auto;
  }
}
.region-homepage-hero .views-field-field-overlay-text {
  text-align: center;
  white-space: nowrap;
  background-color: rgba(218, 7, 22, 0.8);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -70px;
  position: relative;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-size: 32px;
  line-height: 119%;
}
@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .views-field-field-overlay-text {
    font-size: .75em;
    white-space: normal;
    padding-top: 5px;
    padding-bottom: 30px;
    margin-top: 0px;
    background-color: #da0716;
  }
}
.region-homepage-hero .slick-dots {
  bottom: 50px;
}
@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .slick-dots {
    bottom: -25px;
  }
}
.region-homepage-hero .slick-prev::before, .region-homepage-hero .slick-next::before {
  color: #da0716;
}
.region-homepage-hero .slick-slide {
  opacity: 0.3;
  filter: alpha(opacity=30);
  /* For IE8 and earlier */
}
.region-homepage-hero .slick--center .slick-slide.slick-center {
  opacity: 1;
  filter: alpha(opacity=100);
  /* For IE8 and earlier */
  -webkit-transform: scale(1);
  transform: scale(1);
}
.region-homepage-hero .slick-prev {
  margin-left: 60px;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 61.9375em) {
  .region-homepage-hero .slick-prev {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .slick-prev {
    margin-left: 6px;
  }
}
.region-homepage-hero .slick-prev::before {
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/slickprev01.png?yocs=_&yoloc=eu");
}
@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .slick-prev::before {
    content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/slickprev02.png?yocs=_&yoloc=eu");
  }
}
.region-homepage-hero .slick-next {
  margin-right: 60px;
  width: auto;
  height: auto;
}
@media only screen and (max-width: 61.9375em) {
  .region-homepage-hero .slick-next {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .slick-next {
    margin-right: 6px;
  }
}
.region-homepage-hero .slick-next::before {
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/slicknext01.png?yocs=_&yoloc=eu");
}
@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .slick-next::before {
    content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/slicknext02.png?yocs=_&yoloc=eu");
  }
}
.region-homepage-hero .slick-prev, .region-homepage-hero .slick-next, .region-homepage-hero .slick-down {
  margin-top: -70px;
}
.region-homepage-hero .slick-track {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.region-homepage-hero .slick-dots li.slick-active button::before {
  opacity: 1;
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/hh_dot_fill.png?yocs=_&yoloc=eu");
}
.region-homepage-hero .slick-dots li button:before {
  opacity: 1;
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/hh_dot_empty.png?yocs=_&yoloc=eu");
}
.region-homepage-hero .slick-list {
  height: auto !important;
}
.region-homepage-hero .slick__arrow {
  top: 68%;
}
@media only screen and (max-width: 61.9375em) {
  .region-homepage-hero .slick__arrow {
    top: 68%;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .region-homepage-hero .slick__arrow {
    top: 68%;
  }
}

@media only screen and (max-width: 47.9375em) {
  .region-homepage-hero .slick__arrow {
    top: 68%;
  }
}

.region-homepage-hero a {
  color: white;
  text-decoration: none;
}

.region-homepage-hero a:link {
  color: white;
  text-decoration: none;
}

.region-homepage-hero a:visited {
  color: white;
  text-decoration: none;
}

.region-homepage-hero a:hover {
  color: white;
  text-decoration: none;
}

.region-homepage-hero a:active {
  color: white;
  text-decoration: none;
}

.view-homepage-video {
  border-top: solid 1px #A59899;
  margin: 2em 0;
  clear: both;
  text-align: center;
  position: relative;
  width: 100%;
  display: inline-block;
}
.view-homepage-video .field-content {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 47.9375em) {
  .view-homepage-video .field-content {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.view-homepage-video .homepage-video-row {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  width: 32%;
  vertical-align: top;
}
.view-homepage-video .video-container {
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.view-homepage-video .view-header {
  text-align: center;
  margin-top: -1.25em;
}
.view-homepage-video .view-header p {
  font-family: "Montserrat", Verdana, sans-serif;
}
.view-homepage-video .view-header > p:first-child {
  color: #BC1108;
  display: inline-block;
  position: relative;
  font-size: 1.2em;
  padding: 0 50px;
  z-index: 0;
  line-height: 2.5em;
  font-weight: normal;
  margin: 0;
}
@media only screen and (max-width: 47.9375em) {
  .view-homepage-video .view-header > p:first-child {
    padding: 0 25px;
    font-size: 1em;
  }
}
.view-homepage-video .view-header > p:first-child:after {
  content: '';
  display: block;
  border-top: 2.5em solid #A59899;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: 0;
  width: calc(100% - 20px);
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
}
.view-homepage-video .view-header > p:first-child:before {
  content: '';
  display: block;
  border-top: calc(2.5em - 2px) solid white;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  height: 0;
  width: calc(100% - 21px);
  position: absolute;
  z-index: -1;
  left: 1.5px;
  bottom: 1px;
}
.view-homepage-video .video-tn img {
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  height: auto;
  width: auto;
}
.view-homepage-video .video-play-icon {
  opacity: 0.6;
  filter: alpha(opacity=60);
  display: inline-block;
}
@media only screen and (max-width: 47.9375em) {
  .view-homepage-video .video-play-icon img {
    transform: scale(0.4, 0.4);
  }
}
.view-homepage-video .video-text {
  font-size: 1.2em;
  font-family: "Montserrat", Verdana, sans-serif;
  margin-top: -20%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .view-homepage-video .video-text {
    margin-top: -5%;
  }
}

@media only screen and (max-width: 47.9375em) {
  .view-homepage-video .video-text {
    font-size: 1em;
    margin-top: -20%;
  }
}
.view-homepage-video .video-text a {
  color: #0995A2;
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .content_header_title,
  body.node-type-parents-article .content_header_subtitle {
    width: 73%;
  }
}

body.node-type-parents-article .content_header_author {
  clear: both;
  margin-left: 15px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .content_header_author {
    clear: none;
  }
}

body.node-type-parents-article .content_header_icon {
  top: 70px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .content_header_icon {
    top: 0;
    right: 10px;
  }
}

@media only screen and (max-width: 47.9375em) {
  body.node-type-parents-article .share_pane {
    display: none;
  }
}
body.node-type-parents-article .share_pane.hide-desktop {
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  body.node-type-parents-article .radix-layouts-sidebar .pane-highlights-4cs-view-panel-pane-1,
  body.node-type-parents-article .radix-layouts-sidebar .pane-hfc-newsletter-signup-sub-mdb-fwap,
  body.node-type-parents-article .radix-layouts-sidebar .side-promo {
    display: none;
  }
}
body.node-type-parents-article .parents_feature_image {
  clear: both;
  margin: 0 -15px;
  padding: 28px 0 32px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .parents_feature_image {
    margin: 0 15px;
    padding: 15px 0;
  }
}

body.node-type-parents-article .pane-node-field-parents-video {
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .pane-node-field-parents-video {
    margin-bottom: 50px;
  }
}

body.node-type-parents-article .article__body {
  border-bottom: 2px dotted #7f7f7f;
  clear: both;
  color: #555555;
  margin: 0 15px 30px;
}
body.node-type-parents-article .article__body .field-items {
  padding-top: 1px;
}
body.node-type-parents-article .article__body .media-element {
  display: block;
  margin: 25px 0;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .article__body .caption {
    max-width: 200px !important;
  }
}

@media (min-width: 62em) {
  body.node-type-parents-article .article__body .caption {
    max-width: 350px !important;
  }
}
body.node-type-parents-article .article__body .caption .media-element {
  margin: 0 0 5px 0;
}
body.node-type-parents-article .article__body .caption .caption-inner {
  background: none;
  border: 0;
  text-align: left;
}
body.node-type-parents-article .article__body h4 {
  color: #555555;
  margin-bottom: 0;
}
body.node-type-parents-article .article__body h4 ~ p {
  margin-top: 0;
}
body.node-type-parents-article .article__body blockquote {
  background: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/quote.png?yocs=_&yoloc=eu") left top no-repeat;
  border: 0;
  color: #777777;
  display: none;
  padding: 16px 18px 0 36px;
  margin: -15px 0 25px -36px;
  width: 260px;
}
body.node-type-parents-article .article__body blockquote p {
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  line-height: 24px;
  margin: 0;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-article .article__body blockquote {
    float: left;
    display: block;
  }
}

@media (min-width: 62em) {
  .hide-desktop {
    display: none;
  }
}

.show-desktop {
  display: none;
}
@media (min-width: 62em) {
  .show-desktop {
    display: block;
  }
}

body.node-type-parents-activity-landing .activities__yc-and-y--mobile {
  margin: 30px 0;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .activities__yc-and-y--desktop {
    margin: 40px 0 30px;
  }
}
body.node-type-parents-activity-landing .activities__page-title {
  color: #555555;
  font-size: 32px;
  line-height: normal;
  margin: 8px 0 0;
  text-transform: uppercase;
}
body.node-type-parents-activity-landing .activities__page-info {
  color: #8f8f8f;
  font-size: 16px;
  line-height: 22px;
  margin: 20px 0;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .activities__page-info {
    margin: 0;
  }
}
body.node-type-parents-activity-landing .btn--activities-filter {
  background: #bd0d1a;
  color: #ffffff;
  font-size: 27px;
  line-height: normal;
  text-transform: uppercase;
  width: 230px;
}
body.node-type-parents-activity-landing .btn--activities-filter span {
  margin-left: 5px;
}
body.node-type-parents-activity-landing .activity-item {
  border: 1px solid #f3f3f3;
  margin: 22px 0;
  padding: 26px 10px;
  overflow: hidden;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .activity-item {
    margin: 12px 0;
    padding: 16px 20px 16px 16px;
  }
}
body.node-type-parents-activity-landing .activity-item__image-wrapper {
  border-bottom: 5px solid #9ad76c;
  position: relative;
}
body.node-type-parents-activity-landing .activity-item__icon {
  border: 3px solid #ffffff;
  border-radius: 50%;
  bottom: -10px;
  right: -15px;
  position: absolute;
}
body.node-type-parents-activity-landing .activity-item__link {
  display: block;
  color: #92b7bb;
  font-size: 27px;
  line-height: 27px;
  margin-top: 5px;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .activity-item__link {
    font-size: 20px;
    line-height: 20px;
    min-height: 40px;
  }
}
body.node-type-parents-activity-landing .activity-item__read-more {
  font-size: 13px;
  font-style: italic;
  line-height: normal;
  margin-top: 5px;
  text-align: right;
}
body.node-type-parents-activity-landing .activity-item__read-more a {
  color: #02546f;
}
body.node-type-parents-activity-landing .activity-item--featured .activity-item__link {
  float: left;
  min-height: 0;
}
body.node-type-parents-activity-landing .activity-item--featured .activity-item__read-more {
  float: right;
  margin-top: 10px;
}
body.node-type-parents-activity-landing .activity__see-more {
  color: #02546f;
  display: block;
  font-size: 30px;
  font-style: italic;
  line-height: normal;
  text-align: center;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .activity__see-more {
    font-size: 20px;
    margin-top: 30px;
    text-align: right;
  }
}
body.node-type-parents-activity-landing .radix-layouts-sidebar #hfc-newsletter-simple-signup-block-form-mdb-fwap {
  clear: both;
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .highlights_share a {
  display: block;
  float: left;
  width: 2.75em;
  height: 2.75em;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .highlights_share .addthis_button_facebook {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-facebook.png?yocs=_&yoloc=eu);
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .highlights_share .addthis_button_twitter {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-twitter.png?yocs=_&yoloc=eu);
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .highlights_share .addthis_button_pinterest {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-pinterest.png?yocs=_&yoloc=eu);
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .highlights_share .addthis_button_pinterest span {
  display: none;
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .highlights_share .addthis_button_email {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/icon-share-email.png?yocs=_&yoloc=eu);
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .panel-pane {
  clear: both;
}
body.node-type-parents-activity-landing .radix-layouts-sidebar .learn-more {
  display: block;
  clear: both;
}
body.node-type-parents-activity-landing .highlight_flippy li {
  display: block;
  width: 50%;
  float: left;
}
body.node-type-parents-activity-landing .highlight_flippy li a {
  color: #8f8f8f;
  text-decoration: none;
}
body.node-type-parents-activity-landing .highlight_flippy li.next {
  border-left: 1px solid #8f8f8f;
}
body.node-type-parents-activity-landing .highlight_flippy li.next .link_text {
  text-align: right;
}
body.node-type-parents-activity-landing .highlight_flippy li.prev .link_text {
  text-align: left;
}
body.node-type-parents-activity-landing .highlight_flippy li .link_text, body.node-type-parents-activity-landing .highlight_flippy li .link_thumbnail, body.node-type-parents-activity-landing .highlight_flippy li .link_name {
  display: block;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.node-type-parents-activity-landing .highlight_flippy li .link_thumbnail,
body.node-type-parents-activity-landing .highlight_flippy li .link_name {
  text-align: center;
}
body.node-type-parents-activity-landing .highlight_flippy li .link_text {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.node-type-parents-activity-landing .highlight_flippy li .link_name {
  font-size: 18px;
  line-height: 18px;
  margin-top: 8px;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .highlight_flippy {
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 20px;
    margin-bottom: 20px;
    overflow: hidden;
  }
}
body.node-type-parents-activity-landing .panel-share-buttons {
  border-bottom: 1px solid #f3f3f3;
  display: none;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body.node-type-parents-activity-landing .panel-share-buttons .pane-title {
  font-size: 20px;
  margin: 0 0 8px;
  line-height: 20px;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .panel-share-buttons {
    display: block;
  }
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .pane-highlights-4cs-content {
    display: none;
  }
}
body.node-type-parents-activity-landing .pane-highlights-4cs-sidebar {
  display: none;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .pane-highlights-4cs-sidebar {
    display: block;
  }
}
body.node-type-parents-activity-landing .pane-activity-filter {
  border-bottom: 1px solid #f3f3f3;
  color: #8f8f8f;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body.node-type-parents-activity-landing .pane-activity-filter .filter__title {
  color: #555555;
  font-size: 32px;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}
body.node-type-parents-activity-landing .pane-activity-filter .filter__type__title {
  border-bottom: 1px dotted #555555;
  color: #555555;
  font-size: 20px;
  line-height: normal;
  margin: 0;
  padding: 8px 14px;
  text-transform: uppercase;
}
body.node-type-parents-activity-landing .pane-activity-filter ul {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}
body.node-type-parents-activity-landing .pane-activity-filter .filter__type--age {
  text-transform: uppercase;
}
body.node-type-parents-activity-landing .pane-activity-filter .filter__type--age li span {
  display: inline-block;
  vertical-align: top;
}
body.node-type-parents-activity-landing .pane-activity-filter li {
  padding: 8px 14px;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap {
  border-bottom: 1px solid #f3f3f3;
  padding: 20px 15px 50px;
  margin-bottom: 20px;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap {
    padding: 40px 0 50px;
  }
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap .form-item {
  margin: 0 0 10px;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap .form-type-textfield label {
  display: none;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap label {
  font-size: 20px;
  font-style: italic;
  font-weight: normal;
  line-height: 24px;
  color: #bd0d1a;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap .newsletter__header label {
  float: left;
  width: 65%;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap .newsletter__header img {
  float: right;
  margin-top: -35px;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap .form-text {
  border: 1px solid #c8c7de;
  border-radius: 5px;
  font-size: 13px;
  line-height: 16px;
  padding: 5px 8px;
  width: 100%;
}
body.node-type-parents-activity-landing .pane-hfc-newsletter-signup-sub-mdb-fwap .form-submit {
  background: #bd0d1a;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  float: right;
  font-size: 13px;
  font-weight: bold;
  line-height: 16px;
  padding: 8px 15px;
}
body.node-type-parents-activity-landing .pane-age-group {
  border-bottom: 1px solid #f3f3f3;
  padding: 0 0 20px;
  margin: 20px 0;
  text-align: center;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .pane-age-group {
    text-align: left;
  }
}
body.node-type-parents-activity-landing .pane-age-group .pane-title {
  display: none;
}
body.node-type-parents-activity-landing .pane-node-field-parents-random-ad {
  border-bottom: 1px solid #f3f3f3;
  padding: 0 0 20px;
  margin: 20px 0;
  text-align: center;
}
@media (min-width: 62em) {
  body.node-type-parents-activity-landing .pane-node-field-parents-random-ad {
    text-align: left;
  }
}
body.node-type-parents-activity-landing .pane-node-field-parents-random-ad .pane-node-field-parents-random-ad {
  margin: 0;
  padding: 0;
  border: 0;
}
body.node-type-parents-activity-landing .view-id-highlights_4cs_view h2, body.node-type-parents-activity-landing .view-highlights-4cs-selected-view h2 {
  display: none;
}
body.node-type-parents-activity-landing .view-id-highlights_4cs_view .views-row, body.node-type-parents-activity-landing .view-highlights-4cs-selected-view .views-row {
  float: left;
  padding: 0.3125em;
  position: relative;
}
body.node-type-parents-activity-landing .view-id-highlights_4cs_view .views-row:hover .views-field-description, body.node-type-parents-activity-landing .view-highlights-4cs-selected-view .views-row:hover .views-field-description {
  display: block;
}
body.node-type-parents-activity-landing .view-id-highlights_4cs_view .views-row .views-field-description, body.node-type-parents-activity-landing .view-highlights-4cs-selected-view .views-row .views-field-description {
  z-index: 2;
  display: none;
  font-size: 13px;
  line-height: normal;
  position: absolute;
  border: 1px solid #8f8f8f;
  width: 9.375em;
  background-color: #ffffff;
  top: 2.875em;
  left: -50%;
  padding: 8px;
}
body.node-type-parents-activity-landing .view-id-highlights_4cs_view .views-field-description, body.node-type-parents-activity-landing .view-highlights-4cs-selected-view .views-field-description {
  position: absolute;
}

body.node-type-parents-pillar .pane-taxonomy-term {
  position: relative;
}
body.node-type-parents-pillar .vocabulary-highlights-pillars h2 {
  font-size: 25px;
  letter-spacing: 3px;
  line-height: normal;
  margin: 0 0 0 130px;
  min-height: 125px;
  padding: 20px 0;
  text-transform: uppercase;
}
@media (min-width: 62em) {
  body.node-type-parents-pillar .vocabulary-highlights-pillars h2 {
    margin: 0 130px 0 195px;
    min-height: 0;
    padding: 10px 0;
  }
}
body.node-type-parents-pillar .vocabulary-highlights-pillars h2 a {
  color: #555555;
}
@media (min-width: 62em) {
  body.node-type-parents-pillar .pane-node-body {
    clear: none;
  }
}
@media (min-width: 62em) {
  body.node-type-parents-pillar .taxonomy-term-description {
    margin: 0 130px 0 195px;
  }
  body.node-type-parents-pillar .taxonomy-term-description p {
    margin: 0;
  }
}
body.node-type-parents-pillar .field-name-field-pillar-thumbnail {
  position: absolute;
  left: 10px;
  top: 0;
}
@media (min-width: 62em) {
  body.node-type-parents-pillar .field-name-field-pillar-thumbnail {
    left: auto;
    right: 0;
  }
}
body.node-type-parents-pillar .horizontal-list--activities {
  border: 0;
  margin: 0;
}
body.node-type-parents-pillar .pager-load-more {
  padding-top: 15px;
}
body.node-type-parents-pillar .pane-highlights-4cs-view-panel-pane-1 .view-highlights-4cs-view .views-row img {
  width: 64px;
  height: 64px;
}

body.node-type-parents-step-by-step p {
  line-height: 1.25em;
}
body.node-type-parents-step-by-step .content_header_title,
body.node-type-parents-step-by-step .content_header_subtitle {
  margin-left: 15px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-step-by-step .content_header_title,
  body.node-type-parents-step-by-step .content_header_subtitle {
    width: 95%;
  }
}

@media (min-width: 62em) {
  body.node-type-parents-step-by-step .content_header_title,
  body.node-type-parents-step-by-step .content_header_subtitle {
    width: 75%;
  }
}
body.node-type-parents-step-by-step .content_header_author {
  clear: both;
  margin-left: 15px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-step-by-step .content_header_author {
    clear: none;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-step-by-step .content_header_icon {
    float: right;
    position: relative;
    right: 10px;
  }
}

body.node-type-parents-step-by-step .parents_feature_image {
  clear: both;
  margin: 15px -15px 25px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-step-by-step .parents_feature_image {
    margin: 15px 15px 30px;
  }
}

body.node-type-parents-step-by-step .pane-node-body {
  border-bottom: 2px dotted #7f7f7f;
  margin: 0 15px 30px;
}
body.node-type-parents-step-by-step .caption {
  float: none;
  margin: 15px 0;
  width: auto !important;
}
body.node-type-parents-step-by-step .caption-width-container {
  display: block;
}
body.node-type-parents-step-by-step .caption-inner {
  background: none;
  color: #4a4a4a;
  font-size: 16px;
  padding: 15px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-step-by-step .caption-inner img,
  body.node-type-parents-step-by-step .caption-inner .caption-object {
    float: left;
    height: 150px;
    width: 245px;
  }
}

body.node-type-parents-step-by-step .caption-inner .caption-text {
  margin-top: 5px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-step-by-step .caption-inner .caption-text {
    margin-left: 265px;
    margin-top: 0;
  }
}

body.node-type-parents-step-by-step .horizontal-list {
  border: 0;
  margin-top: 0;
}
body.node-type-parents-step-by-step .steps ol,
body.node-type-parents-step-by-step .steps ul {
  padding: 0;
}
body.node-type-parents-step-by-step .steps li {
  background: none;
  border: 1px solid #CCC;
  color: #4a4a4a;
  font-size: 16px;
  margin: 15px 0;
  max-width: 100%;
  overflow: hidden;
  padding: 15px;
  text-align: left;
  width: auto;
}
body.node-type-parents-step-by-step .steps li img {
  float: left;
  margin-right: 15px;
}

@media only screen and (max-width: 47.9375em) {
  body.node-type-parents-recipe .radix-layouts-sidebar .pane-highlights-4cs-view-panel-pane-1,
  body.node-type-parents-recipe .radix-layouts-sidebar .pane-hfc-newsletter-signup-sub-mdb-fwap,
  body.node-type-parents-recipe .radix-layouts-sidebar .side-promo {
    display: none;
  }
}
body.node-type-parents-recipe .content_header_icon {
  top: 70px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .content_header_icon {
    top: 0;
    right: 10px;
  }
}

body.node-type-parents-recipe .parents_feature_image {
  margin-top: 50px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .parents_feature_image {
    float: left;
    margin-top: 15px;
    width: 55%;
  }
}

@media (min-width: 62em) {
  body.node-type-parents-recipe .parents_feature_image {
    width: auto;
  }
}
body.node-type-parents-recipe .pane-node-field-parents-optional-descripti {
  clear: both;
  border-bottom: 1px dotted #555555;
  margin: 0 15px 15px;
  padding-bottom: 15px;
  overflow: hidden;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .pane-node-field-parents-optional-descripti {
    border: 0;
    clear: none;
    float: right;
    margin: 14px 4% 0 0;
    width: 160px;
  }
}

body.node-type-parents-recipe .pane-node-field-parents-optional-descripti .field-label {
  display: none;
}
body.node-type-parents-recipe .pane-node-field-parents-optional-descripti .field-items p {
  color: #555555;
  line-height: 25px;
  float: left;
  margin: 0;
  width: 50%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .pane-node-field-parents-optional-descripti .field-items p {
    float: none;
    width: auto;
  }
}

body.node-type-parents-recipe .pane-node-field-parents-optional-descripti .field-items p:first-child {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .pane-node-field-parents-optional-descripti .field-items p:first-child {
    border-bottom: 1px dotted #555555;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}

body.node-type-parents-recipe .pane-node-field-parents-optional-descripti .field-items p:last-child {
  font-size: 16px;
}
body.node-type-parents-recipe .field-items h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin: 30px 0 20px;
}
body.node-type-parents-recipe .field-items p {
  color: #8f8f8f;
  font-size: 16px;
  line-height: 22px;
}
body.node-type-parents-recipe .field-items ol {
  list-style: none;
  margin: 0;
}
body.node-type-parents-recipe .field-items li {
  counter-increment: numberCounter;
  margin: 30px 0;
  color: #555555;
  font-size: 30px;
  min-height: 60px;
  position: relative;
}
body.node-type-parents-recipe .field-items li:before {
  background: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/checkmark-off.png?yocs=_&yoloc=eu") left top no-repeat;
  content: "";
  cursor: pointer;
  display: block;
  height: 26px;
  margin: 25px 0 0 -35px;
  position: absolute;
  width: 26px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .field-items li:before {
    margin: -10px 0 0 -75px;
  }
}

body.node-type-parents-recipe .field-items li:after {
  content: counter(numberCounter) " ";
  display: block;
  left: -32px;
  position: absolute;
  top: -6px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .field-items li {
    margin: 30px 0 30px 45px;
  }
}

body.node-type-parents-recipe .field-items li p,
body.node-type-parents-recipe .field-items li li,
body.node-type-parents-recipe .field-items li span {
  color: #8f8f8f;
  display: block;
  font-size: 16px;
  line-height: 18px;
  margin: 30px 0;
  position: relative;
  top: -10px;
}
body.node-type-parents-recipe .field-items li.checked:before {
  background-image: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/checkmark-on.png?yocs=_&yoloc=eu");
  width: 33px;
}
body.node-type-parents-recipe .field-items .accordion {
  background: #e3f7fd;
  color: #8f8f8f;
  cursor: pointer;
  font-size: 16px;
  line-height: 18px;
  margin: -10px -30px 30px -55px;
  padding: 12px 30px 12px 25px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-recipe .field-items .accordion {
    margin: -10px 0 30px;
    padding: 12px 48px 8px;
  }
}

body.node-type-parents-recipe .field-items .accordion_title {
  color: #555555;
  font-size: 20px;
  font-weight: bold;
  margin-left: 30px;
  margin-bottom: 8px;
}
body.node-type-parents-recipe .field-items .accordion_title:before {
  content: "-";
  display: inline-block;
  margin-left: -30px;
  margin-right: 20px;
  width: 10px;
}
@media (min-width: 62em) {
  body.node-type-parents-recipe .field-items .accordion_title:before {
    margin-left: 0;
  }
}
@media (min-width: 62em) {
  body.node-type-parents-recipe .field-items .accordion_title {
    margin-left: -35px;
  }
}
body.node-type-parents-recipe .field-items .accordion_content {
  margin: 16px 0;
}
body.node-type-parents-recipe .field-items .accordion_content strong {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
body.node-type-parents-recipe .field-items .accordion_content p {
  margin: 0;
}
@media not print {
  body.node-type-parents-recipe .field-items .accordion_open .accordion_title:before {
    content: "+";
    display: inline-block;
    margin-left: -30px;
    margin-right: 20px;
    width: 10px;
  }
  body.node-type-parents-recipe .field-items .accordion_open .accordion_content {
    display: none;
  }
}

body.page-your-child-and-you .home-header {
  text-align: center;
}
body.page-your-child-and-you .home-header img {
  width: auto !important;
  margin: 25px 0 35px;
}
body.page-your-child-and-you .home-carousel .slick--slider {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
body.page-your-child-and-you .home-carousel .slick-slide {
  opacity: 1.0;
  filter: alpha(opacity=100);
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .slick-slide img {
    height: 430px;
    max-width: none;
    width: 746px;
  }
}
body.page-your-child-and-you .home-carousel .slick__arrow .slick-next, body.page-your-child-and-you .home-carousel .slick__arrow .slick-prev {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .slick__arrow .slick-next {
    right: -15px;
    background-image: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/carousel-arrow-right.png?yocs=_&yoloc=eu");
  }
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .slick__arrow .slick-prev {
    left: -15px;
    background-image: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/carousel-arrow-left.png?yocs=_&yoloc=eu");
  }
}
body.page-your-child-and-you .home-carousel .slick__arrow .slick-next::before, body.page-your-child-and-you .home-carousel .slick__arrow .slick-prev::before {
  display: none;
}
body.page-your-child-and-you .home-carousel .views-field-field-carousel-link {
  background-color: #c7313d;
  bottom: 10px;
  color: white;
  padding: 15px;
  position: absolute;
  margin-right: 26px;
}
body.page-your-child-and-you .home-carousel .views-field-field-carousel-link a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  line-height: 1.1em;
}
body.page-your-child-and-you .home-carousel .views-field-field-carousel-link a:hover {
  text-decoration: underline;
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .views-field-field-carousel-link a {
    font-size: 30px;
    font-weight: 300;
  }
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .views-field-field-carousel-link {
    bottom: 20px;
    left: 20px;
    padding: 30px;
  }
}
body.page-your-child-and-you .home-carousel .views-label {
  display: none;
}
body.page-your-child-and-you .home-carousel .slick-dots {
  padding: 0;
  width: auto;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: 0;
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .slick-dots {
    bottom: -35px;
    left: auto;
  }
}
body.page-your-child-and-you .home-carousel .slick-dots li {
  margin-right: 30px;
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .slick-dots li {
    margin-right: 5px;
  }
}
body.page-your-child-and-you .home-carousel .slick-dots li:last-child {
  margin-right: 0;
}
body.page-your-child-and-you .home-carousel .slick-dots li button:before {
  background-color: #c8c7de;
  border-radius: 50%;
  content: "";
  height: 30px;
  opacity: 1;
  width: 30px;
}
@media (min-width: 62em) {
  body.page-your-child-and-you .home-carousel .slick-dots li button:before {
    height: 13px;
    opacity: 1;
    width: 13px;
  }
}
body.page-your-child-and-you .home-carousel .slick-dots li.slick-active button:before {
  background-color: #bd0d1a;
}
body.page-your-child-and-you .mobile-carousel .node-readmore {
  display: block;
}
body.page-your-child-and-you .mobile-carousel .slick-slider {
  border-top: 1px solid #F3F3F3;
  border-bottom: 1px solid #F3F3F3;
  margin: 0;
}
body.page-your-child-and-you .mobile-carousel .slick-slider .slide__content .link {
  margin-bottom: 0;
}
body.page-your-child-and-you .mobile-carousel .slick-slider .slide__content .read-more {
  font-size: 18px;
}
body.page-your-child-and-you .mobile-carousel .slick-slider .slick__arrow {
  top: 40%;
}
body.page-your-child-and-you .mobile-carousel.recent-articles-mobile {
  margin-top: 60px;
}
body.page-your-child-and-you .pane-highlights-4cs-view-panel-pane-1 {
  margin-top: 50px;
}
body.page-your-child-and-you .view-footer {
  font-size: 18px;
  margin: 15px 0 40px;
  text-align: center;
}
body.page-your-child-and-you .view-footer a {
  color: #02546f;
}
body.page-your-child-and-you .view-footer a:after {
  content: ' \00bb';
}
@media (min-width: 62em) {
  body.page-your-child-and-you .view-footer {
    margin: 20px 0;
  }
}
body.page-your-child-and-you .home__pane, body.page-your-child-and-you .home-editors-picks {
  display: none;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.page-your-child-and-you .mobile-carousel {
    display: none;
  }
  body.page-your-child-and-you .home__pane {
    display: block;
    margin-top: 45px;
    padding-bottom: 20px;
    border: 1px solid #F3F3F3;
  }
  body.page-your-child-and-you .home__pane .pane-title {
    color: #555555;
    font-size: 1.250em;
    font-weight: 300;
    line-height: normal;
    margin: 20px 0 30px;
    text-align: left;
    text-transform: uppercase;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em) and (min-width: 62em), (min-width: 48em) and (min-width: 62em) and (min-width: 62em) {
  body.page-your-child-and-you .home__pane--left {
    padding: 0 5px 0 35px;
    border-right: 0;
  }
  body.page-your-child-and-you .home__pane--right {
    padding: 0 35px 0 5px;
    border-left: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.page-your-child-and-you .home__pane.pane-hfc-editors-picks-editors-picks-view {
    clear: both;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked {
    border: 0;
    margin: 0 0 40px;
    height: 150px;
    padding: 0;
    position: relative;
    width: 100%;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked p {
    font-size: 1em;
    line-height: 1.1em;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked:last-child {
    margin-bottom: 45px;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .image-wrapper {
    clip: rect(0, 120px, 140px, 0);
    position: absolute;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .image-wrapper img {
    height: 140px;
    max-width: none;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .image-wrapper.confident img {
    border-bottom: 4px solid #9ad86d;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .image-wrapper.creative img {
    border-bottom: 4px solid #fbcd51;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .image-wrapper.caring img {
    border-bottom: 4px solid #4ca0d8;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .image-wrapper.curious img {
    border-bottom: 4px solid #fe8c67;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .icon {
    left: 88px;
    position: absolute;
    top: 108px;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .icon img {
    height: 34px;
    width: 34px;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .link {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px 130px;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .info {
    margin: 0 0 0 130px;
    padding-bottom: 15px;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .info p {
    margin: 0;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .read-more {
    bottom: 0;
    right: 0;
    width: 100%;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .read-more .node-readmore {
    font-size: 16px;
    font-style: normal;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em) and (min-width: 62em), (min-width: 48em) and (min-width: 62em) and (min-width: 62em) {
  body.page-your-child-and-you .home__pane .home-item--stacked .read-more .node-readmore {
    text-align: left;
    margin-left: 130px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.page-your-child-and-you .home__pane .home-item--stacked .read-more .node-readmore a {
    color: #02546f;
    text-decoration: none;
  }
  body.page-your-child-and-you .home__pane .home-item--stacked .read-more a:after {
    content: '\00bb';
  }
  body.page-your-child-and-you .home-editors-picks {
    display: block;
    border: 0;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em) and (min-width: 62em), (min-width: 48em) and (min-width: 62em) and (min-width: 62em) {
  body.page-your-child-and-you .home-editors-picks {
    margin: 30px 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.page-your-child-and-you .home-editors-picks .pane-title {
    color: #555555;
    font-size: 1.250em;
    font-weight: 300;
    line-height: normal;
    margin: 20px 0 30px;
    text-align: left;
    text-transform: uppercase;
  }
  body.page-your-child-and-you .home-editors-picks .pane-title {
    margin-left: 15px;
  }
}

body.node-type-parents-q-a .content_header_title {
  margin: 15px;
  width: 100%;
}
@media only screen and (max-width: 61.9375em) {
  body.node-type-parents-q-a .content_header_title {
    float: left;
  }
}
body.node-type-parents-q-a .content_header_icon {
  top: auto;
}
@media (min-width: 62em) {
  body.node-type-parents-q-a .content_header_icon {
    top: 0;
  }
}
body.node-type-parents-q-a .pane-node-field-parents-q-a-portrait {
  margin: 0 15px 25px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-q-a .pane-node-field-parents-q-a-portrait {
    float: left;
  }
}

body.node-type-parents-q-a .pane-node-field-parents-q-a-portrait img {
  width: 155px;
  height: 145px;
}
body.node-type-parents-q-a .parents_qa_intro {
  color: #555555;
  font-size: 16px;
  line-height: 20px;
  margin: 0 15px;
}
body.node-type-parents-q-a .pane-node-field-parents-q-a-body {
  border-bottom: 2px dotted #7f7f7f;
  clear: both;
  color: #555555;
  font-size: 16px;
  line-height: 20px;
  margin: 0 15px 30px;
}
body.node-type-parents-q-a .faqfield-question {
  color: #555555;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin: 25px 0;
  padding-left: 35px;
}
@media (min-width: 62em) {
  body.node-type-parents-q-a .faqfield-question {
    padding-left: 65px;
  }
}
body.node-type-parents-q-a .faqfield-question:before {
  content: "Q.";
  font-size: 20px;
  margin-left: -35px;
  margin-top: -4px;
  line-height: 29px;
  position: absolute;
}
@media (min-width: 62em) {
  body.node-type-parents-q-a .faqfield-question:before {
    font-size: 32px;
    line-height: normal;
    margin-left: -65px;
  }
}
body.node-type-parents-q-a .faqfield-answer {
  margin: 25px 0 25px 35px;
  position: relative;
}
@media (min-width: 62em) {
  body.node-type-parents-q-a .faqfield-answer {
    margin-left: 65px;
  }
}
body.node-type-parents-q-a .faqfield-answer p {
  padding-left: 35px;
}
@media (min-width: 62em) {
  body.node-type-parents-q-a .faqfield-answer p {
    padding-left: 58px;
  }
}
body.node-type-parents-q-a .faqfield-answer:before {
  content: "A.";
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  position: absolute;
}
@media (min-width: 62em) {
  body.node-type-parents-q-a .faqfield-answer:before {
    font-size: 32px;
    line-height: normal;
    margin-left: 0;
    margin-top: 0;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-blog .pane-node-field-parents-story-tile {
    float: left;
    margin-bottom: 32px;
  }
}

body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.clearfix, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.container, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.row,
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.footermap,
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.region-header {
  clear: none;
}
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.clearfix:after, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.container:after, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.row:after,
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.footermap:after,
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-collection-view.region-header:after {
  clear: none;
}
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-name-field-tile-dimensions {
  display: none;
}
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item header {
  display: none;
}
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item img {
  width: 100%;
}
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item .field-label {
  display: none;
}
body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item .field-name-field-tile-image {
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item .field-name-field-tile-image {
    margin: 0;
  }
}

body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item .field-name-field-tile-caption {
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item .field-name-field-tile-caption {
    margin: 0;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_12_by_6, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_6_by_6, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_6_by_3, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_3_by_3 {
    float: left;
    height: 0;
    overflow: hidden;
    padding: 10px;
    position: relative;
    text-overflow: ellipsis;
  }
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_12_by_6 .field-name-field-tile-caption, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_6_by_6 .field-name-field-tile-caption, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_6_by_3 .field-name-field-tile-caption, body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_3_by_3 .field-name-field-tile-caption {
    background-color: #ffffff;
    bottom: 0;
    max-height: 50%;
    position: absolute;
    width: 100%;
  }
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_12_by_6 {
    padding-bottom: 50%;
    width: 100%;
  }
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_6_by_6 {
    padding-bottom: 50%;
    width: 50%;
  }
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_6_by_3 {
    padding-bottom: 25%;
    width: 50%;
  }
  body.node-type-parents-blog .pane-node-field-parents-story-tile .field-item.tile_dimension_3_by_3 {
    padding-bottom: 25%;
    width: 25%;
  }
}

body.node-type-parents-blog .pane-node-body p {
  color: #555555;
  font-size: 16px;
  line-height: 20px;
  margin: 25px 0;
}
body.node-type-parents-blog .pane-node-body blockquote {
  background: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/quote.png?yocs=_&yoloc=eu") left top no-repeat;
  border: 0;
  color: #777777;
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  line-height: 24px;
  padding: 36px 18px 0 36px;
  margin: -25px 0 25px -36px;
  width: 260px;
}
@media screen and (min-width: 1024px) {
  body.node-type-parents-blog .pane-node-body blockquote {
    float: left;
  }
}
body.node-type-parents-blog .parents_tags {
  clear: both;
  font-size: 20px;
  line-height: 20px;
  margin: 32px 0 15px;
  border-top: 2px dotted #7F7F7F;
  margin-bottom: 25px;
  padding-bottom: 0;
  padding-top: 15px;
}
body.node-type-parents-blog .parents_tags .pane-title {
  font-size: 20px;
  line-height: 20px;
  margin: 0 0 3px 0;
}
body.node-type-parents-blog .parents_tags .field-item {
  display: inline-block;
  margin-right: 5px;
}
body.node-type-parents-blog .parents_tags .field-item a {
  color: #44c3d5;
}
body.node-type-parents-blog .share_pane {
  margin-left: 0px;
  width: 100%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-blog .horizontal-list {
    border: 0;
  }
}

body.node-type-parents-listing-page .parents_listing_header_author-date {
  margin: -2px -15px 0;
  overflow: hidden;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_author-date {
    margin: 20px -15px 0;
  }
}
body.node-type-parents-listing-page .parents_listing_header_author {
  color: #8f8f8f;
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-right: 5px;
  margin-bottom: 10px;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_author {
    font-size: 20px;
  }
}
body.node-type-parents-listing-page .parents_listing_header_author .pane-title {
  display: none;
}
body.node-type-parents-listing-page .parents_listing_header_date {
  color: #8f8f8f;
  float: left;
  font-size: 16px;
  line-height: normal;
  padding-right: 15px;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_date {
    font-size: 20px;
  }
}
body.node-type-parents-listing-page .parents_listing_header_date .pane-title {
  display: none;
}
body.node-type-parents-listing-page .parents_listing_header_date:before {
  content: "|";
}
body.node-type-parents-listing-page .parents_listing_header_title {
  color: #ff8b69;
  font-size: 24px;
  font-weight: bold;
  line-height: 29px;
  padding-right: 50px;
  width: 100%;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_title {
    font-size: 32px;
    line-height: normal;
    width: 62%;
  }
}
body.node-type-parents-listing-page .parents_listing_header_title.term_creative {
  color: #fbcd51;
}
body.node-type-parents-listing-page .parents_listing_header_title.term_confident {
  color: #9ad86d;
}
body.node-type-parents-listing-page .parents_listing_header_title.term_caring {
  color: #4ca0d8;
}
body.node-type-parents-listing-page .parents_listing_header_title.term_curious {
  color: #fe8c67;
}
body.node-type-parents-listing-page .parents_listing_header_title .pane-title {
  display: none;
}
body.node-type-parents-listing-page .parents_listing_header_title h1 {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
body.node-type-parents-listing-page .parents_listing_header_subtitle {
  color: #595959;
  font-size: 20px;
  font-weight: bold;
  line-height: 29px;
  padding-right: 50px;
  width: 100%;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_subtitle {
    font-size: 32px;
    line-height: normal;
    margin: 0 0 20px;
    width: 62%;
  }
}
body.node-type-parents-listing-page .parents_listing_header_subtitle .pane-title {
  display: none;
}
body.node-type-parents-listing-page .parents_listing_header_icon {
  position: absolute;
  right: 10px;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_icon {
    top: auto;
  }
}
body.node-type-parents-listing-page .parents_listing_header_icon img {
  height: 42px;
  width: 42px;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_icon img {
    height: 62px;
    width: 62px;
  }
}
body.node-type-parents-listing-page .parents_listing_header_title {
  margin-bottom: 40px;
  width: 100%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_title {
    margin-left: 15px;
  }
}

body.node-type-parents-listing-page .parents_listing_header_author {
  margin-left: 15px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-listing-page .parents_listing_header_author {
    margin-left: 30px;
  }
}

body.node-type-parents-listing-page .pane-node-body {
  border-bottom: 2px dotted #7f7f7f;
  color: #555555;
  margin: 30px 15px;
}
body.node-type-parents-listing-page .pane-node-body .field-items {
  padding-top: 1px;
}
body.node-type-parents-listing-page .pane-node-body p {
  color: #555555;
  font-size: 16px;
  line-height: 20px;
  margin: 25px 0;
}
body.node-type-parents-listing-page .pane-node-body .media-element {
  display: block;
  margin: 25px 0;
}
body.node-type-parents-listing-page .field-type-text-with-summary {
  clear: both;
}
body.node-type-parents-listing-page .pane-node-field-listing-items {
  border-bottom: 2px dotted #7f7f7f;
  margin: 30px 15px;
  padding-bottom: 25px;
}
body.node-type-parents-listing-page div.node-parents-listing-item {
  margin-bottom: 40px;
}
body.node-type-parents-listing-page div.node-parents-listing-item .item__title {
  color: #92B7BB;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-listing-page div.node-parents-listing-item .item__title {
    font-size: 20px;
    margin-top: 0;
  }
}

body.node-type-parents-listing-page div.node-parents-listing-item .item__title .pane-title {
  display: none;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page div.node-parents-listing-item .field-name-field-landing-item-image img {
    height: 110px;
  }
}
body.node-type-parents-listing-page div.node-parents-listing-item .field-name-field-landing-item-text {
  font-size: 16px;
  line-height: 1.25em;
}
@media (min-width: 62em) {
  body.node-type-parents-listing-page .share_pane {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 61.9375em) {
  body.node-type-parents-listing-page .horizontal-list {
    border: 0;
    margin-top: 0;
  }
}

body.node-type-parents-quiz {
  counter-reset: questions;
}
body.node-type-parents-quiz .parents_feature_image {
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-quiz .parents_feature_image {
    margin-bottom: 50px;
  }
}

body.node-type-parents-quiz .content_header_title {
  width: 100%;
}
body.node-type-parents-quiz .content_header_subtitle {
  width: 100%;
}
body.node-type-parents-quiz .pane-node-field-quiz-question {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-top: 25px;
}
body.node-type-parents-quiz .pane-node-field-quiz-question:before {
  counter-increment: questions;
  content: "Question " counter(questions) " ";
}
body.node-type-parents-quiz .pane-node-field-quiz-answer {
  margin: 10px 0;
  overflow: hidden;
}
body.node-type-parents-quiz .quiz_answer {
  display: table;
  font-size: 16px;
  font-weight: 300;
  margin: 5px 0;
  width: 100%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-quiz .quiz_answer {
    float: left;
    width: 50%;
  }
}

body.node-type-parents-quiz .quiz_answer_radio,
body.node-type-parents-quiz .quiz_answer_text {
  display: table-cell;
  vertical-align: top;
}
body.node-type-parents-quiz .quiz_answer_radio {
  width: 25px;
}
body.node-type-parents-quiz .quiz_answer_radio input {
  width: 20px;
}
body.node-type-parents-quiz .quiz_answer_text {
  padding-right: 30%;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-quiz .quiz_answer_text {
    padding-right: 10%;
  }
}

@media (min-width: 62em) {
  body.node-type-parents-quiz .quiz_answer_text {
    padding-right: 30%;
  }
}
body.node-type-parents-quiz .field-name-field-quiz-results {
  margin: 15px 0;
}
body.node-type-parents-quiz .results-pane.disabled .pane-title {
  background-color: #8F8F8F;
  color: #BFBFBF;
}
body.node-type-parents-quiz .results-pane.disabled .pane-title:hover {
  cursor: default;
}
body.node-type-parents-quiz .results-pane .pane-title {
  background-color: #BD0D1A;
  border-radius: 5px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.5em;
  letter-spacing: 0;
  margin: 30px auto;
  max-width: 165px;
  text-align: center;
}
body.node-type-parents-quiz .results-pane .pane-title:before {
  content: 'See ';
}
body.node-type-parents-quiz .results-pane .field-name-field-quiz-results {
  display: none;
}
body.node-type-parents-quiz .results-pane.open .pane-title:before {
  content: none;
}
body.node-type-parents-quiz .results-pane.open .field-name-field-quiz-results {
  display: block;
}
body.node-type-parents-quiz .share_pane {
  border: 0;
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .page-topics #your-child-and-you {
    margin-right: 30px;
    margin-bottom: 110px;
  }
}

@media (min-width: 62em) {
  .page-topics #your-child-and-you {
    margin-bottom: 30px;
  }
}
.page-topics .radix-layouts-content .pane-fieldable-panels-pane .pane-title {
  color: #555555;
  font-size: 32px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding-top: 8px;
  text-transform: uppercase;
}
.page-topics .radix-layouts-content .pane-fieldable-panels-pane p {
  color: #8f8f8f;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}
@media (min-width: 62em) {
  .page-topics .radix-layouts-content .pane-fieldable-panels-pane p {
    margin-bottom: 15px;
    min-height: 85px;
  }
}
.page-topics .radix-layouts-sidebar .pane-highlights-4cs-view-panel-pane-1 {
  display: none;
}
.page-topics .header-pane {
  margin: 0 15px;
}
.page-topics .filter-pane--drop-down form {
  display: none;
}
.page-topics .filter-pane--drop-down form .form-item label {
  width: auto;
}
.page-topics .filter-pane--drop-down .pane-title {
  background-color: #BD0D1A;
  border-radius: 5px;
  color: #FFFFFF;
  letter-spacing: 0;
  margin: 0 25px;
  text-align: center;
}
.page-topics .filter-pane--drop-down .pane-title a,
.page-topics .filter-pane--drop-down .pane-title a:hover,
.page-topics .filter-pane--drop-down .pane-title a:active,
.page-topics .filter-pane--drop-down .pane-title a:focus {
  color: #FFFFFF;
  text-decoration: none;
}
.page-topics .filter-pane--drop-down.open form {
  border: 2px solid #BD0D1A;
  border-radius: 5px;
  display: block;
  margin-top: -6px;
}

body.node-type-parents-podcast audio {
  width: 94%;
}
body.node-type-parents-podcast .content_header_subtitle {
  margin-bottom: 0;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-podcast .content_header_title,
  body.node-type-parents-podcast .content_header_subtitle {
    width: 75%;
  }
}

body.node-type-parents-podcast .audio_buttons {
  padding-top: 15px;
  position: absolute;
  right: 98px;
}
@media only screen and (max-width: 61.9375em) {
  body.node-type-parents-podcast .audio_buttons {
    position: relative;
    right: 0;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-podcast .audio_buttons {
    width: auto;
  }
}

body.node-type-parents-podcast .audio_buttons .btn, body.node-type-parents-podcast .audio_buttons .panel-display.product_page .container-fluid > .row .form-submit, .panel-display.product_page .container-fluid > .row body.node-type-parents-podcast .audio_buttons .form-submit {
  background-color: #BD0D1A;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 1.25em;
  font-weight: 700;
  margin: 0 5px;
  padding: 5px;
  text-align: center;
}
body.node-type-parents-podcast .audio_buttons .btn:hover, body.node-type-parents-podcast .audio_buttons .panel-display.product_page .container-fluid > .row .form-submit:hover, .panel-display.product_page .container-fluid > .row body.node-type-parents-podcast .audio_buttons .form-submit:hover, body.node-type-parents-podcast .audio_buttons .btn:focus, body.node-type-parents-podcast .audio_buttons .panel-display.product_page .container-fluid > .row .form-submit:focus, .panel-display.product_page .container-fluid > .row body.node-type-parents-podcast .audio_buttons .form-submit:focus, body.node-type-parents-podcast .audio_buttons .btn:active, body.node-type-parents-podcast .audio_buttons .panel-display.product_page .container-fluid > .row .form-submit:active, .panel-display.product_page .container-fluid > .row body.node-type-parents-podcast .audio_buttons .form-submit:active {
  text-decoration: none;
}
body.node-type-parents-podcast .audio_buttons .btn.subscribe, body.node-type-parents-podcast .audio_buttons .panel-display.product_page .container-fluid > .row .subscribe.form-submit, .panel-display.product_page .container-fluid > .row body.node-type-parents-podcast .audio_buttons .subscribe.form-submit {
  display: none;
}
body.node-type-parents-podcast .podcast_body {
  clear: none;
}
body.node-type-parents-podcast .chapters {
  border-bottom: 2px dotted #7f7f7f;
  clear: both;
  margin: 15px;
  padding: 0 0 15px;
}
@media only screen and (max-width: 47.9375em) {
  body.node-type-parents-podcast .chapters {
    margin-left: 0;
  }
}
body.node-type-parents-podcast .chapters .item a {
  border: 1px solid #EEEEEE;
  font-size: 1.25em;
  font-weight: 500;
  margin: 6px 7px;
  min-height: 74px;
  padding: 20px 0px 15px 15px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-podcast .chapters .item a {
    width: 47%;
  }
}

@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-podcast .chapters .item a {
    font-size: 1em;
  }
}

body.node-type-parents-podcast .chapters .item .podcast_track_number {
  padding-right: 0;
  width: 28%;
}
@media only screen and (max-width: 47.9375em) {
  body.node-type-parents-podcast .chapters .item .podcast_track_number {
    width: 36%;
  }
}
body.node-type-parents-podcast .chapters .item .podcast_track_number:before {
  content: '\25B6';
  float: left;
  font-size: 2em;
  margin-right: 5px;
  margin-left: -18px;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-podcast .chapters .item .podcast_track_number:before {
    font-size: 1.5em;
    margin-left: -25px;
  }
}

body.node-type-parents-podcast .chapters .item .podcast_chapter {
  width: 72%;
}
@media only screen and (max-width: 47.9375em) {
  body.node-type-parents-podcast .chapters .item .podcast_chapter {
    width: 64%;
  }
}
body.node-type-parents-podcast .chapters .item.played .podcast_track_number:before {
  content: '\21BA';
}
body.node-type-parents-podcast .chapters .item.active a {
  color: #92B7BB;
}
body.node-type-parents-podcast .parents_tags {
  padding-left: 0;
}
body.node-type-parents-podcast .horizontal-list {
  border: 0;
  margin-top: 0;
  padding-top: 0;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  body.node-type-parents-podcast .horizontal-list {
    float: left;
  }
}

body.node-type-parents-podcast .radix-layouts-sidebar {
  float: left;
}

.photoswipe-gallery > .field.field-name-field-store-images > .field-items {
  text-align: center;
}
.photoswipe-gallery > .field.field-name-field-store-images > .field-items > .field-item:not(:first-child) {
  display: none;
}

.photo-gallery-button {
  margin-top: 15px;
  text-align: center;
}
.photo-gallery-button a {
  display: block;
  max-width: 365px;
  margin-left: auto;
  margin-right: auto;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: solid 1px #E02619;
  color: #E02619;
  font-family: "Montserrat", Verdana, sans-serif;
  font-size: 14px;
  font-weight: 300;
  -moz-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.photo-gallery-button a.book:after {
  font-family: hfcicons;
  content: ' \e016';
}
.photo-gallery-button a:hover {
  text-decoration: none;
  color: white;
  background-color: #E02619;
}

.product-grow-with-highlights {
  text-align: center;
}
.product-grow-with-highlights h2.pane-title {
  font-weight: 300;
  font-size: 30px;
  margin: 0;
}
@media only screen and (max-width: 47.9375em) {
  .product-grow-with-highlights h2.pane-title {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-grow-with-highlights h2.pane-title {
    text-align: left;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-grow-with-highlights .view-content .views-row {
    font-size: 0;
  }
}

.product-grow-with-highlights .views-field-field-gwh-image-override {
  max-width: 250px;
  margin: 20px auto;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-grow-with-highlights .views-field-field-gwh-image-override {
    display: inline-block;
    width: 25%;
    vertical-align: middle;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-grow-with-highlights .views-field-field-gwh-text-override {
    display: inline-block;
    width: 75%;
    vertical-align: middle;
  }
}

.product-grow-with-highlights .views-field-field-gwh-text-override .field-content {
  font-family: "Merriweather", serif;
  margin: 20px 0;
  font-size: 15.5px;
  line-height: 2em;
  text-align: left;
}
@media only screen and (max-width: 47.9375em) {
  .product-grow-with-highlights .views-field-field-gwh-text-override .field-content {
    line-height: 1.9em;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .product-grow-with-highlights .views-field-field-gwh-text-override .field-content {
    font-size: 18px;
  }
}

@media (min-width: 62em) {
  .product-grow-with-highlights .views-field-field-gwh-text-override .field-content {
    font-size: 20px;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-grow-with-highlights .views-field-field-gwh-text-override .field-content {
    padding-left: 40px;
  }
}

.header {
  z-index: 1000;
  width: 100%;
  font-family: 'Montserrat', Verdana, sans-serif;
  padding: 0 10px;
  box-sizing: border-box;
}
.header .block {
  margin-bottom: 0;
}
.header a {
  display: block;
}
.header a:hover {
  text-decoration: none;
}
.header > div {
  margin-left: -10px;
  margin-right: -10px;
}
.header > .header__region {
  background: rgba(252, 249, 245, 0.95);
  border-bottom: solid 1px #e02619;
  position: relative;
  height: 52px;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header > .header__region {
    height: 60px;
  }
}

@media (min-width: 62em) {
  .header > .header__region {
    height: 74px;
  }
}
.header > .header__region #main-logo {
  float: left;
  padding: 0 0.625em;
}
.header > .header__region #main-logo img {
  margin-top: 12px;
  width: 120px;
  max-height: 50px;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header > .header__region #main-logo img {
    margin-top: 10px;
    width: 90px;
    max-height: 40px;
  }
}

@media only screen and (max-width: 47.9375em) {
  .header > .header__region #main-logo img {
    margin-top: 11px;
    width: 71.5px;
    max-height: 30px;
  }
}
.header > .header__region a {
  color: #5B4D4E;
  font-size: 12px;
  white-space: nowrap;
}

.header-fixed {
  position: fixed;
}

#colorbox #cboxClose {
  top: 0;
  right: 0;
}

#cboxLoadedContent {
  margin-top: 28px;
  margin-bottom: 0;
}

.header #block-menu-menu-blog-header-menu {
  font-family: 'Montserrat', Verdana, sans-serif;
  font-weight: 300;
  max-width: 1140px;
  cursor: pointer;
}
@media only screen and (max-width: 61.9375em) {
  .header #block-menu-menu-blog-header-menu {
    display: none;
  }
}
.header #block-menu-menu-blog-header-menu ul {
  margin: 0;
  text-align: center;
}
.header #block-menu-menu-blog-header-menu > ul.menu {
  margin: 0;
  line-height: 80px;
}
.header #block-menu-menu-blog-header-menu > ul.menu li {
  cursor: pointer;
  list-style: none none;
}
.header #block-menu-menu-blog-header-menu > ul.menu ul {
  display: none;
  padding: 0;
}
.header #block-menu-menu-blog-header-menu > ul.menu a {
  padding: 0 1em;
}
.header #block-menu-menu-blog-header-menu > ul.menu a:hover {
  color: #E02619;
  text-decoration: none;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li {
  float: left;
  position: relative;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li.open:after {
  content: '\f0d8';
  font-family: fontawesome;
  left: calc(50% - 3px);
  bottom: -1px;
  position: absolute;
  line-height: normal;
  color: #E02619;
  font-size: 12px;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > a {
  line-height: 74px;
  position: relative;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul {
  position: absolute;
  border: solid 1px red;
  border-top: solid 3px red;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  line-height: 45px;
  top: 70px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 200px;
  max-width: 243px;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul a {
  outline: none;
  line-height: 45px;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li:not(.is-leaf) > a:after {
  content: ' \f107';
  font-family: fontawesome;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li:not(.is-leaf).open > a {
  color: #E02619;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li:not(.is-leaf).open > a:after {
  content: ' \f106';
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li:not(.is-leaf).open > ul {
  display: block;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li > a.customer-service-menu-link {
  color: #127B89;
  font-size: 14px;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li > a.customer-service-menu-link:hover {
  color: #E02619;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li > a.customer-service-menu-link:after {
  font-family: fontawesome;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li > a.customer-service-menu-link.menu-phone-icon:after {
  content: '\00a0\f10b';
  font-size: 16px;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li > a.customer-service-menu-link.menu-chat-icon-with-carrot-down:after {
  content: '\00a0\f0e5\00a0\f107';
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li > a.customer-service-menu-link.menu-email-icon:after {
  content: '\00a0\f003';
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul li.open > a.customer-service-menu-link.menu-chat-icon-with-carrot-down:after {
  content: '\00a0\f0e5\00a0\f106';
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul > li:not(:first-child) {
  border-top: solid 1px #A59899;
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul > li > a {
  font-weight: normal;
  background-color: rgba(252, 249, 245, 0.95);
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul > li > ul a {
  background-color: rgba(255, 255, 255, 0.95);
}
.header #block-menu-menu-blog-header-menu > ul.menu > li > ul > li > ul > li {
  border-top: solid 1px #A59899;
}

.header .mobile-menu-toggle {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 62em) {
  .header .mobile-menu-toggle {
    display: none;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header .mobile-menu-toggle {
    width: 42px;
  }
}

@media only screen and (max-width: 47.9375em) {
  .header .mobile-menu-toggle {
    width: 40px;
  }
}
.header .mobile-menu-toggle > a {
  display: block;
  color: #E02619;
  outline: none;
  text-align: center;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header .mobile-menu-toggle > a {
    padding-top: 14.5px;
    padding-bottom: 14.5px;
    font-size: 15px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 47.9375em) {
  .header .mobile-menu-toggle > a {
    padding-top: 13.5px;
    padding-bottom: 13.5px;
    font-size: 13px;
    line-height: 15px;
  }
}
.header .mobile-menu-toggle > a:before {
  content: '\e00f';
  font-family: hfcicons;
  display: block;
  position: relative;
  left: -1px;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header .mobile-menu-toggle > a:before {
    font-size: 38px;
    line-height: 12px;
  }
}

@media only screen and (max-width: 47.9375em) {
  .header .mobile-menu-toggle > a:before {
    font-size: 30px;
    line-height: 10px;
  }
}
.header .mobile-menu-toggle > a.open:before {
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.header .region-mobile-navigation {
  font-family: 'Montserrat', Verdana, sans-serif;
  display: none;
  position: fixed;
  z-index: 1000;
  width: 100%;
  line-height: 45px;
}
@media (min-width: 62em) {
  .header .region-mobile-navigation {
    display: none !important;
  }
}
.header .region-mobile-navigation a {
  outline: none;
}
.header .region-mobile-navigation li {
  cursor: pointer;
  list-style: none none;
}
.header .region-mobile-navigation li:not(.is-leaf) > a:after {
  content: ' \f0d7';
  font-family: fontawesome;
  font-size: 12px;
}
.header .region-mobile-navigation li:not(.is-leaf).open > a:after {
  content: ' \f0d8';
}
.header .region-mobile-navigation ul {
  margin: 0;
  text-align: center;
  padding: 0;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu {
  font-size: 16px;
  font-weight: 400;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu:last-child {
  border-bottom: solid 5px #E02619;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.5);
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu ul {
  display: none;
  font-weight: 300;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link {
  color: #127B89;
  font-size: 14px;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link:hover {
  color: #E02619;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link:after {
  font-family: fontawesome;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link.menu-phone-icon:after {
  content: '\00a0\f10b';
  font-size: 16px;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link.menu-chat-icon-with-carrot-down:after {
  content: '\00a0\f0e5\00a0\f107';
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link.menu-email-icon:after {
  content: '\00a0\f003';
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li.open > a.customer-service-menu-link.menu-chat-icon-with-carrot-down:after {
  content: '\00a0\f0e5\00a0\f106';
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link {
  font-size: 16px;
  color: #0EBECE;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li > a.customer-service-menu-link:hover {
  color: #FA9790;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu li.open > ul {
  display: block;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu > li > a {
  background-color: rgba(255, 255, 255, 0.95);
  color: #5B4D4E;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu > li > ul > li {
  background-color: rgba(91, 77, 78, 0.95);
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu > li > ul > li a {
  color: white;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu > li > ul > li > ul {
  border-top: solid 1px white;
  border-bottom: solid 1px white;
  margin: 0 15px;
}
.header .region-mobile-navigation .menu-block-wrapper > ul.menu > li > ul > li > ul > li > ul > li > a {
  font-size: 14px;
}

.header #nav-cart {
  font-weight: 300;
  float: right;
  text-align: center;
  overflow: hidden;
}
.header #nav-cart > a {
  line-height: 40px;
  padding: 0 10px 0;
  display: inline-block;
  vertical-align: middle;
  border-left: solid 1px #A59899;
}
@media (min-width: 62em) {
  .header #nav-cart > a {
    margin-top: 17px;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header #nav-cart > a {
    margin-top: 10px;
  }
}

.header #nav-cart > a:hover {
  color: #E02619;
}
.header #nav-cart > a:after {
  color: #E02619;
  content: '\e006';
  font-family: hfcicons;
  font-size: 24px;
  line-height: 31px;
}
@media (min-width: 62em) {
  .header #nav-cart > a:after {
    display: inline-block;
    vertical-align: middle;
    padding-left: 6px;
    font-size: 24px;
    line-height: 31px;
  }
}
@media only screen and (max-width: 61.9375em) {
  .header #nav-cart > a:after {
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    padding-left: 3px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .header #nav-cart > a {
    font-size: 10px;
    line-height: 10px;
    padding-top: 26px;
    padding-bottom: 2px;
    position: relative;
    margin-top: 7px;
  }
  .header #nav-cart > a:after {
    position: absolute;
    top: 4px;
    left: calc(50% - 14px);
    font-size: 20px;
    line-height: 20px;
  }
}

.header #block-search-form {
  font-weight: 300;
  float: right;
  line-height: 24px;
  margin-top: 22px;
  margin-right: 15px;
  border-bottom: solid 1px #A59899;
  position: relative;
  padding-bottom: 3px;
}
@media only screen and (max-width: 47.9375em) {
  .header #block-search-form {
    height: 52px;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header #block-search-form {
    height: 60px;
  }
}

.header #block-search-form .element-invisible {
  display: none;
}
.header #block-search-form .form-item {
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
.header #block-search-form .form-actions, .header #block-search-form .form-actions2 {
  cursor: pointer;
  position: relative;
  font-weight: 300;
  font-size: 24px;
  display: inline-block;
  vertical-align: top;
}
.header #block-search-form .form-actions:after, .header #block-search-form .form-actions2:after {
  font-family: hfcicons;
  content: '\e010';
  position: absolute;
  color: #E02619;
  line-height: 1em;
}
@media (min-width: 62em) {
  .header #block-search-form .form-actions:after, .header #block-search-form .form-actions2:after {
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header #block-search-form .form-actions:after, .header #block-search-form .form-actions2:after {
    right: 5px;
    top: 0;
  }
}

.header #block-search-form input[type=text] {
  font-weight: 300;
  background-color: transparent;
  border: none;
  font-size: 12px;
  width: 160px;
  outline: none;
}
.header #block-search-form input[type=submit] {
  color: #E02619;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 2px 12px;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 61.9375em) {
  .header #block-search-form {
    line-height: 60px;
    border: none;
    margin: 0 15px 0 0;
  }
  .header #block-search-form .form-actions, .header #block-search-form .form-actions2 {
    font-size: 0;
  }
  .header #block-search-form .form-actions > input, .header #block-search-form .form-actions2 > input {
    padding: 0;
    width: 0;
    height: 0;
  }
  .header #block-search-form .form-actions:before, .header #block-search-form .form-actions2:before {
    content: 'Search';
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
  }
  .header #block-search-form .form-actions:after, .header #block-search-form .form-actions2:after {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: static;
    padding-left: 5px;
  }
  .header #block-search-form .form-item-search-block-form {
    display: none;
    position: absolute;
    height: 45px;
    line-height: 45px;
    right: -50px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.95);
    float: left;
    border: solid 1px #5B4D4E;
    width: 250px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 61.9375em) and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .header #block-search-form .form-item-search-block-form {
    top: 60px;
  }
}

@media only screen and (max-width: 61.9375em) and (max-width: 47.9375em) {
  .header #block-search-form .form-item-search-block-form {
    top: 52px;
  }
}
@media only screen and (max-width: 61.9375em) {
  .header #block-search-form .form-item-search-block-form > input[type=text] {
    width: 100%;
  }
  .header #block-search-form.open {
    border-bottom: solid 3px #E02619;
  }
  .header #block-search-form.open .form-item-search-block-form {
    display: block;
  }
}
@media only screen and (max-width: 61.9375em) and (max-width: 47.9375em) {
  .header #block-search-form {
    line-height: 10px;
    min-width: 30px;
    padding: 0 3px;
    position: relative;
  }
  .header #block-search-form .form-actions:before, .header #block-search-form .form-actions2:before {
    font-size: 10px;
    margin-top: 7px;
    padding-top: 26px;
  }
  .header #block-search-form .form-actions:after, .header #block-search-form .form-actions2:after {
    position: absolute;
    top: 11px;
    left: calc(50% - 14px);
    font-size: 20px;
    line-height: 20px;
  }
}

#header .region-header-promotion {
  border-bottom: solid 1px black;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.95);
}
#header .region-header-promotion .promotion-view {
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  z-index: 1000;
  width: 100%;
  left: 0;
  font-family: 'Montserrat', Verdana, sans-serif;
}
#header .region-header-promotion .promotion-view .view-content {
  overflow: hidden;
}
#header .region-header-promotion .promotion-view .view-content .views-row {
  float: left;
  padding: 10px 0;
}
@media (max-width: 640px) {
  #header .region-header-promotion .promotion-view .view-content .views-row {
    padding: 0;
  }
}
@media (min-width: 768px) {
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(1), #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(1) ~ div {
    width: 100%;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(2), #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(2) ~ div {
    width: 50%;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(3), #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(3) ~ div {
    width: 33.33333%;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(1), #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(1) ~ div {
    width: 100%;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(2), #header .region-header-promotion .promotion-view .view-content .views-row:first-child:nth-last-child(2) ~ div {
    width: 50%;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:nth-child(2) ~ div {
    display: none;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:not(:last-child) {
    width: 50%;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:first-child:not(:last-child) ~ div {
    width: 50%;
  }
}
@media (max-width: 640px) {
  #header .region-header-promotion .promotion-view .view-content .views-row {
    width: 100%;
  }
  #header .region-header-promotion .promotion-view .view-content .views-row:nth-child(1) ~ div {
    display: none;
  }
}
#header .region-header-promotion .promotion-view .view-content .views-row:not(:first-child) > .promotion-cell, #header .region-header-promotion .promotion-view .view-content .views-row:not(:first-child) > .views-field {
  border-left: solid 1px black;
}
#header .region-header-promotion .promotion-view .view-content .views-row a {
  font-size: 20px;
  line-height: 40px;
  color: #372829;
  display: block;
}
@media (max-width: 1199px) {
  #header .region-header-promotion .promotion-view .view-content .views-row a {
    font-size: 18px;
    line-height: 40px;
  }
}
@media (max-width: 1023px) {
  #header .region-header-promotion .promotion-view .view-content .views-row a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 640px) {
  #header .region-header-promotion .promotion-view .view-content .views-row a {
    font-size: 14px;
    line-height: 30px;
  }
}
#header .region-header-promotion .promotion-view .view-content .views-row a:hover {
  color: #E02619;
}

/*
Structure in HTML (for now)
#footer{
  #footer_top{
    #block-menu-menu-blog-social-media-links
    #block-hfc-newsletter-signup-sub-mdb-fwap
  }
  #footer_base{
    #block-menu-menu-blog-footermap
  }
  #footer_bottom{
    //generic, html block, with #logo-copyright
    #block-menu-menu-blog-footer-menu
  }
}
*/
#footer_top {
  overflow: hidden;
  border-bottom: 1px solid #282222;
  background-color: white;
}
@media only screen and (max-width: 47.9375em) {
  #footer_top {
    border-bottom: 4px solid #E02619;
  }
}
#footer_top h2 {
  font-weight: normal;
  color: #5B4D4E;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #footer_top .block {
    float: left;
  }
}

.block-hfc-newsletter-signup {
  margin: 2em 0 0;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .block-hfc-newsletter-signup {
    width: 50%;
  }
}

@media only screen and (max-width: 47.9375em) {
  .block-hfc-newsletter-signup {
    border-top: solid 1px black;
    padding-top: 10px;
  }
}
.block-hfc-newsletter-signup h2 {
  font-size: 1.5em;
}
@media only screen and (max-width: 47.9375em) {
  .block-hfc-newsletter-signup h2 {
    text-align: center;
  }
}
.block-hfc-newsletter-signup h2:before {
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-email.png?yocs=_&yoloc=eu");
  padding-right: 5px;
}
.block-hfc-newsletter-signup .form-submit {
  background: #33cc99;
  font-family: "ITC Stone Sans II W01";
  border: none;
  color: #fff;
  height: 40px;
  padding: 0.625em 1.875em;
  -moz-border-radius: 0 0.3125em 0.3125em 0;
  -webkit-border-radius: 0;
  border-radius: 0 0.3125em 0.3125em 0;
  outline: none;
  vertical-align: top;
}
.block-hfc-newsletter-signup .form-submit:hover {
  background: #44e3ab;
}
.block-hfc-newsletter-signup form {
  margin: 0 0 14px;
}
@media only screen and (max-width: 47.9375em) {
  .block-hfc-newsletter-signup form {
    text-align: center;
  }
}
.block-hfc-newsletter-signup .form-item {
  margin: 0;
}
.block-hfc-newsletter-signup .form-type-item,
.block-hfc-newsletter-signup .form-type-textfield label {
  display: none;
}
.block-hfc-newsletter-signup .form-type-textfield {
  display: inline-block;
  margin-right: -3px;
  width: calc(100% - 85px);
  max-width: 300px;
}
.block-hfc-newsletter-signup input[type=text] {
  width: 12.5em;
  max-width: 100%;
  border: none;
  -moz-border-radius: 0.3125em 0 0 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em 0 0 0.3125em;
  padding: 0 1.25em;
  background-color: #f6f2eb;
  min-width: 100%;
  outline: none;
  height: 40px;
}

#block-menu-menu-blog-social-media-links {
  margin: 2em 0 0;
  text-align: center;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-social-media-links {
    width: 50%;
  }
}

@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-social-media-links {
    padding-left: 10px;
  }
}

#block-menu-menu-blog-social-media-links h2 {
  font-size: 1.5em;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-social-media-links h2 {
    text-align: left;
  }
}

#block-menu-menu-blog-social-media-links ul {
  text-align: center;
  margin-top: 0;
  font-size: 0;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-social-media-links ul {
    text-align: left;
    margin-left: -8px;
  }
}

#block-menu-menu-blog-social-media-links li {
  font-size: 100px;
  overflow: hidden;
  display: inline-block;
  max-width: 60px;
  width: 16.66667%;
  margin: 0;
}
#block-menu-menu-blog-social-media-links li:first-child {
  padding-left: 0;
  margin-left: 0;
}
#block-menu-menu-blog-social-media-links li:last-child {
  padding-right: 0;
  margin-right: 0;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-social-media-links li {
    padding: 0 8px;
  }
}

#block-menu-menu-blog-social-media-links li a {
  height: 40px;
  width: 40px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#block-menu-menu-blog-social-media-links li.facebook a {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-facebook.png?yocs=_&yoloc=eu);
}
#block-menu-menu-blog-social-media-links li.twitter a {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-twitter.png?yocs=_&yoloc=eu);
}
#block-menu-menu-blog-social-media-links li.pinterest a {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-pinterest.png?yocs=_&yoloc=eu);
}
#block-menu-menu-blog-social-media-links li.youtube a {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-youtube.png?yocs=_&yoloc=eu);
}
#block-menu-menu-blog-social-media-links li.instagram a {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-instagram.png?yocs=_&yoloc=eu);
}
#block-menu-menu-blog-social-media-links li.google-plus a {
  background-image: url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/social/icon-footer-gplus.png?yocs=_&yoloc=eu);
}

#footer_base {
  background: #FCF9F5;
}
@media only screen and (max-width: 47.9375em) {
  #footer_base {
    border-bottom: solid 4px #E02619;
  }
}

@media (min-width: 62em) {
  .hfc_homepage_footer_map_last {
    border-left: 2px solid #D5CBCB;
    padding-left: 5px;
  }
}
@media only screen and (max-width: 61.9375em) {
  .hfc_homepage_footer_map_last {
    border-left: none;
    padding-left: inherit;
  }
}
@media only screen and (max-width: 47.9375em) {
  .hfc_homepage_footer_map_last {
    border-left: none;
    padding-left: inherit;
  }
}

#block-menu-menu-blog-footermap {
  font-size: 11.5px;
}
#block-menu-menu-blog-footermap .email:before {
  content: ' \f0e0';
  font-family: fontawesome;
  padding-right: 2px;
}
@media only screen and (max-width: 47.9375em) {
  #block-menu-menu-blog-footermap ul {
    margin: 0;
  }
  #block-menu-menu-blog-footermap ul li {
    text-align: center;
  }
  #block-menu-menu-blog-footermap ul li a {
    color: #5B4D4E;
    display: block;
    font-weight: 400;
    outline: none;
  }
  #block-menu-menu-blog-footermap ul li a:focus {
    outline: none;
  }
  #block-menu-menu-blog-footermap ul li a:hover {
    text-decoration: none;
  }
  #block-menu-menu-blog-footermap .menu-column > a, #block-menu-menu-blog-footermap .menu-cell > a {
    display: none;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell) {
    border-bottom: solid 1px black;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell) > ul {
    display: none;
    border-top: solid 1px black;
    padding: 10px 0;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell) > ul a {
    font-size: 12px;
    font-weight: 300;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell) > a {
    font-size: 12px;
    font-weight: 400;
    line-height: 35px;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell) > a:after {
    content: ' \f107';
    font-family: fontawesome;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell).open > ul {
    display: block;
  }
  #block-menu-menu-blog-footermap .menu__item:not(.is-leaf):not(.menu-column):not(.menu-cell).open > a:after {
    content: ' \f106';
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-footermap {
    padding: 15px 0;
    margin-bottom: 0;
  }
  #block-menu-menu-blog-footermap a {
    color: #5B4D4E;
    display: block;
  }
  #block-menu-menu-blog-footermap ul {
    list-style: none none;
  }
  #block-menu-menu-blog-footermap ul li {
    display: block;
    line-height: 22px;
  }
  #block-menu-menu-blog-footermap > ul {
    overflow: hidden;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column {
    padding: 0 1.25em;
    float: left;
    width: 25%;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column:last-child {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em) and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (min-width: 48em) and (min-width: 62em) and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (min-width: 48em) and (max-width: 61.9375em) and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em), only screen and (min-width: 48em) and (min-width: 62em) and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-footermap > ul > li.menu-column {
    width: 33.33333%;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column:last-child {
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
    border-top: solid 1px #A59899;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column:last-child .menu-cell {
    float: left;
    padding: 0 20px;
    width: 33.33333%;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #block-menu-menu-blog-footermap > ul > li.menu-column > a {
    display: none;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column .menu-cell > a {
    display: none;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column > ul > li:not(.menu-cell) {
    margin: 0 0 1.25em;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column > ul > li:not(.menu-cell) > a {
    color: #E02619;
    font-weight: bold;
    pointer-events: none;
    cursor: default;
    margin-bottom: 0.3125em;
    border-bottom: 2px solid #D5CBCB;
  }
  #block-menu-menu-blog-footermap > ul > li.menu-column:last-child a:after {
    font-family: fontawesome;
    content: ' \f105';
    font-size: .8em;
  }
}

#footer_bottom {
  background: #372829;
  overflow: hidden;
  text-align: center;
  line-height: 55px;
  color: white;
}
@media only screen and (max-width: 47.9375em) {
  #footer_bottom {
    line-height: 40px;
  }
}
#footer_bottom a {
  color: white;
}
#footer_bottom .block {
  margin: 0;
}
#footer_bottom #logo-copyright img.logo {
  margin-right: 20px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #footer_bottom #logo-copyright {
    float: left;
    width: 40%;
    text-align: left;
  }
}

#footer_bottom #block-menu-menu-blog-footer-menu ul {
  text-align: center;
  margin: 0;
}
#footer_bottom #block-menu-menu-blog-footer-menu ul li {
  display: inline-block;
  padding: 0 10px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #footer_bottom #block-menu-menu-blog-footer-menu ul {
    text-align: right;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #footer_bottom #block-menu-menu-blog-footer-menu {
    float: left;
    width: 60%;
  }
}

#footer, .footer_nav {
  margin-top: 30px;
  color: #5B4D4E;
  font-size: 11px;
  font-weight: 300;
  padding: 0;
  font-family: 'Montserrat', Verdana, sans-serif;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  #footer, .footer_nav {
    border-top: 8px solid #E02619;
  }
}

@media only screen and (max-width: 47.9375em) {
  #footer, .footer_nav {
    border-top: 1px solid black;
  }
}
#footer .footer-inner, .footer_nav .footer-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}
#footer ul, #footer li, .footer_nav ul, .footer_nav li {
  list-style: none;
}

.pane-home-shop-selections-selected-products,
.pane-home-magazines-our-magazine-pane,
.pane-home-clubs-our-magazine-pane,
.pane-homepage-magazines-homepage-magazines,
.pane-homepage-merchandise-homepage-merchandise,
.pane-homepage-clubs-homepage-clubs {
  overflow: hidden;
}

.product-carousel {
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-size: 16px;
  border-top: solid 1px #A59899;
  margin: 2em 0;
  clear: both;
  text-align: center;
  position: relative;
  width: 100%;
  float: left;
}
.product-carousel p {
  font-family: 'Montserrat', Verdana, sans-serif;
  font-weight: 300;
  line-height: 20px;
}
.product-carousel a.link-block {
  display: block;
  outline: none;
}
.product-carousel a.link-block:hover {
  text-decoration: none;
}
.product-carousel .view-header {
  text-align: center;
  margin-top: -1.25em;
}
.product-carousel .view-header > p:first-child {
  color: #BC1108;
  display: inline-block;
  position: relative;
  font-size: 1.2em;
  padding: 0 50px;
  z-index: 0;
  line-height: 2.5em;
  font-weight: normal;
  margin: 0;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-header > p:first-child {
    padding: 0 25px;
    font-size: 1em;
  }
}
.product-carousel .view-header > p:first-child:after {
  content: '';
  display: block;
  border-top: 2.5em solid #A59899;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: 0;
  width: calc(100% - 20px);
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
}
.product-carousel .view-header > p:first-child:before {
  content: '';
  display: block;
  border-top: calc(2.5em - 2px) solid white;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  height: 0;
  width: calc(100% - 21px);
  position: absolute;
  z-index: -1;
  left: 1.5px;
  bottom: 1px;
}
.product-carousel .view-header > p:last-child {
  font-weight: 300;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-header > p:last-child {
    top: 15px;
  }
}
.product-carousel .view-header > p:last-child > a {
  color: #0EBECE;
  display: block;
  font-size: 14px;
}
.product-carousel .view-header > p:last-child > a:after {
  content: ' \f105';
  font-family: fontawesome;
}
.product-carousel .view-content {
  overflow: hidden;
  margin-bottom: 2em;
}
.product-carousel .view-content .views-slideshow-controls-top {
  margin-bottom: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 61.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top {
    margin-bottom: 10px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top {
  text-align: center;
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item {
  color: #A59899;
  display: inline-block;
  font-size: .75em;
  padding: 10px 15px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 61.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item {
    padding: 20px 10px 10px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item {
    padding: 20px 5px 10px;
  }
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-bullet-title,
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-product-carousel-name {
  font-weight: bold;
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item:after {
  content: '';
  display: block;
  border-radius: 50%;
  border: solid 1px #A59899;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -4px;
  left: calc(50% - 5px);
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item:after {
    width: 5px;
    height: 5px;
  }
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item.active {
  color: black;
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item.active:after {
  background-color: #E02619;
  border-color: #E02619;
}
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-product-carousel-name,
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-bullet-title,
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-age-text,
.product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-age {
  line-height: 1.3em;
}
@media (max-width: 967px) {
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-product-carousel-name,
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-bullet-title,
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-age-text,
  .product-carousel .view-content .views-slideshow-controls-top .widget_pager_top .views-slideshow-pager-field-item .views-field-field-age {
    display: none;
  }
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-pause {
  display: none;
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-previous {
  position: absolute;
  left: 0;
  z-index: 10;
  top: 200px;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-previous {
    top: 125px;
  }
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-previous > a {
  display: none;
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-previous:after {
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/product-carousel-angle.png?yocs=_&yoloc=eu");
  display: block;
  -moz-transform: rotate(180deg) scale(0.5);
  -ms-transform: rotate(180deg) scale(0.5);
  -webkit-transform: rotate(180deg) scale(0.5);
  transform: rotate(180deg) scale(0.5);
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-next {
  position: absolute;
  right: 0;
  z-index: 10;
  top: 200px;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-next {
    top: 125px;
  }
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-next > a {
  display: none;
}
.product-carousel .view-content .views-slideshow-controls-top .views-slideshow-controls-text .views-slideshow-controls-text-next:after {
  content: url("//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/product-carousel-angle.png?yocs=_&yoloc=eu");
  display: block;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.product-carousel .view-content .views_slideshow_cycle_main {
  width: 100%;
  float: left;
}
.product-carousel .view-content .views_slideshow_cycle_main .views-slideshow-cycle-main-frame {
  width: 100% !important;
  height: auto;
}
.product-carousel .view-content .views_slideshow_cycle_main .views-slideshow-cycle-main-frame-row {
  width: 100% !important;
  height: auto !important;
}
.product-carousel .view-content .views_slideshow_cycle_main .field-content {
  max-width: 100%;
  width: 100%;
}
.product-carousel .view-content .views_slideshow_cycle_main .field-content img {
  max-width: 100% !important;
  width: auto;
  height: auto !important;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .views_slideshow_cycle_main .field-content img {
    max-height: 280px;
  }
}
.product-carousel .view-content .product-carousel-item {
  overflow: hidden;
  font-size: 0;
  font-family: 'Montserrat', Verdana, sans-serif;
}
.product-carousel .view-content .product-carousel-item .product-carousel-column {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-column:first-child {
    padding-left: 50px;
    padding-right: 10px;
    width: 40%;
  }
  .product-carousel .view-content .product-carousel-item .product-carousel-column:last-child {
    padding-left: 10px;
    padding-right: 50px;
    width: 60%;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-column {
    width: 100%;
  }
  .product-carousel .view-content .product-carousel-item .product-carousel-column:first-child {
    padding: 0 50px;
  }
}
.product-carousel .view-content .product-carousel-item p, .product-carousel .view-content .product-carousel-item h2 {
  margin: 0;
}
.product-carousel .view-content .product-carousel-item a {
  color: #127B89;
}
.product-carousel .view-content .product-carousel-item .separator {
  border-top: solid 1px #A59899;
  margin: 15px 0;
}
.product-carousel .view-content .product-carousel-item form > p {
  font-size: .8em;
  color: #A59899;
  text-align: left;
}
@media (max-width: 967px) {
  .product-carousel .view-content .product-carousel-item form > p {
    display: none;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-title {
  color: #E02619;
  font-size: 1.875em;
  font-weight: bold;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-title {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-title {
    text-align: center;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-title {
    font-size: 1.25em;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-ages {
  color: #E02619;
  font-size: 1.25em;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-ages {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-ages {
    text-align: center;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-ages > div {
  display: inline-block;
}
.product-carousel .view-content .product-carousel-item .product-carousel-subtext {
  color: #5B4D4E;
  font-weight: bold;
  margin: 15px 0;
  text-align: left;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-subtext {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-subtext {
    text-align: center;
  }
}
@media (max-width: 967px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-subtext {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-terms {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-terms {
    text-align: center;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-terms > p, .product-carousel .view-content .product-carousel-item .product-carousel-terms > a {
  font-size: 12px;
  line-height: 1em;
  color: #E02619;
}
.product-carousel .view-content .product-carousel-item .product-carousel-terms > p:after, .product-carousel .view-content .product-carousel-item .product-carousel-terms > a:after {
  content: ' \f0da';
  font-family: fontawesome;
}
.product-carousel .view-content .product-carousel-item .product-carousel-terms > ul {
  margin: 15px 0;
  list-style: none none;
  font-size: 18px;
  color: #E02619;
}
.product-carousel .view-content .product-carousel-item .product-carousel-override {
  text-align: left;
  font-size: 1rem;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-override {
    text-align: center;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-override p, .product-carousel .view-content .product-carousel-item .product-carousel-override ul, .product-carousel .view-content .product-carousel-item .product-carousel-override ol, .product-carousel .view-content .product-carousel-item .product-carousel-override blockquote {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Montserrat", Verdana, sans-serif;
}
.product-carousel .view-content .product-carousel-item .product-carousel-override ul {
  padding-left: 30px;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine {
  clear: both;
  overflow: hidden;
  font-size: 24px;
  color: #E02619;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price-magazine {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price-magazine {
    text-align: center;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price-magazine {
    font-size: 18px;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine > div {
  display: inline-block;
  position: relative;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine > div:not(:first-child) {
  margin-left: 10px;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine > div:not(:first-child):before {
  position: absolute;
  top: 0;
  left: -10px;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine > div.field-name-field-issue-count:before {
  content: '|';
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine > div.field-name-field-price {
  font-weight: bold;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-magazine > div.field-name-field-price:before {
  content: '\00B7';
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-club {
  font-size: 24px;
  color: #E02619;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price-club {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price-club {
    text-align: center;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price-club {
    font-size: 18px;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-price-club > div {
  display: inline-block;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price {
  clear: both;
  overflow: hidden;
  font-size: 24px;
}
@media (min-width: 801px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price {
    text-align: center;
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price {
    font-size: 18px;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-price > div {
  display: inline-block;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price > div:first-child {
  color: #E02619;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price > div:not(:first-child) {
  font-size: .8em;
  margin-left: 30px;
  position: relative;
}
.product-carousel .view-content .product-carousel-item .product-carousel-price > div:not(:first-child):before {
  content: '\00B7';
  position: absolute;
  left: -20px;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price > div:not(:first-child) {
    font-size: .6em;
    margin-left: 20px;
  }
  .product-carousel .view-content .product-carousel-item .product-carousel-price > div:not(:first-child):before {
    left: -13px;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-price > div.field-name-field-product-free-shipping-flag {
  padding-right: 30px;
}
@media only screen and (max-width: 47.9375em) {
  .product-carousel .view-content .product-carousel-item .product-carousel-price > div.field-name-field-product-free-shipping-flag {
    padding-right: 20px;
  }
}
.product-carousel .view-content .product-carousel-item .product-carousel-price > div.field-name-field-product-free-shipping-flag:after {
  content: ' \f0d1';
  font-family: fontawesome;
  position: absolute;
  top: 0;
  right: 0;
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.product-carousel .view-content .product-carousel-item .product-carousel-links {
  margin: 20px 0;
}
.product-carousel .view-content .product-carousel-item .product-carousel-links a {
  border-radius: 5px;
  border: solid 1px #E02619;
  color: #E02619;
  background-color: white;
  padding: 10px;
  display: block;
}
.product-carousel .view-content .product-carousel-item .product-carousel-links a:hover {
  color: white;
  background-color: #E02619;
}
.product-carousel .view-content .product-carousel-item .product-carousel-links > div:first-child:nth-last-child(2) a {
  width: 40%;
  float: left;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.product-carousel .view-content .product-carousel-item .product-carousel-links > div:last-child:nth-child(2) a {
  width: 60%;
  float: left;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}
.product-carousel .view-content .product-carousel-item .product-carousel-form-buttons {
  margin: 20px 0;
  overflow: hidden;
}
.product-carousel .view-content .product-carousel-item .product-carousel-form-buttons input[type=button] {
  background-color: transparent;
  border: solid 1px #E02619;
  color: #E02619;
  margin: 0;
  line-height: 40px;
  display: block;
  float: left;
}
.product-carousel .view-content .product-carousel-item .product-carousel-form-buttons input[type=button]:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: 0;
  width: 40%;
}
.product-carousel .view-content .product-carousel-item .product-carousel-form-buttons input[type=button]:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 60%;
}
.product-carousel .view-content .product-carousel-item .product-carousel-form-buttons input[type=button]:hover {
  color: white;
  background-color: #E02619;
}
.product-carousel .view-content .product-carousel-item .product-carousel-form-buttons input[type=button]:focus {
  color: white;
  background-color: #BC1108;
}

.view-home-articles-activities {
  border-top: solid 1px #A59899;
  margin: 60px 0 0 0;
  text-align: center;
  position: relative;
  clear: both;
}
.view-home-articles-activities .view-header {
  text-align: center;
  margin-top: -1.25em;
}
.view-home-articles-activities .view-header p {
  font-family: 'Montserrat', Verdana, sans-serif;
}
.view-home-articles-activities .view-header > p:first-child {
  color: #BC1108;
  display: inline-block;
  position: relative;
  font-size: 1.2em;
  padding: 0 50px;
  z-index: 0;
  line-height: 2.5em;
  font-weight: normal;
  margin: 0;
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-header > p:first-child {
    padding: 0 25px;
    font-size: 1em;
  }
}
.view-home-articles-activities .view-header > p:first-child:after {
  content: '';
  display: block;
  border-top: 2.5em solid #A59899;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: 0;
  width: calc(100% - 20px);
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: 0;
}
.view-home-articles-activities .view-header > p:first-child:before {
  content: '';
  display: block;
  border-top: calc(2.5em - 2px) solid white;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  height: 0;
  width: calc(100% - 21px);
  position: absolute;
  z-index: -1;
  left: 1.5px;
  bottom: 1px;
}
.view-home-articles-activities .view-content {
  clear: both;
  overflow: hidden;
  margin-top: 20px;
  margin-right: -15px;
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content {
    margin-left: -10px;
    margin-right: -10px;
  }
  .view-home-articles-activities .view-content > div {
    padding-bottom: 30px;
    margin-bottom: 10px;
  }
}
.view-home-articles-activities .view-content > div {
  padding-right: 15px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .view-home-articles-activities .view-content > div {
    float: left;
    width: 33.33333%;
  }
  .view-home-articles-activities .view-content > div:nth-child(1) {
    width: 50%;
  }
  .view-home-articles-activities .view-content > div:nth-child(2) {
    width: 50%;
  }
  .view-home-articles-activities .view-content > div:nth-child(3n+3) {
    clear: left;
  }
}

@media (min-width: 62em) {
  .view-home-articles-activities .view-content > div:nth-child(1) .home-article-item .field-name-field-article-image .field-item, .view-home-articles-activities .view-content > div:nth-child(2) .home-article-item .field-name-field-article-image .field-item {
    height: 300px;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .view-home-articles-activities .view-content > div:nth-child(1) .home-article-item .field-name-field-article-image .field-item, .view-home-articles-activities .view-content > div:nth-child(2) .home-article-item .field-name-field-article-image .field-item {
    height: 220px;
  }
}

@media (min-width: 62em) {
  .view-home-articles-activities .view-content > div:nth-child(n+3) .home-article-item .field-name-field-article-image .field-item {
    height: 260px;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .view-home-articles-activities .view-content > div:nth-child(n+3) .home-article-item .field-name-field-article-image .field-item {
    height: 160px;
  }
}

.view-home-articles-activities .view-content > div .home-article-item {
  text-align: left;
  overflow: hidden;
}
.view-home-articles-activities .view-content > div .home-article-item a {
  display: block;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .view-home-articles-activities .view-content > div .home-article-item a .field-name-field-article-image .field-item {
    position: relative;
    overflow: hidden;
  }
  .view-home-articles-activities .view-content > div .home-article-item a .field-name-field-article-image .field-item:not(.width-overflow) > img {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
  }
  .view-home-articles-activities .view-content > div .home-article-item a .field-name-field-article-image .field-item.width-overflow > img {
    height: 100%;
    width: auto;
    position: absolute;
    max-width: none;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item a .field-name-field-article-image {
    width: 40%;
    float: left;
    padding-right: 10px;
  }
  .view-home-articles-activities .view-content > div .home-article-item a .field-name-field-article-image img {
    max-width: 100%;
    max-height: 200px;
  }
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text {
  float: left;
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text {
    width: 60%;
  }
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text .field-name-field-article-category a {
  color: #E02619;
  font-size: 12px;
  font-weight: bold;
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text .field-name-field-article-category a:after {
  content: ' \f105';
  font-family: fontawesome;
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .field-name-field-article-category a {
    font-size: 13px;
    font-weight: normal;
    display: block;
    line-height: 1em;
  }
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .field-name-field-article-category {
    border-bottom: solid 1px black;
    padding-bottom: 3px;
  }
}
@media only screen and (max-width: 61.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title {
    font-size: 12px;
  }
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title > h2 {
  margin: 0;
  line-height: 1.2em;
  font-size: 1.2em;
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title > h2 > a {
  color: #0995A2;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title {
    margin-top: 5px;
  }
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title > h2 {
    font-weight: normal;
    position: relative;
    padding-right: 10px;
  }
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .article-title > h2:after {
    content: ' \f105';
    font-family: fontawesome;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    color: #0995A2;
  }
}
@media only screen and (max-width: 47.9375em) {
  .view-home-articles-activities .view-content > div .home-article-item > .article-text .article-author {
    font-size: 12px;
    line-height: 18px;
  }
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text .article-author .field-name-field-author {
  display: inline;
}
.view-home-articles-activities .view-content > div .home-article-item > .article-text .article-author .field-name-field-author div {
  display: inline;
}

.panel-display.product_page {
  margin-top: 70px;
}
@media only screen and (max-width: 61.9375em) {
  .panel-display.product_page {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 47.9375em) {
  .panel-display.product_page {
    margin-top: 45px;
  }
}
.panel-display.product_page .red {
  color: #E02619;
}
.panel-display.product_page .container-fluid > .row {
  font-family: "Montserrat", Verdana, sans-serif;
}
.panel-display.product_page .container-fluid > .row h1 {
  margin-bottom: 12px;
  font-weight: normal;
}
.panel-display.product_page .container-fluid > .row .field-name-field-safety-warning {
  float: left;
  width: 100%;
  clear: both;
  font-size: 15px;
  margin-bottom: 0;
  background-position: 10px center;
}
.panel-display.product_page .container-fluid > .row .field-name-field-age {
  font-size: 28px;
  margin-bottom: 24px;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_price_view {
  display: inline-block;
  padding: 10px 0;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_price_notsale {
  font-size: 28px;
  font-weight: 400;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_price_sale {
  font-size: 28px;
  font-weight: 300;
  text-decoration: line-through;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_price_sale_price {
  font-size: 28px;
  font-weight: 400;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_in_app_purch {
  font-size: 28px;
  font-weight: 300;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_in_app_purch::before {
  content: " · ";
  font-size: 38px;
  font-weight: 900;
}
.panel-display.product_page .container-fluid > .row .hfc_store_apps_buttons {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
}
.panel-display.product_page .container-fluid > .row .view-hfc-store-apps-buttons {
  text-align: center;
}
.panel-display.product_page .container-fluid > .row .prod_age {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 300;
  font-family: "Montserrat", Verdana, sans-serif;
  color: #5B4D4E;
}
.panel-display.product_page .container-fluid > .row .prices {
  font-size: 28px;
  float: left;
  width: 100%;
}
.panel-display.product_page .container-fluid > .row .prices > span:not(.price-override) {
  float: left;
}
.panel-display.product_page .container-fluid > .row .prices > .price-override {
  font-size: 1rem;
}
.panel-display.product_page .container-fluid > .row .prices > .price-override p, .panel-display.product_page .container-fluid > .row .prices > .price-override ul, .panel-display.product_page .container-fluid > .row .prices > .price-override ol, .panel-display.product_page .container-fluid > .row .prices > .price-override blockquote {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Montserrat", Verdana, sans-serif;
}
.panel-display.product_page .container-fluid > .row .prices > .price-override ul {
  padding-left: 30px;
}
.panel-display.product_page .container-fluid > .row .prices > .price-override + #merch-fake-qty {
  margin: 0;
}
.panel-display.product_page .container-fluid > .row .prices .field-name-field-price,
.panel-display.product_page .container-fluid > .row .prices .field-name-field-sale-price,
.panel-display.product_page .container-fluid > .row .prices .field-name-field-1-year-subscription,
.panel-display.product_page .container-fluid > .row .prices .club-after-price {
  float: left;
}
.panel-display.product_page .container-fluid > .row .prices .field-name-field-1-year-subscription {
  margin-left: 8px;
}
.panel-display.product_page .container-fluid > .row .prices .field-name-field-sale-price,
.panel-display.product_page .container-fluid > .row .prices .club-after-price {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .panel-display.product_page .container-fluid > .row .prices .field-name-field-sale-price,
  .panel-display.product_page .container-fluid > .row .prices .club-after-price {
    font-size: 24px;
    margin-left: 10px;
  }
}
.panel-display.product_page .container-fluid > .row .prices .field-name-field-price {
  font-weight: bold;
}
.panel-display.product_page .container-fluid > .row .prices .field-name-field-price del {
  font-weight: normal;
}
.panel-display.product_page .container-fluid > .row .prices .club-billed-monthly {
  margin-right: 10px;
}
.panel-display.product_page .container-fluid > .row .prices .field-name-field-sale-price {
  font-weight: bold;
}
.panel-display.product_page .container-fluid > .row .prices .form-submit {
  clear: both;
}
.panel-display.product_page .container-fluid > .row .prices .s-and-h {
  font-size: small;
  color: #999;
  font-weight: normal;
  display: block;
  margin: 3px 0 0 7px;
}
.panel-display.product_page .container-fluid > .row .prices #merch-fake-qty {
  float: left;
  margin-left: 50px;
  margin-top: -4px;
}
@media (max-width: 480px) {
  .panel-display.product_page .container-fluid > .row .prices #merch-fake-qty {
    margin-left: 10px;
  }
}
.panel-display.product_page .container-fluid > .row .prices #merch-fake-qty label,
.panel-display.product_page .container-fluid > .row .prices #merch-fake-qty input {
  display: inline-block;
  margin-left: 0;
  border: 1px solid #999;
  font-weight: normal;
}
.panel-display.product_page .container-fluid > .row .prices #merch-fake-qty label {
  border-radius: 5px 0 0 5px;
  border: 1px solid #999;
  font-size: 17px;
  padding: 6px 18px;
  float: left;
  height: 46px;
}
.panel-display.product_page .container-fluid > .row .prices #merch-fake-qty input {
  border-left: 0;
  border-radius: 0 5px 5px 0;
  text-align: right;
  float: left;
  max-width: 3.25em;
  font-size: 20px;
  padding: 10px;
}
.panel-display.product_page .container-fluid > .row [name=qty1] {
  display: none;
}
.panel-display.product_page .container-fluid > .row .subline,
.panel-display.product_page .container-fluid > .row .club-sentance-below,
.panel-display.product_page .container-fluid > .row .magazine-sentance-below {
  clear: both;
  font-size: 16px;
  color: #A59899;
  position: relative;
}
.panel-display.product_page .container-fluid > .row .subline .like-link,
.panel-display.product_page .container-fluid > .row .club-sentance-below .like-link,
.panel-display.product_page .container-fluid > .row .magazine-sentance-below .like-link {
  cursor: pointer;
  color: #0995A2;
}
.panel-display.product_page .container-fluid > .row .form-submit {
  width: 100%;
  margin-top: 20px;
  float: left;
  clear: both;
}
.panel-display.product_page .container-fluid > .row #hfc-store-cart-magazine {
  float: left;
  width: 100%;
}
.panel-display.product_page .container-fluid > .row .promoCode-success #mag-promocode,
.panel-display.product_page .container-fluid > .row .promoCode-error #mag-promocode {
  margin-top: 0;
}
.panel-display.product_page .container-fluid > .row .promoCode-success #mag-promocode > label,
.panel-display.product_page .container-fluid > .row .promoCode-success #mag-promocode #hfc-store-cart-magazine-promo-code-container,
.panel-display.product_page .container-fluid > .row .promoCode-error #mag-promocode > label,
.panel-display.product_page .container-fluid > .row .promoCode-error #mag-promocode #hfc-store-cart-magazine-promo-code-container {
  display: none;
}
.panel-display.product_page .container-fluid > .row .promo-code-error,
.panel-display.product_page .container-fluid > .row .promo-code-success {
  display: none;
  clear: both;
  float: left;
  width: 100%;
  margin: 0;
  background-position: 10px center;
}
.panel-display.product_page .container-fluid > .row .promo-code-error a,
.panel-display.product_page .container-fluid > .row .promo-code-success a {
  text-decoration: underline;
}
.panel-display.product_page .container-fluid > .row .promoCode-error .promo-code-error {
  display: block;
}
.panel-display.product_page .container-fluid > .row .promoCode-success .promo-code-success {
  font-size: 16px;
  display: block;
  position: relative;
  height: 53px;
}
.panel-display.product_page .container-fluid > .row .promoCode-success .promo-code-success .btn, .panel-display.product_page .container-fluid > .row .promoCode-success .promo-code-success .form-submit {
  margin: 0;
  background: #33cc99;
  font-family: "ITC Stone Sans II W01";
  font-weight: bold;
  font-size: 0.875em;
  border: none;
  color: #fff;
  padding: 0.625em 1.875em;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  top: 0;
  right: 0;
  position: absolute;
  height: 52px;
}
.panel-display.product_page .container-fluid > .row .promoCode-success .promo-code-success .btn:hover, .panel-display.product_page .container-fluid > .row .promoCode-success .promo-code-success .form-submit:hover {
  background: #44e3ab;
}
.panel-display.product_page .container-fluid > .row #mag-promocode {
  float: left;
  width: 100%;
  clear: both;
  position: relative;
  margin: 20px 0;
  padding: 34px 0;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .form-item-textfield {
  clear: both;
  margin-top: 20px;
}
.panel-display.product_page .container-fluid > .row #mag-promocode label {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: normal;
  color: #0995A2;
  cursor: pointer;
  z-index: 1;
}
.panel-display.product_page .container-fluid > .row #mag-promocode input[type=text] {
  font-size: 20px;
  padding: 10px;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .fa-arrow-circle-up {
  display: none;
}
.panel-display.product_page .container-fluid > .row #mag-promocode.open-promo .fa-arrow-circle-up {
  display: inline;
}
.panel-display.product_page .container-fluid > .row #mag-promocode.open-promo .fa-arrow-circle-down {
  display: none;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .form-item-textfield {
  float: left;
  font-size: 18px;
  max-width: 77%;
}
.panel-display.product_page .container-fluid > .row #mag-promocode:not(.open-promo) #hfc-store-cart-magazine-promo-code-container {
  display: none;
}
.panel-display.product_page .container-fluid > .row #mag-promocode #hfc-store-cart-magazine-promo-code-container {
  float: left;
  width: 100%;
  position: relative;
}
.panel-display.product_page .container-fluid > .row #mag-promocode #hfc-store-cart-magazine-promo-code-container #hfc-store-cart-magazine-promo-code {
  float: left;
  font-size: 20px;
  padding: 10px;
  width: 100%;
}
.panel-display.product_page .container-fluid > .row #mag-promocode #hfc-store-cart-magazine-promo-code-container .check-code {
  float: right;
  margin-top: -48px;
  background: #33cc99;
  font-family: "ITC Stone Sans II W01";
  font-weight: bold;
  font-size: 0.875em;
  border: none;
  color: #fff;
  height: 3em;
  padding: 0.625em 1.875em;
  -moz-border-radius: 0 0.3125em 0.3125em 0;
  -webkit-border-radius: 0;
  border-radius: 0 0.3125em 0.3125em 0;
  top: 0.0625em;
}
.panel-display.product_page .container-fluid > .row #mag-promocode #hfc-store-cart-magazine-promo-code-container .check-code:hover {
  background: #44e3ab;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .message {
  font-size: 15px;
  padding: 15px;
  font-style: italic;
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-bottom: 2em;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .message.error {
  border: 1px solid red;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .message.success {
  background-color: #73ecb3;
  border: 1px solid #33cc99;
  color: #1A774B;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .message a {
  text-decoration: underline;
}
.panel-display.product_page .container-fluid > .row #mag-promocode .message .close {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -16px;
  height: 10px;
  cursor: pointer;
}
.panel-display.product_page .container-fluid > .row #mag-promocode.promoCode-error .promo-code-error {
  display: block;
}
.panel-display.product_page .container-fluid > .row #mag-promocode.promoCode-error #hfc-store-cart-magazine-promo-code {
  border: 1px solid red;
}
.panel-display.product_page .container-fluid > .row .check-code i {
  display: none;
}
.panel-display.product_page .container-fluid > .row .check-code.loading i {
  display: inline-block;
}
.panel-display.product_page .container-fluid > .row .check-code.loading span {
  display: none;
}
.panel-display.product_page .container-fluid > .row .nationality-prices {
  background-color: #defafd;
  border: 1px solid #0995A2;
  color: #0995A2;
  position: relative;
  text-align: center;
  z-index: 1;
  display: none;
}
.panel-display.product_page .container-fluid > .row .nationality-prices .arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #0995A2;
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
  z-index: 1;
}
.panel-display.product_page .container-fluid > .row .nationality-prices .arrow span {
  display: block;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #defafd;
  position: absolute;
  bottom: 1px;
  left: 50%;
  margin-left: -9px;
  z-index: 0;
}
.panel-display.product_page .container-fluid > .row .nationality-prices .close-button {
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
}
.panel-display.product_page .container-fluid > .row .nationality-prices dl {
  float: left;
  width: 50%;
  border-right: 1px solid #0995A2;
}
.panel-display.product_page .container-fluid > .row .nationality-prices dl:last-child {
  border-right: 0;
  margin-left: -1px;
}
.panel-display.product_page .container-fluid > .row .nationality-prices dl dt {
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 480px) {
  .panel-display.product_page .container-fluid > .row .nationality-prices dl dt {
    font-size: 16px;
  }
}
.panel-display.product_page .container-fluid > .row .nationality-prices dl dd {
  margin: 0;
  font-size: 16px;
}
@media (max-width: 480px) {
  .panel-display.product_page .container-fluid > .row .nationality-prices dl dd {
    font-size: 13px;
  }
}
.panel-display.product_page .container-fluid > .row .nationality-prices dl [class*=field-name-field-1-year-subscription] {
  display: inline-block;
  margin-left: 8px;
}
.panel-display.product_page .container-fluid > .row .form-item-wwusa-select-deluxe {
  text-align: center;
  clear: both;
}
.panel-display.product_page .container-fluid > .row .form-item-wwusa-select-deluxe label {
  margin-left: 4px;
}
.panel-display.product_page .prod_promo_text p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Montserrat", Verdana, sans-serif;
  color: #5B4D4E;
  margin: 0;
}
.panel-display.product_page .prod_call_to_order {
  border-top: solid 1px #372829;
  border-bottom: solid 1px #372829;
  text-align: center;
  clear: both;
}
.panel-display.product_page .prod_call_to_order p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Montserrat", Verdana, sans-serif;
  color: #0995A2;
}
.panel-display.product_page .prod_domestic_shipping_notice {
  text-align: center;
}
.panel-display.product_page .prod_domestic_shipping_notice p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", Verdana, sans-serif;
  color: #5B4D4E;
  margin: 0.5em;
}
.panel-display.product_page .prod_promo_offer {
  border-top: double 4px #5B4D4E;
  border-bottom: double 4px #5B4D4E;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.panel-display.product_page .prod_promo_offer p {
  font-size: 26px;
  font-weight: 400;
  font-family: "Montserrat", Verdana, sans-serif;
  color: #5B4D4E;
  margin: 0.6em 0;
}
.panel-display.product_page .prod_addthis {
  padding-top: 1.5em;
  float: right;
  font-size: 16px;
  font-family: "Montserrat", Verdana, sans-serif;
  color: #5B4D4E;
}
.panel-display.product_page .prod_addthis .field-label {
  font-weight: 300;
}
.panel-display.product_page .prod_addthis > .pane-title {
  display: none;
}
@media (min-width: 769px) {
  .panel-display.product_page #tabs-0-tabs .item-list {
    position: relative;
  }
}
.panel-display.product_page .resp-tab-content,
.panel-display.product_page .resp-tab-content-active {
  border: none;
}
@media (min-width: 769px) {
  .panel-display.product_page .resp-tab-content,
  .panel-display.product_page .resp-tab-content-active {
    border-top: 1px solid #5B4D4E;
  }
}
.panel-display.product_page .resp-tabs-list li {
  border: none;
  margin-left: 5px;
  padding: 6px 20px !important;
  border-radius: 4px 4px 0 0;
}
.panel-display.product_page .resp-tabs-list li.resp-tab-active {
  border: 1px solid #5B4D4E;
  border-bottom-color: #fff;
}
.panel-display.product_page .resp-tabs-list li.resp-tab-active a {
  color: #FF4844;
}
.panel-display.product_page .resp-tabs-list li.first {
  margin-left: 20px;
}
.panel-display.product_page .resp-tabs-list li a {
  color: #5B4D4E;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-size: 16px;
}
.panel-display.product_page .resp-tabs-list li a:hover {
  color: #E02619;
  text-decoration: none;
}
.panel-display.product_page .resp-tabs-list li a:focus {
  outline: none;
}
.panel-display.product_page .field-name-field-1-year-subscription {
  font-weight: bold;
}
.panel-display.product_page #hfc-store-cart-form-club {
  float: left;
  width: 100%;
  clear: both;
  margin-bottom: 0;
}
.panel-display.product_page #hfc-store-cart-form-club .form-item-tsapick {
  margin-bottom: 0;
}
.panel-display.product_page #hfc-store-cart-form-club .chosen-container {
  width: 100% !important;
  font-size: 16px;
  font-family: "Montserrat", Verdana, sans-serif;
}
.panel-display.product_page #hfc-store-cart-form-club .chosen-container .chosen-choices {
  padding: 8px;
}
.panel-display.product_page #hfc-store-cart-form-club .chosen-container .chosen-choices .search-choice {
  background-color: #E02619;
  background-image: none;
  color: #fff;
  padding: 2px 22px;
  line-height: 2em;
  border: 0;
  position: relative;
}
.panel-display.product_page #hfc-store-cart-form-club .chosen-container .chosen-choices .search-choice .search-choice-close {
  background: #E00F00 url(//cdn-eu-ec.yottaa.net/561457440b53443818001134/www.highlights.com/v~11.33/sites/all/themes/custom/highlights/images/chosen-close.png?yocs=_&yoloc=eu) center no-repeat !important;
  position: absolute;
  width: 14px;
  height: 14px;
  left: -3px;
  top: -3px;
  z-index: 10;
  padding: 10px;
  background-size: 10px !important;
  border-radius: 50%;
}
.panel-display.product_page #hfc-store-cart-form-club .form-submit {
  clear: both;
  margin-bottom: 20px;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion {
  background: #fff !important;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-size: 16px;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion i.fa {
  float: right;
  font-size: 24px;
  margin: 4px 0 0;
  color: #5B4D4E;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion i.fa.fa-minus-circle {
  display: none;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion.resp-tab-active i.fa.fa-minus-circle {
  display: block;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion.resp-tab-active i.fa.fa-plus-circle {
  display: none;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion a {
  color: #372829;
}
@media (max-width: 768px) {
  .panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-accordion {
    border: none !important;
    border-bottom: 1px solid #D5CBCB !important;
  }
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed .resp-tab-active + .resp-tab-content-active {
  display: block !important;
  overflow: hidden !important;
}
.panel-display.product_page .resp-tabs-container.highlights-accordion-processed UL {
  padding-left: 3em;
}
.panel-display.product_page .responsive-video {
  max-width: 533px;
  margin: 0 auto;
}
.panel-display.product_page .responsive-video .media-youtube-video.media-element {
  position: relative;
  z-index: 1;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  margin: 0 auto;
}
.panel-display.product_page .responsive-video .media-youtube-video.media-element iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.panel-display.product_page .border-top {
  border-top: 1px solid #5B4D4E;
  padding-top: 1em;
}
.panel-display.product_page .border-bottom {
  border-bottom: 1px solid #5B4D4E;
  padding-bottom: 1em;
}
.panel-display.product_page .slick-slide {
  opacity: 1;
}
@media (min-width: 768px) {
  .panel-display.product_page .slick__arrow {
    display: none !important;
  }
}
.panel-display.product_page .pane-node-field-product-images {
  text-align: center;
}
.panel-display.product_page .pane-product-images-views-slideshow-panel-pane-1 .pane-title {
  display: none;
}
.panel-display.product_page .pane-product-images-views-slideshow-panel-pane-1 .views-row {
  list-style: none;
  float: left;
  width: 100%;
}
.panel-display.product_page .pane-product-images-views-slideshow-panel-pane-1 .views-row li {
  list-style: none;
  float: left;
  margin-right: 10px;
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 5px solid #fff;
}
.panel-display.product_page .pane-product-images-views-slideshow-panel-pane-1 .views-row li.active {
  border-color: #E02619;
}
.panel-display.product_page .pane-product-images-views-slideshow-panel-pane-1 .views-row li.last {
  margin-right: 0;
}
.panel-display.product_page #highlights-guarantee,
.panel-display.product_page #grow-with-highlights {
  border-top: 1px solid #5B4D4E;
  padding-top: 40px;
  padding-bottom: 40px;
}
.panel-display.product_page #product-page-bottom-buttons {
  border-top: 1px solid #5B4D4E;
  padding-top: 40px;
  padding-bottom: 40px;
}
.panel-display.product_page #product-page-bottom-buttons .btn, .panel-display.product_page #product-page-bottom-buttons .container-fluid > .row .form-submit, .panel-display.product_page .container-fluid > .row #product-page-bottom-buttons .form-submit {
  display: block;
  text-align: center;
  width: 100%;
  color: #0995A2;
  border: 2px solid #0995A2;
  background-color: #fff;
  border-radius: 5px;
  padding: 1em;
  -ms-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.panel-display.product_page #product-page-bottom-buttons .btn:hover, .panel-display.product_page #product-page-bottom-buttons .container-fluid > .row .form-submit:hover, .panel-display.product_page .container-fluid > .row #product-page-bottom-buttons .form-submit:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0995A2;
  border-color: #0995A2;
}
@media (max-width: 768px) {
  .panel-display.product_page #product-page-bottom-buttons .btn, .panel-display.product_page #product-page-bottom-buttons .container-fluid > .row .form-submit, .panel-display.product_page .container-fluid > .row #product-page-bottom-buttons .form-submit {
    margin-bottom: 20px;
  }
}
.panel-display.product_page .field-name-field-price-override-text-wys {
  font-size: 1rem;
}
.panel-display.product_page .field-name-field-price-override-text-wys p, .panel-display.product_page .field-name-field-price-override-text-wys ul, .panel-display.product_page .field-name-field-price-override-text-wys ol, .panel-display.product_page .field-name-field-price-override-text-wys blockquote {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Montserrat", Verdana, sans-serif;
}
.panel-display.product_page .field-name-field-price-override-text-wys ul {
  padding-left: 30px;
}

.product-listing {
  font-family: 'Montserrat', Verdana, sans-serif;
}
.product-listing .product-listing-header h1 {
  border-bottom: solid 1px #A59899;
  line-height: 2em;
  margin: 0;
}
.product-listing .product-listing-left .back-to-store-button {
  padding: 5px 25px;
  color: #0EBECE;
  border: solid 1px #0EBECE;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-weight: 300;
  -moz-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.product-listing .product-listing-left .back-to-store-button:before {
  content: '\f0d9\00a0';
  font-family: fontawesome;
}
.product-listing .product-listing-left .back-to-store-button:hover {
  color: white;
  background-color: #0EBECE;
  text-decoration: none;
}
.product-listing .product-listing-right h2 {
  border-bottom: solid 1px #A59899;
  line-height: 2em;
  margin: 0 0 20px;
}
.product-listing .product-listing-right h2 .parent + .category {
  font-weight: 300;
}
.product-listing .view-header {
  color: #5B4D4E;
  font-size: 12px;
  font-weight: 300;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .view-header {
    float: left;
    width: 50%;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .view-filters {
    float: left;
    width: 50%;
    margin-top: 10px;
  }
}

.product-listing .view-filters .views-exposed-form label {
  display: none;
}
.product-listing .view-filters .views-exposed-form .views-submit-button {
  display: none;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-order {
  display: none;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by {
  padding: 0;
  width: 100%;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by select {
  width: 100%;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container {
  font-weight: 300;
  color: #372829;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > a {
  background: none;
  height: auto;
  overflow: visible;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > a > span:before {
  content: 'Arrange by: ';
  color: #A59899;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > a > div {
  background-color: #E02619;
  width: 25px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > a > div:after {
  font-family: fontawesome;
  content: '\f0d7';
  color: white;
  float: right;
  padding: 0 8px;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > a > div > b {
  display: none;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop {
  text-align: center;
  border: none;
  background: transparent;
  box-shadow: none;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop > ul {
  margin: 15px 0 0 0;
  background: rgba(255, 255, 255, 0.95);
  border: solid 1px #A59899;
  padding: 0;
  font-weight: 400;
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: visible;
  position: relative;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop > ul > li {
  padding: 10px;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop > ul > li.highlighted {
  background-color: #E02619;
  background-image: none;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop > ul > li:first-child:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: #A59899 transparent;
  display: block;
  width: 0;
  z-index: 1;
  top: -8px;
  right: 5px;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop > ul > li:first-child:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 7px 7px;
  border-color: white transparent;
  display: block;
  width: 0;
  z-index: 2;
  top: -7px;
  right: 6px;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container > .chosen-drop > ul > li:first-child.highlighted:before {
  border-color: #E02619 transparent;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container.chosen-with-drop > a {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.product-listing .view-filters .views-exposed-form .views-widget-sort-by .chosen-container.chosen-with-drop > a > div:after {
  content: '\f0d8';
}
.product-listing .view-empty {
  clear: both;
}
.product-listing .view-content {
  overflow: hidden;
  clear: both;
}
.product-listing .view-footer {
  border-top: solid 1px #5B4D4E;
  margin-top: 20px;
  padding-top: 10px;
  color: #5B4D4E;
  font-size: 12px;
  font-weight: 300;
}
.product-listing .item-list {
  float: right;
  margin: 20px 0 0;
}
.product-listing .item-list .pager {
  margin: 0;
  font-size: 12px;
  margin-top: 15px;
}
.product-listing .item-list .pager > li {
  display: inline-block;
  padding: 0;
}
.product-listing .item-list .pager:before {
  content: 'Page';
  color: #D5CBCB;
  padding-right: 10px;
}
.product-listing .item-list .pager .pager-first, .product-listing .item-list .pager .pager-last {
  display: none;
}
.product-listing .item-list .pager .pager-previous > a:before {
  content: '\f0d9';
  font-family: fontawesome;
  font-size: 14px;
  color: #E02619;
  padding: 0 5px;
  padding: 0 5px 0 0;
}
.product-listing .item-list .pager .pager-previous > a:before:hover {
  text-decoration: none;
}
.product-listing .item-list .pager .pager-next > a:before {
  content: '\f0da';
  font-family: fontawesome;
  font-size: 14px;
  color: #E02619;
  padding: 0 5px;
}
.product-listing .item-list .pager .pager-next > a:before:hover {
  text-decoration: none;
}
.product-listing .item-list .pager .pager-item > a {
  color: #5B4D4E;
  padding: 5px;
}
.product-listing .item-list .pager .pager-current {
  background-color: #E02619;
  color: white;
  border-radius: 50%;
  padding: 4px 8px 4px 7px;
}
@media only screen and (max-width: 47.9375em) {
  .product-listing .view-content {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.product-listing .view-content .views-row {
  overflow: hidden;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .view-content .views-row {
    float: left;
    width: 33.33333%;
    padding: 25px 15px;
  }
  .product-listing .view-content .views-row:nth-child(3n + 1) {
    clear: left;
  }
}

@media only screen and (max-width: 47.9375em) {
  .product-listing .view-content .views-row:not(:first-child) {
    border-top: solid 1px #5B4D4E;
    padding-top: 8px;
    margin-top: 8px;
  }
}
.product-listing .product-grid-item {
  font-size: 0;
  text-align: left;
  position: relative;
  line-height: 1.5em;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .product-grid-item {
    font-size: 18px;
    text-align: center;
  }
}

.product-listing .product-grid-item .product-grid-item-image {
  max-width: 100%;
}
@media only screen and (max-width: 47.9375em) {
  .product-listing .product-grid-item .product-grid-item-image {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5em;
    width: 33.33333%;
    padding: 0 10px 0 15px;
  }
  .product-listing .product-grid-item .product-grid-item-image img {
    float: right;
  }
}
.product-listing .product-grid-item .product-grid-item-image a {
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .product-listing .product-grid-item .product-grid-item-image a {
    height: 200px;
  }
  .product-listing .product-grid-item .product-grid-item-image a img {
    max-height: 200px;
    margin-top: 100px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (min-width: 62em) {
  .product-listing .product-grid-item .product-grid-item-image a {
    height: 247px;
  }
  .product-listing .product-grid-item .product-grid-item-image a img {
    max-height: 247px;
    margin-top: calc(247px / 2);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 47.9375em) {
  .product-listing .product-grid-item .product-grid-item-details {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5em;
    width: 66.66667%;
    padding: 0 30px 0 10px;
  }
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-catagory {
  color: #A59899;
  font-size: 12px;
  line-height: 1.5em;
}
@media only screen and (max-width: 47.9375em) {
  .product-listing .product-grid-item .product-grid-item-details .product-grid-item-catagory {
    font-weight: 300;
  }
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-title a {
  color: #E02619;
  font-weight: 400;
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-age {
  color: #5B4D4E;
  font-weight: 300;
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-price {
  display: inline-block;
  color: #372829;
  margin-top: 5px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .product-grid-item .product-grid-item-details .product-grid-item-price {
    margin-top: 10px;
  }
}

.product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.price-strike {
  text-decoration: line-through;
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.override {
  font-size: 1rem;
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.override p, .product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.override ul, .product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.override ol, .product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.override blockquote {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Montserrat", Verdana, sans-serif;
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-price.override ul {
  padding-left: 30px;
}
.product-listing .product-grid-item .product-grid-item-details .product-grid-item-sale-price {
  display: inline-block;
  color: #372829;
  margin-top: 5px;
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .product-grid-item .product-grid-item-details .product-grid-item-sale-price {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 47.9375em) {
  .product-listing .product-grid-item .product-grid-mobile-arrow {
    position: absolute;
    right: 0;
    top: calc(50% - 40px);
    width: 30px;
    height: 80px;
    display: block;
  }
  .product-listing .product-grid-item .product-grid-mobile-arrow:after {
    content: '\f054';
    font-family: 'fontawesome';
    color: #127B89;
    font-size: 14px;
    line-height: 80px;
    padding-right: 15px;
    float: right;
  }
}
@media only screen and (min-width: 48em) and (max-width: 61.9375em), (min-width: 48em) and (min-width: 62em) {
  .product-listing .product-grid-item .product-grid-mobile-arrow {
    display: none;
  }
}

.price-strike {
  text-decoration: line-through;
}

.pane-menu-menu-shop-taxonomy-menu ul, .pane-menu-menu-shop-taxonomy-menu li, .pane-menu-menu-shop-taxonomy-menu a {
  display: block;
  list-style: none;
  font-family: 'Montserrat', Verdana, sans-serif;
  font-weight: 300;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu {
  margin-top: 15px;
}
@media only screen and (max-width: 47.9375em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li {
  margin-bottom: 25px;
}
@media only screen and (max-width: 47.9375em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li {
    margin-bottom: 2px;
  }
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li {
    float: left;
    width: 50%;
    position: relative;
  }
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li:first-child {
    padding-right: 3px;
  }
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li:last-child {
    padding-left: 3px;
  }
}

.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > a {
  color: white;
  background-color: #E02619;
  padding: 0 10px;
  font-size: 14px;
}
@media (min-width: 62em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > a {
    pointer-events: none;
  }
}
@media only screen and (max-width: 61.9375em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > a:after {
    font-family: fontawesome;
    content: '\f055';
    color: white;
    float: right;
    padding-right: 5px;
  }
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > a ~ ul {
    display: none;
  }
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > a.open:after {
    content: '\f056';
  }
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > a.open ~ ul {
    display: block;
  }
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu {
  font-size: 12px;
}
@media only screen and (max-width: 61.9375em) and (min-width: 48em) and (max-width: 61.9375em), only screen and (max-width: 61.9375em) and (min-width: 48em) and (min-width: 62em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu {
    position: absolute;
    width: calc(100% - 3px);
    z-index: 10;
  }
}

.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu a {
  color: black;
  -moz-transition: color 0.3s, text-decoration 0.3s, font-weight 0.3s;
  -o-transition: color 0.3s, text-decoration 0.3s, font-weight 0.3s;
  -webkit-transition: color 0.3s, text-decoration 0.3s, font-weight 0.3s;
  transition: color 0.3s, text-decoration 0.3s, font-weight 0.3s;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu a:hover {
  color: #E02619;
  text-decoration: underline;
  font-weight: 400;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu a.current {
  color: #E02619;
  text-decoration: underline;
  font-weight: 400;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li {
  border: solid 1px #E02619;
  border-top: none;
}
@media only screen and (max-width: 47.9375em) {
  .pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li {
    border-left: none;
    border-right: none;
  }
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > a {
  background-color: rgba(252, 249, 245, 0.95);
  padding: 0 20px;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > a.menu-collapse-button {
  float: right;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > a.menu-collapse-button:after {
  content: '\f067';
  font-family: fontawesome;
  display: block;
  color: #E02619;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > a.menu-collapse-button.open:after {
  content: '\f068';
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > a.menu-collapse-button.open ~ ul {
  display: block;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > a.menu-collapse-button:hover {
  text-decoration: none;
  cursor: pointer;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > ul {
  display: none;
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > ul > li {
  border-top: solid 1px #E02619;
  background-color: rgba(255, 255, 255, 0.95);
}
.pane-menu-menu-shop-taxonomy-menu > ul.menu > li > ul.menu > li > ul > li > a {
  padding: 0 30px;
}
