/* Added for displaying the category promotional banner on any page*/
.category-promo-banner-global {
  position: relative;
  height: 215px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%; }

@media (max-width: 468px) {
  .category-promo-banner-global {
    height: 80px; } }
@media (min-width: 468px) and (max-width: 996px) {
  .category-promo-banner-global {
    height: 140px; } }/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
﻿@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 0px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.p-cookies {
	position: fixed;
    width: 100%;
    bottom: 0;
    overflow-y: auto;
    max-height: 100vh;
    font-size: 12px;
    background-color: #ffffff;
    z-index: 10;
    visibility :  hidden;
}

.p-cookies-top {
	background-color: #004680;
	color: #ffffff;
    padding-top: 20px;
}

.p-cookies-head {
	text-transform: uppercase;
	font-size: 18px;
	margin-bottom: 10px;
}

.p-cookies-head img {
	padding-right: 15px;
}

.p-cookies button {
	width: 100px;
}
/******* Check box CSS Starts **********/

.control {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  width: 24%;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 50%;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #68960C;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.control--radio .control__indicator {
  border-radius: 50%;
}


.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid #68960C;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  font-weight: 400;
}


input[disabled] + .control__indicator {
    opacity: 0.5;
}

/*****************/

.p-cookies-view-details a span {
	color: #ffffff;
	text-decoration: underline;
}

.p-cookies-view-details a span.content_visible{
	display: inline-block;
}

.p-cookies-view-details a span.content_hidden{
	display: none;
}

.p-cookies-view-details.visible a span.content_visible{
	display: none;
}

.p-cookies-view-details.visible a span.content_hidden{
	display: inline-block;
}

.p-cookies-view-details button {
	width: 80px;
	height: 30px;
	margin-left: 25px;
	border: none;
}

.p-cookies-slide {
	display: none;
}

#details-slide img {
	margin-left: 4px;
}

.p-cookies-slide p {
	margin-bottom: 10px;
}

.p-cookies-slide .tab-pane {
	padding-top: 10px;
	text-align: left;
	min-height: 230px;
}

.p-cookies-slide .slide-container {
	margin-top: 15px;
	text-align: center;
	margin-bottom: 15px;
}

.p-cookies-slide .slide-container ul {
	display: inline-block;
	border-bottom: none;
}

.p-cookies-slide .slide-container ul li {
	background-color: #EFF0F2;
	margin-top: 3px;
}

.p-cookies-slide .slide-container ul li.active a {
	background-color: #AAD455;
	color: #004680;
}

.p-cookies-slide .slide-container .cookie-declaration ul li, .p-cookies-slide .slide-container .cookie-declaration ul li.active a  {
	border-radius: 5px 0 0 5px;
}

.p-cookies-slide .slide-container .cookie-declaration .nav-tabs>li>a {
	margin-right: 0;
}

.p-cookies-slide .slide-container .tab-content {
	border-top: 3px solid #AAD455;
	margin-top: -1px;
}

.p-cookies-slide .nav-tabs>li>a {
	font-size: 14px;
}

.cookie-declaration .nav-tabs>li {
	float: none;
}

.p-cookies-slide .slide-container .cookie-declaration ul {
	float: left;
}

.p-cookies-slide .slide-container .cookie-declaration .tab-content {
	border-top: none;
	float: left;
    width: calc(100% - 185px);
}

.p-cookies-slide .nav>li>a {
	padding: 5px 10px;
}

#tabs_cookie {
	margin-right: 20px;
}

.p-cookies-slide .cookie-declaration .tab-pane {
	padding: 0;
	margin-top: 3px;
}

.p-cookies-slide table {
	width: 100%;
}

.table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #f6f6f6;
}

.table-responsive {
	max-height: 280px;
    overflow-y: auto;
}

@media (max-width: 768px) {
	.p-cookies-slide .slide-container .panel-group {
		text-align: left;
	}
	.table-responsive {
		width: 100%;
    	overflow-y: auto;
	}
	.control {
		width: 48%;
	}
	.p-cookies-view-details {
		margin-bottom: 15px;
	}
	.cookie-declation-accordion .panel-heading {
		padding: 0;
	}
	.cookie-declation-accordion .panel-heading a {
		padding: 10px 15px;
		display: block;
	}
	.cookie-declation-accordion .panel-body p {
		line-height: 1.5;
	}
	.cookie-declation-accordion .panel-body {
		line-height: 1.5;
	}
	.p-cookies-slide .slide-container > ul {
		display: block;
	}
	.p-cookies-slide .slide-container > ul > li {
		width: 50%;
	}
	.cookie-declation-accordion {
		margin-top: 2px;
	}
	.p-cookies-head {
		font-size: 18px;
	}
	.table-responsive {
		max-height: none;
	}

}

@media (max-width: 768px) and (min-width: 768px) {
	.table-responsive {
		max-height: 260px;
	    overflow-y: auto;
	}
}@font-face{font-family:'sli-systems-icons';src:url("../fonts/sli-systems-icons.eot?1035392");src:url("../fonts/sli-systems-icons.eot?1035392#iefix") format("embedded-opentype"),url("../fonts/sli-systems-icons.svg?1035392#sli-systems-icons") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'sli-systems-icons';src:url("data:application/octet-stream;base64,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") format("woff"),url("data:application/octet-stream;base64,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") format("truetype")}#sli_autocomplete [class^="icon-"]:before,#sli_autocomplete [class*=" icon-"]:before{font-family:"sli-systems-icons";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}#sli_autocomplete .icon-arrow-up:before{content:'?'}.z-index-1{z-index:1 !important}.is-hidden{display:none !important}.sli_sticky,.sli_sticky--full-width{background-color:#fff !important;float:none !important;width:100% !important;margin:0 !important;position:fixed !important;left:0 !important;top:0 !important;padding-bottom:0 !important;padding-top:0 !important;z-index:300001}input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}.suggested-word,[data-provide="rac"]{-moz-appearance:none;-webkit-appearance:none}.is-safari .suggested-word,.is-safari [data-provide="rac"]{padding-right:0 !important}[data-provide="rac"]{position:relative;z-index:1}.suggested-word{background-color:#fff !important;color:#ccc}.suggested-word::-webkit-search-cancel-button{display:none}.sli-close-area{bottom:0;display:block;left:0;position:fixed;right:0;top:0}#sli_autocomplete{position:absolute;display:none;z-index:300000;list-style:none;margin:0;padding:0;font-size:14px;background-color:#fff;border:1px solid #e5e1f2;-webkit-box-shadow:0 5px 10px #e5e1f2;-moz-box-shadow:0 5px 10px #e5e1f2;box-shadow:0 5px 10px #e5e1f2;text-align:left}#sli_autocomplete a{color:inherit;text-decoration:none}#sli_autocomplete ul,#sli_autocomplete li{list-style:none;padding:0;margin:0}#sli_autocomplete li{position:relative}#sli_autocomplete .no-products{font-weight:bold;min-height:150px;padding-top:20px;text-align:center}#sli_autocomplete .loading{position:absolute;top:20px;right:0;background-size:100%;height:100%;background-color:#eee;opacity:.25;z-index:1000}#sli_autocomplete .loader-icon{position:absolute;top:40px;left:50%;display:none;z-index:1100}#sli_autocomplete .loading .loader-icon{display:block}#sli_autocomplete .sli_ac_section{background:#8976c4;color:#fff;font-size:80%;font-weight:normal;margin:0;padding:5px;text-align:right}#sli_autocomplete .sli_ac_suggestion.is-active,#sli_autocomplete .sli_ac_suggestion.sli_ac_active,#sli_autocomplete .sli_ac_product.sli_ac_active{background-color:#e5e1f2}#sli_autocomplete .sli_ac_suggestion{cursor:pointer;overflow:auto;text-overflow:ellipsis}#sli_autocomplete .sli_suggestion_arrow{display:none}#sli_autocomplete .sli_ac_sugg{display:block;-moz-hyphens:auto;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;padding:.8em;overflow-wrap:break-word;word-wrap:break-word}#sli_autocomplete .searchIn .in{color:#999;font-style:normal}#sli_autocomplete .searchIn .scope{color:#8976c4;font-style:normal}#sli_autocomplete .sli_ac_product{box-sizing:border-box;cursor:pointer;min-height:70px}#sli_autocomplete .sli_ac_product a{display:block}#sli_autocomplete .sli_ac_image{height:100%;width:100%}#sli_autocomplete .sli_ac_title{font-size:12px;font-weight:bold;word-wrap:break-word}#sli_autocomplete .sli_ac_excerpt{font-size:12px;padding:.5em}#sli_autocomplete .highlight{font-weight:bold;color:#004680}#sli_autocomplete .view-more-link{text-align:center}#sli_autocomplete .view-more-link a{background-color:#8976c4;color:#fff;display:block;padding:.5em}#sli_autocomplete .view-more-link a:hover{background-color:#6a52b5}#sli_autocomplete .sli_ac_logo{clear:both;padding:5px;text-align:center;width:30%}#sli_autocomplete .sli_ac_logo img{vertical-align:middle}#sli_autocomplete .close-rac{display:none}#sli_autocomplete .sli_ac_rank{font-size:11px;display:none;color:#fff;overflow-x:hidden;overflow-y:auto;position:relative;top:5px;left:0;padding:5px 10px;border-radius:5px;background-color:#000;background-color:rgba(0,0,0,.9);text-align:left}#sli_autocomplete .sli_ac_rank:after{content:'This overlay is visible only on demo pages.';display:block}#sli_autocomplete .list .sli_ac_product{border-bottom:1px solid #e5e1f2}#sli_autocomplete .list .image{float:left;height:80px;width:80px}#sli_autocomplete .list .details{margin-left:80px}#sli_autocomplete .list .sli_ac_title{display:block;margin:0;padding:.5em .5em 0}#sli_autocomplete .list .sli_ac_excerpt{float:left;width:65%}#sli_autocomplete .list .price{float:right;font-weight:bold;padding:.5em .5em .5em 0;text-align:right;vertical-align:bottom}#sli_autocomplete .list .orig_price{float:right;font-weight:bold;text-decoration:line-through;padding:.5em .5em .5em 0;text-align:right;vertical-align:bottom}#sli_autocomplete .grid .view-more-link{margin:.5em}#sli_autocomplete .grid .view-more-link a{border-radius:3px}#sli_autocomplete .grid .productList{text-align:center}#sli_autocomplete .grid .sli_ac_product{display:inline-block;padding:.5em;text-align:center;vertical-align:top;width:24%}#sli_autocomplete .grid .image{display:inline-block}#sli_autocomplete .grid .sli_ac_title{margin:.5em 0;min-height:50px}#sli_autocomplete .grid .sli_ac_excerpt{display:none}ul#sli_autocomplete#sli_autocomplete.sli_rich.is-full-width{left:0;right:0;width:100% !important}#sli_autocomplete.is-full-width .close-rac{background-color:#fff;-webkit-box-shadow:0 5px 10px #e5e1f2;-moz-box-shadow:0 5px 10px #e5e1f2;box-shadow:0 5px 10px #e5e1f2;color:#8976c4;cursor:pointer;display:block;font-size:20px;left:0;padding:1.5em 0;position:absolute;right:0;text-align:center}#sli_autocomplete.has-touch .sli_ac_suggestion{padding:.5em 0}#sli_autocomplete.has-touch .sli_suggestion_arrow{-webkit-tap-highlight-color:#e5e1f2;border-left:1px solid #e5e1f2;display:none;float:right;padding:.8em;text-align:center;width:44px}#sli_autocomplete.has-touch .sli_suggestion_arrow:active{background-color:#e5e1f2}#sli_autocomplete.has-touch .sli_suggestion_arrow i{color:#8976c4;display:inline-block;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}#sli_autocomplete.has-touch .sli_ac_sugg{margin-right:44px}#sli_autocomplete.has-touch .searchIn .sli_ac_sugg{margin-right:0}#sli_autocomplete.has-touch .view-more-link a{line-height:44px}@media(max-width:768px){form.has-touch [data-provide="rac"]{font-size:16px;min-height:44px;padding:.5em .7em}form.has-touch button[type="submit"]{min-height:44px}}@media(min-width:768px){#sli_autocomplete .list .sli_ac_excerpt{width:70%}#sli_autocomplete .grid .sli_ac_title{min-height:40px;overflow:hidden}#sli_autocomplete.dynamic .view-more-link,#sli_autocomplete.has-touch .view-more-link{margin:.5em}#sli_autocomplete.dynamic .view-more-link a,#sli_autocomplete.has-touch .view-more-link a{border-radius:3px}#sli_autocomplete.dynamic .loading,#sli_autocomplete.has-touch .loading{left:30%;width:70%}#sli_autocomplete.dynamic .sli_ac_section,#sli_autocomplete.has-touch .sli_ac_section{text-align:center}#sli_autocomplete.dynamic .sli_ac_suggestions,#sli_autocomplete.has-touch .sli_ac_suggestions{display:inline-block;float:left;width:100%}#sli_autocomplete.dynamic .sli_ac_suggestion:hover .sli_ac_sugg,#sli_autocomplete.has-touch .sli_ac_suggestion:hover .sli_ac_sugg{text-decoration:underline}#sli_autocomplete.dynamic .searchIn .sli_ac_sugg,#sli_autocomplete.has-touch .searchIn .sli_ac_sugg{padding-left:2em}#sli_autocomplete.dynamic .searchIn .word,#sli_autocomplete.has-touch .searchIn .word{display:none}#sli_autocomplete.dynamic .sli_ac_products,#sli_autocomplete.has-touch .sli_ac_products{-webkit-box-shadow:inset 2px 2px 5px #fff;-moz-box-shadow:inset 2px 2px 5px #fff;box-shadow:inset 2px 2px 5px #fff;display:inline-block;width:70%}#sli_autocomplete.dynamic .sli_ac_excerpt,#sli_autocomplete.has-touch .sli_ac_excerpt{padding-bottom:0}#sli_autocomplete.dynamic .list .sli_ac_product,#sli_autocomplete.has-touch .list .sli_ac_product{padding:.5em 0 .5em .5em}#sli_autocomplete.dynamic .grid .image,#sli_autocomplete.has-touch .grid .image{height:80px;width:80px}#sli_autocomplete.dynamic.right .loading,#sli_autocomplete.has-touch.right .loading{left:0}#sli_autocomplete.dynamic.right .sli_ac_suggestions,#sli_autocomplete.has-touch.right .sli_ac_suggestions{float:right}#sli_autocomplete.dynamic.right .sli_ac_products,#sli_autocomplete.has-touch.right .sli_ac_products{-webkit-box-shadow:inset -2px 2px 5px #fff;-moz-box-shadow:inset -2px 2px 5px #fff;box-shadow:inset -2px 2px 5px #fff}#sli_autocomplete.dynamic.right .sli_ac_products .sli_ac_section,#sli_autocomplete.has-touch.right .sli_ac_products .sli_ac_section{border-left:0;border-right:1px solid #efefef}#sli_autocomplete.has-touch .sli_ac_suggestion:hover .sli_ac_sugg{text-decoration:none}}@media(min-width:992px){#sli_autocomplete .list .sli_ac_excerpt{width:80%}}#sli_autocomplete{max-width:500px;border:0}#sli_autocomplete>div{background:#fff}#sli_autocomplete .sli_ac_logo,#sli_autocomplete .productList{background:#fff}#sli_autocomplete .view-more-link{background:transparent}#sli_autocomplete .productList{max-height:400px;overflow-y:auto}#sli_autocomplete .sli_ac_products .sli_ac_section{background:#fff}#sli_autocomplete .sli_ac_suggestions .sli_ac_section{background:#fff}#sli_autocomplete.dynamic h4.sli_ac_section{display:block;padding:15px 25px;color:#004680;font-size:14px;text-align:left;font-weight:bold;border:0}#sli_autocomplete .loading{background:#fff}#sli_autocomplete .searchIn .scope,#sli_autocomplete .searchIn .in,#sli_autocomplete .searchIn .word{color:#808080}#sli_autocomplete .sli_ac_image{height:auto;width:auto}#sli_autocomplete .sli_ac_suggestions{background:#fff}#sli_autocomplete .sli_ac_suggestion{color:#222;padding-left:15px}#sli_autocomplete .sli_ac_suggestion.sli_ac_active,#sli_autocomplete .sli_ac_suggestion.is-active{color:#222;background:#fff}#sli_autocomplete.dynamic.rich .sli_ac_products{background:#fff;box-shadow:none;overflow:auto;max-height:540px}#sli_autocomplete .grid .sli_ac_products,#sli_autocomplete .sli_ac_products{box-shadow:none}@media(min-width:768px){#sli_autocomplete .grid .sli_ac_title{min-height:0;height:38px;overflow:hidden}}#sli_autocomplete .grid .sli_ac_product{border:3px solid #fff;width:32%}#sli_autocomplete .sli_ac_product#sli_ac_active{color:#3372a5;background:#fff;border:3px solid #3372a5}#sli_autocomplete .sli_ac_active.searchIn .word,#sli_autocomplete .sli_ac_active.searchIn .in,#sli_autocomplete .sli_ac_active.searchIn .scope{color:#626262}ul#sli_autocomplete .sli_ac_suggestion{white-space:normal !important}ul#sli_autocomplete .sli_ac_products .no-products{font-size:20px}form.has-touch [data-provide="rac"]{min-height:0 !important}#sli_autocomplete.dynamic .sli_ac_suggestion:hover .sli_ac_sugg,#sli_autocomplete.has-touch .sli_ac_suggestion:hover .sli_ac_sugg{text-decoration:none;background-color:#FCD469}#sli_autocomplete.dynamic .view-more-link a,#sli_autocomplete.has-touch .view-more-link a{border-radius:15px;background:#FCD469;color:#004680;font-weight:bold}#sli_autocomplete.dynamic .view-more-link a:hover,#sli_autocomplete.has-touch .view-more-link a:hover{color:#004680;background:#FCD469}@media(max-width:767px){#sli_autocomplete{max-width:450px}}.mw_search_container .suggested-word{background:transparent !important}#sli_autocomplete.has-touch .sli_suggestion_arrow i{color:#f9a661}#sli_autocomplete .grid .sli_ac_title,#sli_autocomplete .sli_ac_sugg{color:#626262}#sli_autocomplete .sli_ac_article_wrapper{background:#fff;padding:10px}#sli_autocomplete .sli_ac_section_line{display:block;padding:15px 10px;color:#004680;font-size:14px;text-align:left;font-weight:bold;border:0;margin:0 15px;border-top:1px solid #e5e1f2}#sli_autocomplete .sli_ac_article_list{margin:0 40px 0;column-count:2;color:#626262;font-weight:400}#sli_autocomplete .sli_ac_article{padding-bottom:10px}#sli_autocomplete .sli_ac_suggestions h4.sli_ac_section,.sli_ac_products h4.sli_ac_section{display:none !important}#sli_autocomplete .sli_ac_ssuggestions,.sli_ac_products{margin-top:20px !important}.Category .radio-styled label{text-transform:capitalize}#sli_autocomplete .sli_ac_products{display:none !important}/* $icon-sprite-url: '/img/newdesign/icons/sprite-icons.png' */
.ml-5 {
  margin-left: 5px; }

.pl-5 {
  padding-left: 5px; }

.ml-10 {
  margin-left: 10px; }

.pl-10 {
  padding-left: 10px; }

.ml-15 {
  margin-left: 15px; }

.pl-15 {
  padding-left: 15px; }

.ml-25 {
  margin-left: 25px; }

.pl-25 {
  padding-left: 25px; }

.ml-30 {
  margin-left: 30px; }

.pl-30 {
  padding-left: 30px; }

.mr-0 {
  margin-right: 0px; }

.pr-0 {
  padding-right: 0px; }

.mr-5 {
  margin-right: 5px; }

.pr-5 {
  padding-right: 5px; }

.mr-10 {
  margin-right: 10px; }

.pr-10 {
  padding-right: 10px; }

.mr-15 {
  margin-right: 15px; }

.pr-15 {
  padding-right: 15px; }

.mr-20 {
  margin-right: 20px; }

.pr-20 {
  padding-right: 20px; }

.mr-25 {
  margin-right: 25px; }

.pr-25 {
  padding-right: 25px; }

.mr-30 {
  margin-right: 30px; }

.pr-30 {
  padding-right: 30px; }

.mr-35 {
  margin-right: 35px; }

.pr-35 {
  padding-right: 35px; }

.mr-40 {
  margin-right: 40px; }

.pr-40 {
  padding-right: 40px; }

.mr-45 {
  margin-right: 45px; }

.pr-45 {
  padding-right: 45px; }

.mr-50 {
  margin-right: 50px; }

.pr-50 {
  padding-right: 50px; }

.mr-55 {
  margin-right: 55px; }

.pr-55 {
  padding-right: 55px; }

.mr-60 {
  margin-right: 60px; }

.pr-60 {
  padding-right: 60px; }

.mb-0 {
  margin-bottom: 0px; }

.pb-0 {
  padding-bottom: 0px; }

.mb-5 {
  margin-bottom: 5px; }

.pb-5 {
  padding-bottom: 5px; }

.mb-10 {
  margin-bottom: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.mb-15 {
  margin-bottom: 15px; }

.pb-15 {
  padding-bottom: 15px; }

.mb-20 {
  margin-bottom: 20px; }

.pb-20 {
  padding-bottom: 20px; }

.mb-25 {
  margin-bottom: 25px; }

.pb-25 {
  padding-bottom: 25px; }

.mb-30 {
  margin-bottom: 30px; }

.pb-30 {
  padding-bottom: 30px; }

.mb-35 {
  margin-bottom: 35px; }

.pb-35 {
  padding-bottom: 35px; }

.mb-40 {
  margin-bottom: 40px; }

.pb-40 {
  padding-bottom: 40px; }

.mb-45 {
  margin-bottom: 45px; }

.pb-45 {
  padding-bottom: 45px; }

.mb-50 {
  margin-bottom: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.mb-55 {
  margin-bottom: 55px; }

.pb-55 {
  padding-bottom: 55px; }

.mb-60 {
  margin-bottom: 60px; }

.pb-60 {
  padding-bottom: 60px; }

.mb-100 {
  margin-bottom: 100px; }

.pb-100 {
  padding-bottom: 100px; }

.mt-0 {
  margin-top: 0px; }

.pt-0 {
  padding-top: 0px; }

.mt-5 {
  margin-top: 5px; }

.pt-5 {
  padding-top: 5px; }

.mt-10 {
  margin-top: 10px; }

.pt-10 {
  padding-top: 10px; }

.mt-15 {
  margin-top: 15px; }

.pt-15 {
  padding-top: 15px; }

.mt-20 {
  margin-top: 20px; }

.pt-20 {
  padding-top: 20px; }

.mt-25 {
  margin-top: 25px; }

.pt-25 {
  padding-top: 25px; }

.mt-30 {
  margin-top: 30px; }

.pt-30 {
  padding-top: 30px; }

.mt-35 {
  margin-top: 35px; }

.pt-35 {
  padding-top: 35px; }

.mt-40 {
  margin-top: 40px; }

.pt-40 {
  padding-top: 40px; }

.mt-45 {
  margin-top: 45px; }

.pt-45 {
  padding-top: 45px; }

.mt-50 {
  margin-top: 50px; }

.pt-50 {
  padding-top: 50px; }

.mt-55 {
  margin-top: 55px; }

.pt-55 {
  padding-top: 55px; }

.mt-60 {
  margin-top: 60px; }

.pt-60 {
  padding-top: 60px; }

.mt-100 {
  margin-top: 100px; }

.pt-100 {
  padding-top: 100px; }

.ml-0 {
  margin-left: 0px; }

.pl-0 {
  padding-left: 0px; }

.ml-5 {
  margin-left: 5px; }

.pl-5 {
  padding-left: 5px; }

.ml-10 {
  margin-left: 10px; }

.pl-10 {
  padding-left: 10px; }

.ml-15 {
  margin-left: 15px; }

.pl-15 {
  padding-left: 15px; }

.ml-20 {
  margin-left: 20px; }

.pl-20 {
  padding-left: 20px; }

.ml-25 {
  margin-left: 25px; }

.pl-25 {
  padding-left: 25px; }

.ml-30 {
  margin-left: 30px; }

.pl-30 {
  padding-left: 30px; }

.ml-35 {
  margin-left: 35px; }

.pl-35 {
  padding-left: 35px; }

.ml-40 {
  margin-left: 40px; }

.pl-40 {
  padding-left: 40px; }

.ml-45 {
  margin-left: 45px; }

.pl-45 {
  padding-left: 45px; }

.ml-50 {
  margin-left: 50px; }

.pl-50 {
  padding-left: 50px; }

.ml-55 {
  margin-left: 55px; }

.pl-55 {
  padding-left: 55px; }

.ml-60 {
  margin-left: 60px; }

.pl-60 {
  padding-left: 60px; }

.display-block {
  display: block !important; }

.display-inline {
  display: inline; }

@media (max-width: 767px) {
  .display-inline-block-xs {
    display: inline-block !important; } }

.display-table {
  display: table; }

.nowrap {
  white-space: nowrap; }

.list-normal {
  line-height: 1.5;
  margin-bottom: 25px; }

.list-noindent, .list-plain {
  list-style-type: disc;
  padding-left: 1em; }

.list-unstyled, .list-plain, .footer-sitemap-list {
  padding-left: 0;
  list-style: none; }

/* Remove bullets in IE 10 & 11 when list is display none on page load.  */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .list-unstyled, .list-plain, .footer-sitemap-list {
    padding-left: 0;
    list-style: none;
    list-style-image: url(data:0);
    list-style-type: none; } }
.strong-link {
  text-transform: uppercase;
  font-weight: 700; }

.border-light-grey {
  border-bottom: 1px solid #F1F1F1; }

.border-bottom-grey {
  border-bottom: 1px solid #CCCCCC; }

.border-top-grey {
  border-top: 1px solid #CCCCCC; }

.border-right-grey {
  border-right: 1px solid #CCCCCC; }

.no-border {
  border: none !important; }

a.underline {
  text-decoration: underline; }
  a.underline:hover {
    text-decoration: none; }

a.arrow-link {
  color: #16336D;
  text-decoration: none; }
  a.arrow-link:after {
    /* fa-chevron-right-blue */
    content: "" !important;
    background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: 0 -864px;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 6px;
    text-decoration: underline; }
  a.arrow-link:after, a.arrow-link:hover:after {
    text-decoration: none !important; }
  a.arrow-link:hover {
    text-decoration: underline; }

a.link-normal {
  color: #16336D;
  text-decoration: underline; }
  a.link-normal:hover {
    text-decoration: none; }

a.link-underline {
  text-decoration: underline; }
  a.link-underline:hover {
    text-decoration: none; }

.no-margin {
  margin: 0 !important; }

.no-row-margin {
  margin-left: 0;
  margin-right: 0; }
  @media (max-width: 767px) {
    .no-row-margin-xs {
      margin-left: -15px;
      margin-right: -15px; } }

.no-container-margin {
  margin-left: -20px !important;
  margin-right: -20px !important; }

.gutter-10.row {
  margin-right: -5px;
  margin-left: -5px; }

.gutter-10 > [class^="col-"], .gutter-10 > [class^=" col-"], .slick-slide {
  padding-right: 5px;
  padding-left: 5px; }

.gutter-0.row {
  margin-right: 0;
  margin-left: 0; }

.gutter-0 > [class^="col-"], .gutter-0 > [class^=" col-"] {
  padding-right: 0;
  padding-left: 0; }

.relative {
  position: relative; }

.inline-block {
  display: inline-block; }

.full-width {
  width: 100%; }

.full-height {
  height: 100%; }

.max-width-100 {
  max-width: 100%; }

.absolute-left {
  left: 0; }

.absolute-right {
  right: 0; }

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  transform: translate(-50%, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */ }

.pull-sm-right {
  float: right; }
  @media (max-width: 767px) {
    .pull-sm-right {
      float: none !important; } }

.pull-md-right {
  float: right; }
  @media (max-width: 991px) {
    .pull-md-right {
      float: none !important; } }

.fixed-top {
  position: absolute;
  top: 0; }

.absolute-vertical-center {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
  -ms-transform: translate(0, -50%);
  /* IE 9 */
  transform: translate(0, -50%);
  /* IE 10, Fx 16+, Op 12.1+ */ }

.anchor-large {
  font-size: 20px;
  font-weight: 700; }

.bg-light-blue {
  background-color: #C3E2FF !important; }

.bg-light-grey {
  background-color: #F1F1F1 !important; }

.bg-orange {
  background-color: #F7872B !important; }

.bg-red {
  background-color: #E04646 !important; }

.bg-green {
  background-color: #AAD455 !important; }

.bg-dark-blue {
  background-color: #16336D !important; }

.bg-white {
  background-color: #FFFFFF; }

.bg-cream {
  background-color: #FFF2DC; }

.cat-sale-bg {
  background-color: #FFCED6; }

.cat-multivitamin-bg {
  background-color: #B7F7B7; }

.cat-jointsupport-bg {
  background-color: #C3D7FF; }

.cat-digestivesupport-bg {
  background-color: #C3E2FF; }

.cat-magnesium-bg {
  background-color: #C3D7FF; }

.cat-hearthealth-bg {
  background-color: #FFCED6; }

.cat-eyehealth-bg {
  background-color: #FFD3AF; }

.cat-immunesupport-bg {
  background-color: #FFE8B4; }

.fade-80 {
  opacity: 0.8; }

.fade-70 {
  opacity: 0.7; }

.fade-60 {
  opacity: 0.6; }

.placeholder-video {
  min-width: 240px;
  min-height: 150px; }

.omnes, .omnes-lt, .omnes-lt-24, .omnes-lt-32, .omnes-lt-42, .omnes-md, .omnes-md-upper, .centered-callout-text, .omnes-md-20, .form-message, .omnes-semibold, .omnes-semibold-upper, .footer-sitemap-title, .omnes-semibold-14, .btn, .omnes-blue, .omnes-blue-strong, .omnes-b-s-u, .omnes-blue-upper {
  font-family: area-normal, Arial, sans-serif !important; }

.omnes-md, .omnes-md-upper, .centered-callout-text, .omnes-md-20, .form-message {
  font-weight: 700; }

.omnes-md-upper, .centered-callout-text {
  text-transform: uppercase; }

.omnes-semibold, .omnes-semibold-upper, .footer-sitemap-title, .omnes-semibold-14, .btn {
  font-weight: 700; }

.omnes-semibold-upper, .footer-sitemap-title {
  text-transform: uppercase; }

.omnes-lt-24 {
  font-size: 24px; }

.omnes-lt-32 {
  font-size: 32px; }

.omnes-lt-42 {
  font-size: 42px; }

.omnes-md-20 {
  font-size: 20px; }

.omnes-semibold-14 {
  font-size: 14px; }

.karla {
  font-family: area-normal, Arial, sans-serif !important; }

.omnes-blue {
  color: #16336D; }

.omnes-blue-strong {
  color: #16336D;
  font-weight: 700; }

.omnes-blue-md {
  color: #16336D;
  font-family: area-normal, Arial, sans-serif;
  font-weight: 700; }

.omnes-b-s-u {
  font-weight: 700;
  text-transform: uppercase; }

.omnes-blue-upper {
  color: #16336D;
  text-transform: uppercase; }

.omnes-md-upper, .centered-callout-text {
  font-weight: 700;
  text-transform: uppercase; }

.text-white {
  color: #FFFFFF !important; }
.text-red {
  color: #E04646 !important; }
.text-navy {
  color: #0C3670 !important; }
.text-orange {
  color: #F7872B !important; }
.text-dark-grey {
  color: #626262 !important; }
.text-blue, .btn {
  color: #16336D !important; }
.text-medium-blue {
  color: #049ae0 !important; }
.text-green {
  color: #547214 !important; }
.text-greenlight {
  color: #AAD455 !important; }
.text-alert, .text-message {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5; }
.text-alert {
  color: #E04646; }
.text-alert-bold {
  color: #E04646;
  font-weight: 700; }
.text-important-notice {
  color: #E04646;
  font-size: 13px; }
.text-italic {
  font-style: italic; }
.text-light {
  font-weight: 400 !important; }
.text-normal {
  font-weight: 400 !important; }
.text-medium {
  font-weight: 700 !important; }
.text-strong {
  font-weight: 700 !important; }
.text-bold {
  font-weight: bold !important; }
.text-12 {
  font-size: 12px; }
.text-14, .btn-small {
  font-size: 14px; }
.text-16, .btn {
  font-size: 16px; }
.text-18 {
  font-size: 18px; }
.text-21 {
  font-size: 21px; }
.text-24 {
  font-size: 24px; }
.text-26 {
  font-size: 26px; }
@media (max-width: 767px) {
  .text-center-xs {
    text-align: center; } }
.text-center {
  text-align: center; }
.text-strike {
  text-decoration: line-through; }
.text-upper, .btn {
  text-transform: uppercase; }
.text-larger {
  font-size: 18px; }
.text-large {
  font-size: 20px; }
.text-md-upper {
  font-weight: 700;
  text-transform: uppercase; }
.text-bold-upper {
  font-weight: 700;
  text-transform: uppercase; }
.text-huge {
  font-size: 76px;
  line-height: 1em; }
.text-small {
  font-size: 12px; }
.text-smaller {
  font-size: 10px; }

.anchor-grey {
  color: #626262; }

.no-text-transform {
  text-transform: none; }

.valign-top {
  vertical-align: top; }

.accent-yellow {
  color: #EDB435; }

.accent-green {
  color: #52C152; }

.accent-blue {
  color: #2679C4; }

.accent-purple {
  color: #712EBF; }

.brown {
  color: #5b4c3e; }

.cta-main-account {
  color: #EDB435; }

.accent-orange {
  color: #F7872B; }

.accent-red {
  color: #E04646; }

/*
@font-face {
    font-family: "Omnes";
    src: url('/vf/puritanspride/fonts/omnes/omnesregular-roman-webfont.woff'), 
         url('/vf/puritanspride/fonts/omnes/omnesregular-roman-webfont.woff2');
    font-weight: $font-weight-regular;
    font-style: normal;
}

 Omnes medium is being loaded from _CommonCss.shtml instead, so we can load Omnes Semi Bold on windows instead 
  @font-face {
  font-family: "Omnes";
  src: url('/vf/puritanspride/fonts/omnes/omnesmedium-roman-webfont.woff'),
       url('/vf/puritanspride/fonts/omnes/omnesmedium-roman-webfont.woff2');
  font-weight: $font-weight-bold;
  font-style: normal;
}*/
h1, h2, h3, h4, h5, h6 {
  font-family: area-normal, Arial, sans-serif;
  margin: 0; }

h1, h2, h3, h4 {
  font-weight: 800; }

h5, h6, h7 {
  font-weight: 700; }

h1.content-heading {
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    h1.content-heading {
      font-size: 28px;
      /*margin-bottom: 20px;*/ } }

@media (max-width: 767px) {
  h2 {
    font-size: 21px; } }

@media (max-width: 767px) {
  h3 {
    font-size: 18px; } }

h5 {
  font-family: area-normal, Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 5px; }

p {
  line-height: 1.2;
  margin-bottom: 20px; }

input[type='number'] {
  -moz-appearance: textfield; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #FFF2DC;
  opacity: 1; }

input::-ms-clear {
  display: none; }

.form-message, .form-validation-error, .field-validation-error {
  font-size: 14px;
  line-height: 1.5; }

.form-validation-error, .field-validation-error {
  font-weight: bold;
  color: #E04646; }

.form-validation-error {
  margin-bottom: 20px; }

.field-validation-error {
  margin-right: 10px;
  float: right; }

.field-validation-valid {
  display: none; }

.input-validation-error {
  border-color: #E04646; }

.form-group {
  margin-bottom: 12px; }
  @media (max-width: 767px) {
    .form-group {
      margin-bottom: 10px; } }
  @media (max-width: 1199px) {
    .form-group .form-apt {
      margin-top: 8px; } }
  .form-group > label {
    /* @extend .omnes-md;*/
    color: #16336D;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700; }
    .form-group > label.with-rounded-input {
      margin-left: 3px; }
    .form-group > label.add-margin {
      margin-bottom: 15px; }
  .form-group .form-label-callout {
    font-size: 14px; }
  .form-group.inline-input-group {
    position: relative; }
    .form-group.inline-input-group label {
      display: block; }
    .form-group.inline-input-group input, .form-group.inline-input-group .select-wrapper {
      width: calc(50% - 10px);
      float: left; }
      .form-group.inline-input-group input:first-of-type, .form-group.inline-input-group .select-wrapper:first-of-type {
        margin-right: 10px; }
      .form-group.inline-input-group input:last-of-type, .form-group.inline-input-group .select-wrapper:last-of-type {
        float: left; }
    .form-group.inline-input-group .field-validation-error {
      position: absolute;
      top: 0;
      right: 0; }

.form-control {
  border-color: #AAAAAA; }
  .form-control[type=text], .form-control[type=email], .form-control[type='password'], .form-control[type='tel'] {
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    height: 35px;
    padding: 5px 18px;
    line-height: 5.5 !important; }
    .form-control[type=text]::-webkit-input-placeholder, .form-control[type=email]::-webkit-input-placeholder, .form-control[type='password']::-webkit-input-placeholder, .form-control[type='tel']::-webkit-input-placeholder {
      font-style: normal;
      overflow: visible; }
    .form-control[type=text]:-moz-placeholder, .form-control[type=email]:-moz-placeholder, .form-control[type='password']:-moz-placeholder, .form-control[type='tel']:-moz-placeholder {
      font-style: normal;
      overflow: visible; }
    .form-control[type=text]::-moz-placeholder, .form-control[type=email]::-moz-placeholder, .form-control[type='password']::-moz-placeholder, .form-control[type='tel']::-moz-placeholder {
      font-style: normal;
      overflow: visible; }
    .form-control[type=text]:-ms-input-placeholder, .form-control[type=email]:-ms-input-placeholder, .form-control[type='password']:-ms-input-placeholder, .form-control[type='tel']:-ms-input-placeholder {
      font-style: normal;
      overflow: visible; }
    .form-control[type=text].valid, .form-control[type=email].valid, .form-control[type='password'].valid, .form-control[type='tel'].valid {
      border-color: #AAD455; }
    @media (max-width: 767px) {
      .form-control[type=text].mobile-bottom-margin, .form-control[type=email].mobile-bottom-margin, .form-control[type='password'].mobile-bottom-margin, .form-control[type='tel'].mobile-bottom-margin {
        margin-bottom: 15px; } }
    @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
      .form-control[type=text], .form-control[type=email], .form-control[type='password'], .form-control[type='tel'] {
        /* IE10+ specific styles go here */
        padding: 10px 18px; } }
  .form-control:focus {
    border-color: #CCCCCC; }

textarea.form-control {
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  padding: 14px 25px; }
  textarea.form-control.has-success {
    border-color: #AAD455; }
  textarea.form-control.has-error {
    border-color: #E04646; }

select.form-control {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -ms-border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  height: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 45px; }
  select.form-control.no-border {
    padding-left: 0; }

.select-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block; }
  .select-wrapper:after {
    position: absolute;
    right: 8px;
    top: 4px;
    z-index: 1;
    /* fa-chevron-down-gray */
    content: "" !important;
    background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: 0 -720px;
    width: 14px;
    height: 9px;
    display: inline-block;
    margin: 12px 8px;
    pointer-events: none;
    box-sizing: border-box; }

.radio-styled, .checkbox-styled {
  position: relative; }
  .radio-styled input[type=checkbox], .radio-styled [type=radio], .checkbox-styled input[type=checkbox], .checkbox-styled [type=radio] {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
    .radio-styled input[type=checkbox] + span, .radio-styled [type=radio] + span, .checkbox-styled input[type=checkbox] + span, .checkbox-styled [type=radio] + span {
      position: absolute;
      top: 0;
      left: 0;
      width: 20px;
      height: 20px;
      border: 1px solid #AAAAAA; }
      .radio-styled input[type=checkbox] + span:after, .radio-styled [type=radio] + span:after, .checkbox-styled input[type=checkbox] + span:after, .checkbox-styled [type=radio] + span:after {
        position: absolute;
        top: 4px;
        left: 4px;
        content: '';
        opacity: 0; }
    .radio-styled input[type=checkbox]:checked + span, .radio-styled [type=radio]:checked + span, .checkbox-styled input[type=checkbox]:checked + span, .checkbox-styled [type=radio]:checked + span {
      border: 1px solid #16336D; }
    .radio-styled input[type=checkbox]:checked + span:after, .radio-styled [type=radio]:checked + span:after, .checkbox-styled input[type=checkbox]:checked + span:after, .checkbox-styled [type=radio]:checked + span:after {
      opacity: 1; }
    .radio-styled input[type=checkbox]:disabled + span, .radio-styled [type=radio]:disabled + span, .checkbox-styled input[type=checkbox]:disabled + span, .checkbox-styled [type=radio]:disabled + span {
      border: 1px solid #CCCCCC;
      background-color: #F1F1F1; }
      .radio-styled input[type=checkbox]:disabled + span:after, .radio-styled [type=radio]:disabled + span:after, .checkbox-styled input[type=checkbox]:disabled + span:after, .checkbox-styled [type=radio]:disabled + span:after {
        opacity: 0; }
      .radio-styled input[type=checkbox]:disabled + span ~ label, .radio-styled [type=radio]:disabled + span ~ label, .checkbox-styled input[type=checkbox]:disabled + span ~ label, .checkbox-styled [type=radio]:disabled + span ~ label {
        color: #CCCCCC !important; }
  .radio-styled label, .checkbox-styled label {
    padding-left: 30px;
    color: #626262 !important;
    font-weight: 400;
    font-family: area-normal, Arial, sans-serif !important;
    font-size: 1rem;
    line-height: 1.4;
    white-space: normal; }

.radio-styled > span {
  -ms-border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }
  .radio-styled > span:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: #16336D;
    -ms-border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ }

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

.checkbox-styled span:after {
  width: 12px;
  height: 7px;
  border: 2px solid #16336D;
  border-top: none;
  border-right: none;
  background: transparent;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

span#ZipCode1Message, span#BillTo_ZipCode1Message, span#ShipTo_ZipCode1Message, span#Address_ZipCode1Message {
  left: 75px !important;
  top: -2px !important; }

span#ZipCode2Message, span#BillTo_ZipCode2Message, span#ShipTo_ZipCode2Message {
  float: right !important; }

.securitycode-lable {
  width: 215px !important; }

.product-quantity-table .radio-styled [type="radio"] {
  position: relative;
  height: 0px; }

.product-quantity-table-dup .radio-styled [type="radio"] {
  position: relative;
  height: 0px; }

.circle-loader {
  margin: 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: #5cb85c;
  animation-name: loader-spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  display: inline-block;
  vertical-align: top; }

.circle-loader,
.circle-loader:after {
  border-radius: 50%;
  width: 30px;
  height: 30px; }

.load-complete {
  -webkit-animation: none;
  animation: none;
  border-color: #5cb85c;
  transition: border 500ms ease-out; }

.checkmark {
  display: none; }
  .checkmark.draw:after {
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg); }
  .checkmark:after {
    opacity: 1;
    height: 15px;
    width: 7.5px;
    transform-origin: left top;
    border-right: 2px solid #5cb85c;
    border-top: 2px solid #5cb85c;
    content: '';
    left: 5.5px;
    top: 15px;
    position: absolute; }

@keyframes loader-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1; }
  20% {
    height: 0;
    width: 7.5px;
    opacity: 1; }
  40% {
    height: 15px;
    width: 7.5px;
    opacity: 1; }
  100% {
    height: 15px;
    width: 7.5px;
    opacity: 1; } }
.placeholder-hero {
  min-height: 400px;
  background-color: #F1F1F1; }

.content-block-banner {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  width: 70%;
  margin: 0 auto; }

.btn {
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  padding: 12px 20px; }

.btn {
    /*    &-white {
        background-color: $white;
        border: 1px solid $primary-btn-color;

        &:hover, &:active, &:active:focus {
            @include background-opacity($primary-btn-color, 0.5);
        }
    }
*/ }
  .btn-x {
    font-size: 14px; }
  .btn-inline {
    display: inline; }
  .btn-primary {
    background-color: #EDB435;
    border: 1px solid #EDB435 !important; }
    .btn-primary:hover, .btn-primary:active, .btn-primary:active:focus {
      background-color: #EDB435;
      /* The Fallback */
      background-color: rgba(237, 180, 53, 0.5); }
    .btn-primary .fa-shopping-cart:before {
      position: relative;
      top: 5px;
      /* fa-shopping-cart */
      content: "" !important;
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -1368px;
      width: 20px;
      height: 20px;
      display: inline-block; }
  .btn-secondary {
    background-color: #FFFFFF;
    border: 1px solid #16336D;
    transition: all 0.2s ease-in-out;
    color: #16336D !important; }
    .btn-secondary:hover, .btn-secondary:active, .btn-secondary:active:focus {
      transition: all 0.2s ease-in-out;
      background-color: #FFFFFF;
      /* The Fallback */
      background-color: rgba(255, 255, 255, 0.5); }
  .btn-white {
    background-color: #FFFFFF;
    border: 1px solid #16336D;
    color: #16336D;
    transition: all 0.2s ease-in-out; }
    .btn-white:hover, .btn-white:active:focus {
      background-color: #FFFFFF;
      /* The Fallback */
      background-color: rgba(255, 255, 255, 0.5);
      transition: all 0.2s ease-in-out; }
  .btn-blue {
    color: #FFFFFF !important;
    background-color: #16336D;
    border: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    text-transform: capitalize;
    transition: all 0.2s ease-in-out; }
    @media (max-width: 991px) {
      .btn-blue {
        padding-top: 10px;
        padding-bottom: 10px; } }
    .btn-blue:hover, .btn-blue:active, .btn-blue:active:focus {
      background-color: #B9C2D3;
      transition: all 0.2s ease-in-out; }
  .btn-small {
    padding-top: 8px;
    padding-bottom: 8px; }
  .btn-default {
    color: #626262 !important; }
  .btn-long {
    padding: 12px 60px; }
  .btn-green {
    color: #16336D;
    background-color: #AAD455; }
    .btn-green .fa-volume-control-phone:before {
      /* fa-volume-control-phone */
      content: "" !important;
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -1260px;
      width: 16px;
      height: 16px;
      display: inline-block; }
  .btn-paypal img {
    max-width: 60px;
    margin-top: -6px;
    margin-right: 10px; }
  .btn:disabled {
    /* background-color: $grey !important;
    border-color: $grey !important;*/
    opacity: 0.5; }
  .btn-add-to-cart {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden; }
    .btn-add-to-cart .button-icon, .btn-add-to-cart .button-cost {
      position: absolute;
      top: 0;
      min-width: 75px;
      padding: 12px 0;
      color: #FFFFFF; }
    .btn-add-to-cart .button-icon {
      left: 0;
      font-size: 21px;
      text-align: right; }
    .btn-add-to-cart .button-cost {
      right: 0;
      bottom: 0;
      text-align: center;
      background-color: #547214; }

.btn-group.btn-group-style-1 .btn {
  -ms-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  padding: 10px;
  margin-right: 7px;
  margin-bottom: 7px;
  min-height: 40px;
  min-width: 40px; }
  .btn-group.btn-group-style-1 .btn.active {
    color: #FFFFFF !important;
    background-color: #16336D; }
.btn-group.btn-group-style-1.no-margin .btn {
  margin-right: 0; }
.btn-group.btn-group-style-1.fill-container {
  width: 100%; }
  .btn-group.btn-group-style-1.fill-container .btn {
    width: 42.8px; }

.modal-content {
  -ms-border-radius: 16;
  -moz-border-radius: 16;
  -webkit-border-radius: 16;
  border-radius: 16;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 25px; }
.modal-body {
  padding-top: 25px; }
.modal-title {
  margin-bottom: 20px; }
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px; }
.modal-footer {
  text-align: center;
  border-top: none;
  padding: 0px; }
  .modal-footer .btn {
    margin-bottom: 10px !important; }
.modal-order-subtotal {
  font-weight: 700; }

.normal-modal {
  text-align: center; }

.centered-modal {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .centered-modal.modal:before {
      display: inline-block;
      vertical-align: middle;
      content: " ";
      height: 100%; }
    .centered-modal .modal-dialog {
      display: inline-block;
      vertical-align: middle; } }

#video-modal .modal-footer {
  padding: 10px;
  text-align: center;
  border-top: none; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 700px; } }
.puritanperks-image {
  max-width: 267px; }

@media only screen and (min-width: 768px) {
  #loyaltymsgwindow .modal-dialog, #enrollbrithdaypopup .modal-dialog {
    max-width: 500px; } }
@media only screen and (min-device-width: 568px) and (max-device-width: 991px) and (orientation: landscape) {
  #loyaltymsgwindow.modal, #enrollbrithdaypopup.modal {
    top: 0px !important; }

  #loyaltymsgwindow .modal-content, #enrollbrithdaypopup .modal-content {
    padding: 10px !important; }

  #loyaltymsgwindow .modal-body, #enrollbrithdaypopup .modal-body {
    padding: 0px !important; } }
.modal-open .modal {
  overflow-y: auto !important; }

#loyaltypointscalculationpopup li {
  margin-bottom: 10px !important; }

#loyaltypointscalculationpopup .modal-content {
  padding: 10px !important; }

#loyaltypointscalculationpopup.modal {
  top: 0 !important; }

@media only screen and (max-width: 768px) {
  #loyaltypointscalculationpopup .modal-content {
    padding: 0px !important; }

  #loyaltypointscalculationpopup .puritanperks-image {
    max-width: 200px; }

  #loyaltypointscalculationpopup .modal-body p {
    line-height: 1.0 !important; } }
@media only screen and (max-width: 320px) {
  #loyaltypointscalculationpopup .modal-content {
    font-size: 12px !important; } }
.headernav {
  font-weight: 700;
  /* ======= header ===== */
  /************responsive***********/ }
  .headernav .open > .dropdown-menu {
    pointer-events: none !important; }
  .headernav .topalign {
    height: 100%; }
  .headernav .counter {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    top: -9px;
    right: -7px;
    color: #626262;
    font-size: 11px;
    line-height: 14px;
    font-family: area-normal, Arial, sans-serif;
    text-align: center;
    width: 15px;
    height: 15px;
    background-color: #EBC56D; }
  .headernav a.active,
  .headernav a:focus,
  .headernav button:focus,
  .headernav button.active {
    outline: none; }
  .headernav a {
    text-decoration: none; }
  .headernav a:focus,
  .headernav a:hover,
  .headernav a:active {
    outline: 0;
    box-shadow: none; }
  .headernav a:focus,
  .headernav a:hover {
    text-decoration: none; }
  .headernav h1,
  .headernav h2,
  .headernav h3,
  .headernav h4,
  .headernav h5,
  .headernav h6 {
    margin: 0;
    padding: 0;
    color: #CCCCCC; }
  .headernav a {
    text-decoration: none; }
  .headernav a:hover {
    text-decoration: none; }
  .headernav ul,
  .headernav ol {
    margin: 0;
    padding: 0;
    list-style: none; }
  .headernav ul li {
    list-style: none; }
  .headernav p {
    margin: 0;
    padding: 0; }
  .headernav input:focus,
  .headernav select:focus,
  .headernav textarea:focus {
    outline: none; }
  .headernav img {
    border-style: none;
    display: inline-block;
    max-width: 100%;
    height: auto; }
  .headernav .wrapper {
    overflow: hidden; }
  .headernav header {
    background: #16336D;
    padding: 26px 0px;
    position: relative; }
  .headernav .relative {
    position: relative !important; }
  .headernav header .navbar-nav li:hover .nav-item::after,
  .headernav header .navbar-nav .dropdown.open .nav-item::after {
    content: '';
    background-color: #EBC56D;
    height: 9px;
    width: 100%;
    position: absolute;
    bottom: -28px; }
  .headernav header .right-nav.navbar-nav li:hover .nav-item::after,
  .headernav header .right-nav.navbar-nav .dropdown.open .nav-item::after {
    bottom: -39px; }
  .headernav header .navbar-form {
    margin-top: 6px;
    display: flex;
    align-items: center;
    margin: 0px 17px 0px; }
  .headernav .logo {
    max-width: 206px;
    display: block; }
  .headernav .cart-box {
    color: #626262;
    font-size: 12px;
    line-height: 14px;
    position: absolute;
    right: 47px;
    top: -6px;
    display: flex;
    width: 15px;
    height: 15px;
    padding: 0px 3.905px 1px 4.095px;
    justify-content: center;
    align-items: flex-start;
    border-radius: 15px;
    background: #EBC56D; }
  .headernav .cart-box-counter {
    color: #626262;
    font-size: 11px;
    line-height: 14px;
    position: absolute;
    right: -7px;
    top: -9px;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-family: area-normal, Arial, sans-serif;
    text-align: center;
    background-color: #EBC56D; }
  .headernav .overflow {
    overflow: hidden;
    height: 100vh; }
  .headernav .right-space {
    margin-right: 5px; }
  .headernav header .navbar-nav {
    margin-left: 27px; }
  .headernav header .navbar-default {
    background-color: transparent;
    box-shadow: none;
    background-image: none;
    border: none;
    margin-bottom: 0px;
    min-height: 100%; }
  .headernav header .right-nav.navbar-nav li .nav-item {
    padding: 0px 10px;
    margin: 11px 0px; }
  .headernav header .right-nav.navbar-nav {
    margin-left: 0px; }
  .headernav header .navbar-nav li .nav-item {
    color: #FFFFFF !important;
    line-height: 20px;
    padding: 11px 18px;
    display: flex;
    text-shadow: none;
    align-items: center;
    justify-content: center;
    text-transform: capitalize; }
  .headernav header .caret {
    border: none;
    width: 9px;
    height: 6px;
    margin-left: 3px;
    margin-top: -14px; }
  .headernav header .form-control::placeholder {
    color: #AAAAAA; }
  .headernav .search-btn {
    border-radius: 0px 28px 28px 0px;
    background: #EBC56D;
    padding: 11px 21px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .headernav .navbar-collapse.collapse {
    padding: 0px;
    display: flex !important;
    align-items: center; }
  .headernav .right-space2 {
    margin-right: 10px; }
  .headernav header .form-control {
    color: #AAAAAA;
    font-size: 12px;
    box-shadow: none;
    border: none;
    font-weight: 400;
    border-radius: 26px 0px 0px 26px;
    border: 1px solid #AAAAAA;
    background: #FFFFFF;
    height: 46px;
    padding: 15px 19px;
    width: 238px !important;
    line-height: normal; }
  .headernav .tab {
    overflow: hidden;
    margin-top: 18px; }
  .headernav .tab button.active,
  .headernav .tab a.active {
    background-color: #C3E2FF; }
  .headernav .tab a:hover {
    background-color: #C3E2FF; }
  .headernav .tabcontent {
    display: none; }
  .headernav .left-media {
    max-width: 253px;
    padding-top: 30px;
    width: 100%;
    border-right: 1px solid rgba(146, 146, 146, 0.2); }
  .headernav .opacity-0 {
    opacity: 0; }
  .headernav .vitamin-list li a:hover {
    text-decoration: underline; }
  .headernav .right-media {
    flex: 1;
    width: 100%;
    padding-left: 32px;
    padding-top: 69px; }
  .headernav .btn-view {
    margin-top: 30px;
    display: inline-flex;
    text-transform: uppercase; }
  .headernav .btn-link {
    color: #16336D;
    font-size: 16px;
    line-height: 22.857px;
    text-decoration-line: underline;
    text-transform: uppercase;
    margin-top: 46px;
    display: block; }
  .headernav .tab-media {
    display: flex;
    max-width: 1240px;
    margin: 0 auto; }
  .headernav .text-box h6 {
    color: #5b4c3e;
    font-size: 16px;
    line-height: 17.5px;
    text-transform: capitalize; }
  .headernav .tablinks {
    color: #16336D;
    font-size: 18px;
    line-height: 17.5px;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 10.5px 16px 5.5px 28px;
    width: 100%;
    background-color: transparent;
    border: none;
    text-transform: capitalize; }
  .headernav .vitamin-list li a {
    color: #5b4c3e;
    font-size: 18px;
    grid-gap: 12px;
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    font-weight: 400;
    line-height: 20.5px; }
  .headernav .content-right {
    display: flex;
    align-items: center;
    grid-gap: 34px; }
  .headernav .content-right .box p {
    color: #16336D;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%; }
  .headernav .content-right .box h4 {
    color: #F7872B;
    font-size: 30px;
    margin: 15px 0px 20px;
    font-weight: 400;
    line-height: 100%; }
  .headernav .content-right .box {
    padding: 15px 16px 39px 21px;
    max-width: 258px;
    background: radial-gradient(47.45% 40.33% at 77.01% 56.18%, #C3E2FF 0%, rgba(185, 227, 246, 0.25) 100%); }
  .headernav .mt-20 {
    margin-top: 20px; }
  .headernav .box.vitamin-box {
    background: radial-gradient(29.72% 50.19% at 77.49% 49.82%, #FFF2DC 0%, rgba(254, 227, 195, 0.28) 100%); }
  .headernav .tab-inner {
    display: flex;
    justify-content: space-between; }
  .headernav .box.vitamin-box h4 {
    color: #16336D; }
  .headernav .nav-divider2 {
    border-right: 1px solid #FFFFFF; }
  .headernav .navbar-default .navbar-nav > .open > a, .headernav .navbar-default .navbar-nav > .open > a:focus, .headernav .navbar-default .navbar-nav > .open > a:hover {
    color: #FFFFFF;
    background: transparent;
    box-shadow: none; }
  .headernav .navbar-nav > li > .dropdown-menu {
    margin-top: 26px; }
  .headernav header .dropdown, .headernav header.dropup {
    position: static; }
  .headernav .dropdown-menu {
    min-width: 100%; }
  .headernav .navbar-nav > li > .dropdown-menu {
    padding: 0px 40px 40px; }
  .headernav .right-nav.navbar-nav > li > .dropdown-menu {
    padding: 0px; }
  .headernav .right-nav .dropdown-menu > li > a:focus, .headernav .right-nav .dropdown-menu > li > a:hover {
    background: #C3E2FF; }
  .headernav .dropdown-menu::after {
    content: '';
    background-color: transparent;
    width: 100%;
    height: 40px;
    position: absolute;
    top: -40px;
    left: 0; }
  .headernav header .nav > li {
    position: static; }
  .headernav .menu-box h6 {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    text-transform: uppercase; }
  .headernav .menu-box {
    text-align: center;
    display: none; }
  .headernav .social-box .right-nav {
    display: none; }
  .headernav .mobile-menu {
    display: none; }
  .headernav header .navbar-form.mobile-input {
    display: none; }
  .headernav .content-right .box:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
  .headernav .right-nav .dropdown-menu {
    padding-top: 10px !important; }
  .headernav .right-nav .dropdown-menu li a {
    color: #16336D;
    font-size: 18px;
    font-weight: 400;
    line-height: 17.5px;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 10.5px 16px 5.5px 28px;
    width: 100%;
    background-color: transparent;
    border: none;
    text-transform: capitalize; }
  .headernav .left-arrow {
    position: fixed;
    top: 15px;
    left: 4px; }
  @media (min-width: 1320px) {
    .headernav .container {
      width: 1285px; } }
  @media (max-width: 1365px) {
    .headernav header .navbar-nav {
      margin-left: 14px; }
    .headernav header .navbar-nav li .nav-item {
      padding: 11px 12px; }
    .headernav header .navbar-form {
      margin: 0px 12px 0px; }
    .headernav .content-right .box img {
      width: 254px;
      height: 100px;
      object-fit: cover; } }
  @media (max-width: 1199px) {
    .headernav header .navbar-form {
      margin: 0px 0px 0px; }
    .headernav .cart-box {
      right: 41px;
      top: -6px; }
    .headernav .right-media {
      padding-left: 24px; }
    .headernav .content-right {
      grid-gap: 13px; }
    .headernav .navbar-nav > li > .dropdown-menu {
      padding: 0px 18px 40px; }
    .headernav .logo img {
      width: 150px; }
    .headernav .search-btn {
      padding: 11px 14px; }
    .headernav header .navbar-nav {
      margin-left: 10px; }
    .headernav .logo {
      margin-top: 8px;
      display: block; }
    .headernav header .navbar-nav li .nav-item {
      font-size: 12px;
      padding: 11px 12px; }
    .headernav header .form-control {
      padding: 0px 18px;
      width: 200px !important;
      font-size: x-small; } }
  @media (max-width: 1023px) {
    .headernav .content-right .box img {
      width: 91px;
      height: 170px;
      object-fit: cover; }
    .headernav .navbar-collapse.collapse {
      display: none !important; }
    .headernav header .right-nav.navbar-nav li:hover .nav-item::after,
    .headernav header .right-nav.navbar-nav .dropdown.open .nav-item::after {
      content: none; }
    .headernav .navbar-nav .open .dropdown-menu {
      position: fixed;
      left: 0;
      right: auto;
      background-color: #FFFFFF;
      width: 100%;
      top: 0; }
    .headernav header .nav > li {
      position: relative; }
    .headernav .menu-box {
      display: block; }
    .headernav .social-box .right-nav {
      display: flex;
      align-items: center; }
    .headernav .cart-box {
      right: 3px; }
    .headernav .dropdown-menu::after {
      content: none; }
    .headernav .container > .navbar-header {
      margin-right: 0;
      margin-left: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%; }
    .headernav .tablinks {
      padding: 16px 20px;
      border-bottom: 1px solid #F1F1F1;
      margin-bottom: 0px; }
    .headernav .border-none {
      border-bottom: none; }
    .headernav .mobile-menu .text-box h6 a {
      color: #16336D;
      text-decoration: underline; }
    .headernav .cross-icon {
      position: absolute;
      top: 15px;
      right: 4px; }
    .headernav .mobile-menu .text-box h6 {
      color: #52C152;
      font-size: 16px;
      margin-top: 36px;
      letter-spacing: -0.24px; }
    .headernav .top-divider {
      border-top: 2px solid #F1F1F1; }
    .headernav .price-box {
      background-repeat: no-repeat;
      background-size: cover;
      padding: 13px 5px 15px 11px;
      display: flex;
      margin-top: 38px;
      opacity: 0;
      border-radius: 8px;
      justify-content: space-between; }
    .headernav .card-left {
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
    .headernav .product-links h6 {
      color: #16336D;
      text-align: center;
      font-family: area-normal, Arial, sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.24px; }
    .headernav .mt-10 ul {
      margin-top: 20px !important; }
    .headernav .scroll {
      overflow-y: scroll;
      height: 100%;
      margin-top: 20px;
      overflow-x: hidden; }
    .headernav .product-links.menu-show2 .scroll {
      padding-bottom: 50px; }
    .headernav .product-links {
      position: fixed;
      top: 0px;
      transition: all 0.5s ease-in-out;
      width: 100%;
      right: -100%;
      background: #FFFFFF;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      padding-top: 20px; }
    .headernav .product-links .tablinks {
      padding: 16px 40px; }
    .headernav .product-links.menu-show2 {
      right: 0;
      opacity: 1;
      visibility: visible;
      transition: all 0.5s ease-in-out; }
    .headernav .product-links2.menu-show3 {
      right: 0;
      opacity: 1;
      visibility: visible;
      transition: all 0.5s ease-in-out;
      padding-bottom: 70px; }
    .headernav .product-links ul {
      border-top: 1px solid #F1F1F1; }
    .headernav header .right-nav.navbar-nav li .nav-item {
      padding: 0px 3px;
      margin: 0px 0px; }
    .headernav .navbar-nav {
      margin: 0px; }
    .headernav .navbar-default .navbar-form {
      border-color: transparent;
      border: none;
      box-shadow: none; }
    .headernav .search-btn {
      padding: 11px 11px; }
    .headernav header .form-control {
      padding: 15px 19px;
      width: 100% !important; }
    .headernav .navbar-form .form-group {
      margin-bottom: 0px;
      flex: 1; }
    .headernav header .navbar-form.mobile-input {
      display: flex;
      padding: 11px 0px 0px;
      width: 100%; }
    .headernav header {
      padding: 12px 0px; }
    .headernav .overflow {
      height: 100%; }
    .headernav .content-right {
      display: block;
      margin: 0px 22px; }
    .headernav .product-menu,
    .headernav .product-menu2 {
      position: absolute;
      left: 20px;
      top: 14px; }
    .headernav .mobile-menu {
      padding: 0px 20px;
      position: fixed;
      top: 0;
      right: -100%;
      transition: all 0.5s ease-in-out;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      display: block;
      background-color: #FFFFFF; }
    .headernav .mt-10 {
      margin-bottom: 40px; }
    .headernav .mobile-menu.menu-show {
      right: 0;
      height: 100vh;
      overflow: scroll;
      opacity: 1;
      visibility: visible;
      transition: all 0.5s ease-in-out;
      z-index: 9999; }
    .headernav .price-box h3 {
      color: #EDB435;
      font-family: area-normal, Arial, sans-serif;
      font-size: 14px;
      font-weight: 700;
      line-height: 100%; }
    .headernav .price-box h3 span {
      color: #FFFFFF; }
    .headernav .price-box .card-right .text-yellow {
      color: #EDB435 !important; }
    .headernav .price-box .card-right h1 {
      color: #FFFFFF;
      text-align: center;
      font-family: area-normal, Arial, sans-serif;
      font-size: 40px;
      font-weight: 700;
      line-height: 100%; }
    .headernav .price-box h6 {
      color: #FFFFFF;
      font-family: area-normal, Arial, sans-serif;
      font-size: 12px;
      font-weight: 400;
      margin-bottom: 9px;
      line-height: 100%; }
    .headernav .price-box h4 {
      color: #FFFFFF;
      font-family: area-normal, Arial, sans-serif;
      font-size: 14px;
      font-weight: 700;
      line-height: 100%; }
    .headernav .mobile-menu ul {
      margin: 0px -20px 0px; }
    .headernav .logo {
      margin: 0px auto;
      flex: 1;
      text-align: center; }
    .headernav .content-right .box h4 span {
      color: #F7872B; }
    .headernav .content-right .box p {
      padding-right: 24px; } }
  @media (max-width: 767px) {
    .headernav .content-right .box {
      max-width: 100%;
      margin-top: 20px;
      display: flex;
      align-items: center;
      padding-bottom: 20px;
      grid-gap: 8px; }
    .headernav .content-right .box h4 {
      font-size: 18px;
      margin: 4px 0px 20px; }
    .headernav .flex-1 {
      flex: 1; } }

#links {
  margin: 1.19rem 0; }

#links a {
  color: #16336D;
  font-size: 14px;
  font-weight: 700; }

#links .separator {
  width: 2px;
  height: 36px;
  background-color: #16336D; }

.all-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase; }

.footer-signup-cta {
  min-height: 100px;
  padding-top: 30px;
  padding-bottom: 10px; }
  @media (max-width: 767px) {
    .footer-signup-cta {
      margin-bottom: 10px; } }
  .footer-signup-cta .input-validation-error {
    border-color: #F7872B !important; }
  .footer-signup-cta .field-validation-error {
    color: #F7872B; }
  @media (max-width: 767px) {
    .footer-signup-cta .loader-wrapper {
      margin-top: 30px; } }
  .footer-signup-cta label {
    color: #FFFFFF;
    font-size: 16px;
    font-family: area-normal, Arial, sans-serif;
    font-weight: lighter; }
    .footer-signup-cta label span {
      font-family: area-normal, Arial, sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-transform: uppercase; }
      .footer-signup-cta label span sup {
        position: relative;
        top: -4px;
        left: 2px; }
  @media (max-width: 767px) {
    .footer-signup-cta input {
      margin-top: 20px;
      height: 40px; } }
  .footer-signup-cta button {
    height: 40px;
    padding: 2px;
    font-size: 15px; }
    @media (max-width: 767px) {
      .footer-signup-cta button {
        margin-top: 10px; } }
.footer-sitemap {
  padding-top: 15px;
  padding-bottom: 20px; }
  @media (max-width: 767px) {
    .footer-sitemap {
      padding-top: 0; } }
  .footer-sitemap-title {
    color: #16336D;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase; }
    @media (max-width: 1199px) {
      .footer-sitemap-title {
        min-height: 35px; } }
  .footer-sitemap-list > li > a {
    padding: 5px 0;
    display: block; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .footer-sitemap-list > li > a {
        font-size: 12px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .footer-sitemap-list > li > a {
        font-size: 12px; } }
    @media (max-width: 767px) {
      .footer-sitemap-list > li > a {
        padding: 10px; } }
  @media (min-width: 768px) {
    .footer-sitemap .collapse {
      display: block; } }
  @media (max-width: 767px) {
    .footer-sitemap .collapser {
      margin-left: -20px;
      margin-right: -20px; } }
.footer-contact-icons {
  fill: #004680; }
.footer-contact-list .calltimes {
  font-size: 12px; }
.footer-contact-list div {
  float: left;
  margin-right: 5px;
  width: 20px; }
.footer-contact-list svg {
  position: relative;
  top: 0px;
  width: 20px;
  height: 20px; }
.footer-contact-list li {
  padding-bottom: 25px; }
.footer-social-icons, .footer-payment-icons {
  margin-bottom: 20px; }
  .footer-social-icons a, .footer-payment-icons a {
    display: inline-block; }
    .footer-social-icons a img, .footer-payment-icons a img {
      width: 100%; }
.footer-social-icons a {
  width: 35px;
  margin-right: 7px;
  margin-bottom: 8px; }
.footer-social-icons-facebook {
  /* footer-facebook-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -504px;
  width: 35px;
  height: 35px;
  display: inline-block; }
.footer-social-icons-twitter {
  /* footer-twitter-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -540px;
  width: 35px;
  height: 35px;
  display: inline-block; }
.footer-social-icons-google {
  /* footer-google-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -648px;
  width: 35px;
  height: 35px;
  display: inline-block; }
.footer-social-icons-pinterest {
  /* footer-pinterest-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -576px;
  width: 35px;
  height: 35px;
  display: inline-block; }
.footer-social-icons-instagram {
  /* footer-instagram-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -612px;
  width: 35px;
  height: 35px;
  display: inline-block; }
.footer-mobile-links {
  margin-bottom: 25px; }
  .footer-mobile-links .collapse-list > li {
    padding: 5px 0 5px 30px; }
.footer-payment-icons div {
  margin-right: 1px;
  margin-bottom: 3px; }
.footer-payment-icons-visa {
  /* footer-visa-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -468px;
  width: 50px;
  height: 32px;
  display: inline-block; }
.footer-payment-icons-mastercard {
  /* footer-mastercard-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -432px;
  width: 50px;
  height: 32px;
  display: inline-block; }
.footer-payment-icons-amex {
  /* footer-amex-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -324px;
  width: 50px;
  height: 32px;
  display: inline-block; }
.footer-payment-icons-discover {
  /* footer-discover-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -288px;
  width: 50px;
  height: 32px;
  display: inline-block; }
.footer-payment-icons-jcb {
  /* footer-jcb-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -360px;
  width: 50px;
  height: 32px;
  display: inline-block; }
.footer-payment-icons-paypal {
  /* footer-paypal-icon */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -396px;
  width: 50px;
  height: 32px;
  display: inline-block; }
.footer-mcafee-icon, .footer-geotrust-icon {
  display: inline-block;
  margin-bottom: 10px; }
.footer-mcafee-icon {
  width: 80px; }
.footer-geotrust-icon {
  width: 125px; }

.footer-copy {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  font-size: 12px;
  text-align: center;
  background-color: #F1F1F1; }
  .footer-copy .footer-fda {
    text-align: center;
    border: 1px solid #797979;
    padding: 3px;
    margin: 20px 0 20px 0;
    font-size: 11px; }
  @media (min-width: 768px) {
    .footer-copy.collapse {
      display: block !important;
      height: auto !important; } }
  @media (max-width: 767px) {
    .footer-copy {
      background-color: #FFFFFF;
      line-height: 1.5; } }

.checkout-footer-security-icons {
  max-width: 500px;
  padding-bottom: 10px; }
  .checkout-footer-security-icons .checkout-footer-icon {
    padding-bottom: 10px; }

.footer-truste-icon {
  display: inherit; }

.livechat-footer {
  position: absolute;
  margin-left: 5px;
  margin-top: 3px; }

#dvdigiCert img {
  float: right !important;
  width: 115px !important;
  margin-right: 10px !important;
  height: 70px; }

#dvTrustSeal img {
  float: left; }

html, body {
  font-family: area-normal, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5b4c3e;
  line-height: 1.25;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  html.menu-open, body.menu-open {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%; }

.wf-loading {
  /* styles to use when web fonts are loading */ }
  .wf-loading .main-nav .navbar-nav > li > a {
    font-size: 13px; }

.wf-active {
  /* styles to use when web fonts are active */ }

.wf-inactive {
  /* styles to use when web fonts are inactive */ }

*:focus, input:required:invalid {
  outline: none; }

.toutblborder {
  border: 1px solid #CCCCCC;
  width: 230px;
  padding: 15px; }

@media (max-width: 765px) {
  .toutblborder {
    border: 1px solid grey;
    padding: 5px; }

  .tblmrgin {
    margin-left: 0px; } }
.hr-dark {
  border-top: 1px solid #CCCCCC; }

.cartalign {
  margin-top: 15px !important; }

@media (max-width: 768px) {
  .cartalign {
    margin-top: 10px !important; } }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .cartalign {
    margin-top: 10px !important; } }
.item-table .row.table-header {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 10px;
  margin-bottom: 15px; }
.item-table .row:not(.table-header) {
  padding-top: 20px;
  padding-bottom: 20px; }
  @media (max-width: 767px) {
    .item-table .row:not(.table-header) {
      border-bottom: 1px solid #CCCCCC; } }

.nav-takeover {
  overflow-x: scroll; }
  .nav-takeover-close-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    padding: 15px 30px 15px;
    background-color: #FFFFFF;
    text-align: center; }

.container {
  padding-left: 20px;
  padding-right: 20px; }
  .container-vertical-spacing {
    padding-top: 40px;
    padding-bottom: 40px; }
    @media (max-width: 767px) {
      .container-vertical-spacing {
        padding-top: 30px;
        padding-bottom: 30px; } }
    .container-vertical-spacing.bottom-only {
      padding-top: 0 !important; }

a:focus {
  text-decoration: none;
  outline: 1px solid !important; }

label {
  margin-bottom: 0;
  font-weight: normal; }

ul {
  margin-bottom: 0; }

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

ul.list-custom {
  padding-left: 1.5em;
  list-style: none !important; }
  ul.list-custom li {
    margin: 1em 0; }
    ul.list-custom li:before {
      /* fa-chevron-circle-right */
      content: "" !important;
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -1296px;
      width: 20px;
      height: 20px;
      display: inline-block;
      float: left;
      font-size: 20px;
      margin-left: -1.2em; }
    ul.list-custom li:focus {
      outline: 1px solid !important; }
  ul.list-custom span {
    line-height: 1.3;
    padding-left: 0.3em;
    display: inline-block; }
  ul.list-custom.list-indent {
    margin-left: 1em; }
  ul.list-custom.marker-green li:before {
    color: #AAD455; }
  ul.list-custom.marker-orange li:before {
    color: #F7872B; }

.list-style-1 a {
  color: #626262 !important; }
  .list-style-1 a.active {
    font-weight: bold; }
  .list-style-1 a:focus {
    background-color: transparent !important; }

.callout-with-icon {
  display: table; }
  .callout-with-icon .callout-icon, .callout-with-icon .callout-text {
    display: table-cell; }
  .callout-with-icon .callout-text {
    font-size: 14px;
    font-weight: 700; }

.corner-ribbon {
  position: absolute;
  top: 24px;
  left: -33px;
  z-index: 1;
  width: 140px;
  background: #F1F1F1;
  font-size: 11px;
  font-weight: 700;
  font-family: area-normal, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 26px;
  letter-spacing: 1px;
  color: #FFFFFF;
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }
  .corner-ribbon.top-left {
    top: 24px;
    left: -33px;
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.ribbon {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  padding: 2px 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 20px;
  background-color: #AAD455; }
  .ribbon-red {
    background-color: #FFFFFF;
    color: #E04646;
    border: 1px solid #E04646;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    float: right;
    right: 10px;
    left: auto;
    margin-left: 8px;
    font-family: area-normal, Arial, sans-serif !important;
    font-size: 18px;
    font-weight: 700; }
  .ribbon-blue {
    background-color: #16336D; }
  .ribbon-orange {
    background-color: #F7872B; }
  .ribbon-redwhite {
    background-color: #FFFFFF;
    color: #E04646;
    border: 1px solid #E04646;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    float: right;
    right: 10px;
    left: auto;
    margin-left: 8px;
    font-family: area-normal, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700; }
  @media (min-width: 1200px) {
    .ribbon {
      font-size: 18px; } }

.div-table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  table-layout: fixed; }
  .div-table-row {
    display: table-row;
    width: auto;
    clear: both; }
  .div-table-col {
    float: left;
    /* fix for  buggy browsers */
    display: table-column; }
  .div-table-cell {
    display: table-cell; }
  @media (max-width: 767px) {
    .div-table-row, .div-table-col, .div-table-cell {
      width: auto;
      display: block; } }
  .div-table-striped .div-table-row:nth-child(even) {
    background-color: #FFF2DC; }

.logos {
  width: 100%;
  display: table; }
  .logos-block {
    width: 20%;
    display: table-cell;
    vertical-align: middle;
    text-align: center; }
    .logos-block img {
      width: 100%; }
    .logos-block .logo-puritans {
      max-width: 175px; }
    .logos-block .logo-setton {
      max-width: 125px; }
    .logos-block .logo-source {
      max-width: 82.5px; }
    .logos-block .logo-now {
      max-width: 140px; }
    .logos-block .logo-myology {
      max-width: 167.5px; }

.image-slider {
   /*
    min-height: 385px;
    
    @include breakpoint(md) {
        min-height: 355px;
    }

    @include breakpoint(sm) {
        min-height: 280px;
    }

    @include breakpoint(xs) {
        min-height: 145px;
        margin-bottom: 20px !important;
    }
       */ }
  .image-slider img {
    width: 100%; }

.container-slider {
  padding-left: 5px;
  padding-right: 5px; }

.clp-slider {
    /*&-bg-greens {
        background-color: #FBFFE9 !important;
        background-image: url(/img/newdesign/backgrounds/clp-slider-bg-greens.jpg);
    }

    &-bg-bread {
        background-color: #FFF9EA !important;
        background-image: url(/img/newdesign/backgrounds/clp-slider-bg-bread.jpg);
    }

    &-bg-orange {
        background-color: #FFFFE9 !important;
        background-image: url(/img/newdesign/backgrounds/clp-slider-bg-orange.jpg);
    }

    &-bg-broccoli {
        background-color: #F8FCE7 !important;
        background-image: url(/img/newdesign/backgrounds/clp-slider-bg-broccoli.jpg);
    }

    &-bg-bottle {
        background-color: #E8F5FF !important;
        background-image: url(/img/newdesign/backgrounds/clp-slider-bg-bottle.jpg);
    }*/ }
  .clp-slider-block-content {
    padding: 25px;
    height: 300px;
    text-align: center;
    background-color: #F1F1F1;
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat; }
  .clp-slider-arrow {
    width: 32px;
    height: 32px;
    background: #CCCCCC;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    background-color: #CCCCCC;
    transition: all 0.2s ease;
    z-index: 1;
    cursor: pointer;
    -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */ }
    .clp-slider-arrow.slick-arrow {
      color: #626262;
      font-size: 14px; }
    .clp-slider-arrow.prev-arrow {
      left: 0; }
      .clp-slider-arrow.prev-arrow .fa {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
        -ms-transform: translate(-50%, -50%);
        /* IE 9 */
        transform: translate(-50%, -50%);
        /* IE 10, Fx 16+, Op 12.1+ */ }
        .clp-slider-arrow.prev-arrow .fa.fa-chevron-left:before {
          /* fa-chevron-left-gray */
          content: "" !important;
          background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
          background-size: 72px;
          background-repeat: no-repeat;
          background-position: 0 -864px;
          width: 12px;
          height: 12px;
          display: inline-block;
          transform: rotate(180deg); }
      .clp-slider-arrow.prev-arrow:hover {
        margin-left: -3px; }
    .clp-slider-arrow.next-arrow {
      right: 0; }
      .clp-slider-arrow.next-arrow .fa {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
        -ms-transform: translate(-50%, -50%);
        /* IE 9 */
        transform: translate(-50%, -50%);
        /* IE 10, Fx 16+, Op 12.1+ */ }
        .clp-slider-arrow.next-arrow .fa.fa-chevron-right:before {
          /* fa-chevron-right-gray */
          content: "" !important;
          background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
          background-size: 72px;
          background-repeat: no-repeat;
          background-position: 0 -864px;
          width: 12px;
          height: 12px;
          display: inline-block; }
      .clp-slider-arrow.next-arrow:hover {
        margin-right: -3px; }
    .clp-slider-arrow.prev-arrow {
      left: -11px; }
    .clp-slider-arrow.next-arrow {
      right: -11px; }

.centered-callout {
  width: 100%;
  padding: 80px 30px; }
  .centered-callout-text {
    max-width: 830px;
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
    line-height: 2.2; }
    @media (max-width: 767px) {
      .centered-callout-text {
        font-size: 16px; } }

.callout-banner {
  position: relative;
  text-align: center;
  padding: 70px 25px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block; }
  .callout-banner > span, .callout-banner > img {
    display: block; }
  .callout-banner:hover {
    text-decoration: none; }
  @media (max-width: 767px) {
    .callout-banner {
      margin-left: -20px !important;
      margin-right: -20px !important; } }
  .callout-banner.has-ribbon {
    overflow: hidden; }
  .callout-banner-title {
    font-size: 30px;
    margin-bottom: 20px; }
  .callout-banner-text {
    margin-bottom: 20px; }
  .callout-banner-1 .image-left, .callout-banner-1 .image-right {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */ }
    @media (max-width: 991px) {
      .callout-banner-1 .image-left, .callout-banner-1 .image-right {
        display: none; } }
  .callout-banner-1 .image-left {
    left: 5%;
    width: 180px; }
  .callout-banner-1 .image-right {
    right: 5%;
    width: 140px; }
  .callout-banner-2 .image-left, .callout-banner-2 .image-right {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */ }
    @media (max-width: 991px) {
      .callout-banner-2 .image-left, .callout-banner-2 .image-right {
        display: none; } }
  .callout-banner-2 .image-left {
    left: 4%;
    width: 180px; }
  .callout-banner-2 .image-right {
    right: 4%;
    width: 140px; }
  .callout-banner-3 .image-left, .callout-banner-3 .image-right {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */ }
    @media (max-width: 991px) {
      .callout-banner-3 .image-left, .callout-banner-3 .image-right {
        display: none; } }
  .callout-banner-3 .image-left {
    left: 4%;
    width: 180px; }
  .callout-banner-3 .image-right {
    right: 4%;
    width: 140px; }

.tag {
  padding: 12px 15px;
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: #F1F1F1;
  display: table;
  float: left; }
  .tag-x-btn, .tag-text {
    display: table-cell; }
  .tag-x-btn {
    color: #16336D;
    font-size: 20px;
    line-height: 18px;
    cursor: pointer;
    padding-right: 10px; }
  .tag-text {
    line-height: 1.3; }

.fa-star, .fa-star-o {
  color: #EBC56D; }

.fa-volume-control-phone:before {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.fa-question-circle:before {
  /* fa-question-circle */
  content: "" !important;
  background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
  background-size: 72px;
  background-repeat: no-repeat;
  background-position: 0 -1332px;
  width: 15px;
  height: 15px;
  display: inline-block; }

.fullscreen-takeover {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: #FFFFFF;
  display: none; }

.pagination {
  margin: 0; }
  .pagination > li {
    display: inline-block; }
  .pagination > li > a {
    padding: 0 12px;
    border: none;
    color: #626262; }
    @media (max-width: 991px) {
      .pagination > li > a {
        padding: 0 20px; } }
    .pagination > li > a:hover {
      color: #16336D;
      background-color: inherit;
      cursor: pointer; }

.collapse-parent {
  cursor: pointer;
  text-decoration: none !important; }
  .collapse-parent .collapser-icon {
    position: relative;
    width: 15px;
    height: 15px;
    cursor: pointer;
    float: right; }
    .collapse-parent .collapser-icon:before {
      content: '';
      width: 15px;
      height: 1px;
      border-top: 2px solid #16336D;
      display: block;
      position: absolute;
      margin-top: 6px; }
    .collapse-parent .collapser-icon:after {
      content: '';
      width: 1px;
      height: 15px;
      border-right: 2px solid #16336D;
      display: block;
      position: absolute;
      margin-left: 7px; }
    .collapse-parent .collapser-icon.icon-minus:after {
      display: none; }

.collapser {
  font-size: 16px;
  font-family: area-normal, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #FFFFFF;
  padding: 20px;
  margin-bottom: 2px;
  background-color: #16336D;
  display: block; }
  .collapser-open:after {
    /* fa-minus-blue */
    background-position: 0 -972px !important;
    color: #FFFFFF; }
  .collapser.no-button:after {
    display: none !important; }
  .collapser:after {
    position: relative;
    top: 5px;
    float: right;
    /* fa-plus-blue */
    content: "" !important;
    background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: 0 -936px;
    width: 12px;
    height: 12px;
    display: inline-block; }

.recommended-product-slider .product-block-content {
  height: auto;
  border-color: #F1F1F1 !important;
  background-color: transparent;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px; }
  @media (min-width: 374px) and (max-width: 479px) {
    .recommended-product-slider .product-block-content .product-block-content, .recommended-product-slider .product-block-content .promo-block-content {
      min-height: 400px; } }

.mobile-branded-content {
  width: 100%;
  min-height: 300px;
  padding: 30px;
  text-align: center;
  background: #F1F1F1;
  background-position: bottom right;
  background-repeat: no-repeat; }
  .mobile-branded-content-title {
    margin-bottom: 25px;
    color: #16336D; }
  .mobile-branded-content-copy {
    margin-bottom: 20px; }

.offer {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  /*font-weight: $font-weight-bold;*/
  color: #16336D;
  line-height: 20px;
  background-color: #16336D;
  overflow: hidden;
  /*display: none;*/ }
  @media (max-width: 767px) {
    .offer {
      padding-top: 8px;
      padding-bottom: 0;
      font-size: 12px;
      line-height: 15px;
      text-align: center; } }
  .offer-pink {
    background-color: #FFCED6; }
  .offer-slide {
    display: none; }
    .offer-slide:first-child {
      display: block; }
  .offer-carousel {
    width: 100%; }
  .offer-links {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */
    right: 18px; }
  .offer-emailsignup {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */
    right: 510px; }
    @media (max-width: 991px) {
      .offer-emailsignup {
        display: none; } }
    @media (max-width: 1199px) {
      .offer-emailsignup {
        right: 400px; } }
  .offer-close {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    /* Ch <36, Saf 5.1+, iOS < 9.2, An =<4.4.4 */
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    transform: translate(0, -50%);
    /* IE 10, Fx 16+, Op 12.1+ */
    left: 15px;
    font-size: 18px;
    cursor: pointer; }

.cart-counter {
  position: absolute;
  top: -7px;
  left: 10px;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-align: -webkit-center;
  width: 15px;
  height: 15px;
  background-color: #EBC56D;
  border-radius: 50%; }

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.breadcrumbs-list {
  padding: 25px 0;
  margin-bottom: 0;
  background-color: inherit;
  /* Landscape iPads to show tablet view instead of desktop*/ }
  @media (max-width: 767px) {
    .breadcrumbs-list {
      padding: 0 0 10px;
      line-height: 24px; } }
  @media (max-width: 991px) {
    .breadcrumbs-list {
      padding: 10px 0 10px; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .breadcrumbs-list {
      padding: 10px 0 10px; } }
  .breadcrumbs-list > li:first-child {
    display: none !important; }
  .breadcrumbs-list > li + li:before {
    content: none;
    padding: 0 0px;
    color: #cccccc; }
  .breadcrumbs-list > li + li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #cccccc; }

.responsive-embed-video {
  position: relative;
  padding-top: 10px;
  padding-right: 0;
  padding-bottom: 0;
  /* 16:9 Aspect Ratio */
  padding-left: 0; }
  .responsive-embed-video iframe {
    position: absolute;
    width: 100% !important;
    height: 100% !important; }

.panel-group.accordian-style-1 {
  margin-bottom: 1px; }
  .panel-group.accordian-style-1 .panel {
    margin-bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0 transparent ;
    -moz-box-shadow: 0 0 0 transparent ;
    box-shadow: 0 0 0 transparent ; }
  .panel-group.accordian-style-1 .panel-default {
    border: none; }
    .panel-group.accordian-style-1 .panel-default > .panel-heading {
      -ms-border-radius: 0;
      -moz-border-radius: 0;
      -webkit-border-radius: 0;
      border-radius: 0;
      background-clip: padding-box;
      /* stops bg color from leaking outside the border: */
      padding: 15px; }
      .panel-group.accordian-style-1 .panel-default > .panel-heading a {
        text-decoration: none !important;
        display: block; }
    .panel-group.accordian-style-1 .panel-default .panel-body {
      border-top: none; }

@media (max-width: 767px) {
  .has-offset {
    margin-right: -20px !important; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.progress {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #CCCCCC;
  background-image: linear-gradient(to right, #000000, #000000);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .4s ease-in-out; }

.slick-dots {
  margin-top: 10px; }
  .slick-dots li {
    margin: 0 2px; }
    .slick-dots li button:before {
      font-size: 14px; }

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

.puritans-promise .inner {
  background: #e8e5f0;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e8e5f0 0%, #f6f1f8 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #e8e5f0 0%, #f6f1f8 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e8e5f0 0%, #f6f1f8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 100%;
  padding-top: 80px;
  padding-bottom: 20px; }
  @media (max-width: 767px) {
    .puritans-promise .inner {
      padding-top: 50px;
      padding-bottom: 10px; } }
.puritans-promise .dots-container {
  position: relative;
  margin-bottom: 20px; }
  .puritans-promise .dots-container .slick-dots {
    position: relative;
    bottom: 0; }
.puritans-promise .promise-block {
  padding: 0 30px;
  height: 330px; }
  @media (max-width: 767px) {
    .puritans-promise .promise-block {
      height: 230px; } }
  .puritans-promise .promise-block-title {
    height: 110px;
    font-size: 26px;
    font-family: area-normal, Arial, sans-serif;
    line-height: 1.1;
    color: #16336D; }
    @media (min-width: 768px) and (max-width: 991px) {
      .puritans-promise .promise-block-title {
        font-size: 22px; } }
    @media (max-width: 767px) {
      .puritans-promise .promise-block-title {
        height: 80px;
        font-size: 21px; } }
  .puritans-promise .promise-block-copy {
    line-height: 1.4; }
    @media (min-width: 768px) and (max-width: 991px) {
      .puritans-promise .promise-block-copy {
        font-size: 14px; } }
  .puritans-promise .promise-block-link {
    position: absolute;
    bottom: 0;
    left: 35px;
    height: 40px;
    color: #16336D;
    line-height: 2; }
    .puritans-promise .promise-block-link:after {
      /* fa-chevron-right-blue */
      content: "" !important;
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -864px;
      width: 12px;
      height: 12px;
      display: inline-block;
      margin-left: 6px;
      text-decoration: underline; }
    .puritans-promise .promise-block-link:after, .puritans-promise .promise-block-link:hover:after {
      text-decoration: none !important; }
    .puritans-promise .promise-block-link.history {
      /* icon-hearts */
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -72px;
      padding-left: calc(46px - -12px);
      display: inline-block; }
    .puritans-promise .promise-block-link.scientists {
      /* icon-beaker */
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 0px;
      padding-left: calc(26px - -12px);
      display: inline-block; }
    .puritans-promise .promise-block-link.team {
      /* icon-flag */
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -144px;
      padding-left: calc(30px - -12px);
      display: inline-block; }
    .puritans-promise .promise-block-link.value {
      /* icon-discs */
      background-image: url("/vf/puritanspride/icons/sprite-icons-rbr.png");
      background-size: 72px;
      background-repeat: no-repeat;
      background-position: 0 -216px;
      padding-left: calc(30px - -12px);
      display: inline-block; }

a {
  color: #16336D; }

/* Helene - Moved from cart.scss */
.quantity-widget .input-group-btn {
  width: 26px;
  padding: 0;
  margin: 0; }
  .quantity-widget .input-group-btn button {
    width: 26px;
    height: 26px;
    font-size: 18px;
    border: 1px solid #CCCCCC;
    background-color: #F1F1F1;
    padding: 0; }
.quantity-widget input {
  width: 26px;
  height: 26px;
  text-align: center;
  font-size: 14px;
  font-family: area-normal, Arial, sans-serif;
  border-top: 1px solid #CCCCCC;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #CCCCCC;
  border-radius: 0; }

/* Helene - added for Password strength */
#result.weak {
  color: #E66C2C; }

#result.good {
  color: #2D98F3; }

#result.strong {
  color: #006400; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  select::-ms-expand {
    display: none; } }
.product-categories-title {
  margin-bottom: 20px; }
.product-categories-list {
  font-family: area-normal, Arial, sans-serif;
  font-weight: 400;
  padding-left: 0;
  list-style: none; }
  .product-categories-list > li {
    margin-bottom: 18px; }
    .product-categories-list > li > a.arrow-link {
      font-weight: 700; }

.sticky-cta {
  background-color: #F1F1F1;
  border-top: 1px solid #CCCCCC; }

/* Ensure pixel added by Omniture on PDP is hidden, as it adds double-vertical bars on some browsers and is visible as white space under the footer */
img[src^="http://ca-as-1.agilone.com"], img[src^="https://ca-as-1.agilone.com"] {
  display: none; }

.modal-dialog h2 {
  color: #16336D; }

/* Added default Bootstrap css classes, missing from the original bootstrap.css provided by FirstBorn */
.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd; }

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd; }

th {
  text-align: left; }

td, th {
  padding: 0; }

.h3-text {
  font-size: 21px;
  color: #626262;
  font-family: area-normal, Arial, sans-serif;
  font-weight: 400;
  margin: 0; }

.pop-notify {
  padding: 0 0 1px 0;
  overflow: hidden; }

button.modal-close.btn-x {
  color: #004680;
  border: none;
  background-color: #FFFFFF; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden; }

.Notify-text {
  color: #626262; }

@media (max-width: 767px) {
  .img-width img {
    width: 100%; } }
.btn-blue-plp {
  height: 45px;
  padding-top: 10px;
  padding-bottom: 10px; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #nebula_div_btn {
    right: 18px !important; } }
@supports (-ms-accelerator: true) {
  #nebula_div_btn {
    right: 18px !important; } }
body.catalog-request {
  overflow: hidden; }

.error-savedcvv {
  float: left !important; }

@media only screen and (max-width: 991px) and (orientation: landscape) {
  .modal-content {
    padding: 18px !important;
    top: -8px; }

  #cartpop h3 {
    margin-bottom: 2px !important; }

  #cartpop hr {
    margin-top: 5px !important;
    margin-bottom: 5px !important; }

  .modal-footer {
    margin-top: 5px !important; }

  .modal-footer button {
    width: 246px !important; } }
@media (max-width: 767px) {
  .h1-text-microsite {
    font-size: 20px;
    text-align: center; }

  .h1-text-Standardpage {
    font-size: 33px;
    font-weight: 800; } }
.h1-text-Standardpage {
  font-size: 33px;
  font-weight: 800; }

.link-cursor {
  cursor: pointer; }

.faqtoustyle .panel-heading a:after {
  content: '_';
  position: relative;
  top: -5px; }

.faqtoustyle a.collapsed:after {
  content: '+';
  top: 1px; }

.text-rewardpoints {
  color: #42A1E3 !important; }

.product-quantity-table {
  height: 62px; }

.product-quantity-table-dup {
  height: 62px; }

.bonus-column {
  background-color: #8b008b;
  color: #FFFFFF;
  height: 25px;
  padding: 5px 0px;
  text-align: center;
  width: 75px; }

.sitewidebonus-column {
  background-color: #004680;
  color: #FFFFFF;
  height: 25px;
  padding: 5px 0px;
  text-align: center;
  width: 86px;
  margin-left: 5px; }

@media (max-width: 767px) {
  .sitewidebonus-column {
    margin-left: -4px; } }
.password-list-normal {
  line-height: 2.0;
  padding-left: 1.5em; }

.check-icon, .exclamation-icon {
  width: 20px;
  margin-bottom: 5px;
  display: none; }

.list-style {
  list-style-type: none;
  padding-left: 0px; }

.text-greendark {
  color: #5b4c3e; }

#show-password {
  margin-top: -25px;
  margin-right: 15px;
  float: right;
  position: relative; }

input::-ms-reveal,
input::-ms-clear {
  display: none; }

.perkspointsupsellmessage {
  color: #FFFFFF;
  padding: 5px;
  background-color: #049ae0;
  font-weight: 700;
  vertical-align: top; }

.backorder-width {
  width: 105%;
  margin-left: -5px;
  color: #E04646; }

@media (max-width: 767px) {
  .perkspointsupsellmessage {
    font-size: 12px; } }
.associate-mega-menu-dropdown-menu {
  left: 62% !important; }

@media (min-width: 768px) {
  .usbl-feedback-btn {
    display: none;
    text-align: center;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    position: fixed;
    left: 0;
    bottom: 15%;
    border-radius: 0;
    font-size: 12px;
    margin-left: -25px;
    padding: 6px 12px; }

  .usbl-feedback-btn span {
    display: inline-block;
    position: relative;
    transition: 0.5s; } }
@media (max-width: 767px) {
  .usbl-feedback-btn {
    display: none;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    position: center; } }
