/* ----------------------------------------------------------------------------
// NORMALIZE
// --------------------------------------------------------------------------*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* ----------------------------------------------------------------------------
/  HTML5 display definitions
/ ----------------------------------------------------------------------------- */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * 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;
}

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

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

/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 */
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;
}

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ----------------------------------------------------------------------------
// BOILERPLATE
// --------------------------------------------------------------------------*/
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight
 * 
 * These selection rule sets have to be separate.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ----------------------------------------------------------------------------
// FONTS
// --------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------
// ELEMENTS
// --------------------------------------------------------------------------*/
body {
  background: white;
  color: #696a6d;
  font-family: 'Muli', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.25;
  color: #eab42f;
  margin: .45em 0;
}

h2 {
  overflow: hidden;
  font-size: 19px;
  margin-bottom: 45px;
  color: #636464;
}

h2:after {
  border-top: 1px solid #636464;
  content: " ";
  display: inline-block;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
}

a {
  color: #696a6d;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

a:hover {
  color: #76a243;
}

/*
img {
    width:100%;
}
*/
ul {
  margin: 0 0 0 2em;
}

/* ----------------------------------------------------------------------------
// HELPER CLASSES
// --------------------------------------------------------------------------*/
/*
 * Hide visually and from screen readers:
 */
.is-hidden {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.is-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.is-visuallyhidden.focusable:active,
.is-visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.is-invisible {
  visibility: hidden;
}

/* ----------------------------------------------------------------------------
// COMMON
// --------------------------------------------------------------------------*/
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* Avoid white space below footer */
iframe[name='google_conversion_frame'] {
  height: 0 !important;
  position: absolute;
}

/* ----------------------------------------------------------------------------
// PAGE HEADER
// --------------------------------------------------------------------------*/
.utility-bar-container {
  background: white url("/images/bg_header-divider.png") left top repeat-x;
  min-height: 60px;
}

.utility-bar-top {
  width: 960px;
  margin: auto;
}

.utility-bar-bottom {
  width: 960px;
  margin: auto;
}

.utility-bar-top-left {
  float: left;
  padding-top: 14px;
  width: 780px;
}

/* Language Selector */
.language-selector {
  display: inline-block;
  border-right: 1px solid #e1e1e2;
}

.language-selector-label {
  display: inline-block;
  background: url("/images/icon_arrow-down.png") calc(100% - 15px) 60% no-repeat;
  padding: 2px 32px 0 0;
  cursor: pointer;
}

.language-selector-label:hover {
  color: #76a243;
  transition: color 0.1s ease-out;
}

.language-selector-label.active {
  background: url("/images/icon_arrow-up.png") calc(100% - 15px) 60% no-repeat;
}

.language-selector-list {
  display: none;
  position: absolute;
  background: #f3f3f3;
  margin: 0 0 0 -5px;
}

.language-selector-list > div {
  padding: 2px 5px;
  cursor: pointer;
}

.language-selector-list div:hover {
  background: #dfdfdf;
}

/* Health Care Professionals */
.hcp-top {
  display: inline-block;
  padding-left: 12px;
}

/* Locator Link */
.utility-bar-top-left-label {
  float: right;
  padding-top: 2px;
}

/* Site Search */
.utility-bar-bottom-content-wrapper {
  float: right;
  padding-top: 15px;
  position: relative;
}

.utility-bar-search-input {
  width: 136px;
  height: 18px;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  padding: 0 23px 0 4px;
  font-size: .9em;
  outline: 0;
  transition: border .2s ease-out;
}

.utility-bar-search-input:focus {
  border: 1px solid #a3a2a4;
}

.utility-bar-search #btn_submit {
  position: absolute;
  right: 4px;
  top: 15px;
  width: 20px;
  height: 20px;
  text-indent: 999px;
  overflow: hidden;
  background: url("/images/icon_mag-glass.png") 50% 50% no-repeat;
}

/* Branding */
.nm-logo-wrapper {
  width: 188px;
  /* Use relative positioning (not absolute) so that logo stays 
       properly positioned when top promo is also visible */
  position: relative;
  margin-top: -52px;
  left: 386px;
}

@media (min-width: 976px) {
  /* keep logo centered in page above 976px */
  .nm-logo-wrapper {
    left: calc(50% - 188px/2);
  }
}

.nm-logo {
  width: 188px;
  height: 62px;
  background: url("/images/logo_nature-made.png") left top no-repeat;
}

/* Banner Graphic (for interior pages) */
.banner-graphic {
  height: 155px;
  background: #eeeeee;
  position: relative;
  overflow: hidden;
  margin: 7px 0 18px;
}

.banner-graphic img {
  position: absolute;
  left: -480px;
}

@media (min-width: 977px) {
  /* At larger screen sizes, keep the banner centered */
  .banner-graphic img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------------------
// PAGE FOOTER
// --------------------------------------------------------------------------*/
/* 'Pharmacist Recommended' tag */
.recommendation-tag {
  width: 960px;
  margin: auto;
  text-align: center;
  padding-right: 12px;
}

#footer {
  background: #f9f9f9;
  padding: 35px 0 0;
  margin-top: 60px;
  font-size: 14px;
}

.footer-content {
  width: 960px;
  margin: auto;
}

.resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #555555;
}

.resources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resources li {
  margin-bottom: .5em;
}

.resources h4 {
  font-weight: bold;
  margin: 0;
}

.resources a {
  color: #555555;
}

.resources a:hover {
  color: #76a243;
}

/* Social links */
.footer-top-label {
  font-weight: bold;
}

.social {
  margin: .5em 0;
}

.social img {
  padding-right: 9px;
}

/* Wellness Rewards - pulled from header */
.utility-bar-wr {
  margin-top: 30px;
  background: #76a243;
  padding: 13px 17px 17px;
}

.wr-link-wrap {
  color: #696a6d;
  background: white;
  border-radius: 3px;
  margin-top: 10px;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wr-link-wrap a {
  color: #696a6d;
}

.wr-link-wrap a:hover {
  color: #76a243;
}

.utility-bar-top-right-label {
  margin: 0 !important;
}

#div-pipe {
  margin: 0 8px;
}

/* Legal and disclaimer */
.consult-label {
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  margin-top: 85px;
}

.disclaimer {
  text-align: center;
  margin: 8px auto 0;
}

.disclaimer div {
  font-size: 11px;
  padding: 8px 20px;
  background: white;
  border: 1px solid #d2d4d5;
  text-align: center;
  display: inline-block;
}

#legal {
  min-width: 960px;
  padding: 5px 0 110px;
  background: #f9f9f9;
  font-size: 10px;
}

#legal ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#legal li {
  padding: 0 4px;
}

/* ----------------------------------------------------------------------------
// MAIN LAYOUT
// --------------------------------------------------------------------------*/
#main {
  position: relative;
}

.main-content {
  max-width: 960px;
  margin: auto;
}

/* ----------------------------------------------------------------------------
// TWO COLUMN LAYOUT
// --------------------------------------------------------------------------*/
/* Outer wrapper */
#contentColumns {
  margin-top: 10px;
  width: 960px;
  /* clearfix */
  *zoom: 1;
  margin: 0 auto;
}

#contentColumns:before, #contentColumns:after {
  content: " ";
  display: table;
}

#contentColumns:after {
  clear: both;
}

/* Left column - layout structure */
#leftCol,
.railColumn {
  float: left;
  width: 200px;
  padding-right: 25px;
}

/* Left column - inner styling (for pages using .railColumn) */
.railColumn h3 {
  font-size: 15px;
  margin-bottom: 1.5em;
}

.railColumn h3 a {
  color: #696a6d !important;
}

.railColumn h3 a:hover {
  color: #76a243 !important;
}

.railColumn #panel ul {
  margin: 1em 0 2em;
  list-style: none;
}

.railColumn #panel ul ul {
  margin: 1em 0 1.5em 2em;
  list-style: none;
}

.railColumn #panel li {
  line-height: 1.2;
  margin: 0 0 1em;
}

.railColumn .bold {
  font-weight: bold;
}

.railColumn .greenBtn {
  background: #85a048;
  color: white;
  text-align: center;
  padding: 7px 22px;
  border-radius: 3px;
  transition: background 0.2s ease-out;
}

.railColumn .greenBtn:hover {
  background: #9db860;
}

/* Main content area - layout structure */
#centerCol,
.railColumn + .mainColumn {
  margin-left: 225px;
  margin-bottom: 135px;
  padding-left: 40px;
  border-left: 1px solid #b7b7b7;
}

/* Main content area - inner styling (for pages using .mainColumn) */
.mainColumn h1 {
  margin-top: 0;
  line-height: 1;
}

.mainColumn p {
  margin-bottom: 1.2em;
}

.mainColumn ul {
  margin-bottom: 1.2em !important;
}

.mainColumn ul.spaced-items li {
  margin-bottom: 1.2em;
}

.mainColumn .subhead {
  font-weight: bold;
  font-size: 15px;
  color: #eab42f;
  margin: 0 0 .5em !important;
}

/* ----------------------------------------------------------------------------
// BUTTONS
// --------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------
// NAVIGATION
// --------------------------------------------------------------------------*/
#nm-nav-menu {
  height: 72px;
}

/* Top-level nav list */
#nm-nav-menu > ul {
  width: 960px;
  height: auto !important;
  margin: auto !important;
  padding: 16px 0 0;
  text-align: center;
}

#nm-nav-menu > ul > li {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
}

/* Because font-weight changes on selection, we need to set
   static widths to avoid shifting of other nav items */
#nm-nav-menu > ul > li:nth-child(1) h3 {
  width: 250px;
}

#nm-nav-menu > ul > li:nth-child(2) h3 {
  width: 275px;
}

#nm-nav-menu > ul > li:nth-child(3) h3 {
  width: 140px;
}

#nm-nav-menu > ul > li:nth-child(4) h3 {
  width: 190px;
}

#nm-nav-menu > ul > li > h3 {
  padding: 6px 0;
  margin: 0;
  height: 28px;
  transition: background-color .2s ease-out;
}

#nm-nav-menu > ul > li > h3.active {
  background: #ffc421;
}

#nm-nav-menu > ul > li > h3.active a {
  font-weight: 700;
  color: white;
}

#nm-nav-menu > ul > li a {
  font-size: 19px;
  font-weight: 300;
  cursor: pointer;
}

.nm-accordion {
  position: absolute;
  width: 100%;
  border-top: 2px solid #ffc421;
  box-shadow: inset 0px 1px 1px 0px #cccccc, 0px 10px 15px 0px rgba(155, 155, 155, 0.5);
  background: white;
  visibility: hidden;
  z-index: 100;
}

/* Nav slide down panel */
.acc_container {
  background: white;
  /* border-top:1px solid #cccccc; */
  padding: 30px 0;
  width: 960px;
  margin: 2px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.acc_container:nth-child(1) {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
}

.acc_container:nth-child(2) {
  white-space: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* Provide space between columns, when not justifying content */
.acc_container:nth-child(2) > div,
.acc_container:nth-child(3) > div {
  padding-right: 40px;
}

/* For 'Tips & Tricks', allow space at bottom for 'see all' links */
.acc_container:nth-child(3) {
  padding-bottom: 80px;
}

/* Sub-nav container (single column) */
.nav-sub-content {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: content;
      flex-basis: content;
  /* opacity:.6; */
  /* transition:opacity .2s ease-out; */
}

.nav-sub-content .see-all-items {
  /* opacity:.5; */
  /* transition:opacity .2s ease-out; */
}

.nav-sub-content:hover,
.nav-sub-content:hover .see-all-items {
  /* opacity:1; */
}

/* Sub-nav lists (ul lists) */
.nav-sub-items {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none !important;
}

.nav-sub-items p {
  margin: 5px 0 0;
}

.nav-sub-title {
  font-size: 13px;
  font-weight: 700;
  color: #464646;
  padding-bottom: 6px;
}

.nav-sub-items li {
  font-size: 13px;
  padding-bottom: 8px;
}

.nav-sub-items li a {
  color: #464646;
  display: inline-block;
}

.nav-sub-items li a:hover {
  font-weight: 700;
  color: #464646;
}

.see-all-items {
  position: absolute;
  bottom: 30px;
}

/* TAKEN FROM:  http://www.naturemade.com/static/css/min/2E13395D9CD248C8AE0CC656E65C0BB8?v=16.12.08.1   */
.jcarousel-skin-tango .jcarousel-container {
  display: inline-block;
}

.jcarousel-skin-tango .jcarousel-direction-rtl {
  direction: rtl;
}

.jcarousel-skin-tango .jcarousel-container-horizontal {
  width: 380px;
  padding: 0;
}

/* Added back for vertical support */
.jcarousel-skin-tango .jcarousel-container-vertical {
  width: 65px;
  height: 231px;
  padding: 30px 0;
}

.jcarousel-skin-tango .jcarousel-clip {
  overflow: hidden;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
  width: 345px;
  height: 75px;
  margin-left: 10px;
}

.jcarousel-skin-tango .jcarousel-clip-vertical {
  width: 67px;
  height: 231px;
}

.jcarousel-skin-tango .jcarousel-item {
  width: 67px;
  height: 77px;
}

.jcarousel-skin-tango .jcarousel-item a {
  display: block;
  width: 45px;
  height: 45px;
  border: 1px solid #c1c1c1;
  padding: 10px;
  transition: all 0.1s ease-out;
}

.jcarousel-skin-tango .jcarousel-item a:hover {
  border: 1px solid #ababab;
}

.jcarousel-skin-tango .jcarousel-item img {
  width: 100%;
  height: auto;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {
  margin-left: 26px;
  margin-right: 14px;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
  margin-left: 10px;
  margin-right: 0;
}

.jcarousel-skin-tango .jcarousel-item-vertical {
  /* margin-bottom: 10px; */
}

.jcarousel-skin-tango .jcarousel-item-placeholder {
  background: #fff;
  color: #000;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-tango .jcarousel-next-horizontal {
  position: absolute;
  top: 23px;
  right: 1px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent url(/static/images/jcarousel/p-next-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
  left: 5px;
  right: auto;
  background-image: url(/static/images/jcarousel/p-prev-horizontal.png);
}

/*.jcarousel-skin-tango .jcarousel-next-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-horizontal:focus {
    background-position: -26px 0;
}*/
/*.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    background-position: -58px 0;
}*/
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal {
  cursor: default;
  background-position: -96px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
  position: absolute;
  top: 23px;
  left: 1px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent url(/static/images/jcarousel/p-prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
  left: auto;
  right: 1px;
  background-image: url(/static/images/jcarousel/p-next-horizontal.png);
}

/*.jcarousel-skin-tango .jcarousel-prev-horizontal:hover, 
.jcarousel-skin-tango .jcarousel-prev-horizontal:focus {
    background-position: -38px 0;
}*/
/*.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    background-position: -70px 0;
}*/
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal {
  cursor: default;
  background-position: -96px 0;
}

.jcarousel-list-horizontal ul {
  overflow: hidden;
  position: relative;
  top: 0px;
  margin: 0px;
  padding: 0px;
  left: -100px;
  width: 380px;
}

/**
 *  Vertical Buttons
 */
.jcarousel-skin-tango .jcarousel-next-vertical {
  position: absolute;
  bottom: 2px;
  left: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent url(/static/images/jcarousel/p-next-vertical.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-next-vertical:hover {
  background-position: 0 -32px;
}

.jcarousel-skin-tango .jcarousel-next-vertical:active {
  background-position: 0 -64px;
}

.jcarousel-skin-tango .jcarousel-next-disabled-vertical,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:active {
  cursor: default;
  background-position: 0 -96px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical {
  position: absolute;
  top: 1px;
  left: 18px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent url(/static/images/jcarousel/p-prev-vertical.png) no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-prev-vertical:hover {
  background-position: 0 -32px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical:active {
  background-position: 0 -64px;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-vertical,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active {
  cursor: default;
  background-position: 0 -96px;
}

/* TAKEN FROM:  http://www.naturemade.com/static/css/min/2E13395D9CD248C8AE0CC656E65C0BB8?v=16.12.08.1   */
/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_window {
  font: 12px Arial, Helvetica, sans-serif;
  color: #333333;
}

#TB_secondLine {
  font: 10px Arial, Helvetica, sans-serif;
  color: #666666;
}

#TB_window a:link {
  color: #666666;
}

#TB_window a:visited {
  color: #666666;
}

#TB_window a:hover {
  color: #000;
}

#TB_window a:active {
  color: #666666;
}

#TB_window a:focus {
  color: #666666;
}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
}

.TB_overlayMacFFBGHack {
  background: url(/static/js/thickbox/macFFBgHack.png) repeat;
}

.TB_overlayBG {
  background-color: #000;
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

* html #TB_overlay {
  /* ie6 hack */
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_window {
  position: fixed;
  background: #ffffff;
  z-index: 102;
  color: #000000;
  display: none;
  border: 4px solid #525252;
  text-align: left;
  top: 50%;
  left: 50%;
}

* html #TB_window {
  /* ie6 hack */
  position: absolute;
  margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_window img#TB_Image {
  display: block;
  margin: 15px 0 0 15px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #666;
  border-left: 1px solid #666;
}

#TB_caption {
  height: 25px;
  padding: 7px 30px 10px 25px;
  float: left;
}

#TB_closeWindow {
  height: 25px;
  padding: 11px 25px 10px 0;
  float: right;
}

#TB_closeAjaxWindow {
  position: absolute;
  top: -20px;
  right: -20px;
  padding: 7px 10px 5px 0;
  margin-bottom: 1px;
  text-align: right;
  float: right;
}

#TB_ajaxWindowTitle {
  float: left;
  padding: 7px 0 5px 10px;
  margin-bottom: 1px;
}

#TB_title {
  background-color: #e8e8e8;
  height: 27px;
}

#TB_ajaxContent {
  clear: both;
  padding: 2px 15px 15px 15px;
  overflow: auto;
  text-align: left;
  line-height: 1.4em;
}

#TB_ajaxContent.TB_modal {
  padding: 15px;
}

#TB_ajaxContent p {
  padding: 5px 0px 5px 0px;
}

#TB_load {
  position: fixed;
  display: none;
  height: 13px;
  width: 208px;
  z-index: 103;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -104px;
  /* -height/2 0 0 -width/2 */
}

* html #TB_load {
  /* ie6 hack */
  position: absolute;
  margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_HideSelect {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  border: none;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
}

* html #TB_HideSelect {
  /* ie6 hack */
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_iframeContent {
  clear: both;
  border: none;
  margin-bottom: -1px;
  margin-top: 1px;
  _margin-bottom: 1px;
}

/* ----------------------------------------------------------------------------
// BREADCRUMB
// --------------------------------------------------------------------------*/
#breadcrumbNav {
  list-style: none;
  font-weight: bold;
  font-size: 12px;
  color: #eab42f;
  margin: 20px 0 25px;
}

#breadcrumbNav li:last-child {
  color: #696a6d;
}

#breadcrumbNav a {
  padding-right: 4px;
}

#breadcrumbNav li {
  padding-right: 6px;
}

/* ----------------------------------------------------------------------------
// RELATED PRODUCTS BLOCK
// --------------------------------------------------------------------------*/
.p-related-products-wrap {
  padding: 15px 5% 100px;
  /* clearfix */
  *zoom: 1;
}

.p-related-products-wrap:before, .p-related-products-wrap:after {
  content: " ";
  display: table;
}

.p-related-products-wrap:after {
  clear: both;
}

.p-related-products-wrap.four-column {
  padding: 5px 0 120px;
}

.p-related-products {
  float: left;
  width: 33%;
}

.four-column .p-related-products {
  width: 25%;
}

.p-related-products ul {
  list-style: none;
  margin: 0 40px;
}

.p-related-products li {
  margin-bottom: 1em;
}

/* ----------------------------------------------------------------------------
// SIMPLE MODAL
// --------------------------------------------------------------------------*/
/* general modal styling */
div.modal_outer {
  position: relative;
  background-color: #ffc737;
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

div.modal_outer > div:first-child:not(.modal_inner) {
  background: #ffc737 !important;
}

div.modal_inner {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 20px 30px;
  display: inline-block;
  margin: 7px;
}

/* specific to 'message' overlay */
#div-nm-message-popup-dd {
  display: none;
}

#div-nm-message-popup-dd #divPopupMessage-dd {
  width: 500px;
  margin-top: .8em;
  margin-bottom: .8em;
}

#div-nm-message-popup-dd #divPopupMessage-dd p {
  margin-bottom: 1em;
}

#div-nm-message-popup-dd .modal_title {
  color: white;
  font-size: 19px;
  font-weight: bold;
  padding: 8px 0 2px 37px;
}

/* Overlay */
#simplemodal-overlay {
  background-color: #000;
  /* cursor:wait; */
}

.simplemodal-container a.modalCloseImg {
  background: url(/images/icon_close.png) 50% 50% no-repeat;
  width: 20px;
  height: 21px;
  display: inline;
  z-index: 3200;
  position: absolute;
  top: 2px;
  right: 2px;
  cursor: pointer;
}

.simplemodal-container button {
  display: inline-block;
  background: #85a048;
  color: white;
  padding: 4px 30px;
  font-size: 17px;
  transition: background 0.2s ease-out;
  outline: none;
  border: 0;
  width: auto !important;
  height: auto !important;
}

.simplemodal-container button:hover {
  color: white;
  background: #9db860;
}

/* ----------------------------------------------------------------------------
// PROMO
// --------------------------------------------------------------------------*/
.nm-promo {
  background: #78be20;
  display: none;
}

.promo-content {
  width: 960px;
  height: 247px;
  margin: 0 auto;
}

.wr-logo {
  float: left;
  height: 161px;
  padding-top: 53px;
  margin-right: 33px;
}

.promo-text {
  float: left;
  width: 500px;
  color: #fff;
  font-size: 13pt;
}

.promo-text .headline {
  font-family: 'Muli';
  font-weight: 300;
  font-size: 25px;
  padding-top: 69px;
}

.promo-description {
  font-size: 13px;
  padding: 18px 0 12px 0;
}

.wr-register {
  float: left;
  width: 115px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.promo-login {
  float: left;
  padding: 6px 0 0 20px;
}

.promo-btn {
  float: left;
  padding-top: 20px;
  margin-right: 12px;
  cursor: pointer;
}

/* ----------------------------------------------------------------------------
// HOME
// --------------------------------------------------------------------------*/
/* Hero slideshow controls */
.fca {
  height: 467px;
  overflow: hidden;
  position: relative;
  background: #eeeeee;
}

.fca-slides {
  position: absolute;
  left: -480px;
  width: 1920px;
}

#fca-controls {
  z-index: 99;
  position: absolute;
  bottom: 20px;
  width: 340px;
  left: 612px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#fca-next {
  margin-left: 14px;
  cursor: pointer;
}

#fca-prev {
  margin-right: 14px;
  cursor: pointer;
}

#fca-next:after,
#fca-prev:after {
  content: "";
  border-bottom: 7px solid rgba(255, 255, 255, 0.7);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

#fca-prev:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#fca-next:hover:after,
#fca-prev:hover:after {
  border-bottom: 7px solid white;
}

#fca-nav a {
  margin-left: 3px;
  margin-right: 3px;
  background: white;
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 7px;
  overflow: hidden;
  text-indent: 99999px;
  opacity: .4;
  transition: opacity 0.2s ease-out;
}

#fca-nav a.activeSlide {
  opacity: .7;
}

#fca-nav a:hover,
#fca-nav a.activeSlide:hover {
  opacity: 1;
}

@media (min-width: 977px) {
  .fca-slides {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #fca-controls {
    left: calc(612px + (100% - 960px)/2);
  }
}

/* Top Spiff styling (product shots) */
.top-spiff-container {
  margin: 70px auto 0;
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-spiff {
  width: 226px;
  text-align: center;
  /* background:url('/images/spiff-bottle-shadow.jpg') 50% top no-repeat; */
}

.top-spiff img {
  width: 100%;
}

.top-spiff span {
  margin: 24px 0 14px;
  display: block;
}

.top-spiff a {
  font-size: 19px;
}

/* Lower Spiff styling (CTA Grid) */
.lower-spiff-container {
  max-width: 1300px;
  min-width: 960px;
  margin: 50px auto 85px;
  /* clearfix */
  *zoom: 1;
}

.lower-spiff-container:before, .lower-spiff-container:after {
  content: " ";
  display: table;
}

.lower-spiff-container:after {
  clear: both;
}

.lower-spiff-container img {
  width: 100%;
}

.lower-spiff-column1 {
  float: left;
  width: 58%;
  padding-right: 1.076923076923077%;
}

.lower-spiff-column2 {
  float: left;
  width: 40.92307692307692%;
}

.lower-spiff-column2 .lower-spiff + .lower-spiff {
  padding-top: 2.631578947368421%;
}

/* ----------------------------------------------------------------------------
// PRODUCT DETAIL PAGE
// --------------------------------------------------------------------------*/
.p-top {
  width: 960px;
}

/* Top Left block */
.p-top-left {
  float: left;
  width: 640px;
  margin: 40px 0 80px;
}

.p-top-left-prod-img {
  float: right;
  width: 575px;
  text-align: center;
  line-height: 468px;
}

#divEnlarge {
    line-height: 30px;
}

.p-top-left-tn {
  float: right;
  margin-top: 75px;
}

#imgProductImage {
    vertical-align: middle;
}

/* Top Right block - product description area */
.p-top-right {
  float: left;
  width: 320px;
  margin: 40px 0 80px;
}

.p-top-right h1 {
  font-size: 21px;
  font-weight: bold;
  color: #696a6d;
  margin: 0 0 .1em;
  line-height: 1.3;
}

.p-top-right h2 {
  font-size: 18px;
  font-weight: normal;
  margin: 0 0 .5em;
}

.p-top-right h2:after {
  display: none;
}

#divProductDescription {
  margin: .75em 0;
}

.divPharmacistRecommended {
  margin: 2.5em 0 2.5em -8px;
}

.product-description-list {
  font-size: 15px;
  border-top: 1px solid #ebebeb;
  width: 85%;
  margin: 0 0 2.2em;
}

.product-description-list__row {
  border-bottom: 1px solid #ebebeb;
  padding: 3px 0 4px;
}

.product-description-list dt {
  color: #eab42f;
  font-weight: bold;
  width: 90px;
  float: left;
}

.product-description-list dd {
  margin-left: 90px;
}

.buy-now-button {
  display: inline-block;
  background: #85a048;
  color: white;
  padding: 4px 30px;
  font-size: 17px;
  transition: background 0.2s ease-out;
}

.buy-now-button:hover {
  color: white;
  background: #9db860;
}

/* Bottom block - product details */
.p-bottom {
  clear: left;
  width: 960px;
  padding-bottom: 100px;
  position: relative;
}

.p-bottom-section {
  clear: left;
}

.p-bottom .p-bottom-section {
  clear: none;
  float: left;
}

.p-bottom .p-bottom-section h2 {
  display: inline-block;
  font-size: 16px;
  padding: 3px 25px 3px 0;
  border-right: 1px solid #959595;
  margin-right: 25px;
  margin-bottom: 50px;
}

.p-bottom .p-bottom-section h2:after {
  display: none;
}

.p-bottom .p-bottom-section:last-child h2 {
  margin-right: 0;
  border-right: none;
}

.p-bottom .p-bottom-section .filter-title {
  cursor: pointer;
}

.p-bottom .p-bottom-section .filter-title.active {
  color: #eab42f;
  cursor: default;
}

.p-bottom .filter_container {
  position: absolute;
  left: 0;
  margin-left: 55px;
  width: calc(100% - 55px);
}

.p-bottom .filter_container ul {
  margin: .2em 0 1em 4em;
}

.p-bottom .filter_container .available-size-label {
  font-size: 16px;
  font-weight: bold;
  color: #eab42f;
}

.p-bottom .filter_container .details-left {
  float: left;
  width: 610px;
}

.p-bottom .filter_container .details-right {
  float: right;
  padding-top: 70px;
}

/* FAQ elements */
.p-faq dt {
  font-weight: bold;
  cursor: pointer;
  padding: 0 0 1.5em;
}

.p-faq dt:before {
  font-weight: bold;
  font-size: 18px;
  color: #eab42f;
  content: "+";
  width: 16px;
  display: inline-block;
}

.p-faq dt.active:before {
  content: "-";
}

.p-faq dd {
  padding-bottom: 1.5em;
}

.p-faq dd p:first-child:before {
  content: "Answer: ";
  font-weight: bold;
  padding-right: 5px;
  color: #eab42f;
  display: inline-block;
}

/* Quality tab content */
.p-bottom .filter_container .quality {
  list-style: none;
  margin: 0;
}

.quality li {
  margin: 2em 0;
  clear: left;
}

.quality .div-left {
  float: left;
  clear: left;
  width: 250px;
  margin-bottom: 2em;
  text-align: center;
}

.quality .div-right {
  margin-left: 280px;
}

/* Recommended Articles */
.recommended-articles-and-videos-title {
  margin-bottom: 55px;
}

.recommended-articles-and-videos ul {
  list-style: none;
  margin: 0;
}

.recommended-articles-and-videos li {
  margin-bottom: 3.2em;
  line-height: 1.8;
  /* clearfix */
  *zoom: 1;
}

.recommended-articles-and-videos li:before, .recommended-articles-and-videos li:after {
  content: " ";
  display: table;
}

.recommended-articles-and-videos li:after {
  clear: both;
}

.recommended-articles-and-videos-img {
  width: 100px;
  float: left;
  padding-top: 3px;
}

.recommended-articles-and-videos-img img {
  /* border:2px solid #636464; */
  border: 1px solid #bfbfc1;
}

.recommended-articles-and-videos-text {
  margin-left: 125px;
}

.recommended-articles-and-videos-text a {
  font-weight: bold;
  font-size: 15px;
  color: #eab42f;
}

.recommended-articles-and-videos-see-all {
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  color: #eab42f;
  margin: 0 0 90px 125px;
  text-transform: capitalize;
}

.recommended-articles-and-videos-see-all:after {
  content: " ";
  width: 14px;
  height: 14px;
  margin-left: 6px;
  position: relative;
  top: 4px;
  display: inline-block;
  background: url(/images/icon_open-close.png) left top no-repeat;
}

.recommended-articles-and-videos-see-all.active:after {
  background-position: left -14px;
}

/* ----------------------------------------------------------------------------
// PRODUCT CATEGORY PAGE
// --------------------------------------------------------------------------*/
.main-top-content {
  width: 960px;
  margin: auto;
}

.main-top-content p {
  margin-bottom: 1em;
}

.read-more-link {
  /* By default, should be hidden - will be displayed if 'read-more' content is found */
  display: none;
  font-weight: bold;
  color: #eab42f;
  position: relative;
  cursor: pointer;
}

.read-more-link:after {
  content: " ";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 6px;
  top: 7px;
  position: relative;
  background: url(/images/icon_arrow-down.png) left top no-repeat;
}

.read-more-link.active:after {
  background: url(/images/icon_arrow-up.png) left top no-repeat;
}

/* Wraps content following intro para */
#main-content-container {
  margin: 3em 0;
}

.refine-by {
  /* No longer showing 'Refine by' heading */
  display: none;
}

/* Filter section */
#filter-accordion {
  position: relative;
  /* clearfix */
  *zoom: 1;
}

#filter-accordion:before, #filter-accordion:after {
  content: " ";
  display: table;
}

#filter-accordion:after {
  clear: both;
}

#filter-accordion .filter-title-bg {
  float: left;
  margin-right: 12px;
}

#filter-accordion .filter-title {
  border: 1px solid #bfbfc1;
  padding: 10px 14px;
  line-height: 1;
  font-size: 14px;
  font-weight: normal;
  color: #8a8c8e;
  cursor: pointer;
  min-width: 170px;
  background: url(/images/icon_dropdown-arrows.png) right top no-repeat;
  transition: border-color 0.2s ease-out;
}

#filter-accordion .filter-title:hover {
  border: 1px solid #636464;
}

#filter-accordion .filter-title.active {
  background: url(/images/icon_dropdown-arrows.png) right bottom no-repeat;
}

#filter-accordion .filter-accordion {
  position: absolute;
  top: 37px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#filter-accordion .filter-accordion ul {
  margin: 0;
  padding: 5px 14px;
  list-style: none;
  background: white;
  min-width: 170px;
}

#filter-accordion .filter-accordion li span {
  display: block;
  padding: 2px 0;
  margin: 0;
  color: #8a8c8e;
  cursor: pointer;
  transition: color 0.2s ease-out;
}

#filter-accordion .filter-accordion li span:hover {
  color: #636464;
}

#filter-accordion .clear-filters {
  float: left;
  cursor: pointer;
  display: none;
  /* hidden by default */
  background: #eab42f;
  color: white;
  margin-top: 2px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: background 0.2s ease-out;
}

#filter-accordion .clear-filters:hover {
  background: #ffc737;
}

/* Results */
.products-top {
  clear: left;
  margin-top: 50px;
}

.products-top h3 {
  font-size: 19px;
  overflow: hidden;
}

.products-top h3:after {
  border-top: 1px solid #636464;
  content: " ";
  display: inline-block;
  width: 100%;
  margin-right: -100%;
  margin-left: 10px;
}

/* Product Thumbs */
.products-column {
  transition: height 0.2s ease-out;
}

.products-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding: 30px 0 70px;
  width: 960px;
}

.products-column li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
  margin-top: 35px;
  margin-bottom: 35px;
  text-align: center;
  font-size: 15px;
}

.products-column li.middle {
  margin-left: 145px;
  margin-right: 145px;
}

.products-column li a img {
  padding-bottom: 25px;
}

.products-column li a div {
  padding: 0 0 1px 25px;
  text-align: left;
}

.products-column li .product-dosage,
.products-column li .product-form {
  font-size: 13px;
}

/* Related Resources */
.related-resource {
  width: 960px;
}

.related-resource ul {
  margin: 0;
  list-style: none;
  padding-bottom: 80px;
  /* clearfix */
  *zoom: 1;
}

.related-resource ul:before, .related-resource ul:after {
  content: " ";
  display: table;
}

.related-resource ul:after {
  clear: both;
}

.related-resource li {
  width: 440px;
  float: left;
  margin-bottom: 40px;
  position: relative;
}

.related-resource li:nth-of-type(odd) {
  margin-right: 80px;
  clear: left;
}

.related-resource .related-img {
  float: left;
  border: 1px solid #bfbfc1;
}

.related-resource .related-img + .related-text {
  margin-left: 185px;
}

.related-resource .related-text {
  /* height:85px;
    overflow:hidden; */
}

.related-resource .related-text a {
  font-weight: bold;
  display: block;
}

/* ----------------------------------------------------------------------------
// ARTICLES AND VIDEOS PAGE
// --------------------------------------------------------------------------*/
/* Featured area */
#somecontent {
  position: relative;
  padding-top: 180px;
  margin-top: 10px;
}

#somecontent .main_content_left,
#somecontent .main_content_right {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 190px;
  width: 450px;
}

#somecontent .main_content_left.active,
#somecontent .main_content_right.active {
  display: block;
}

#somecontent .main_content_left img,
#somecontent .main_content_right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  border: 1px solid #bfbfc1;
}

#somecontent .main_content_left .bluelink_title,
#somecontent .main_content_right .bluelink_title {
  font-size: 16px;
  font-weight: bold;
}

#somecontent .main_content_left p:first-child,
#somecontent .main_content_right p:first-child {
  font-size: 30px;
  color: #eab42f;
  line-height: 1.1;
}

#somecontent .main_content_left p:first-child strong,
#somecontent .main_content_right p:first-child strong {
  font-weight: normal !important;
}

/* Featured article */
/* Featured video */
#somecontent .main_content_right {
  display: none;
  /* Hide video item by default */
}

#somecontent .main_content_right:after {
  content: " ";
  width: 45px;
  height: 45px;
  background: url(/images/icon_video.png) left top no-repeat;
  display: block;
  position: absolute;
  left: 58px;
  top: 23px;
}

/* Tabs */
#tabArticlesVideos #tabs {
  margin: 0 0 65px;
  list-style: none;
}

#tabArticlesVideos #tabs li {
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  transition: color 0.1s ease-out;
  cursor: pointer;
}

#tabArticlesVideos #tabs li.active {
  color: #eab42f;
  cursor: default;
}

#tabArticlesVideos #tabs li #tab1Counter,
#tabArticlesVideos #tabs li #tab2Counter,
#tabArticlesVideos #tabs li #tab3Counter {
  display: none;
}

#tabArticlesVideos #tabs li + li {
  border-left: 1px solid #959595;
  padding-left: 22px;
  margin-left: 14px;
}

/* TabPanes */
#tabArticlesVideos #tabPanes {
  list-style: none;
  margin: 0 0 90px;
  width: 960px;
}

#tabArticlesVideos #tabPanes .wrapper {
  /* clearfix */
  *zoom: 1;
  display: none;
}

#tabArticlesVideos #tabPanes .wrapper:before, #tabArticlesVideos #tabPanes .wrapper:after {
  content: " ";
  display: table;
}

#tabArticlesVideos #tabPanes .wrapper:after {
  clear: both;
}

#tabArticlesVideos #tabPanes .wrapper.active {
  display: block;
}

#tabArticlesVideos #tabPanes .wrapper > div {
  width: 450px;
  background: none !important;
  border-radius: 0 !important;
  float: left;
  margin-bottom: 38px;
}

#tabArticlesVideos #tabPanes .wrapper > div:nth-child(odd) {
  margin-right: 60px;
  clear: left;
}

#tabArticlesVideos #tabPanes .avTxt {
  float: none !important;
  margin: 0 !important;
  padding-left: 190px;
  position: relative;
  color: #8a8c8e;
}

#tabArticlesVideos #tabPanes .avTxt + div {
  clear: none !important;
  height: 0 !important;
}

#tabArticlesVideos #tabPanes .avTxt img {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #bfbfc1;
}

#tabArticlesVideos #tabPanes .avTxt a {
  font-weight: bold;
}

/* ARTICLE SPECIFIC ---------------------------------*/
/* Set min height for article thumbs */
#tabArticlesVideos #tabPanes li:nth-child(1) .avTxt {
  min-height: 117px;
}

/* VIDEO SPECIFIC -----------------------------------*/
/* Set min height for video thumbs */
#tabArticlesVideos #tabPanes li:nth-child(2) .avTxt {
  min-height: 90px;
}

#tabArticlesVideos #tabPanes li:nth-child(2) .avTxt:after {
  content: " ";
  width: 45px;
  height: 45px;
  background: url(/images/icon_video.png) left top no-repeat;
  display: block;
  position: absolute;
  left: 58px;
  top: 23px;
}

/* ----------------------------------------------------------------------------
// VIDEO PAGE
// --------------------------------------------------------------------------*/
.video-intro {
  margin: 2.5em 0 6em;
}

/* Recommended Resources */
.recommended-articles-and-videos-av {
  width: 960px;
  margin-bottom: 70px;
  /* clearfix */
  *zoom: 1;
}

.recommended-articles-and-videos-av:before, .recommended-articles-and-videos-av:after {
  content: " ";
  display: table;
}

.recommended-articles-and-videos-av:after {
  clear: both;
}

.recommended-articles-and-videos-av .article {
  display: inline-block;
  width: 420px;
  margin: 0 30px !important;
  padding-bottom: 38px;
  float: left;
  /* Explicit height smooths reveal transition */
  height: 90px;
  position: relative;
}

.recommended-articles-and-videos-av .article:after {
  content: " ";
  width: 45px;
  height: 45px;
  background: url(/images/icon_video.png) left top no-repeat;
  display: block;
  position: absolute;
  left: 58px;
  top: 23px;
}

.recommended-articles-and-videos-img-av {
  float: left;
  width: 160px;
  border: 1px solid #bfbfc1;
}

.recommended-articles-and-videos-text-av {
  margin-left: 180px;
  color: #8a8c8e;
  /* position:absolute;
    bottom:0; */
}

.recommended-articles-and-videos-text-av a {
  font-weight: bold;
  color: #8a8c8e;
}

.recommended-articles-and-videos-text-av a:hover {
  color: #76a243;
}

.recommended-articles-and-videos-av-toggle {
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  color: #eab42f;
  padding: 0 0 10px 30px;
  text-transform: capitalize;
  clear: left;
}

.recommended-articles-and-videos-av-toggle:after {
  content: " ";
  width: 14px;
  height: 14px;
  margin-left: 6px;
  position: relative;
  top: 4px;
  display: inline-block;
  background: url(/images/icon_open-close.png) left top no-repeat;
}

.recommended-articles-and-videos-av-toggle.active:after {
  background-position: left -14px;
}

/* ----------------------------------------------------------------------------
// ARTICLE PAGE
// --------------------------------------------------------------------------*/
#article #content {
  color: #8a8c8e;
  width: 960px;
}

#article #content p {
  margin: 0 0 1em;
}

.article-image {
  float: left;
  margin: 0 1.5em  1.5em 0;
  border: 1px solid #bfbfc1;
}

.article-header {
  margin: 0 1em .5em 340px;
  font-weight: bold;
  /* clearfix */
  *zoom: 1;
}

.article-header:before, .article-header:after {
  content: " ";
  display: table;
}

.article-header:after {
  clear: both;
}

.article-header .article-author {
  margin: -.3em 0 0;
  padding: 0 0 .3em;
  font-size: 18px;
  font-weight: normal;
}

.article-subhead {
  font-size: 17px !important;
  color: #eab42f;
}

.article-subhead a {
  font-size: 17px !important;
  color: #eab42f;
}

.article-subhead a:hover {
  color: #76a243;
}

#article .p-bottom-section {
  margin-top: 70px;
}

/* ----------------------------------------------------------------------------
// FAQ PAGES
// --------------------------------------------------------------------------*/
/* Left column styling */
#leftCol h3 {
  font-size: 15px;
}

#leftCol h3 a {
  color: #696a6d !important;
}

#leftCol h3 a:hover {
  color: #76a243 !important;
}

#leftCol #panel ul {
  margin: 1em 0;
  list-style: none;
}

#leftCol #panel li {
  line-height: 1.2;
  margin: 0 0 1em;
}

/* Main content area */
#centerCol h1,
#centerCol h2,
#centerCol h3 {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 1em;
  color: #eab42f;
}

#centerCol h2,
#centerCol h3 {
  margin-top: 2em;
}

#centerCol h2:after {
  display: none;
}

#centerCol .products {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  list-style: none;
  -webkit-columns: 4;
          columns: 4;
  -webkit-column-gap: 70px;
          column-gap: 70px;
}

#centerCol .products li {
  margin-bottom: .2em;
  white-space: nowrap;
}

/* FAQs */
#centerCol dl {
  color: #8a8c8e;
  margin-right: 3em;
}

#centerCol dt {
  font-weight: bold;
  cursor: pointer;
  padding: 0 0 1em 18px;
  margin: 0;
  position: relative;
}

#centerCol dt:before {
  font-weight: bold;
  font-size: 18px;
  color: #eab42f;
  content: "+";
  width: 16px;
  display: inline-block;
  position: relative;
  margin-left: -18px;
}

#centerCol dt.open:before {
  content: "-";
}

#centerCol dd {
  display: none;
  margin: 0 0 1.5em 0;
  padding: 0;
  height: auto;
}

#centerCol dd p {
  margin: 0 0 .1em 0;
}

#centerCol dd span {
  font-weight: bold;
  color: #eab42f;
}

/* ----------------------------------------------------------------------------
// SEARCH PAGE
// --------------------------------------------------------------------------*/
/* Search field */
#search_results .formSubmitOnEnter > div {
  display: none;
}

#search_results #searchbox {
  margin-top: 20px;
  float: none !important;
  position: relative;
}

#search_results #searchbox tbody tr:first-child td:first-child {
  /* hide 'search again' label */
  display: none;
}

#search_results #searchbox input {
  width: 165px !important;
  padding: 8px 15px;
  color: #8a8c8e;
  border: 1px solid #bfbfc1;
  transition: border 0.2s ease-out;
  outline: none;
}

#search_results #searchbox input:hover,
#search_results #searchbox input:focus {
  border: 1px solid #636464;
}

#search_results .greenBtn {
  position: absolute;
  top: 0;
  left: 235px;
  width: 140px;
  background: #eab42f;
  color: white;
  text-align: center;
  padding: 7px 0;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.2s ease-out;
}

#search_results .greenBtn:hover {
  background: #ffc737;
}

#search_results .helplink {
  width: 26px;
  height: 26px;
  border: 1px solid #696a6d;
  border-radius: 13px;
  display: block;
  overflow: hidden;
  line-height: 10;
  position: absolute;
  transition: all 0.1s ease-out;
  top: 2px;
  left: 388px;
  cursor: pointer;
}

#search_results .helplink:hover {
  background: #696a6d;
}

#search_results .helplink:after {
  content: "i";
  position: absolute;
  left: 10px;
  top: 2px;
  display: block;
  line-height: 1;
  font-size: 22px;
  transition: all 0.1s ease-out;
}

#search_results .helplink:hover:after {
  color: white;
}

/* Tab filter elements */
#search_results #tabs {
  padding: 0;
  margin: 15px 0 60px;
  list-style: none;
}

#search_results #tabs li {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  font-size: 17px !important;
  transition: color 0.2s ease-out;
}

#search_results #tabs li.active {
  color: #eab42f;
}

#search_results #tabs li:first-child {
  /* compensate for &nbsp; */
  margin-right: -1em;
}

#search_results #tabs li + li {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #959595;
}

#search_results #tabs li #spanRefinedBy {
  display: none;
}

/* Results item */
#search_results #tabPanes {
  list-style: none;
  margin: 0 0 90px;
}

#search_results #tabPanes .wrapper {
  display: none;
}

#search_results #tabPanes .wrapper.active {
  display: block;
}

#search_results #tabPanes td {
  display: block;
  position: relative;
  margin-bottom: 30px;
  /* clearfix */
  *zoom: 1;
}

#search_results #tabPanes td:before, #search_results #tabPanes td:after {
  content: " ";
  display: table;
}

#search_results #tabPanes td:after {
  clear: both;
}

/* Title of result item */
#search_results #tabPanes td > div:nth-child(1) {
  margin: 0 0 0 135px !important;
}

#search_results #tabPanes td > div:nth-child(1) h6 {
  font-size: 15px;
  transition: color 0.2s ease-out;
}

#search_results #tabPanes td > div:nth-child(1) h6:hover {
  /* FAQ items are not wrapped in <a> tags - need explicit color setting */
  color: #76a243;
}

/* Description of result item */
#search_results #tabPanes td > div:nth-child(2) > div:not(.imgContainer) {
  margin-left: 135px;
}

/* Image of result item */
#search_results #tabPanes td .imgContainer {
  position: relative;
  top: -5px;
  text-align: center;
  margin-right: 25px !important;
  margin-top: -20px;
  width: 110px;
  float: left;
}

/* FAQ results */
.sr-faq-question {
  padding-left: 18px !important;
  background-position: 0 4px !important;
}

.sr-faq-answer {
  padding-top: 1.5em;
}

.sr-faq-answer div {
  padding: 0 !important;
}

.sr-faq-answer div:not(.imgContainer):before {
  content: "Answer:";
  font-weight: bold;
  padding-right: 5px;
  color: #eab42f;
}

/* pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a {
  color: #8a8c8e;
  font-size: 19px;
  margin: 0 9px;
}

.pagination .current {
  color: #eab42f;
  font-size: 19px;
  font-weight: bold;
  margin: 0 9px;
}

.pagination .prev:after {
  content: "<";
  font-weight: bold;
}

.pagination .next:after {
  content: ">";
  font-weight: bold;
}

.pagination .prev.current:after,
.pagination .next.current:after {
  color: #dddddd;
}

/* ----------------------------------------------------------------------------
// OUR COMMITMENT
// --------------------------------------------------------------------------*/
/* Main content area */
.featureAbout {
  margin: 2.5em 0;
}

.featureAbout p {
  margin-bottom: .5em;
}

.section-heading {
  color: #eab42f;
  font-weight: bold;
  font-size: 17px;
}

.boxAbout img {
  float: left;
  padding-top: 6px;
}

.boxAbout > div {
  margin-left: 125px;
}

.section-read-more {
  font-size: 12px;
  font-weight: bold;
}

.related-links {
  margin-top: .8em;
  font-size: 12px;
}

.related-links p {
  display: inline;
}

.related-links p:after {
  content: "/";
  margin: 0 .2em 0 .5em;
}

.related-links > p:first-child {
  /* heading for related links section */
  color: #eab42f;
  font-weight: bold;
  text-decoration: underline;
}

.related-links > p:first-child:after {
  content: " ";
  margin: 0 1em 0 0;
}

.related-links > p:last-child:after {
  content: " ";
  margin: 0;
}

/* Sub-pages */
.copy a {
  color: #eab42f;
  font-weight: bold;
}

.copy a:hover {
  color: #ffc737;
}

/* ----------------------------------------------------------------------------
// HEALTHCARE PROFESSIONALS (see 'two-column' styling)
// --------------------------------------------------------------------------*/

/*# sourceMappingURL=maps/main.css.map */


