@charset "UTF-8";
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
.ie8 .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current:after {
  display: none;
}

.clear:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@keyframes bounce {
  0%, 10%, 40%, 70%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce-triangle {
  0%, 10%, 40%, 70%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

@keyframes shake {
  0%, 10%, 40%, 70%, 100% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-12px);
  }
  50% {
    transform: translateX(-6px);
  }
}

@keyframes tooltip-fade-in {
  0% {
    transform: rotate(20deg);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes map-heart-fade {
  0% {
    top: -15px;
    transform: translateX(4px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  85% {
    opacity: 1;
  }
  100% {
    top: -40px;
    opacity: 0;
    transform: translateX(-4px);
  }
}

@keyframes map-cloud-one {
  0% {
    left: 30%;
  }
  15% {
    left: 0%;
  }
  65% {
    left: 100%;
  }
  100% {
    left: 30%;
  }
}

@keyframes map-cloud-two {
  0% {
    left: 75%;
  }
  12.5% {
    left: 100%;
  }
  62.5% {
    left: 0%;
  }
  100% {
    left: 75%;
  }
}

@keyframes map-hotspot-blip {
  0% {
    transform: scale(1);
    opacity: .5;
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

@keyframes map-drawing-float {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(5px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fade-in-slide-up {
  0% {
    opacity: 0;
    top: 69px;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
    top: 69px;
  }
  100% {
    top: 59px;
  }
}

@keyframes fip-on {
  0% {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: perspective(400px);
  }
}

@keyframes fade-in-slide-up-lower {
  0% {
    opacity: 0;
    top: 70px;
  }
  79% {
    opacity: 0;
  }
  80% {
    opacity: 1;
    top: 70px;
  }
  100% {
    top: 60px;
  }
}

@keyframes fade-out-slide-down {
  0% {
    opacity: 1;
    top: 50px;
  }
  19% {
    opacity: 1;
  }
  20% {
    opacity: 0;
    top: 60px;
  }
  100% {
    top: 60px;
  }
}

@keyframes dropdown-fadein {
  0% {
    opacity: 0;
    transform: translateX(24px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

#grid {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
}

#grid .mobile, #grid .tablet, #grid .desktop {
  display: none;
  float: left;
  width: 100%;
  height: 100%;
  border-top: 1px solid #F38230;
  border-bottom: 1px solid #F38230;
}

#grid .mobile div, #grid .tablet div, #grid .desktop div {
  float: left;
  height: 100%;
  border-left: 1px solid #F38230;
  border-right: 1px solid #F38230;
  background: rgba(255, 213, 0, 0.25);
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  #grid .mobile {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #grid .tablet {
    display: block;
  }
}

#grid .desktop {
  float: none;
  margin: 0 auto;
  width: 1024px;
}

@media only screen and (min-width: 1024px) {
  #grid .desktop {
    display: block;
  }
}

.m-1 {
  width: 1.25%;
}

.t-1 {
  width: 3.9062%;
}

.d-1 {
  width: 7.6172%;
}

.m-2 {
  margin-left: 6.25%;
  width: 15.625%;
}

.t-2 {
  margin-left: 3.9062%;
  width: 11.9792%;
}

.d-2 {
  margin-left: 2.4414%;
  width: 14.4531%;
}

.m-3 {
  margin-left: 6.25%;
  width: 17.5%;
}

.t-3 {
  margin-left: 3.9062%;
  width: 9.6354%;
}

.d-3 {
  margin-left: 2.4414%;
  width: 8.1055%;
}

.m-4 {
  margin-left: 6.25%;
  width: 17.5%;
}

.t-4 {
  margin-left: 3.9062%;
  width: 10.8073%;
}

.d-4 {
  margin-left: 2.4414%;
  width: 11.2305%;
}

.m-5 {
  margin-left: 6.25%;
  width: 15.625%;
}

.t-5 {
  margin-left: 3.9062%;
  width: 10.8073%;
}

.d-5 {
  margin-left: 2.4414%;
  width: 11.3281%;
}

.m-6 {
  margin-left: 6.25%;
  width: 1.25%;
}

.t-6 {
  margin-left: 3.9062%;
  width: 9.6354%;
}

.d-6 {
  margin-left: 2.4414%;
  width: 8.1055%;
}

.t-7 {
  margin-left: 3.9062%;
  width: 11.9792%;
}

.d-7 {
  margin-left: 2.4414%;
  width: 14.4531%;
}

.t-8 {
  margin-left: 3.9062%;
  width: 3.9062%;
}

.d-8 {
  margin-left: 2.4414%;
  width: 7.6172%;
}

.fields {
  clear: both;
  margin-left: 0;
}

.fields .field label {
  float: left;
  width: 100%;
}

.input-custom {
  position: absolute;
  left: -999em;
}

.select-custom {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: block;
  float: left;
  cursor: pointer;
  -webkit-appearance: menulist-button;
  width: 100%;
  height: 43px;
  line-height: 43px;
}

.custom-shiv {
  float: left;
  clear: both;
  width: 100%;
  height: 43px;
  overflow: hidden;
  padding: 0 30px 0 15px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #fff;
  background: #7BA2D3;
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 45px;
}

.custom-shiv span:after {
  position: absolute;
  right: 15px;
  top: 18px;
  background: url(../images/vtb_icon_sprite.png) no-repeat -112px -66px;
  height: 8px;
  width: 12px;
  content: '';
  display: block;
  text-align: center;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .custom-shiv span:after {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.select-container {
  padding-top: 0;
  position: relative;
  display: inline-block;
}

.select-container.validation-error .custom-shiv {
  background-color: #D65E56;
}

.select-container.validation-error:hover .custom-shiv {
  background: #D65E56;
}

.select-container.disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.select-container.small {
  top: 4px;
}

.select-container.small .select-custom {
  height: 18px;
}

.select-container.small .custom-shiv {
  display: inline-block;
  height: 18px;
  line-height: 18px;
  font-size: 0.8571em;
  text-transform: none;
  padding-right: 26px;
  padding-left: 5px;
}

.select-container.small .custom-shiv span:after {
  top: 6px;
}

label.radio-label, label.checkbox-label, span.label.radio-label, span.label.checkbox-label {
  position: relative;
  line-height: 20px;
  cursor: pointer;
  padding: 0 0 0 30px !important;
}

label.radio-label:before, label.checkbox-label:before, span.label.radio-label:before, span.label.checkbox-label:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #D9D7D1;
  color: #F38230;
  font-family: "SSStandard";
  text-align: center;
  line-height: 20px;
  font-size: 10px;
}

label.radio-label:hover:before, label.checkbox-label:hover:before, span.label.radio-label:hover:before, span.label.checkbox-label:hover:before {
  background-color: #f2f2f2;
}

label.radio-label.disabled:before, label.checkbox-label.disabled:before, span.label.radio-label.disabled:before, span.label.checkbox-label.disabled:before {
  border-color: #A5A5A5;
  background: none;
}

label.radio-label.disabled:hover:after, label.checkbox-label.disabled:hover:after, span.label.radio-label.disabled:hover:after, span.label.checkbox-label.disabled:hover:after {
  display: none;
}

label.radio-label.disabled:hover:before, label.checkbox-label.disabled:hover:before, span.label.radio-label.disabled:hover:before, span.label.checkbox-label.disabled:hover:before {
  border-color: #A5A5A5;
  background: none;
}

label.checkbox-label:after, span.label.checkbox-label:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 3px;
  width: 18px;
  height: 18px;
}

label.checkbox-label:before, span.label.checkbox-label:before {
  width: 16px;
  height: 16px;
  background: #D9D7D1;
  border: 1px solid #D9D7D1;
}

label.checkbox-label.disabled:before, label.checkbox-label.disabled.checked:before, span.label.checkbox-label.disabled:before, span.label.checkbox-label.disabled.checked:before {
  background: none;
  border: 1px solid #A5A5A5;
}

label.checkbox-label.disabled:hover:after, span.label.checkbox-label.disabled:hover:after {
  display: none;
}

label.checkbox-label.disabled:hover:before, span.label.checkbox-label.disabled:hover:before {
  background: none;
}

label.radio-label:before, span.label.radio-label:before {
  border-radius: 50%;
}

label.radio-label.checked:before, span.label.radio-label.checked:before {
  background: #F38230;
  border-color: #F38230;
}

label.radio-label.checked:after, span.label.radio-label.checked:after {
  border-radius: 50%;
  background-clip: padding-box;
  content: '';
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #fff;
  color: white;
  text-align: center;
  line-height: 15px;
  font-size: 15px;
  letter-spacing: 1px;
  text-indent: 1px;
}

label.checkbox-label.checked:before, span.label.checkbox-label.checked:before {
  background-color: #F38230;
  color: #fff;
  border-color: #F38230;
}

label.checkbox-label.checked:after, span.label.checkbox-label.checked:after {
  background: url(../images/vtb_icon_sprite.png) no-repeat -215px -65px;
  height: 10px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  label.checkbox-label.checked:after, span.label.checkbox-label.checked:after {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

span.label.radio-label label, span.label.checkbox-label label {
  padding: 0;
}

.form-list .select-container {
  display: block;
  width: 100%;
  clear: both;
}

.form-list .select-container:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.form-list select {
  margin-top: 0;
  width: 100%;
}

.box-related .checkbox-label {
  float: left;
  margin-top: 36px;
  margin-right: 10px;
}

.shipping #co-shipping-method-form .sp-methods dd label.radio-label {
  border: 0;
  font-style: normal;
}

.opc .select-container {
  width: 365px;
}

.opc .select-container.v-fix {
  width: auto;
  clear: none;
}

.opc .select-container select {
  margin-top: 0;
  width: 100%;
}

.customer-address-form .form-list .select-container {
  width: 365px;
}

.reset {
  clear: none;
}

.credit-card {
  clear: both;
  float: left;
  margin: 80px 0 30px;
  position: relative;
  width: 100%;
}

.cc-accepted-container {
  left: 20px;
  position: absolute;
  top: -60px;
}

.credit-card-number,
.credit-card-expiration,
.credit-card-verification {
  width: 100%;
}

.cc-accepted > li {
  background: transparent url("../images/sprites/credit-cards.png") 0 0 no-repeat;
  display: none;
  float: left;
  height: 29px;
  margin: 0 5px 5px 0;
  width: 48px;
}

.cc-accepted .ae,
.cc-accepted .vi,
.cc-accepted .mc,
.cc-accepted .di {
  display: block;
}

.cc-accepted .vi {
  background-position: 0 -101px;
}

.cc-accepted .mc {
  background-position: -83px -101px;
}

.cc-accepted .di {
  background-position: -166px -101px;
}

.cc-accepted .ae {
  background-position: -249px -101px;
}

.visa .cc-accepted li,
.mastercard .cc-accepted li,
.discover .cc-accepted li,
.amex .cc-accepted li {
  opacity: .25;
}

@media only screen and (max-width: 770px) {
  .visa .cc-accepted li,
  .mastercard .cc-accepted li,
  .discover .cc-accepted li,
  .amex .cc-accepted li {
    opacity: 1;
  }
}

.visa .vi {
  opacity: 1;
}

.amex .ae {
  opacity: 1;
}

.mastercard .mc {
  opacity: 1;
}

.discover .di {
  opacity: 1;
}

.resp-credit-card .credit-card-styles .sp-methods > div,
.resp-credit-card .credit-card-styles .sp-methods dt,
.resp-credit-card .credit-card-styles .sp-methods dd {
  clear: both;
  width: 100%;
}

.resp-credit-card .credit-card-styles .sp-methods .form-list.credit-card {
  padding-left: 10px;
}

.resp-credit-card .credit-card {
  position: relative;
  float: left;
  clear: both;
  width: 46.9613%;
  min-width: 340px;
  min-height: 200px;
  overflow: visible;
  list-style: none;
  margin: 40px 0 25px 30px;
  padding: 10px;
  z-index: 10;
}

.resp-credit-card .credit-card input {
  border-radius: 5px;
}

.resp-credit-card .credit-card .validation-error input.input-text, .resp-credit-card .credit-card .validation-error .custom-shiv {
  color: #D65E56;
  border: 1px solid #D65E56;
}

.resp-credit-card .credit-card .custom-shiv {
  z-index: auto;
}

.resp-credit-card .credit-card > li {
  position: absolute;
}

.resp-credit-card .credit-card > li p.required {
  display: none;
}

.resp-credit-card .credit-card-front, .resp-credit-card .credit-card-back {
  display: block;
  position: absolute;
  border-radius: 1em;
  width: 100%;
  height: 100%;
}

.resp-credit-card .credit-card-front {
  left: 0;
  top: 0;
  background: #cccccc;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.15);
}

.resp-credit-card .credit-card-front:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  border-radius: 1em;
}

.resp-credit-card .credit-card-back {
  background: #f2f2f2;
  display: block;
  top: -20px;
  right: -70px;
  z-index: -1;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}

.resp-credit-card .credit-card-back:after {
  content: '';
  position: absolute;
  display: block;
  right: 0;
  top: 20px;
  width: 100px;
  height: 35px;
  background: #1a1a1a;
}

.resp-credit-card .credit-card-number,
.resp-credit-card .credit-card-verification,
.resp-credit-card .credit-card-expiration,
.resp-credit-card .credit-card-owner {
  position: absolute;
}

.resp-credit-card .credit-card-number label,
.resp-credit-card .credit-card-verification label,
.resp-credit-card .credit-card-expiration label,
.resp-credit-card .credit-card-owner label {
  color: #4B4B4B;
  text-transform: uppercase;
  font-weight: normal !important;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 0.8571em;
}

.resp-credit-card .credit-card-number {
  width: 55.8824%;
  top: 6px;
  left: 10px;
}

.resp-credit-card .credit-card-owner {
  width: 94.1176%;
  top: 85px;
}

.resp-credit-card .credit-card-expiration {
  right: 10px;
  bottom: -2px;
  text-align: right;
}

.resp-credit-card .credit-card-expiration label, .resp-credit-card .credit-card-expiration .input-box {
  display: inline-block;
}

.resp-credit-card .credit-card-expiration label {
  text-transform: uppercase;
  font-weight: normal;
}

.resp-credit-card .credit-card-expiration .input-box {
  padding: 0 0 0 10px;
}

.resp-credit-card .credit-card-expiration .select-container {
  top: 4px;
}

.resp-credit-card .credit-card-expiration .select-custom {
  height: 18px;
}

.resp-credit-card .credit-card-expiration .custom-shiv {
  display: inline-block;
  height: 18px;
  line-height: 18px;
  font-size: 0.8571em;
  text-transform: none;
  padding-right: 26px;
  padding-left: 5px;
}

.resp-credit-card .credit-card-expiration .custom-shiv span:after {
  top: 5px;
  right: 5px;
  font-size: 12px;
  line-height: 22px;
}

.resp-credit-card .cc-accepted-container {
  position: absolute;
  width: 32.3529%;
  left: auto;
  right: 10px;
  top: 10px;
  display: block;
  float: left;
}

.resp-credit-card .cc-accepted-header {
  display: block;
  float: left;
  width: 100%;
  color: #4B4B4B;
  text-transform: uppercase;
  font-weight: normal !important;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  font-size: 0.8571em;
  margin: 0 0 5px;
}

.resp-credit-card .cvv-what-is-this, .resp-credit-card #directpost-cvv-what-is-this {
  display: none;
}

.resp-credit-card .visa .cc-accepted-header,
.resp-credit-card .discover .cc-accepted-header,
.resp-credit-card .mastercard .cc-accepted-header,
.resp-credit-card .amex .cc-accepted-header {
  display: none;
}

.resp-credit-card .visa .cc-accepted-container,
.resp-credit-card .discover .cc-accepted-container,
.resp-credit-card .mastercard .cc-accepted-container,
.resp-credit-card .amex .cc-accepted-container {
  width: 73px;
}

.resp-credit-card .visa .cc-accepted-container li,
.resp-credit-card .discover .cc-accepted-container li,
.resp-credit-card .mastercard .cc-accepted-container li,
.resp-credit-card .amex .cc-accepted-container li {
  width: 73px;
  height: 44px;
}

.resp-credit-card .visa .credit-card-back,
.resp-credit-card .discover .credit-card-back,
.resp-credit-card .mastercard .credit-card-back,
.resp-credit-card .amex .credit-card-back {
  background: #f2f2f2;
}

.resp-credit-card .visa .credit-card-verification label,
.resp-credit-card .discover .credit-card-verification label,
.resp-credit-card .mastercard .credit-card-verification label,
.resp-credit-card .amex .credit-card-verification label {
  color: #000;
  text-shadow: none;
}

.resp-credit-card .visa .cc-accepted li,
.resp-credit-card .discover .cc-accepted li,
.resp-credit-card .mastercard .cc-accepted li,
.resp-credit-card .amex .cc-accepted li {
  display: none;
}

.resp-credit-card .visa .credit-card-front {
  background: #faa000;
}

.resp-credit-card .visa .cc-accepted li.vi {
  display: block;
  margin: 0;
  background-position: 0 0;
}

.resp-credit-card .amex .credit-card-front {
  background: #0072a4;
}

.resp-credit-card .amex .credit-card-verification {
  right: 23.5294%;
  z-index: 20;
}

.resp-credit-card .amex .cc-accepted li.ae {
  display: block;
  margin: 0;
  background-position: -249px 0;
}

.resp-credit-card .amex label.required:after {
  font-weight: bold;
  text-shadow: 0 0 2px 1px #fff;
}

.resp-credit-card .discover .credit-card-front {
  background: #abc7d2;
}

.resp-credit-card .discover .cc-accepted li.di {
  display: block;
  margin: 0;
  background-position: -166px 0;
}

.resp-credit-card .mastercard .credit-card-front {
  background: #b3b3b3;
}

.resp-credit-card .mastercard .cc-accepted li.mc {
  display: block;
  margin: 0;
  background-position: -83px 0;
}

.resp-credit-card .input-box.validation-error, .resp-credit-card .v-fix.validation-error, .resp-credit-card .input-box.validation-passed, .resp-credit-card .v-fix.validation-passed {
  position: relative;
}

.resp-credit-card .input-box.validation-error .validation-advice, .resp-credit-card .v-fix.validation-error .validation-advice, .resp-credit-card .input-box.validation-passed .validation-advice, .resp-credit-card .v-fix.validation-passed .validation-advice {
  opacity: 0 !important;
  display: block;
  position: absolute;
  float: left;
  left: 0;
  top: 100%;
  width: 100%;
  min-width: 60px;
  border-radius: 5px;
  background: #D65E56;
  color: #fff;
  margin: 5px 0 0;
  text-align: left;
  z-index: 9999;
  pointer-events: none;
  padding: 5px;
}

.resp-credit-card .input-box.validation-error .validation-advice:before, .resp-credit-card .v-fix.validation-error .validation-advice:before, .resp-credit-card .input-box.validation-passed .validation-advice:before, .resp-credit-card .v-fix.validation-passed .validation-advice:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 10px;
  border-color: transparent transparent #D65E56;
}

.resp-credit-card .input-box.validation-error:hover .validation-advice, .resp-credit-card .input-box.validation-error input:focus + .validation-advice, .resp-credit-card .input-box.validation-error.show-validation-errors .validation-advice, .resp-credit-card .v-fix.validation-error:hover .validation-advice, .resp-credit-card .v-fix.validation-error input:focus + .validation-advice, .resp-credit-card .v-fix.validation-error.show-validation-errors .validation-advice, .resp-credit-card .input-box.validation-passed:hover .validation-advice, .resp-credit-card .input-box.validation-passed input:focus + .validation-advice, .resp-credit-card .input-box.validation-passed.show-validation-errors .validation-advice, .resp-credit-card .v-fix.validation-passed:hover .validation-advice, .resp-credit-card .v-fix.validation-passed input:focus + .validation-advice, .resp-credit-card .v-fix.validation-passed.show-validation-errors .validation-advice {
  opacity: 1 !important;
}

.resp-credit-card .credit-card-verification {
  width: 14.7059%;
  right: -60px;
  top: 41px;
  text-align: center;
}

.resp-credit-card .credit-card-verification .v-fix {
  margin: 3px 0 0 !important;
}

.resp-credit-card .credit-card-verification label, .resp-credit-card .credit-card-verification .v-fix, .resp-credit-card .credit-card-verification input.input-text {
  float: left;
  clear: both;
  width: 100%;
  padding: 0 5px;
}

.resp-credit-card .credit-card-verification .input-box.validation-error .validation-advice, .resp-credit-card .credit-card-verification .v-fix.validation-error .validation-advice, .resp-credit-card .credit-card-verification .input-box.validation-passed .validation-advice, .resp-credit-card .credit-card-verification .v-fix.validation-passed .validation-advice {
  width: 150px;
  left: 50%;
  margin-left: -75px;
  top: 83px;
}

.resp-mobile .sp-methods .credit-card .v-fix, .ie8 .sp-methods .credit-card .v-fix {
  margin-bottom: 10px;
}

.resp-mobile .sp-methods .credit-card select, .resp-mobile .sp-methods .credit-card select.month, .resp-mobile .sp-methods .credit-card select.year, .ie8 .sp-methods .credit-card select, .ie8 .sp-methods .credit-card select.month, .ie8 .sp-methods .credit-card select.year {
  width: 100%;
  margin-right: 0;
}

.ie8 .cc-accepted > li {
  opacity: 1 !important;
}

.ie8 .cc-accepted .vi {
  background-position: 0 -171px;
}

.ie8 .cc-accepted .mc {
  background-position: -83px -171px;
}

.ie8 .cc-accepted .di {
  background-position: -166px -171px;
}

.ie8 .cc-accepted .ae {
  background-position: -249px -171px;
}

.ie8 .visa li.vi {
  background-position: 0 -101px;
}

.ie8 .mastercard li.mc {
  background-position: -83px -101px;
}

.ie8 .discover li.di {
  background-position: -166px -101px;
}

.ie8 .amex li.ae {
  background-position: -249px -101px;
}

.cms-credit-card-style .sp-methods {
  max-width: 724px;
}

.resp-credit-card .cms-credit-card-style .credit-card-styles .select-container {
  width: auto;
  display: inline-block;
  clear: none;
}

.resp-credit-card .cms-credit-card-style .buttons-set .button, .resp-credit-card .cms-credit-card-style .buttons-set p {
  float: left;
}

.yotpo.bottomLine {
  text-align: center;
  padding-top: 15px;
}

.yotpo.bottomLine .standalone-bottomline {
  display: inline-block;
}

@media only screen and (max-width: 770px) {
  .yotpo.bottomLine .standalone-bottomline .yotpo-bottomline {
    text-align: center;
  }
}

.yotpo.bottomLine .text-m {
  margin-left: 8px;
  vertical-align: top;
  color: #4B4B4B !important;
}

@media only screen and (max-width: 770px) {
  .yotpo.bottomLine .text-m {
    display: block;
    margin: 0;
  }
}

.breadcrumbs[style] ~ .col-main .product-view .desktop .yotpo.bottomLine .text-m {
  color: white !important;
}

@media only screen and (max-width: 770px) {
  .yotpo .yotpo-stars, .yotpo .stars-wrapper, .yotpo .yotpo-review-stars {
    display: inline-block;
  }
}

.yotpo .yotpo-stars .yotpo-icon.yotpo-icon-star, .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-empty-star, .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-star, .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-empty-star, .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-star, .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-empty-star {
  background-image: none !important;
  width: auto !important;
  height: auto !important;
}

.yotpo .yotpo-icon-star:before {
  content: "";
  background: url(../images/vtb_icon_sprite.png) no-repeat -82px -550px;
  height: 16px;
  width: 16px;
  display: inline-block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .yotpo .yotpo-icon-star:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.breadcrumbs[style] ~ .col-main .product-view .desktop .yotpo .yotpo-icon-star:before {
  background: url(../images/vtb_icon_sprite.png) no-repeat -82px -592px;
  height: 16px;
  width: 16px;
  margin: 1px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .breadcrumbs[style] ~ .col-main .product-view .desktop .yotpo .yotpo-icon-star:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.yotpo .yotpo-icon-empty-star:before {
  content: "";
  background: url(../images/vtb_icon_sprite.png) no-repeat -82px -636px;
  height: 16px;
  width: 16px;
  display: inline-block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .yotpo .yotpo-icon-empty-star:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.breadcrumbs[style] ~ .col-main .product-view .desktop .yotpo .yotpo-icon-empty-star:before {
  background: url(../images/vtb_icon_sprite.png) no-repeat -81px -613px;
  height: 18px;
  width: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .breadcrumbs[style] ~ .col-main .product-view .desktop .yotpo .yotpo-icon-empty-star:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

html.yotpo-pdp {
  overflow: visible;
}

html.yotpo-pdp body {
  overflow: visible;
}

html.yotpo-pdp body .wrapper {
  overflow-x: hidden;
}

@media only screen and (max-width: 770px) {
  .breadcrumbs li {
    display: none;
  }
  .breadcrumbs li.mobile {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 17px;
  }
  .breadcrumbs li.mobile a {
    float: none;
  }
  .breadcrumbs li.mobile a:before {
    background: url(../images/vtb_icon_sprite.png) no-repeat -177px -66px;
    height: 8px;
    width: 11px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .breadcrumbs li.mobile a:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

@media only screen and (max-width: 770px) {
  .breadcrumbs li span {
    display: none;
  }
}

.product-shop .product-alert {
  clear: both;
  float: left;
  width: 100%;
}

.product-shop .product-alert:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-shop .product-alert .title {
  color: #F38230;
  font-size: 12px;
  font-size: 14px;
  cursor: pointer;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

.product-shop .product-alert .title:after {
  content: "";
  background: url(../images/vtb_icon_sprite.png) no-repeat -86px -327px;
  height: 7px;
  width: 9px;
  display: inline-block;
  margin-left: 8px;
  transition: all 300ms ease;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-shop .product-alert .title:after {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.product-shop .product-alert .title.active:after {
  transform: rotate(180deg);
}

.product-shop .product-alert .button {
  padding: 0 30px;
  width: auto;
  line-height: 40px;
  margin-top: 15px;
  font-size: 14px;
}

.product-shop .product-alert .form {
  margin-bottom: 20px;
}

#top-header .top-header-content .mini-products-list .product-details .truncated .item-options {
  top: 31px;
  left: -80px;
  color: #4B4B4B;
}

@media only screen and (max-width: 479px) {
  #top-header .top-header-content .mini-products-list .product-details .truncated .item-options {
    color: white;
  }
  #top-header .top-header-content .mini-products-list .product-details .truncated .item-options dt {
    clear: none;
  }
}

#top-header .top-header-content .mini-products-list .product-details .details {
  line-height: 21px;
  color: white;
}

.product-view:not(.bearbuilder-pdp) .product-options {
  border: none;
}

.product-view:not(.bearbuilder-pdp) .product-options-bottom {
  background: white;
}

.product-view:not(.bearbuilder-pdp) .swatch-attr label {
  font-size: 14px;
  margin-bottom: 10px;
}

.product-view .product-options-bottom {
  border: none;
}

.product-view .product-options-bottom:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-view .product-options-bottom .add-to-cart .btn-cart, .product-view .product-options-bottom .add-to-cart .price-box {
  margin-bottom: 0;
}

.product-view .product-options-bottom .add-to-cart .price-box {
  display: block;
}

@media only screen and (max-width: 770px) {
  html .checkout-cart-index .main-container .main {
    margin-top: 0;
  }
}

@media only screen and (max-width: 770px) {
  html .cart .page-title h1 {
    float: none;
    text-align: center;
    line-height: 38px;
  }
}

html .item-msg.notice {
  color: #D65E56;
  clear: both;
}

html #discount-coupon-form .input-text, html .cart .giftcard .input-text {
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

html .cart-table .product-cart-actions .qty {
  border-color: #7BA2D3;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

html .cart-table .product-cart-actions .button {
  font-size: 12px;
  line-height: 20px;
  height: 30px;
  width: auto;
  display: block;
  margin: 0 auto 5px;
}

@media only screen and (max-width: 599px) {
  html .cart-table .product-cart-actions .button {
    margin: 0;
  }
}

html #discount-coupon-form label, html .cart .giftcard label {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

html .cart-table, html .cart-totals, html .cart-forms .discount, html .cart-forms .giftcard, html .cart-forms .shipping {
  margin-bottom: 0;
}

html .main .button.btn-checkout {
  padding: 7px 0;
}

html .cart .cart-totals table tfoot td {
  padding: 18px 0;
}

@media only screen and (max-width: 770px) {
  html .data-table tbody td, html .data-table tfoot td {
    border-bottom: 2px solid #4B4B4B;
  }
}

@media only screen and (max-width: 599px) {
  html .data-table tbody td, html .data-table tfoot td {
    border-bottom-color: transparent;
  }
}

html .shipping h2 {
  line-height: 24px;
}

html .cart-table .product-flags {
  padding: 0 4px;
  box-shadow: 2px 2px #ccc;
  font-size: 9px;
  letter-spacing: 0.5px;
  line-height: 13px;
}

@media only screen and (max-width: 599px) {
  html .cart-table .cart-footer-actions .button, html .cart-table .cart-footer-actions .button2 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

html.ie8 .cart-table .product-cart-actions .button {
  width: 90px;
}

.checkout-cart-index .shipping-form #shipping-zip-form li {
  width: 100%;
}

.checkout-cart-index .shipping-form #shipping-zip-form .button {
  width: 100%;
  float: none;
  margin-left: 0px;
}

.checkout-cart-index .shipping-form #shipping-zip-form input {
  height: 42px;
}

.checkout-cart-index .shipping-form #shipping-zip-form:before, .checkout-cart-index .shipping-form #shipping-zip-form:after {
  content: " ";
  display: table;
}

.checkout-cart-index .shipping-form #shipping-zip-form:after {
  clear: both;
}

.checkout-onepage-index #addressverification_billing {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-onepage-index #payment-progress-opcheckout dl.payment-info {
  display: inline-block;
}

.checkout-onepage-index .opc .buttons-set .button[onclick*="back"] {
  background: none;
  color: #4B4B4B;
  font-size: 14px;
  padding: 0 15px;
  height: auto;
  width: auto;
  min-width: auto;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-index .opc .buttons-set .button[onclick*="back"] {
    width: 100%;
  }
}

.ie8 .checkout-onepage-index .opc .input-text {
  line-height: 40px;
}

.checkout-onepage-index .data-table tfoot tr.last {
  font-size: 16px;
}

.checkout-onepage-index .data-table tfoot tr.last .price {
  font-size: 16px;
}

.checkout-onepage-index .data-table tfoot td {
  border-bottom-color: #ddd;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-index .data-table tfoot td {
    border-bottom: none;
  }
}

.checkout-onepage-index #header, .checkout-onepage-index .footer-top, .checkout-onepage-index .footer-mid {
  display: none;
}

.checkout-onepage-index .skip-link.skip-nav {
  display: none;
}

.checkout-onepage-index .marketing-questions:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.checkout-onepage-index .marketing-question {
  margin-bottom: 20px;
  width: 100%;
  float: left;
  clear: none;
}

.checkout-onepage-index .marketing-question:last-of-type {
  margin-bottom: 30px;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-index .marketing-question {
    padding-right: 0;
    width: 100%;
  }
}

.checkout-onepage-index .marketing-question .input-text {
  display: block;
}

.checkout-onepage-index .marketing-question .question-description {
  font-size: 14px;
}

.checkout-onepage-index #onepage-checkout-shipping-method-additional-load h3 {
  font-size: 20px;
  margin-top: 30px;
}

.checkout-onepage-index #onepage-checkout-shipping-method-additional-load h4 {
  font-size: 16px;
}

.checkout-onepage-index #top-header .edit-cart-wrp {
  position: absolute;
  margin-left: 50px;
  display: inline-block;
  line-height: 18px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
}

.checkout-onepage-index #top-header .edit-cart-wrp a {
  margin-left: 20px;
  line-height: 18px;
}

.checkout-onepage-index #top-header .edit-cart-wrp:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  background: url(../images/vtb_icon_sprite.png) no-repeat -163px -145px;
  height: 13px;
  width: 8px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .checkout-onepage-index #top-header .edit-cart-wrp:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-index #top-header .edit-cart-wrp {
    margin-left: 0px;
  }
}

.checkout-onepage-index .form-list .control .guest-login-email-label {
  padding: 5px 0;
  max-width: none;
  width: 100%;
}

.checkout-onepage-index .form-list .control div.input-box {
  margin-bottom: 10px;
  float: none;
}

.checkout-onepage-index .col-right.sidebar .block-title strong {
  line-height: 57px;
  text-transform: uppercase;
  font-size: 34px;
  color: #4B4B4B;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

.checkout-onepage-index .col-right.sidebar .summary {
  line-height: 38px;
}

.checkout-onepage-index .col-right.sidebar .block-cart {
  padding: 5px;
  padding-left: 20px;
  border-left: 1px #CCCCCC solid;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.checkout-onepage-index .col-right.sidebar .block-cart #cart-sidebar .product-details {
  margin-left: none;
}

.checkout-onepage-index .col-right.sidebar .block-cart #cart-sidebar .product-name {
  text-align: left;
  margin-bottom: none;
}

.checkout-onepage-index .col-right.sidebar .block-cart ol:before, .checkout-onepage-index .col-right.sidebar .block-cart ol:after {
  content: " ";
  display: table;
}

.checkout-onepage-index .col-right.sidebar .block-cart ol:after {
  clear: both;
}

.checkout-onepage-index .col-right.sidebar .block-cart .btn-remove {
  display: none;
}

.checkout-onepage-index .col-right.sidebar .block-cart .subtotal {
  margin-top: 5px;
}

#allow-gift-options-for-order-container a {
  margin-bottom: 10px;
  display: block;
}

#allow-gift-options-for-order-container a:after {
  content: "\2193";
  display: inline-block;
  margin-left: 8px;
}

#allow-gift-options-for-order-container .form-list .control .input-text {
  line-height: 30px;
  height: 30px;
}

.checkout-onepage-success .main {
  margin-top: 0;
}

.checkout-onepage-success .page-title h1 {
  line-height: 38px;
}

.checkout-onepage-success .sub-title {
  line-height: 28px;
  font-size: 24px;
}

.checkout-onepage-success .address-info {
  margin-top: 20px;
}

.checkout-onepage-success .address-info .billing-address {
  width: 25%;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-success .address-info .billing-address {
    width: 100%;
  }
}

.checkout-onepage-success .address-info .billing-info {
  width: 25%;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-success .address-info .billing-info {
    width: 100%;
  }
}

.checkout-onepage-success .address-info .shipping-address {
  width: 25%;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-success .address-info .shipping-address {
    width: 100%;
  }
}

.checkout-onepage-success .address-info .shipping-cost {
  width: 30%;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-success .address-info .shipping-cost {
    width: 100%;
  }
}

@media only screen and (max-width: 980px) {
  html body.checkout-onepage-index #checkoutSteps div[id$="-progress-opcheckout"] dt {
    display: block;
  }
}

@media only screen and (max-width: 980px) {
  html #checkout-step-review .opc-block-progress .block-content > dl {
    margin: 0 0 20px;
  }
  html #checkout-step-review .opc-block-progress .block-content > dl:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

@media only screen and (max-width: 980px) {
  html #checkout-step-review .opc-block-progress .block-content > dl > div {
    display: block;
    float: left;
    clear: none;
    width: 100%;
    margin: 0;
  }
}

@media only screen and (max-width: 479px) {
  html #checkout-step-review .opc-block-progress .block-content > dl > div {
    width: 100%;
  }
}

.ba-login-option {
  display: none !important;
}

.opc #opc-payment.section .buttons-set .back-link {
  float: left;
  clear: both;
}

.opc #opc-payment.section .buttons-set button.button {
  float: right;
}

body.checkout-cart-index {
  perspective: none;
}

body.checkout-cart-index .fancybox-mobile {
  bottom: 20px !important;
  overflow: hidden !important;
  overflow-y: scroll !important;
  top: 21px !important;
}

@media only screen and (max-width: 768px) {
  body.checkout-cart-index .fancybox-mobile div.fancybox-skin {
    padding: 20px !important;
  }
}

@media only screen and (max-width: 350px) {
  body.checkout-cart-index .fancybox-mobile div.fancybox-skin {
    padding: 10px !important;
  }
}

.ie8 .impulse-buys-modal .fancybox-skin {
  border: 1px solid #4B4B4B;
}

.ie8 .impulse-buys-modal .fancybox-skin button.button[disabled="disabled"] {
  background-color: #C8C8C8;
  color: #4B4B4B;
}

.ie8 .impulse-buys-modal .fancybox-skin button.button[disabled="disabled"] span span {
  color: #4B4B4B;
}

.impulse-buys-modal {
  /* item spacing styles */
  /* grid item styles */
  /* item "more information" styles */
}

.impulse-buys-modal .size-chart {
  display: none;
}

.impulse-buys-modal #impulse-buys-wrapper .add-to-cart {
  display: block !important;
}

.impulse-buys-modal .catalog-product-view .product-view {
  padding: 0;
}

.impulse-buys-modal #impulse-buys-wrapper {
  overflow: visible;
}

.impulse-buys-modal .impulse-buys-wrapper {
  width: 800px;
  padding-top: 5px;
}

@media only screen and (max-width: 950px) {
  .impulse-buys-modal .impulse-buys-wrapper {
    width: 580px;
  }
}

@media only screen and (max-width: 768px) {
  .impulse-buys-modal .impulse-buys-wrapper {
    width: 490px;
  }
}

@media only screen and (max-width: 500px) {
  .impulse-buys-modal .impulse-buys-wrapper {
    width: 450px;
  }
}

@media only screen and (max-width: 430px) {
  .impulse-buys-modal .impulse-buys-wrapper {
    width: 300px;
  }
}

.impulse-buys-modal .impulse-buys-wrapper .add-to-cart {
  padding-top: 20px;
}

.impulse-buys-modal .impulse-buys-wrapper .product-image-zoom .product-image-gallery:before {
  display: none;
}

.impulse-buys-modal .impulse-buys-wrapper .product-view .product-img-box .product-image:after {
  display: none;
}

.impulse-buys-modal div.fancybox-skin {
  overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
  .impulse-buys-modal div.fancybox-skin {
    padding: 20px !important;
  }
}

@media only screen and (max-width: 350px) {
  .impulse-buys-modal div.fancybox-skin {
    padding: 10px !important;
  }
}

.impulse-buys-modal .fancybox-inner {
  overflow: visible !important;
}

.impulse-buys-modal h1 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal h1 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 599px) {
  .impulse-buys-modal h1 {
    font-size: 16px;
    max-width: 170px;
    margin: 5px auto 10px;
  }
}

.impulse-buys-modal .products-grid {
  text-align: center;
  margin-bottom: 15px;
}

.impulse-buys-modal .item {
  float: none;
  width: 100%;
  max-width: 300px;
  margin: 0 1% !important;
  display: inline-block;
}

.impulse-buys-modal .products-grid .item .actions {
  display: block;
  position: relative;
}

.impulse-buys-modal .products-grid .item .btn-small {
  width: auto;
  display: inline-block;
  padding: 0 20px;
}

.impulse-buys-modal .add-to-cart {
  text-align: center;
}

.impulse-buys-modal .add-to-cart:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.impulse-buys-modal .more-views,
.impulse-buys-modal .add-to-links,
.impulse-buys-modal .sharing-links,
.impulse-buys-modal .link-compare {
  display: none;
}

.impulse-buys-modal .product-view .product-shop .product-essential > .price-info {
  display: none;
}

.impulse-buys-modal .product-view .product-shop .product-actions-bottom {
  padding: 0;
}

.impulse-buys-modal .product-view .product-shop .product-essential .product-name {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 32px;
}

.impulse-buys-modal .product-view .product-shop .product-essential .product-name .h1 {
  font-size: 32px;
  line-height: 38px;
  color: #F38230;
  text-transform: capitalize;
}

.impulse-buys-modal .product-view .product-shop .product-image-zoom:after {
  display: none;
}

.impulse-buys-modal .product-view .product-shop div.price-box {
  display: block;
  text-align: left;
  padding-bottom: 5px;
}

.impulse-buys-modal .product-view .product-shop div.price-box:before {
  text-align: left;
}

.impulse-buys-modal .product-view .product-shop .add-to-cart div.price-box {
  display: none;
}

.impulse-buys-modal .product-view .product-shop .btn-cart {
  max-width: 100%;
}

.impulse-buys-modal .product-view .product-shop .add-to-cart-buttons,
.impulse-buys-modal .product-view .product-shop .add-to-cart-wrapper,
.impulse-buys-modal .product-view .product-shop .price-box {
  width: 100%;
  float: none;
  padding: 0;
  margin: 0;
}

.impulse-buys-modal .product-view .product-shop .product-options-bottom {
  background: white;
  border: none;
}

.impulse-buys-modal .product-view .product-shop .product-options-bottom .price-box {
  text-align: left;
}

.impulse-buys-modal .product-view .product-shop .product-options-bottom .price-box:before {
  content: "Your price";
  display: block;
  font-size: 14px;
  line-height: 17px;
  text-align: left;
  margin: 4px 0 8px;
}

.impulse-buys-modal .product-view .product-shop .product-options {
  border: none;
}

.impulse-buys-modal .product-view .product-shop .configurable-swatch-list:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.impulse-buys-modal .product-view .product-shop .qty-wrapper {
  display: block;
  float: none;
  margin: 10px 0 18px;
}

@media only screen and (max-width: 479px) {
  .checkout-cart-index .impulse-buys-modal .product-view .product-shop .qty-wrapper input.qty {
    width: 40px;
  }
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .actions .btn-small {
    padding: 0 8px;
  }
  .impulse-buys-modal .actions .btn-small span {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 599px) {
  .impulse-buys-modal .actions .btn-small {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 479px) {
  .impulse-buys-modal .actions .btn-small {
    padding: 0 15px;
  }
}

.impulse-buys-modal .product-info {
  padding-bottom: 5px;
}

@media only screen and (max-width: 599px) {
  .impulse-buys-modal .image-container .product-img-box {
    padding: 30px 30px 0;
  }
}

.impulse-buys-modal .image-container .product-img-box .product-name {
  display: none;
}

.impulse-buys-modal .product-options-bottom > .price-box {
  display: none;
}

.impulse-buys-modal .back-link-wrapper {
  text-align: center;
}

.impulse-buys-modal .back-to-impulse {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  float: none;
}

.impulse-buys-modal .back-to-impulse:before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  background: url(../images/vtb_icon_sprite.png) no-repeat -86px -327px;
  height: 7px;
  width: 9px;
  transform: rotate(90deg);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .impulse-buys-modal .back-to-impulse:before {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.ie8 .impulse-buys-modal .back-to-impulse:before {
  display: none;
}

.impulse-buys-modal .added-to-cart .actions {
  display: none;
}

.impulse-buys-modal .qty-inner {
  position: relative;
}

.impulse-buys-modal .qty-inner .validation-advice {
  position: absolute;
  top: -30px;
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .qty-inner .validation-advice {
    top: -40px;
  }
}

@media only screen and (max-width: 599px) {
  .impulse-buys-modal a.fancybox-close {
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .owl-carousel .owl-stage-outer {
    overflow: hidden;
  }
}

@media only screen and (max-width: 479px) {
  .impulse-buys-modal .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
}

.impulse-buys-modal .owl-stage {
  margin: 0 auto;
}

.impulse-buys-modal .owl-item {
  opacity: 0;
  animation: modal-fadein 750ms cubic-bezier(0.36, 1.92, 0.62, 0.61) forwards;
}

.impulse-buys-modal .owl-item:nth-of-type(1) {
  animation-delay: 100ms;
}

.impulse-buys-modal .owl-item:nth-of-type(2) {
  animation-delay: 200ms;
}

.impulse-buys-modal .owl-item:nth-of-type(3) {
  animation-delay: 300ms;
}

.ie8 .impulse-buys-modal .owl-item, .ie9 .impulse-buys-modal .owl-item {
  opacity: 1;
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .owl-controls {
    display: block !important;
    width: 80% !important;
    left: 10% !important;
  }
}

.impulse-buys-modal .owl-controls .owl-nav .owl-prev, .impulse-buys-modal .owl-controls .owl-nav .owl-next {
  width: 42px;
  left: auto;
  right: -50px;
}

.impulse-buys-modal .owl-controls .owl-nav .owl-prev:after, .impulse-buys-modal .owl-controls .owl-nav .owl-next:after {
  background: url(../images/vtb_icon_sprite.png) no-repeat -131px -373px;
  height: 22px;
  width: 12px;
  left: auto;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .impulse-buys-modal .owl-controls .owl-nav .owl-prev:after, .impulse-buys-modal .owl-controls .owl-nav .owl-next:after {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .owl-controls .owl-nav .owl-prev:after, .impulse-buys-modal .owl-controls .owl-nav .owl-next:after {
    display: block !important;
  }
}

.impulse-buys-modal .owl-controls .owl-nav .owl-prev {
  left: -50px;
  right: auto;
}

.impulse-buys-modal .owl-controls .owl-nav .owl-prev:after {
  background-position: -101px -346px;
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .owl-controls .owl-nav .owl-prev:after {
    display: block !important;
  }
}

@media only screen and (min-width: 600px) {
  .impulse-buys-modal .impulse-buys-wrapper h1 {
    max-width: 300px;
    margin: 5px auto 10px;
  }
}

@media only screen and (min-width: 771px) {
  .impulse-buys-modal .impulse-buys-wrapper h1 {
    max-width: none;
  }
}

.fancybox-overlay .fancybox-wrap, .fancybox-wrap .fancybox-wrap {
  animation: modal-fadein 450ms cubic-bezier(0.36, 1.92, 0.62, 0.61);
}

.fancybox-overlay .fancybox-skin, .fancybox-wrap .fancybox-skin {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.fancybox-overlay .fancybox-close, .fancybox-wrap .fancybox-close {
  background: url(../images/vtb_icon_sprite.png) no-repeat -86px -233px;
  height: 26px;
  width: 25px;
  top: 20px;
  right: 20px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .fancybox-overlay .fancybox-close, .fancybox-wrap .fancybox-close {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.product-info-modal.fancybox-wrap {
  animation: modal-fadein 750ms cubic-bezier(0.36, 1.92, 0.62, 0.61) forwards;
}

.ie8 .product-info-modal.fancybox-wrap, .ie9 .product-info-modal.fancybox-wrap {
  opacity: 1 !important;
}

.product-info-modal.fancybox-wrap .fancybox-skin {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.product-info-modal.fancybox-wrap .item {
  max-width: 500px;
  padding: 10px 0 20px;
  opacity: 0;
  animation: modal-fadein 750ms cubic-bezier(0.36, 1.92, 0.62, 0.61) forwards;
}

.product-info-modal.fancybox-wrap .item:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.ie8 .product-info-modal.fancybox-wrap .item, .ie9 .product-info-modal.fancybox-wrap .item {
  opacity: 1;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(1) {
  animation-delay: 100ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(2) {
  animation-delay: 200ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(3) {
  animation-delay: 300ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(4) {
  animation-delay: 400ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(5) {
  animation-delay: 500ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(6) {
  animation-delay: 600ms;
}

.product-info-modal.fancybox-wrap .item img {
  display: block;
  float: left;
  width: 30%;
  max-width: 150px;
}

.product-info-modal.fancybox-wrap .item img ~ .product-info {
  width: 70%;
}

.product-info-modal.fancybox-wrap .item .product-info {
  float: right;
  width: 100%;
  padding-left: 5px;
}

.product-info-modal.fancybox-wrap .item .product-info h4 {
  padding-right: 40px;
  margin: 0;
}

.product-info-modal.fancybox-wrap .item .product-info .product-description {
  margin-top: 10px;
}

.product-info-modal.fancybox-wrap .item ~ .item {
  border-top: 1px solid lightgrey;
}

.product-info-modal.fancybox-wrap .size-chart {
  width: 500px;
}

@media only screen and (max-width: 600px) {
  .product-info-modal.fancybox-wrap .size-chart {
    width: 400px;
  }
}

@media only screen and (max-width: 450px) {
  .product-info-modal.fancybox-wrap .size-chart {
    width: 254px;
  }
}

.product-info-modal.fancybox-wrap .size-chart .sizing {
  width: 100%;
}

.add-to-cart .qty-minus, .add-to-cart .qty-plus {
  float: left;
  width: 34.375%;
  max-width: 50px;
  height: 40px;
  line-height: 38px;
  font-size: 38px;
  color: white;
  background: #F38230;
  cursor: pointer;
  position: relative;
}

@media only screen and (max-width: 770px) {
  .add-to-cart .qty-minus, .add-to-cart .qty-plus {
    width: 22.7586%;
  }
}

.add-to-cart .qty-minus:active, .add-to-cart .qty-plus:active {
  background: #e2711f;
}

.add-to-cart .qty-minus ~ .qty, .add-to-cart .qty-plus ~ .qty {
  border-top: 5px solid #F38230;
  border-bottom: 5px solid #F38230;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../images/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("../images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}

.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

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

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

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

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

.owl-height {
  transition: height 500ms ease-in-out;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0, 0);
  padding-top: 8px;
}

@media only screen and (max-width: 770px) {
  .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
}

.owl-carousel .owl-controls .owl-dot,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-controls {
  height: 0;
  position: absolute;
  top: 50%;
  width: 130%;
  left: -15%;
}

.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next {
  float: right;
  padding: 15px;
  margin-top: -10px;
}

.owl-carousel .owl-controls .owl-nav .owl-prev:after, .owl-carousel .owl-controls .owl-nav .owl-next:after {
  background: url(../images/vtb_icon_sprite.png) no-repeat -146px -372px;
  height: 22px;
  width: 12px;
  content: "";
  display: block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .owl-carousel .owl-controls .owl-nav .owl-prev:after, .owl-carousel .owl-controls .owl-nav .owl-next:after {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

@media only screen and (max-width: 770px) {
  .owl-carousel .owl-controls .owl-nav .owl-prev:after, .owl-carousel .owl-controls .owl-nav .owl-next:after {
    background-position: -133px -526px;
    width: 10px;
    height: 18px;
  }
}

.owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .owl-carousel .owl-controls .owl-nav .owl-prev:active:after, .owl-carousel .owl-controls .owl-nav .owl-next:hover:after, .owl-carousel .owl-controls .owl-nav .owl-next:active:after {
  background-position: -131px -373px;
}

@media only screen and (max-width: 770px) {
  .owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .owl-carousel .owl-controls .owl-nav .owl-prev:active:after, .owl-carousel .owl-controls .owl-nav .owl-next:hover:after, .owl-carousel .owl-controls .owl-nav .owl-next:active:after {
    background-position: -120px -526px;
  }
}

.owl-carousel .owl-controls .owl-nav .owl-prev {
  float: left;
}

.owl-carousel .owl-controls .owl-nav .owl-prev:after {
  background-position: -86px -347px;
}

@media only screen and (max-width: 770px) {
  .owl-carousel .owl-controls .owl-nav .owl-prev:after {
    background-position: -81px -503px;
  }
}

.owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .owl-carousel .owl-controls .owl-nav .owl-prev:active:after {
  background-position: -101px -346px;
}

@media only screen and (max-width: 770px) {
  .owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .owl-carousel .owl-controls .owl-nav .owl-prev:active:after {
    background-position: -94px -503px;
  }
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

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

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

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.products-grid .owl-controls, #recently-viewed-items .owl-controls {
  position: absolute;
  top: 46%;
  top: calc(50% - 48px);
  height: 0px;
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 479px) {
  .products-grid .owl-controls, #recently-viewed-items .owl-controls {
    display: none;
  }
}

.products-grid .owl-controls .owl-next, .products-grid .owl-controls .owl-prev, #recently-viewed-items .owl-controls .owl-next, #recently-viewed-items .owl-controls .owl-prev {
  display: block;
  width: 52px;
  height: 52px;
  padding: 17px 20px;
}

.products-grid .owl-controls .owl-next:after, .products-grid .owl-controls .owl-prev:after, #recently-viewed-items .owl-controls .owl-next:after, #recently-viewed-items .owl-controls .owl-prev:after {
  content: "";
  background: url(../images/vtb_icon_sprite.png) no-repeat -115px -41px;
  height: 18px;
  width: 12px;
  display: block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .products-grid .owl-controls .owl-next:after, .products-grid .owl-controls .owl-prev:after, #recently-viewed-items .owl-controls .owl-next:after, #recently-viewed-items .owl-controls .owl-prev:after {
    background-image: url(../images/vtb_icon_sprite@2x.png);
    background-size: 794px 2000px;
  }
}

.products-grid .owl-controls .owl-next, #recently-viewed-items .owl-controls .owl-next {
  position: absolute;
  right: -65px;
}

.products-grid .owl-controls .owl-prev, #recently-viewed-items .owl-controls .owl-prev {
  position: absolute;
  left: -65px;
}

.products-grid .owl-controls .owl-prev:after, #recently-viewed-items .owl-controls .owl-prev:after {
  background-position: -92px -41px;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'MontserratBold';
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: 'OpenSans';
  src: url("../fonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

.catalog-product-view .product-view .product-collateral .toggle-tabs {
  display: none;
}

.product-collateral.mobile {
  display: none;
}

@media only screen and (max-width: 770px) {
  .product-collateral.mobile {
    display: block;
  }
}

@media only screen and (max-width: 770px) {
  .product-collateral.desktop {
    display: none;
  }
}

.page .owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.page .owl-item {
  -webkit-transform: translateZ(0);
}

@media only screen and (max-width: 479px) {
  .page .owl-carousel .owl-controls {
    display: block;
  }
}

.page .owl-carousel .owl-controls .owl-nav .owl-prev, .page .owl-carousel .owl-controls .owl-nav .owl-next {
  padding: 17px;
}

.page .owl-carousel .owl-controls .owl-nav .owl-prev:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -68px -62px;
  height: 25px;
  width: 16px;
  content: "";
  display: block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .page .owl-carousel .owl-controls .owl-nav .owl-prev:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .page .owl-carousel .owl-controls .owl-nav .owl-prev:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:after {
    background-position: -68px -63px;
  }
}

.page .owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .page .owl-carousel .owl-controls .owl-nav .owl-prev:active:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:hover:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:active:after {
  background-position: -136px -91px;
}

@media only screen and (max-width: 770px) {
  .page .owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .page .owl-carousel .owl-controls .owl-nav .owl-prev:active:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:hover:after, .page .owl-carousel .owl-controls .owl-nav .owl-next:active:after {
    background-position: -136px -91px;
  }
}

.page .owl-carousel .owl-controls .owl-nav .owl-prev {
  float: left;
}

@media only screen and (max-width: 770px) {
  .page .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -36px;
  }
}

.page .owl-carousel .owl-controls .owl-nav .owl-prev:after {
  background-position: -44px -62px;
}

@media only screen and (max-width: 770px) {
  .page .owl-carousel .owl-controls .owl-nav .owl-prev:after {
    background-position: -44px -62px;
  }
}

.page .owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .page .owl-carousel .owl-controls .owl-nav .owl-prev:active:after {
  background-position: -112px -91px;
}

@media only screen and (max-width: 770px) {
  .page .owl-carousel .owl-controls .owl-nav .owl-prev:hover:after, .page .owl-carousel .owl-controls .owl-nav .owl-prev:active:after {
    background-position: -112px -91px;
  }
}

@media only screen and (max-width: 770px) {
  .page .owl-carousel .owl-controls .owl-nav .owl-next {
    right: -48px;
  }
}

.page .products-grid .owl-controls {
  top: calc(50% - 48px);
}

.product-view .yotpo.bottomLine {
  text-align: left;
  padding-top: 0px;
  padding-bottom: 6px;
}

.product-view .yotpo.bottomLine .standalone-bottomline {
  display: inline-block;
}

@media only screen and (max-width: 770px) {
  .product-view .yotpo.bottomLine .standalone-bottomline .yotpo-bottomline {
    text-align: left;
  }
}

@media only screen and (max-width: 770px) {
  .product-view .yotpo.bottomLine .yotpo-stars {
    display: inline-block;
  }
}

.breadcrumbs[style] ~ .col-main .product-view .desktop .product-view .yotpo.bottomLine .yotpo-icon-star:before {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -82px -592px;
  height: 16px;
  width: 16px;
  margin: 1px;
  display: inline-block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .breadcrumbs[style] ~ .col-main .product-view .desktop .product-view .yotpo.bottomLine .yotpo-icon-star:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.breadcrumbs[style] ~ .col-main .product-view .desktop .product-view .yotpo.bottomLine .yotpo-icon-empty-star:before {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -81px -613px;
  height: 18px;
  width: 18px;
  display: inline-block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .breadcrumbs[style] ~ .col-main .product-view .desktop .product-view .yotpo.bottomLine .yotpo-icon-empty-star:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .yotpo.bottomLine .text-m {
  margin-left: 8px;
  vertical-align: top;
  color: #6B6B6B !important;
}

@media only screen and (max-width: 770px) {
  .product-view .yotpo.bottomLine .text-m {
    display: block;
    margin: 0;
  }
}

.breadcrumbs[style] ~ .col-main .product-view .desktop .product-view .yotpo.bottomLine .text-m {
  color: white !important;
}

.product-view .yotpo.bottomLine .text-m:after {
  content: "| Write a Review";
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

.product-view .yotpo.bottomLine .text-m.write-review-btn-hidden:after {
  display: none;
}

@media only screen and (max-width: 770px) {
  .product-view .yotpo .yotpo-stars, .product-view .yotpo .stars-wrapper, .product-view .yotpo .yotpo-review-stars {
    display: inline-block;
  }
}

.product-view .yotpo .yotpo-stars .yotpo-icon, .product-view .yotpo .stars-wrapper .yotpo-icon, .product-view .yotpo .yotpo-review-stars .yotpo-icon {
  background-image: url(../images/pjg_icon_sprite.png) !important;
  width: 18px !important;
  height: 17px !important;
}

.product-view .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-star, .product-view .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-empty-star, .product-view .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-star, .product-view .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-empty-star, .product-view .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-star, .product-view .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-empty-star {
  background-image: url(../images/pjg_icon_sprite.png) !important;
  width: 18px !important;
  height: 17px !important;
  margin-right: 16px;
}

.product-view .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-star, .product-view .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-star, .product-view .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-star {
  background-image: url(../images/pjg_icon_sprite.png) !important;
  background-position: -115px -230px !important;
  width: 18px !important;
  height: 17px !important;
}

.product-view .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-empty-star, .product-view .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-empty-star, .product-view .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-empty-star {
  background-image: url(../images/pjg_icon_sprite.png) !important;
  background-position: -115px -252px !important;
  width: 18px !important;
  height: 17px !important;
}

.product-view .yotpo .yotpo-stars .yotpo-icon.yotpo-icon-half-star, .product-view .yotpo .stars-wrapper .yotpo-icon.yotpo-icon-half-star, .product-view .yotpo .yotpo-review-stars .yotpo-icon.yotpo-icon-half-star {
  background-image: url(../images/pjg_icon_sprite.png) !important;
  background-position: -274px -230px !important;
  width: 18px !important;
  height: 17px !important;
}

.product-view .yotpo .yotpo-icon-star:before {
  display: none !important;
}

.product-view .yotpo .yotpo-icon-empty-star:before {
  display: none !important;
}

.product-view .yotpo .yotpo-icon-half-star:before {
  display: none !important;
}

.product-view .yotpo.yotpo-main-widget .write-review .yotpo-header .yotpo-icon-empty-star, .product-view .yotpo.yotpo-main-widget .write-review .yotpo-header .yotpo-icon-star {
  width: 18px !important;
  height: 17px !important;
}

html.yotpo-pdp {
  overflow: visible;
}

html.yotpo-pdp body {
  overflow: visible;
}

html.yotpo-pdp body .wrapper {
  overflow-x: hidden;
}

.product-shop .product-alert .button {
  padding: 7px 15px;
}

.product-shop .product-alert .title {
  color: #6B6B6B;
}

.product-shop .product-alert .title:after {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -109px;
  height: 7px;
  width: 11px;
  display: inline-block;
  margin-left: 8px;
  transition: all 300ms ease;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-shop .product-alert .title:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-shop .product-alert .title.active:after {
  transform: rotate(180deg);
}

.product-shop .product-alert .validation-error {
  position: relative;
}

.product-shop .product-alert .validation-advice {
  position: absolute;
  right: 0;
  margin-top: 2px;
}

.product-shop .product-alert .input-box {
  margin: auto;
}

.alert-stock.link-stock-alert {
  display: none;
}

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

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

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

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

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
em {
  font-family: "MontserratBold";
  font-weight: normal;
}

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

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

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

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

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

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

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

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

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

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

/* ============================================ *
 * Reset
 * ============================================ */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */
}

body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1;
  text-rendering: geometricPrecision;
}

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

address {
  font-style: normal;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

q:before,
q:after {
  content: '';
}

input:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  /* 2 */
  box-sizing: border-box;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
a:hover, a:active, a:focus {
  outline: inherit;
}

@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

* {
  box-sizing: border-box;
}

body,
button,
input,
select,
table,
textarea {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  color: #4B4B4B;
  font-size: 14px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #6B6B6B;
  text-decoration: none;
}

a:hover {
  color: #f27318;
  text-decoration: underline;
}

a:focus {
  outline: none;
  color: #fff;
  background: #07489E;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  margin-bottom: 6px;
}

ol li ul, ol li ol,
ul li ul,
ul li ol {
  margin-top: 6px;
}

blockquote {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 27px;
  text-transform: uppercase;
  padding-left: 28px;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.4em;
  color: #4B4B4B;
  font-family: "MontserratBold";
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

@media only screen and (max-width: 770px) {
  h1, .h1 {
    font-size: 68px;
  }
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 44px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

@media only screen and (max-width: 770px) {
  h2, .h2 {
    font-size: 49px;
  }
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

@media only screen and (max-width: 770px) {
  h3, .h3 {
    font-size: 35px;
  }
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
}

@media only screen and (max-width: 770px) {
  h4, .h4 {
    font-size: 26px;
  }
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 23px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

@media only screen and (max-width: 770px) {
  h5, .h5 {
    font-size: 23px;
  }
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

@media only screen and (max-width: 770px) {
  h6, .h6 {
    font-size: 16px;
  }
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em;
}

.availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: capitalize;
}

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #95A130;
}

.availability.available-soon,
.availability.out-of-stock {
  color: #D65E56;
}

.availability-only {
  clear: both;
  color: #4B4B4B;
  margin-bottom: 10px;
}

.catalog-product-view .add-to-cart-wrapper .availability-only {
  display: none;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  text-transform: uppercase;
  font-size: 34px;
  color: #4B4B4B;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px;
}

.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
}

.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 23px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  color: #4B4B4B;
  margin-bottom: 0;
  text-transform: uppercase;
}

@media only screen and (max-width: 770px) {
  .block-title h2,
  .block-title h3,
  .block-title strong {
    font-size: 23px;
  }
}

.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: gray;
}

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0;
}

.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

.block-content {
  position: relative;
  margin-top: 5px;
}

.block-content.unpad {
  padding: 0;
}

.block-content li.item {
  margin: 0 0 10px 9px;
}

.block-content li.item:last-child {
  margin-bottom: 0;
}

.block .actions {
  margin: 10px 0 0;
}

.block .actions:after:before, .block .actions:after:after {
  content: " ";
  display: table;
}

.block .actions:after:after {
  clear: both;
}

.block .actions a {
  float: left;
}

.block .actions .button {
  float: right;
}

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px;
}

@media only screen and (max-width: 770px) {
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #07489E;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 25px;
    font-style: normal;
    text-rendering: optimizeSpeed;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 19px;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    position: relative;
    line-height: 30px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title > strong {
    font-size: 26px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 13px !important;
    width: 3px !important;
    border: none;
    background: none !important;
    background-color: #4B4B4B !important;
    position: absolute;
    right: 26px;
    left: auto !important;
    top: 19px !important;
    margin-top: -6px;
  }
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title > strong:before {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 3px;
    width: 13px;
    background: none;
    background-color: #4B4B4B;
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -1px;
  }
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    position: relative;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #07489E;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 25px;
    font-style: normal;
    text-rendering: optimizeSpeed;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 19px;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    position: relative;
    line-height: 30px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    font-size: 26px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 13px !important;
    width: 3px !important;
    border: none;
    background: none !important;
    background-color: #4B4B4B !important;
    position: absolute;
    right: 26px;
    left: auto !important;
    top: 19px !important;
    margin-top: -6px;
  }
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title.active > strong:before {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 3px;
    width: 13px;
    background: none;
    background-color: #4B4B4B;
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -1px;
  }
  .catalog-product-view .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }
}

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}

.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "MontserratBold";
  margin: 7px 0;
}

.block-account li strong,
.block-cms-menu li strong {
  /*font-weight: 400;*/
  color: #4B4B4B;
}

.block-account li a,
.block-cms-menu li a {
  color: #4B4B4B;
}

.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #6689CC;
}

.block-account li.current a,
.block-cms-menu li.current a {
  color: #6689CC;
}

.block-account li.current a strong,
.block-cms-menu li.current a strong {
  color: #6689CC;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #7BA2D3;
  color: #fff;
  padding: 7px 15px;
  letter-spacing: 1px;
}

.cart .buttons-set .button:hover,
.cart-table .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #6895cd;
  cursor: pointer;
}

.cart .buttons-set .button:active,
.cart-table .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #5587c6;
  color: #4B4B4B;
}

.cart .buttons-set .button:focus,
.cart-table .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #4B4B4B;
  background: #5587c6;
  outline: none;
}

.cart .buttons-set .button.btn-small,
.cart-table .button.btn-small,
.sidebar .actions .button.btn-small,
.button.button-secondary.btn-small {
  padding: 6px 19px 5px 20px;
  background: #7BA2D3;
  position: relative;
  font-size: 14px;
  line-height: 32px;
}

.cart .buttons-set .button.btn-small:hover,
.cart-table .button.btn-small:hover,
.sidebar .actions .button.btn-small:hover,
.button.button-secondary.btn-small:hover {
  background: #6895cd;
  cursor: pointer;
}

.cart .buttons-set .button.btn-small:active,
.cart-table .button.btn-small:active,
.sidebar .actions .button.btn-small:active,
.button.button-secondary.btn-small:active {
  background: #5587c6;
  color: #4B4B4B;
}

.cart .buttons-set .button.btn-small:focus,
.cart-table .button.btn-small:focus,
.sidebar .actions .button.btn-small:focus,
.button.button-secondary.btn-small:focus {
  color: #4B4B4B;
  background: #5587c6;
  outline: none;
}

.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */
.button.addressverification {
  width: auto;
}

.button,
.cart-table .product-cart-actions .button,
.button,
.footer .button {
  background: #07489E;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: "MontserratBold";
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  width: 267px;
}

.button:hover,
.cart-table .product-cart-actions .button:hover,
.button:hover,
.footer .button:hover {
  background: #063d86;
  cursor: pointer;
}

.button:active,
.cart-table .product-cart-actions .button:active,
.button:active,
.footer .button:active {
  background: #05326d;
  color: #FFFFFF;
}

.button:focus,
.cart-table .product-cart-actions .button:focus,
.button:focus,
.footer .button:focus {
  background-color: #05326d;
  outline: none;
  color: #FFFFFF;
}

.button.btn-small,
.cart-table .product-cart-actions .button.btn-small,
.button.btn-small,
.footer .button.btn-small {
  padding: 6px 19px 5px 20px;
  background: #07489E;
  position: relative;
  font-size: 14px;
  line-height: 32px;
}

.button.btn-small:hover,
.cart-table .product-cart-actions .button.btn-small:hover,
.button.btn-small:hover,
.footer .button.btn-small:hover {
  background: #063d86;
  cursor: pointer;
}

.button.btn-small:active,
.cart-table .product-cart-actions .button.btn-small:active,
.button.btn-small:active,
.footer .button.btn-small:active {
  background: #05326d;
  color: #FFFFFF;
}

.button.btn-small:focus,
.cart-table .product-cart-actions .button.btn-small:focus,
.button.btn-small:focus,
.footer .button.btn-small:focus {
  background-color: #05326d;
  outline: none;
  color: #FFFFFF;
}

.button.btn-cart, .button.btn-checkout,
.cart-table .product-cart-actions .button.btn-cart,
.cart-table .product-cart-actions .button.btn-checkout,
.button.btn-cart,
.button.btn-checkout,
.footer .button.btn-cart,
.footer .button.btn-checkout {
  background: #FBCF27;
  color: #4B4B4B;
}

.button.btn-cart:hover, .button.btn-checkout:hover,
.cart-table .product-cart-actions .button.btn-cart:hover,
.cart-table .product-cart-actions .button.btn-checkout:hover,
.button.btn-cart:hover,
.button.btn-checkout:hover,
.footer .button.btn-cart:hover,
.footer .button.btn-checkout:hover {
  background: #fbc90e;
  cursor: pointer;
}

.button.btn-cart:active, .button.btn-checkout:active,
.cart-table .product-cart-actions .button.btn-cart:active,
.cart-table .product-cart-actions .button.btn-checkout:active,
.button.btn-cart:active,
.button.btn-checkout:active,
.footer .button.btn-cart:active,
.footer .button.btn-checkout:active {
  background: #ebbb04;
  color: #4B4B4B;
}

.button.btn-cart:focus, .button.btn-checkout:focus,
.cart-table .product-cart-actions .button.btn-cart:focus,
.cart-table .product-cart-actions .button.btn-checkout:focus,
.button.btn-cart:focus,
.button.btn-checkout:focus,
.footer .button.btn-cart:focus,
.footer .button.btn-checkout:focus {
  background-color: #ebbb04;
  outline: none;
  color: #4B4B4B;
}

a.button {
  text-decoration: none;
}

a.button.button-secondary:hover {
  color: #fff;
}

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Adjacent buttons */
.button + .button {
  margin-left: 5px;
}

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #698BC7;
  font-family: "MontserratBold";
}

.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #cb5c0c;
}

@media only screen and (max-width: 770px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col2-set .buttons-set .back-link {
    display: none;
  }
  .col2-set .buttons-set .required {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .buttons-set .back-link {
    display: none;
  }
  .buttons-set .required {
    display: none;
  }
}

/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left;
}

.paypal-after .paypal-or {
  float: left;
}

.paypal-or {
  line-height: 34px;
  margin: 0 10px 5px;
}

.paypal-after .paypal-button {
  float: left;
}

.paypal-button {
  line-height: 0;
}

.paypal-button img {
  display: inline;
}

@media only screen and (max-width: 740px) {
  .paypal-or {
    line-height: 20px;
  }
  .paypal-logo,
  .paypal-or,
  .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}

.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}

.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
}

.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}

.buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: 140px;
}

.buttons-set:after:before, .buttons-set:after:after {
  content: " ";
  display: table;
}

.buttons-set:after:after {
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(../images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-nav .icon, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(../images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px;
  /* Breadcrumb: */
  font-size: 14px;
  line-height: 25px;
}

@media only screen and (max-width: 770px) {
  .breadcrumbs {
    background: none !important;
  }
}

@media only screen and (max-width: 770px) {
  .breadcrumbs li, .breadcrumbs a, .breadcrumbs strong {
    color: #4B4B4B;
  }
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "MontserratBold";
  text-transform: uppercase;
}

.breadcrumbs a {
  float: left;
  color: #4B4B4B;
}

.breadcrumbs a:hover {
  color: #698BC7;
}

.breadcrumbs strong {
  color: #4B4B4B;
  font-weight: normal;
}

.breadcrumbs span {
  float: left;
  padding: 0 7px;
}

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}

.btn-remove:hover,
.btn-previous:hover {
  background-color: #698BC7;
  border-color: #698BC7;
}

.btn-remove:after {
  content: '';
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -258px -38px;
  height: 11px;
  width: 12px;
  height: 11px;
  width: 12px;
  border: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .btn-remove:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

.btn-remove2 {
  content: '';
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -258px -50px;
  height: 11px;
  width: 12px;
  border: none;
  vertical-align: top;
  margin-top: 5px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .btn-remove2 {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.btn-remove2:after {
  display: none;
}

.btn-remove2:hover {
  background-color: transparent;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #698BC7;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}

.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none;
}

.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px;
}

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px;
}

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 13px;
  line-height: 24px;
}

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer,
.top-header-content {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px;
}

.main-container:after:before, .main-container:after:after,
.footer:after:before,
.footer:after:after,
.top-header-content:after:before,
.top-header-content:after:after {
  content: " ";
  display: table;
}

.main-container:after:after,
.footer:after:after,
.top-header-content:after:after {
  clear: both;
}

.main-container,
.footer {
  padding: 57px;
}

.top-header-content {
  padding: 0 0;
}

@media only screen and (max-width: 770px) {
  .top-header-content {
    padding: 0 0;
    max-height: 50px;
  }
}

@media only screen and (max-width: 770px) {
  .main-container {
    padding: 57px 20px;
    /* fix for footer overflow on mobile breakpoints */
  }
  .main-container:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .checkout-onepage-index .main-container .main,
  .checkout-cart-index .main-container .main {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 480px) {
  .main-container,
  .footer,
  .top-header-content {
    padding: 30px;
  }
  .main-container:after,
  .footer:after,
  .top-header-content:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .top-header-content {
    padding: 0 0;
  }
  .main-container,
  .footer {
    padding: 57px;
  }
}

.footer-container {
  padding-top: 0;
  background: #fff;
}

/* -------------------------------------------- *
 * Column Layouts
 */
.main:after:before, .main:after:after,
.col-wrapper:after:before,
.col-wrapper:after:after {
  content: " ";
  display: table;
}

.main:after:after,
.col-wrapper:after:after {
  clear: both;
}

.col-left,
.col-right,
.col-main {
  padding: 0 10px;
}

.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}

.col-left img {
  max-width: 100%;
}

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}

.col-right img {
  max-width: 100%;
}

.col-main {
  float: left;
  width: 75%;
}

.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */
}

.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
}

.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

.col3-layout .col-right {
  width: 20.8333%;
}

.col3-layout .col-wrapper {
  float: left;
  width: 79.1667%;
}

.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.6842%;
}

.col3-layout .col-wrapper .col-left {
  width: 26.3158%;
}

@media only screen and (max-width: 1000px) {
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}

@media only screen and (max-width: 770px) {
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main {
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto;
  }
  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }
  .col-main {
    float: none;
    width: auto;
  }
  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */
  }
}

/* Content Columns */
.col2-set {
  width: 100%;
}

.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}

@media only screen and (max-width: 770px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}

.col2-set .col-1 {
  float: left;
  padding-left: 0;
}

.col2-set .col-2 {
  float: right;
  padding-right: 0;
}

@media only screen and (max-width: 479px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

.col2-set .narrow {
  width: 33%;
}

.col2-set .wide {
  width: 65%;
}

.col2-set:after:before, .col2-set:after:after {
  content: " ";
  display: table;
}

.col2-set:after:after {
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 771px) {
  .top-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #cb5c0c;
  color: #e6e6e6;
  font-size: 11px;
}

.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}

.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #F38230;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "MontserratBold";
}

/* -------------------------------------------- *
 * Grid
 */
.grid:after:before, .grid:after:after {
  content: " ";
  display: table;
}

.grid:after:after {
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #95A130;
}

.error {
  color: #D65E56;
  font-weight: bold;
}

.notice {
  color: #F7D774;
  font-weight: bold;
}

/* -------------------------------------------- *
 * Messages
 */
.messages {
  margin-bottom: 10px;
  clear: both;
}

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 11.5px 10px;
  background: #F4F4F4;
  font-size: 14px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  line-height: 17px;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .messages li li {
    padding: 7px 10px;
  }
}

.messages .error-msg li {
  color: #fff;
  background-color: #D65E56;
}

.messages .notice-msg li {
  color: #4B4B4B;
  border-left: 5px solid #F7D774;
  background-color: #F7D774;
}

.messages .success-msg li {
  color: #fff;
  background-color: #99B9F7;
}

@media only screen and (min-width: 915px) {
  .order-list-grid .col-1 {
    width: 30%;
  }
  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px;
  }
  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0;
  }
}

/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}

.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px;
}

.payment-methods dt {
  padding: 5px 0;
}

.payment-methods dd {
  padding-top: 10px;
}

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #CCCCCC;
  border-top: none;
  top: -11px;
  left: 30px;
}

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #F4F4F4;
  border-top: none;
  top: -10px;
  left: 30px;
}

.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}

.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.price-box p {
  margin-bottom: 0;
}

.price-notice {
  color: gray;
}

.price-box .price {
  color: #F38230;
  font-size: 16px;
}

.price-box .price,
.price {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.price-box .price-label {
  color: gray;
  white-space: nowrap;
  font-family: "MontserratBold";
}

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #F38230;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}

.price-box .minimal-price-link .label {
  color: gray;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price,
.price-box .special-price {
  display: inline-block;
}

.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}

.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

.price-box .old-price .price {
  color: gray;
  text-decoration: line-through;
}

.price-box .special-price {
  padding-left: 1em;
}

.price-box .special-price .price {
  color: #D0021B;
}

.price-box .special-price .price-label {
  color: #D84D3C;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}

.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}

.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}

.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "MontserratBold";
}

.item-options:after:before, .item-options:after:after {
  content: " ";
  display: table;
}

.item-options:after:after {
  clear: both;
}

.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}

.item-options dt:after {
  content: ': ';
}

.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
  clear: left;
  display: block;
}

.item-options dd .price {
  display: block;
  clear: left;
}

.truncated,
.truncated a.dots {
  cursor: help;
}

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}

.truncated a.details:hover {
  text-decoration: none;
}

.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #698BC7;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px;
}

.truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #698BC7;
  border-top: none;
  left: 97px;
  top: -7px;
}

#cart-sidebar .truncated .truncated_full_value .item-options {
  top: 27px;
  left: -80px;
}

#cart-sidebar .truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #698BC7;
  border-top: none;
  left: 97px;
  top: -7px;
}

@media only screen and (max-width: 770px) {
  #cart-sidebar .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}

.ios #cart-sidebar .truncated .truncated_full_value .item-options:after {
  display: none;
}

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.truncated .show .item-options {
  display: block;
}

@media only screen and (max-width: 479px) {
  .truncated {
    cursor: inherit;
  }
  .truncated a.details {
    display: none;
  }
  .truncated .truncated_full_value .item-options {
    display: block;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    background-color: transparent;
  }
  .truncated .truncated_full_value .item-options p {
    float: none;
  }
  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}

/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0;
}

.add-to-links a {
  display: inline-block;
  padding: 0 3px 3px;
}

.add-to-links .separator {
  display: none;
}

/* -------------------------------------------- *
 * Product Image
 */
.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
}

@media only screen and (max-width: 770px) {
  body .product-img-box .product-image:hover {
    border-color: #EDEDED;
  }
}

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
}

.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}

.ratings .rating-box {
  background: url(../images/pjg_icon_sprite.png) no-repeat -82px -571px;
  height: 18px;
  width: 112px;
  overflow: hidden;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .ratings .rating-box {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-product-view .breadcrumbs[style] ~ .col-main .product-name .ratings .rating-box {
  background-position: -81px -613px;
}

.ratings .rating-box .rating {
  background: url(../images/pjg_icon_sprite.png) no-repeat -82px -550px;
  height: 16px;
  width: 110px;
  float: left;
  margin: 1px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .ratings .rating-box .rating {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-product-view .breadcrumbs[style] ~ .col-main .product-name .ratings .rating-box .rating {
  background-position: -82px -592px;
}

.ratings .amount {
  display: block;
  margin: 5px auto;
}

.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
.std p {
  margin: 0 0 0;
}

.std ol {
  list-style: decimal outside;
  margin-bottom: 0;
}

.std ol li {
  margin-left: 2em;
}

.std ul {
  list-style: disc outside;
  margin-bottom: 0;
}

.std ul li {
  margin-left: 2em;
}

.std .note {
  color: gray;
  font-size: 13px;
}

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * Toolbar
 */
.pager-no-toolbar {
  margin-bottom: 10px;
}

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

.sorter {
  float: left;
}

.sorter label {
  float: left;
  margin-right: 5px;
}

.sorter label:after {
  content: ':';
}

.sorter > .sort-by {
  float: right;
  margin-right: 5px;
  height: 30px;
}

.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}

.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}

.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}

.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

.sorter > .view-mode {
  float: right;
}

.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}

.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}

.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}

.sorter > .view-mode .list {
  background-position: 11px -517px;
}

.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

.pager {
  float: right;
  overflow: hidden;
}

.pager > .count-container {
  float: left;
}

.pager .amount {
  float: left;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}

.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}

.pager .limiter > label {
  text-transform: lowercase;
  padding-right: 5px;
  font-size: 14px;
  color: #92918E;
  line-height: 17px;
}

.pager .limiter .selected {
  color: #F38230;
}

.pager .limiter a {
  display: inline-block;
  border: 0;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  width: 25px;
  height: 30px;
  padding: 0;
  font-size: 14px;
  line-height: 17px;
  margin-top: 10px;
  color: #4B4B4B;
}

.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px;
}

.pages strong {
  display: none;
}

.pages li {
  margin-top: 10px;
  display: inline-block;
  width: 30px;
}

.pages a {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  padding: 0;
  font-size: 14px;
  color: #4B4B4B;
  line-height: 17px;
  font-family: "MontserratBold";
}

.pages .current {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  height: 30px;
  padding: 0;
  font-size: 14px;
  color: #F38230;
  line-height: 17px;
  font-family: "MontserratBold";
}

.pages .current,
.pages .current:hover {
  width: 30px;
  cursor: default;
  display: inline-block;
}

@media only screen and (max-width: 770px) {
  .pages .current,
  .pages .current:hover {
    color: #F38230;
  }
}

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
  margin-top: -10px;
}

@media only screen and (max-width: 770px) {
  .pages .next:before,
  .pages .previous:before {
    top: -9px;
  }
}

@media only screen and (max-width: 479px) {
  .pager .amount--has-pages {
    display: none;
  }
  .pages {
    float: left;
  }
  .limiter label {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col1-layout .pager .count-container {
    float: right;
  }
}

@media only screen and (max-width: 979px) {
  .col2-left-layout .sorter,
  .col2-left-layout .pager,
  .col2-right-layout .sorter,
  .col2-right-layout .pager,
  .col3-layout .sorter,
  .col3-layout .pager {
    width: 100%;
  }
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both;
  }
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col2-left-layout .pager .count-container,
  .col2-right-layout .pager .count-container,
  .col3-layout .pager .count-container {
    float: right;
  }
}

@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none;
  }
}

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}

#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #07489E;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #cb5c0c;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #07489E;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #cb5c0c;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center;
}

.a-right,
.align-right {
  text-align: right;
}

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

.nobr,
.nowrap {
  white-space: nowrap;
}

.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
.hidden {
  display: none;
}

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px;
}

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

.product-flag-image-wrapper {
  position: relative;
}

.product-flag-image-wrapper .product-flag {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

.product-flag-image-wrapper .product-flags {
  white-space: nowrap;
}

#giftcard-form .buttons-set button {
  width: auto;
}

div.block-layered-nav dd a.amshopby-attr-inactive {
  color: #B5B3AD !important;
}

.upsell-modal-wrapper h2 {
  text-align: center;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  color: #000;
}

.upsell-modal-wrapper .products-grid .product-name {
  margin-bottom: 16px;
}

.upsell-modal-wrapper .products-grid .product-name a {
  line-height: 1.3em;
}

.upsell-modal-wrapper .products-grid .product-info {
  padding-bottom: 8px;
}

.upsell-modal-wrapper .price-box {
  text-align: center;
}

.upsell-modal-wrapper .fancybox-inner {
  overflow-x: hidden !important;
}

.upsell-modal-wrapper .button {
  max-width: 100%;
  color: #fff;
}

.upsell-modal-wrapper .bundle-upsell-modal {
  display: block;
  max-width: 1200px;
  width: 95vw;
  padding: 0;
}

.upsell-modal-wrapper .bundle-upsell-modal .actions {
  display: block;
  position: static;
}

.upsell-modal-wrapper .crosssell-products-wrapper {
  padding: 0;
}

.upsell-modal-wrapper .crosssell-products-wrapper .owl-stage-outer {
  overflow: hidden;
}

@media only screen and (max-width: 1280px) {
  .upsell-modal-wrapper .bundle-upsell-modal {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1000px) {
  .upsell-modal-wrapper .crosssell-products-wrapper {
    padding: 0 50px;
  }
  .upsell-modal-wrapper .owl-nav,
  .upsell-modal-wrapper .owl-controls {
    display: block !important;
  }
}

@media only screen and (max-width: 770px) {
  .upsell-modal-wrapper .crosssell-products-wrapper {
    padding: 0 20px;
  }
  .upsell-modal-wrapper .crosssell-products-wrapper .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -35px;
  }
  .upsell-modal-wrapper .crosssell-products-wrapper .owl-carousel .owl-controls .owl-nav .owl-next {
    right: -35px;
  }
  .upsell-modal-wrapper .crosssell-products-wrapper .owl-carousel .owl-controls .owl-nav .owl-next:after {
    float: right;
  }
}

@media only screen and (min-width: 1001px) {
  .upsell-modal-wrapper .item {
    padding: 0 15px;
  }
}

.fancybox-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}

.fieldset p.required {
  margin-bottom: 5px;
  float: none;
  font-size: 12px;
  margin-top: 0;
}

.fieldset + .fieldset {
  margin-top: 5px;
}

form h2.legend {
  clear: both;
}

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

@media only screen and (max-width: 770px) {
  form .legend {
    font-size: 35px;
  }
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
  max-width: 490px;
}

.input-box:after:before, .input-box:after:after {
  content: " ";
  display: table;
}

.input-box:after:after {
  clear: both;
}

li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-size: 14px;
  font-family: "MontserratBold";
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  margin-bottom: 3px;
}

label.required:after,
span.required:after {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -198px -66px;
  height: 8px;
  width: 7px;
  display: inline-block;
  margin-left: 5px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  label.required:after,
  span.required:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: gray;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px;
}

select + select {
  margin-left: 5px;
}

select[multiple] {
  width: 270px;
  border: 1px solid #D9D7D1;
  font-size: 15px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #fff;
  font-size: 14px;
  color: #7BA2D3;
  letter-spacing: 1px;
  line-height: 24px;
  box-shadow: inset 1px 1px 3px 0px rgba(0, 0, 0, 0.23);
  height: 42px;
  border: none;
}

.ie8 .input-text, .ie9 .input-text {
  border: 1px solid #A5A5A5;
}

.input-text:focus {
  border: 1px solid #A5A5A5;
  outline: none;
}

.input-text[disabled] {
  opacity: 0.5;
}

.input-text.validation-failed {
  border: 1px solid #D0021B;
}

.input-text.validation-failed:focus {
  outline-color: #ebafab;
}

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: gray;
}

input:-moz-placeholder {
  color: gray;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 42px;
  padding: 0 15px;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 100%;
  max-width: 100%;
}

input[type=email]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=text]:-moz-placeholder {
  color: #6689CC;
}

input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder {
  color: #6689CC;
}

input[type=email]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder {
  color: #6689CC;
}

input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder {
  color: #6689CC;
}

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */
  }
}

.ie8 .input-text {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-size: 14px;
  font-weight: normal;
  vertical-align: top;
}

.checkbox + label.disabled,
.radio + label.disabled {
  color: #A5A5A5;
}

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 7px 0 0;
  color: #D0021B;
  font-size: 13px;
}

.input-box p.required, .input-box
.validation-advice {
  float: right;
  text-align: right;
  line-height: 16px;
  padding-left: 5px;
}

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px;
}

.form-list select {
  margin-top: 4px;
  width: 100%;
  max-width: 100%;
}

.form-list .input-range .input-text {
  width: 74px;
}

.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 6px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}

.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}

.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}

.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}

.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  color: #4B4B4B;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}

.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #ededed;
}

.form-list .control label.disabled,
.sp-methods dt label.disabled,
#checkout-shipping-method-load .sp-methods dd label.disabled,
#co-shipping-method-form .sp-methods dd label.disabled,
.product-options ul.options-list label.disabled {
  color: #A5A5A5;
}

.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}

.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

.form-list .control {
  margin-top: 7px;
}

.form-list .control label {
  float: none;
}

.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}

.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

form .form-instructions {
  font-style: italic;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: gray;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%;
  background: none;
  border-collapse: separate;
}

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  text-transform: uppercase;
  font-family: "MontserratBold";
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead th,
.data-table tbody td,
.data-table tfoot td {
  border-bottom: 2px solid #4B4B4B;
}

@media only screen and (max-width: 770px) {
  .data-table tbody td,
  .data-table tfoot td {
    border-bottom: none;
  }
}

.data-table tbody td,
.data-table tfoot td {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}

.data-table tbody td .item-options dt:after {
  content: ':';
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 2px solid #4B4B4B;
  padding: 12px 15px;
  margin: 0 0 15px;
}

.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

.info-table th,
.info-table td {
  vertical-align: top;
}

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 2px solid #4B4B4B;
}

.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #4B4B4B;
  padding: 6px;
  background-color: transparent;
}

.zebra-table tr {
  background-color: #EEEDED;
}

.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 479px) {
  .linearize-table {
    /* Helpers */
  }
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table thead th.lin-hide {
    display: none;
  }
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-size: 19px;
  }
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table tbody td[data-rwd-label].last {
    padding-bottom: 10px;
  }
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "MontserratBold";
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table tfoot tr:after:before, .linearize-table tfoot tr:after:after {
    content: " ";
    display: table;
  }
  .linearize-table tfoot tr:after:after {
    clear: both;
  }
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table .linearize-hide {
    display: none;
  }
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  .linearize-table .linearize-show {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  .linearize-table-large {
    /* Helpers */
  }
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-size: 19px;
  }
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table-large tbody td[data-rwd-label].last {
    padding-bottom: 10px;
  }
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "MontserratBold";
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table-large tfoot tr:after:before, .linearize-table-large tfoot tr:after:after {
    content: " ";
    display: table;
  }
  .linearize-table-large tfoot tr:after:after {
    clear: both;
  }
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table-large .linearize-hide {
    display: none;
  }
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  .linearize-table-large .linearize-show {
    display: block;
  }
}

@media only screen and (min-width: 600px) {
  .linearize-table .linearize-collapse {
    display: none;
  }
}

/* ============================================ *
 * Global
 * ============================================ */
html,
body {
  height: 100%;
}

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #f8f5f0;
  position: relative;
}

@media only screen and (max-width: 770px) {
  .wrapper {
    margin-top: 51px;
    overflow-x: hidden;
  }
}

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

.wrapper:after:after {
  clear: both;
}

/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 771px) {
  .page-header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    margin-top: 63px;
  }
  .page-header-container {
    position: relative;
  }
}

.header-language-container,
.page-header {
  font-family: "MontserratBold";
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #698BC7;
  text-transform: uppercase;
}

.header-language-background .header-language-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.header-language-background:after:after {
  clear: both;
}

.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}

.header-language-background .welcome-msg {
  float: right;
}

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}

.page-header-container .store-language-container label {
  display: none;
}

.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 479px) {
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}

.header-language-background,
.header-language-background a {
  color: #e6e6e6;
}

@media only screen and (max-width: 770px) {
  .header-language-background {
    display: none;
  }
}

/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  min-width: 100px;
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  margin: 3px 0 0;
  text-align: center;
}

.logo img {
  max-width: 100%;
  display: inline-block;
}

.logo .small {
  display: none;
}

@media only screen and (max-width: 770px) {
  .logo {
    min-width: 10px;
  }
  .logo.desktop {
    display: none;
  }
  .logo.mobile {
    display: block;
  }
  .logo img {
    display: inline;
    margin-top: 2px;
    z-index: 9999;
  }
}

.logo:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 771px) {
  .logo {
    min-height: 90px;
    text-align: center;
    margin-top: 3px;
  }
  .logo .small {
    display: none;
  }
  .logo .large {
    display: block;
    margin: 1px auto 0 auto;
  }
  .logo.mobile {
    display: none;
  }
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  overflow: visible;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  float: right;
  width: 27.1%;
}

@media only screen and (max-width: 1057px) {
  .skip-links {
    width: 29.3%;
  }
}

@media only screen and (max-width: 979px) {
  .skip-links {
    width: 31.2%;
  }
}

@media only screen and (max-width: 917px) {
  .skip-links {
    width: 37.2%;
  }
}

@media only screen and (max-width: 770px) {
  .skip-links {
    width: 100%;
    float: none;
    border: none;
    overflow: visible;
  }
}

@media only screen and (min-width: 771px) {
  .skip-links {
    border: 0;
    height: 50px;
  }
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #4B4B4B;
  line-height: 42px;
  text-align: center;
}

.skip-link.skip-search {
  width: 18.4%;
}

@media only screen and (max-width: 499px) {
  .skip-link.skip-search {
    width: 12.4%;
  }
}

a.skip-link {
  text-decoration: none;
}

.skip-link:not(.skip-active):hover {
  background: none;
}

@media only screen and (max-width: 770px) {
  .skip-link.skip-account {
    display: none;
  }
  .skip-link:last-child {
    border-right: 0;
  }
}

@media only screen and (min-width: 500px) {
  .skip-link {
    width: 25%;
  }
}

/* -------------------------------------------- *
 * Skip Link - Active
 */
@media only screen and (max-width: 770px) {
  .skip-link.skip-active {
    color: #698BC7;
  }
  .skip-link.skip-active.skip-nav {
    background: none !important;
  }
  .skip-link.skip-nav:after {
    content: '';
    display: block;
    height: 19px;
    bottom: -19px;
    position: absolute;
  }
  .skip-link.skip-active span {
    color: #fff;
    z-index: 2;
    position: relative;
  }
  .skip-link.skip-active span.icon {
    background: url(../images/pjg_icon_sprite.png) no-repeat -258px -50px;
    height: 11px;
    width: 12px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .skip-link.skip-active span.icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px;
  z-index: 2;
  position: relative;
}

@media only screen and (min-width: 500px) {
  .skip-link .icon {
    margin-right: 5px;
  }
}

@media only screen and (min-width: 770px) {
  .skip-link .icon {
    margin-right: 5px;
  }
}

.fill {
  position: relative;
  transition: 0.9s ease-in-out;
  -o-transition: 0.9s ease-in-out;
  -moz-transition: 0.9s ease-in-out;
  -webkit-transition: 0.9s ease-in-out;
}

.fill:before, .fill:after {
  content: "";
  position: absolute;
  background: #07489E;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  -webkit-transition: right 0.8s ease-in-out;
  z-index: 1;
}

.fill:after {
  top: auto;
}

.fill.skip-active:before, .fill.skip-active:after {
  right: 0;
}

/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label {
  display: none;
}

@media only screen and (min-width: 500px) {
  .skip-link .label {
    display: inline;
    color: #6689CC;
  }
}

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content:not(#header-nav) {
  display: none;
}

.skip-content.skip-active {
  display: block;
  background: #F1F1F1;
}

.skip-content.skip-active#header-search {
  display: block;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 20px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
  }
  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }
  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background-color: #F1F1F1;
    text-decoration: none;
  }
}

.account-cart-wrapper {
  display: block;
  height: 50px;
}

@media only screen and (max-width: 770px) {
  .account-cart-wrapper {
    float: right;
    width: 18.4%;
    max-width: 68px;
  }
}

@media only screen and (max-width: 499px) {
  .account-cart-wrapper {
    width: 12.4%;
    max-width: 35px;
  }
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 40%;
}

@media only screen and (max-width: 770px) {
  .skip-nav {
    width: 14%;
    padding-left: 10px;
    padding-top: 8px;
    margin: 0;
  }
}

.skip-nav .label {
  display: inline;
}

@media only screen and (max-width: 770px) {
  .skip-nav .label {
    display: block;
    font-size: 9px;
    text-transform: lowercase;
    color: #07489E;
    line-height: 11px;
    text-align: left;
    margin-top: 2px;
  }
}

.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (max-width: 770px) {
  .skip-nav .icon {
    display: block;
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -274px -11px;
    height: 16px;
    width: 22px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .skip-nav .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 500px) {
  .skip-nav {
    width: 15%;
    min-width: 63px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-nav {
    display: none;
  }
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-nav {
    padding: 43px 0;
    position: fixed;
    width: 310px;
    z-index: 9999;
    display: block;
    background: #07489E;
    height: 100%;
    top: 0;
    transform: translate3d(-320px, 0, 0);
    transition: transform 0.3s;
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    overflow: scroll;
  }
  #header-nav li.level0 img {
    display: none;
  }
  #header-nav.skip-active {
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.3, 1);
  }
  #header-nav.skip-active span.close {
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -90px -64px;
    height: 11px;
    width: 11px;
    display: block;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  #header-nav.skip-active span.close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  #header-nav {
    display: block;
    /* Force visibility */
  }
  #header-nav span.close {
    display: none;
  }
}

@media only screen and (min-width: 771px) and (max-width: 770px) {
  #header-nav span.close {
    display: block;
  }
}

/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 771px) {
  .nav-primary {
    display: block;
    margin-top: 13px;
  }
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #4B4B4B;
  line-height: 30px;
  font-family: "MontserratBold";
  letter-spacing: 1px;
}

.nav-primary ul li a {
  letter-spacing: 0;
}

.nav-primary li {
  position: relative;
}

.nav-primary li.level1 a {
  color: #4B4B4B;
  line-height: 34px;
}

@media only screen and (min-width: 770px) {
  .nav-primary li.level1 a {
    font-size: 14px;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
  }
}

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

.nav-primary li.level0 > a {
  text-transform: uppercase;
}

.nav-primary li.acct-logout {
  display: none;
}

@media only screen and (max-width: 770px) {
  .logged-in .nav-primary li.acct-logout {
    display: list-item;
  }
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
.nav-primary i {
  display: none;
}

@media only screen and (max-width: 770px) {
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 41px;
    color: #fff;
    padding: 0 39px 0 31px;
  }
  .nav-primary a.level0:focus,
  .nav-primary a:focus {
    outline: none;
  }
  .nav-primary li.level0 .mm-wrapper {
    display: none;
  }
  .nav-primary li.level0 .mm-wrapper h1 {
    display: none;
  }
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
    color: #fff;
  }
  .nav-primary li.parent {
    position: relative;
  }
  .nav-primary li.parent > i {
    width: 46px;
    height: 41px;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
  }
  .nav-primary li.parent > i:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -112px -66px;
    height: 8px;
    width: 12px;
    right: 24px;
    position: absolute;
    content: '';
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -4px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .nav-primary li.parent > i:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .nav-primary li.parent.sub-menu-active > i:after,
  .nav-primary li.parent.menu-active > i:after {
    transform: rotate(180deg);
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -4px;
  }
}

/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 771px) {
  .nav-primary {
    text-align: justify;
    /* Default styles for 1+ drop-down menus */
    /* Level 2+ */
    /* Class for js to add briefly to evaluate element positioning. */
    /* Correct menus that will hang off the page (class added by js) */
    /* Level 1+ */
  }
  .nav-primary:after {
    content: '';
    width: 100%;
    /* Ensures there are at least 2 lines of text, so justification works */
    display: inline-block;
  }
  .nav-primary > li.level0 {
    display: inline-block;
  }
  .nav-primary a.level0 {
    padding: 0;
  }
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }
  .nav-primary li.mobile {
    display: none;
  }
}

@media only screen and (min-width: 771px) and (max-width: 770px) {
  .nav-primary li.mobile {
    display: block;
  }
}

@media only screen and (min-width: 771px) {
  .nav-primary li:last-child > a {
    border-bottom: none;
  }
  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #698BC7;
  }
  .nav-primary .menu-active {
    z-index: 200;
  }
  .nav-primary li.level0 .mm-wrapper {
    background: #fff;
    color: #fff;
    position: absolute;
    left: -305px;
    top: 41px;
    z-index: 100;
    min-height: 261px;
    width: 617px;
    padding: 26px 61px 30px;
    display: none;
    /* Hide until displayed. */
    box-shadow: 6px 6px 1px 0px rgba(75, 75, 75, 0.1);
  }
}

@media only screen and (min-width: 771px) and (max-width: 770px) {
  .nav-primary li.level0 .mm-wrapper {
    background: #F1F1F1;
  }
}

@media only screen and (min-width: 771px) {
  .nav-primary li.level0:nth-child(1) .mm-wrapper {
    left: -55px;
  }
  .nav-primary li.level0:nth-child(2) .mm-wrapper {
    left: -105px;
  }
  .nav-primary li.level0:nth-child(3) .mm-wrapper {
    left: -205px;
  }
}

@media only screen and (min-width: 771px) and (max-width: 1000px) {
  .nav-primary li.level0:nth-child(5) .mm-wrapper {
    left: -425px;
  }
}

@media only screen and (min-width: 771px) {
  .nav-primary li.level0:last-child .mm-wrapper {
    left: auto;
    right: -55px;
  }
  .nav-primary li.level0 img {
    display: none;
  }
  .nav-primary li.level1 ul {
    left: 60px;
    top: 15px;
  }
  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px;
  }
  .nav-primary li.level0 li.parent > a {
    position: relative;
  }
  .nav-primary li.level0 li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #ccc;
    border-right: none;
    right: 5px;
    top: 50%;
    margin-top: -3px;
  }
}

.nav-primary li.menu-active > .mm-wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.nav-primary li.menu-active > .mm-wrapper h1 {
  display: none;
}

@media only screen and (min-width: 770px) {
  .nav-primary li.menu-active > .mm-wrapper {
    display: block;
  }
  .nav-primary li.menu-active > .mm-wrapper h1 {
    display: block;
    position: absolute;
    font-size: 20px;
    text-transform: none;
    color: #4B4B4B;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    margin-bottom: 30px;
  }
}

.nav-primary li.menu-active > .mm-wrapper > ul, .nav-primary li.menu-active > .mm-wrapper > img {
  display: block;
  float: left;
  width: 31.8%;
  margin-top: 30px;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.menu-active > .mm-wrapper > ul, .nav-primary li.menu-active > .mm-wrapper > img {
    width: 100%;
    float: none;
    margin-top: 0;
  }
}

.nav-primary li.menu-active > .mm-wrapper > ul:last-of-type {
  width: 25%;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.menu-active > .mm-wrapper > ul:last-of-type {
    width: 100%;
    float: none;
  }
}

.nav-primary li.menu-active > .mm-wrapper > img {
  float: right;
  max-height: 100%;
  width: auto;
  margin-top: 0;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.menu-active > .mm-wrapper > img {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .nav-primary li.menu-active > .mm-wrapper {
    padding: 0;
  }
  .nav-primary li.menu-active > .mm-wrapper > ul:first-of-type {
    padding-top: 3px;
  }
  .nav-primary li.menu-active > .mm-wrapper > ul:last-of-type {
    padding-bottom: 12px;
  }
}

.nav-primary li.menu-active.parent:before {
  content: '';
  top: 24px;
  left: 50%;
  margin-left: -17px;
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-bottom: 17px solid #fff;
  border-top: none;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.menu-active.parent:before {
    display: none;
  }
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search .icon {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -89px -5px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-search .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-search {
    display: none;
  }
}

/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search.skip-content {
  padding: 20px;
}

@media only screen and (max-width: 770px) {
  #header-search.skip-content {
    padding: 15px 15px;
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 999;
  }
}

@media only screen and (min-width: 771px) {
  #header-search.skip-content {
    display: block;
    width: 12.4%;
    float: left;
    height: 50px;
    margin-left: 46px;
    position: relative;
    padding: 0;
  }
  #header-search.skip-content .input-box:hover label {
    color: #698BC7;
  }
  #header-search.skip-content .input-box:hover button:before {
    background: url(../images/pjg_icon_sprite.png) no-repeat -139px -39px;
    height: 22px;
    width: 22px;
  }
}

@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-resolution: 192dpi), only screen and (min-width: 771px) and (min-resolution: 2dppx) {
  #header-search.skip-content .input-box:hover button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

@media only screen and (max-width: 770px) {
  #search_mini_form input {
    display: block;
  }
}

#search_mini_form label {
  margin-left: 43px;
  text-transform: uppercase;
  color: #6B6B6B;
  font-family: "MontserratBold";
  letter-spacing: 1.4px;
  line-height: 50px;
  cursor: pointer;
}

@media only screen and (max-width: 770px) {
  #search_mini_form label {
    display: none;
  }
}

#search {
  width: 100%;
  height: 44px;
  padding-right: 40px;
  font-family: "MontserratBold";
  outline: none;
  letter-spacing: 1px;
}

#search::-webkit-input-placeholder {
  color: #07489E;
}

#search:-moz-placeholder {
  /* Firefox 18- */
  color: #07489E;
}

#search::-moz-placeholder {
  /* Firefox 19+ */
  color: #07489E;
}

#search:-ms-input-placeholder {
  color: #07489E;
}

#search:hover + button:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -89px -5px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #search:hover + button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  #search {
    font-size: 15px;
    padding: 0 10px 0 47px;
    border: none;
  }
}

@media only screen and (min-width: 770px) {
  #search {
    position: absolute;
    left: -11px;
    top: 2px;
    padding: 0;
    width: 0;
    transition: all 300ms ease;
    color: white;
    border: 1px solid white;
    transition-delay: 150ms;
    max-width: 400px;
  }
  #search.open {
    width: 324px;
    background: #FFFFFF;
    box-shadow: inset 1px 1px 3px 0px rgba(0, 0, 0, 0.23);
    padding: 0 10px 0 52px;
    color: black;
    z-index: 999;
  }
}

@media only screen and (min-width: 770px) and (max-width: 979px) {
  #search.open {
    width: 310px;
  }
}

@media only screen and (min-width: 770px) and (max-width: 904px) {
  #search.open {
    width: 285px;
  }
}

.ie8 #search.open {
  border: 1px solid #B5B3AD;
  padding: 10px 10px 10px 52px;
  width: 324px;
}

#search_mini_form .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  padding: 0;
  z-index: 1000;
}

@media only screen and (max-width: 770px) {
  #search_mini_form .search-button {
    left: 10px;
    top: -3px;
  }
}

#search_mini_form .search-button:before {
  content: '';
  position: absolute;
  top: 29px;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -89px -5px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #search_mini_form .search-button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.ie8 #search_mini_form .search-button:before {
  top: 19px;
}

#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -237px -39px;
  height: 22px;
  width: 17px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-account:not(.skip-active):hover .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.skip-account .icon {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -187px -5px;
  height: 22px;
  width: 17px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-account .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-account {
    float: none;
    position: relative;
    width: auto;
    vertical-align: top;
    display: inline-block;
    padding: 0 10px;
    text-transform: uppercase;
  }
  .skip-account.skip-active .icon {
    content: '';
    display: inline-block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -237px -39px;
    height: 22px;
    width: 17px;
  }
}

@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-resolution: 192dpi), only screen and (min-width: 771px) and (min-resolution: 2dppx) {
  .skip-account.skip-active .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-account.skip-active .label {
    color: #698BC7;
  }
  .skip-account.skip-active:after {
    content: '';
    top: 39px;
    left: 52%;
    margin-left: -17px;
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-bottom: 17px solid #F1F1F1;
    border-top: none;
  }
  #header-account.skip-active {
    display: block;
    position: absolute;
    z-index: 200;
    top: 56px;
    right: 15%;
    width: 200px;
    padding: 20px;
    box-shadow: 6px 6px 1px 0px rgba(75, 75, 75, 0.1);
  }
  #header-account.skip-active .links ul li a {
    line-height: 30px;
    height: 31px;
  }
  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #4B4B4B;
    line-height: 2;
  }
  #header-account a:hover {
    color: #698BC7;
  }
}

/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  padding: 5px 0;
}

#header-account.skip-content.skip-active a {
  position: relative;
  display: block;
  padding: 0px 10px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  height: 31px;
}

#header-account a:hover {
  color: #698BC7;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart:not(.skip-active):hover .icon {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -244px -5px;
  height: 22px;
  width: 20px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-cart:not(.skip-active):hover .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.skip-cart .icon {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -214px -5px;
  height: 22px;
  width: 20px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-cart .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-cart .icon {
    margin-right: 5px;
  }
}

.skip-cart .label {
  margin-left: 8px;
}

@media only screen and (max-width: 770px) {
  .skip-cart .label {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-cart {
    width: auto;
    padding: 0 10px;
  }
  #header-cart.skip-active {
    background: #fff;
    color: #fff;
    display: block;
    background: #F1F1F1;
    position: absolute;
    z-index: 200;
    top: 56px;
    padding: 20px;
    right: 55px;
    width: 320px;
    box-shadow: 6px 6px 1px 0px rgba(75, 75, 75, 0.1);
  }
}

@media only screen and (min-width: 771px) and (max-width: 770px) {
  #header-cart.skip-active {
    background: #F1F1F1;
  }
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  border-radius: 12px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(105, 139, 199, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  .skip-cart .count {
    width: 14px;
    height: 14px;
    top: -48px;
    right: -15px;
    line-height: 15px;
    font-size: 10px;
  }
}

.skip-link.skip-active .count {
  color: white;
}

.skip-cart.no-count .count {
  display: none;
}

@media only screen and (max-width: 770px) {
  .skip-cart .count {
    right: auto;
    left: 22px;
    top: 5px;
    bottom: auto;
    position: absolute;
  }
}

@media only screen and (max-width: 479px) {
  .skip-cart .count {
    left: 18px;
    top: 5px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-cart {
    color: #698BC7;
    text-transform: uppercase;
  }
  .skip-cart:hover {
    text-decoration: none;
  }
  .skip-cart.skip-active .icon {
    content: '';
    display: inline-block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -244px -5px;
    height: 22px;
    width: 20px;
  }
}

@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-resolution: 192dpi), only screen and (min-width: 771px) and (min-resolution: 2dppx) {
  .skip-cart.skip-active .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-cart.skip-active .label {
    color: #698BC7;
  }
  .skip-cart .count {
    border-radius: 50%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    position: absolute;
    background: none;
    margin-left: 0;
    font-size: 9px;
    width: 14px;
    height: 14px;
    top: 9px;
    line-height: 14px;
    left: 36%;
    color: #fff;
    background: #698BC7;
  }
}

.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "MontserratBold";
  font-size: 24px;
  line-height: 1.2;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
}

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
  line-height: 1.35;
}

.mini-cart-list .product-name {
  display: inline-block;
}

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: gray;
  font-size: 12px;
}

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: "MontserratBold";
}

.footer-container {
  position: relative;
  z-index: 3;
}

.footer-container:before {
  content: '';
  display: block;
  background: url("../images/blueacorn/stitch.png");
  height: 10px;
  width: 100%;
  top: -5px;
  position: absolute;
  left: 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer-container:before {
    background: url("../images/blueacorn/stitch@2x.png");
    background-size: 320px 11px;
  }
}

@media only screen and (max-width: 770px) {
  .footer-container .footer {
    padding: 20px;
  }
}

.footer {
  clear: both;
  width: 100%;
  padding-top: 61px;
  padding-bottom: 8px;
  /* -------------------------------------------- *
     * Social icons
     */
}

.footer h4 {
  font-size: 25px;
  color: #4B4B4B;
  letter-spacing: 1px;
}

@media only screen and (max-width: 770px) {
  .footer {
    padding: 20px;
    padding-top: 33px;
  }
}

.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}

.footer .block-title strong {
  font-weight: normal;
}

.footer .block-title,
.footer address {
  color: #F38230;
}

.footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}

.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}

.footer .links a {
  color: #4B4B4B;
}

.footer .links a:hover {
  color: #698BC7;
}

.footer .links,
.footer .block-subscribe {
  font-size: 12px;
}

.footer .form-subscribe-header {
  display: none;
}

.footer .footer-subscribe {
  float: left;
  width: 67%;
}

.footer .footer-subscribe .block-title span {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .block-title span {
    font-size: 26px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .block-title span {
    font-size: 22px;
    line-height: 28px;
  }
}

.footer .footer-subscribe .block-title {
  margin-top: 5px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .block-title {
    margin-bottom: 14px;
    margin-top: 10px;
  }
}

.footer .footer-subscribe .footer-subscribe-text p {
  font-size: 14px;
  color: #4B4B4B;
  line-height: 24px;
  max-width: 280px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.footer .footer-subscribe .footer-subscribe-text {
  float: left;
  width: 40%;
  margin-top: 13px;
  max-width: 482px;
}

@media only screen and (max-width: 897px) {
  .footer .footer-subscribe .footer-subscribe-text {
    float: none;
    width: 100%;
    max-width: none;
  }
  .footer .footer-subscribe .footer-subscribe-text p {
    max-width: none;
  }
}

.footer .footer-subscribe form {
  float: left;
  width: 50%;
  margin-left: 5px;
}

@media only screen and (max-width: 897px) {
  .footer .footer-subscribe form {
    float: none;
    width: 100%;
    margin-top: 11px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe {
    float: none;
    width: 100%;
    text-align: center;
  }
  .footer .footer-subscribe:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

.footer .footer-mid {
  margin-top: 55px;
}

.footer .footer-mid:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid {
    margin-top: 32px;
  }
}

.footer .footer-mid .block {
  float: left;
  width: 17.2%;
  box-sizing: border-box;
  margin-right: 35px;
}

@media only screen and (max-width: 1105px) {
  .footer .footer-mid .block {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block {
    width: 28%;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-mid .block {
    width: 33%;
  }
}

.footer .footer-mid .block ul li {
  margin-bottom: 0;
}

.footer .footer-mid .block:nth-child(2) {
  width: 17.7%;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:nth-child(2) {
    width: 28%;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-mid .block:nth-child(2) {
    width: 33%;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(2) {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:nth-child(3) {
  width: 35%;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:nth-child(3) {
    margin-right: 0;
    width: 40%;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-mid .block:nth-child(3) {
    width: 29%;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(3) {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:nth-child(3) ul {
  float: left;
}

.footer .footer-mid .block:nth-child(3) ul:first-of-type {
  margin-right: 35px;
  width: 47.3%;
}

@media only screen and (max-width: 900px) {
  .footer .footer-mid .block:nth-child(3) ul:first-of-type {
    float: none;
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(3) ul {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:last-child {
  float: right;
  margin-right: 0;
  width: 19.5%;
  text-align: center;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:last-child {
    display: none;
  }
}

.footer .footer-mid .block:last-child img {
  margin: 0 auto 16px;
}

.footer .footer-mid .block:last-child h4 {
  margin-bottom: 24px;
}

.footer .footer-mid .block:last-child p {
  line-height: 21px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:last-child {
    display: none;
  }
}

.footer .footer-mid .block h4 {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 27px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block h4 {
    font-size: 17px;
    line-height: 37px;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
  }
  .footer .footer-mid .block h4:after {
    content: '';
    display: block;
    position: absolute;
    top: 41%;
    right: 0;
    background: url(../images/pjg_icon_sprite.png) no-repeat -177px -66px;
    height: 8px;
    width: 11px;
    transition: all 0.2s ease-in;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-mid .block h4:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-mid .block a {
  font-size: 14px;
  line-height: 28px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block {
    float: none;
    width: 100%;
    margin-bottom: 3px;
  }
  .footer .footer-mid .block a {
    line-height: 38px;
  }
  .footer .footer-mid .block.active h4:after {
    transform: rotate(180deg);
  }
}

.footer .footer-bottom {
  margin-top: 40px;
}

.footer .footer-bottom:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.footer .footer-bottom .block {
  float: right;
}

.footer .footer-bottom .block:first-child {
  width: 60%;
  float: left;
  margin-top: 3px;
}

.footer .footer-bottom .block:first-child ul li {
  display: inline-block;
  margin-right: 50px;
}

.footer .footer-bottom .block:first-child h4 {
  margin-bottom: 23px;
  font-size: 22px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 1050px) {
  .footer .footer-bottom .block:first-child ul li:last-of-type {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-bottom .block:first-child {
    width: 100%;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-bottom .block:first-child {
    width: 100%;
    margin-bottom: 12px;
  }
  .footer .footer-bottom .block:first-child h4, .footer .footer-bottom .block:first-child ul {
    display: none;
  }
}

.footer .footer-bottom .block.custom-badges {
  width: 39.5%;
}

.footer .footer-bottom .block.custom-badges h4 {
  font-size: 22px;
  text-align: center;
  float: right;
  width: 49%;
  letter-spacing: 1px;
  line-height: 27px;
  margin-bottom: 22px;
}

.footer .footer-bottom .block.custom-badges ul {
  clear: both;
  float: right;
  width: 100%;
}

.footer .footer-bottom .block.custom-badges ul li {
  float: right;
  width: 49%;
}

.footer .footer-bottom .block.custom-badges img {
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .footer .footer-bottom .block.custom-badges {
    display: none;
  }
}

.footer .footer-bottom .block:last-child {
  margin-top: 21px;
}

.footer .footer-bottom .block:last-child ul li {
  display: inline-block;
}

.footer .footer-bottom .block:last-child ul li:first-child {
  margin-right: 45px;
}

.footer .footer-bottom .block:last-child ul li a.bizrate {
  content: '';
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -87px -140px;
  height: 78px;
  width: 58px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-bottom .block:last-child ul li a.bizrate {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-bottom .block:last-child ul li a.thawte {
  content: '';
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -158px -132px;
  height: 96px;
  width: 137px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-bottom .block:last-child ul li a.thawte {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-bottom .block:last-child {
    display: none;
  }
}

.footer .footer-social {
  float: right;
  width: 30%;
  max-width: 258px;
  text-align: center;
}

.footer .footer-social h4 {
  margin-bottom: 23px;
}

@media only screen and (max-width: 973px) {
  .footer .footer-social {
    width: 32%;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social {
    float: none;
    width: 100%;
    margin-top: 14px;
    max-width: none;
  }
  .footer .footer-social h4 {
    font-size: 22px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 973px) {
  .footer .footer-social ul {
    width: 77%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul {
    width: 100%;
  }
}

.footer .footer-social ul li {
  display: inline-block;
  margin-right: 21px;
}

.footer .footer-social ul li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 973px) {
  .footer .footer-social ul li:nth-child(3), .footer .footer-social ul li:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li {
    margin-right: 25px;
  }
  .footer .footer-social ul li:nth-child(3) {
    margin-right: 25px;
  }
}

.footer .footer-social ul li a {
  content: '';
  display: block;
  text-indent: -3000px;
}

.footer .footer-social ul li a.facebook {
  background: url(../images/pjg_icon_sprite.png) no-repeat -86px -96px;
  height: 32px;
  width: 32px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.facebook {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.twitter {
  background: url(../images/pjg_icon_sprite.png) no-repeat -123px -95px;
  height: 32px;
  width: 32px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.twitter {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.pinterest {
  background: url(../images/pjg_icon_sprite.png) no-repeat -160px -95px;
  height: 33px;
  width: 32px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.pinterest {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.youtube {
  background: url(../images/pjg_icon_sprite.png) no-repeat -198px -95px;
  height: 32px;
  width: 32px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.youtube {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.googleplus {
  background: url(../images/pjg_icon_sprite.png) no-repeat -236px -95px;
  height: 32px;
  width: 32px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.googleplus {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.instagram {
  background: url(../images/pjg_icon_sprite.png) no-repeat -268px -402px;
  height: 32px;
  width: 32px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.instagram {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .block-subscribe .input-box {
  float: left;
  width: 56.625%;
  padding-top: 0;
}

.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: none;
  background: #FFFFFF;
  box-shadow: inset 1px 1px 3px 0px rgba(0, 0, 0, 0.23);
}

.footer .block-subscribe .input-text:-moz-placeholder {
  color: #07489E;
}

.footer .block-subscribe .input-text::-moz-placeholder {
  color: #07489E;
}

.footer .block-subscribe .input-text:-ms-input-placeholder {
  color: #07489E;
}

.footer .block-subscribe .input-text::-webkit-input-placeholder {
  color: #07489E;
}

.ie8 .footer .block-subscribe .input-text {
  border: 1px solid #B5B3AD;
  padding: 9px 10px;
}

.footer .block-subscribe .block-content {
  padding-top: 12px;
}

.footer .block-subscribe .block-content:after:before, .footer .block-subscribe .block-content:after:after {
  content: " ";
  display: table;
}

.footer .block-subscribe .block-content:after:after {
  clear: both;
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .block-content {
    margin: 0 auto;
  }
  .footer .block-subscribe .block-content:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .actions {
    width: 43.375%;
  }
}

.footer .block-subscribe .actions .button {
  height: 43px;
  line-height: 17px;
  float: left;
  background: #7BA2D3;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 22.3%;
  width: auto;
  color: #fff;
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .actions .button {
    width: 100%;
  }
}

.footer .bugs,
.footer address {
  clear: both;
}

.footer .bugs {
  display: none;
}

.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}

.footer .form-language,
.footer .currency-switcher {
  display: none;
}

.footer .address-container {
  margin-top: 65px;
}

@media only screen and (max-width: 770px) {
  .footer .address-container {
    margin-top: 21px;
  }
}

.footer address {
  color: #4B4B4B;
  line-height: 18px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  .footer address {
    text-align: center;
  }
}

@media only screen and (max-width: 1199px) {
  .footer .links {
    width: 22.6562%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 30px auto;
  }
}

@media only screen and (max-width: 770px) {
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}

html.ie8 .footer .footer-mid .block ul.first {
  width: 30.7%;
  margin-right: 35px;
}

@media only screen and (max-width: 900px) {
  html.ie8 .footer .footer-mid .block ul.first {
    float: none;
    width: 100%;
  }
}

#top-header {
  min-height: 108px;
  max-height: 108px;
  background: #fff;
  padding-top: 10px;
  position: relative;
}

#top-header:before {
  content: '';
  display: block;
  background: url("../images/blueacorn/stitch_v2.png");
  height: 11px;
  width: 100%;
  bottom: -9px;
  position: absolute;
  left: 0;
  z-index: 5;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header:before {
    background: url("../images/blueacorn/stitch_v2@2x.png");
    background-size: 320px 11px;
  }
}

@media only screen and (max-width: 770px) {
  #top-header {
    min-height: 50px;
    max-height: 50px;
    padding-top: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
  }
}

#top-header .top-header-content {
  width: 100%;
}

#top-header .top-header-content a:focus, #top-header .top-header-content a:active {
  outline: none;
}

#top-header .top-header-content a:hover {
  text-decoration: none;
}

#top-header .top-header-content a:hover .label {
  color: #698BC7;
}

#top-header .top-header-content a:not(.product-image) {
  line-height: 50px;
  background: none;
  font-family: "MontserratBold";
}

#top-header .top-header-content a:not(.product-image).logo {
  min-height: 0;
  z-index: 100;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content a:not(.product-image) {
    line-height: 40px;
  }
  #top-header .top-header-content a:not(.product-image).skip-search {
    padding: 0 9px;
    float: right;
  }
}

#top-header .top-header-content a:not(.product-image).skip-cart {
  width: 100%;
}

#top-header .top-header-content a:not(.product-image).skip-cart:hover .label {
  color: #698BC7;
}

@media only screen and (min-width: 770px) {
  #top-header .top-header-content a:not(.product-image).skip-cart.skip-active:after {
    content: '';
    top: 39px;
    left: 50%;
    margin-left: -17px;
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-bottom: 17px solid #F1F1F1;
    border-top: none;
  }
}

#top-header .top-header-content #header-number {
  float: left;
}

#top-header .top-header-content #header-number:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -121px -5px;
  height: 22px;
  width: 22px;
  display: inline-block;
  margin-top: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-number:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content #header-number:before {
    margin-top: 10px;
  }
}

#top-header .top-header-content #header-number:hover:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -171px -39px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-number:hover:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-number:hover a {
  color: #698BC7;
}

#top-header .top-header-content #header-number.mobile {
  display: none;
}

#top-header .top-header-content #header-number a {
  vertical-align: top;
  margin-left: 9px;
  font-size: 14px;
  letter-spacing: 1px;
}

#top-header .top-header-content #header-number p {
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content #header-number {
    padding: 0 9px;
  }
  #top-header .top-header-content #header-number.mobile {
    display: block;
  }
  #top-header .top-header-content #header-number.desktop, #top-header .top-header-content #header-number:before {
    display: none;
  }
  #top-header .top-header-content #header-number a {
    text-indent: -9999px;
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -121px -5px;
    height: 22px;
    width: 22px;
    display: inline-block;
    margin-top: 10px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  #top-header .top-header-content #header-number a {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-chat-link {
  float: right;
  margin-right: 1.9%;
}

@media only screen and (max-width: 918px) {
  #top-header .top-header-content #header-chat-link {
    display: none;
  }
}

#top-header .top-header-content #header-chat-link:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -155px -8px;
  height: 19px;
  width: 22px;
  display: inline-block;
  margin-top: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-chat-link:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-chat-link:hover:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -205px -42px;
  height: 19px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-chat-link:hover:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-chat-link:hover a {
  color: #698BC7;
}

#top-header .top-header-content #header-chat-link a {
  vertical-align: top;
  margin-left: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

#top-header .top-header-content #header-chat-link p {
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content #header-chat-link {
    display: none;
  }
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 44px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
  font-size: 13px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}

@media only screen and (max-width: 770px) {
  h2.product-name,
  h3.product-name,
  h4.product-name,
  h5.product-name,
  p.product-name {
    font-size: 49px;
  }
}

h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #4B4B4B;
}

h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  color: #698BC7;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "MontserratBold";
}

.products-grid .product-name a,
.products-list .product-name a {
  font-size: 14px;
  line-height: 25px;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
}

.products-grid:after:before, .products-grid:after:after {
  content: " ";
  display: table;
}

.products-grid:after:after {
  clear: both;
}

.products-grid > li {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.products-grid > li:after:before, .products-grid > li:after:after {
  content: " ";
  display: table;
}

.products-grid > li:after:after {
  clear: both;
}

.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}

.products-grid .product-image img {
  width: 100%;
  height: auto;
}

.products-grid .product-image img:hidden {
  display: none;
}

.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

.products-grid .product-info {
  position: relative;
  padding-bottom: 28px;
}

@media only screen and (max-width: 770px) {
  .products-grid .product-info {
    margin-top: 18px;
  }
}

.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  min-height: 18px;
  width: 100%;
}

.products-grid .ratings .rating-box {
  margin: 0 auto;
}

.products-grid .ratings .amount {
  display: none;
}

.products-grid .price-box {
  color: gray;
  font-size: 13px;
  margin: 0 0 5px;
}

.catalog-category-view .products-grid .price-box .price-from .price-label, .catalog-category-view .products-grid .price-box .price-to {
  display: none;
}

.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 47.7273%;
  margin-right: 4.5455%;
}

.products-grid > li:nth-child(odd) {
  clear: left;
}

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

.products-grid .product-image {
  margin-bottom: 19px;
}

.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.products-grid .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}

.products-grid .product-image:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.products-grid .product-image.loading {
  position: relative;
}

.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

@media only screen and (min-width: 480px) {
  /* Config: Three columns + flexible gutter */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  .products-grid > li:nth-child(even) {
    margin-right: 3.7037%;
  }
  .products-grid > li {
    width: 30.8642%;
    margin-right: 3.7037%;
  }
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none;
  }
  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none;
  }
  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  /* Set column config */
  .products-grid--max-4-col > li {
    margin-right: 2.2222%;
  }
  .products-grid--max-4-col > li {
    width: 23.3333%;
    margin-right: 2.2222%;
  }
  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left;
  }
  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-5-col > li:nth-child(odd) {
    clear: none;
  }
  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none;
  }
  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  /* Set column config */
  .products-grid--max-5-col > li {
    margin-right: 2.2222%;
  }
  .products-grid--max-5-col > li {
    width: 18.2222%;
    margin-right: 2.2222%;
  }
  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left;
  }
  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0;
  }
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-6-col > li:nth-child(odd) {
    clear: none;
  }
  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none;
  }
  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  /* Set column config */
  .products-grid--max-6-col > li {
    margin-right: 2.2222%;
  }
  .products-grid--max-6-col > li {
    width: 14.8148%;
    margin-right: 2.2222%;
  }
  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left;
  }
  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}

/* ============================================ *
 * Product List
 * ============================================ */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
}

.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}

.products-list > li:after:before, .products-list > li:after:after {
  content: " ";
  display: table;
}

.products-list > li:after:after {
  clear: both;
}

.products-list > li .product-image {
  float: left;
  width: 33.3333%;
}

.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}

.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.products-list .product-shop {
  float: right;
  width: 66.6667%;
  padding-left: 20px;
}

.products-list .product-shop .product-name {
  margin-bottom: 0;
}

.products-list .product-shop .ratings {
  margin: 0;
}

.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}

.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}

.products-list .product-shop .price-box {
  margin-top: 0;
}

.products-list .product-shop .price-box .price {
  font-size: 18px;
}

.products-list .product-shop .action {
  margin: 7px 0;
}

.products-list .product-shop .desc {
  margin-top: 7px;
}

.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 65%;
  overflow: hidden;
}

.products-list .product-shop .product-secondary {
  float: right;
  width: 35%;
  text-align: right;
  clear: right;
}

@media only screen and (min-width: 480px) {
  .products-list .product-name a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1279px) {
  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%;
  }
}

@media only screen and (max-width: 600px) {
  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }
  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}

.mini-products-list .product-image a {
  height: auto;
}

.mini-products-list .product-image img {
  width: 100%;
}

.mini-products-list .product-details {
  margin-left: 96px;
  margin-right: 25px;
}

.mini-products-list .product-details table {
  background: none;
}

.mini-products-list .product-details table th, .mini-products-list .product-details table td span.price {
  color: #fff;
}

.mini-products-list .product-details table th {
  display: none;
}

.mini-products-list li {
  margin-bottom: 14px;
  clear: both;
}

.mini-products-list li:after:before, .mini-products-list li:after:after {
  content: " ";
  display: table;
}

.mini-products-list li:after:after {
  clear: both;
}

.mini-products-images-list:after:before, .mini-products-images-list:after:after {
  content: " ";
  display: table;
}

.mini-products-images-list:after:after {
  clear: both;
}

.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}

.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}

.mini-products-images-list li.item .product-image {
  display: block;
}

.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image img {
  width: 100%;
  max-width: 100%;
}

.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-products.landing {
  padding: 70px;
}

.category-products.landing:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (min-width: 960px) {
  .category-products.landing .products-grid--max-4-col > li {
    width: 21.5%;
    margin-right: 4.66%;
  }
  .category-products.landing .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.block-layered-nav .block-subtitle--filter:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.catalog-product-view .block-layered-nav .block-subtitle--filter {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-layered-nav .block-subtitle--filter {
    font-size: 26px;
  }
}

.catalog-product-view .block-layered-nav .block-subtitle--filter:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view .block-layered-nav .block-subtitle--filter:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}

.block-layered-nav .block-content > dl.collateral-tabs > dt {
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #4B4B4B;
  letter-spacing: 1px;
  line-height: 20px;
  display: block;
}

.block-layered-nav .block-content > dl.collateral-tabs > dt:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

.block-layered-nav .block-content > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .block-content > dl.collateral-tabs > dt {
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #4B4B4B;
    letter-spacing: 1px;
    line-height: 20px;
  }
  .block-layered-nav .block-content > dl.collateral-tabs > dt:after {
    content: '';
    position: absolute;
    left: initial;
    right: 30px;
    display: block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -177px -66px;
    height: 11px;
    width: 8px;
    height: 11px;
    width: 12px;
    border: none;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .block-layered-nav .block-content > dl.collateral-tabs > dt:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.block-layered-nav .block-content > dl.collateral-tabs > dd {
  margin: 14px 0 0 0;
}

.block-layered-nav .block-content > dl.collateral-tabs > dd > ol > li {
  margin-top: 11px;
  margin-bottom: 11px;
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .block-content > dl.collateral-tabs > dd > ol {
    margin-bottom: 0;
  }
}

.block-layered-nav .block-content > dl.collateral-tabs > dd .count {
  display: none;
}

.catalog-product-view .block-layered-nav .block-content .toggle-tabs {
  display: none;
  background: none;
  border: none;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt {
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  display: block;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

.catalog-product-view .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dd {
  padding: 10px;
  margin: 0;
}

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}

.block-layered-nav dl dd ol {
  margin-bottom: 35px;
}

.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  display: block;
  font-size: 14px;
  color: #4B4B4B;
}

.block-layered-nav dl dd ol > li > span:hover, .block-layered-nav dl dd ol > li > a:hover {
  color: #F38230;
}

.block-layered-nav dl dd ol > li > a .count {
  color: gray;
}

.block-layered-nav dl dd .amshopby-more {
  padding-left: 18px;
  color: #F38230;
}

.block-layered-nav dl dd .amshopby-less {
  padding-left: 18px;
  color: #F38230;
}

@media only screen and (min-width: 771px) {
  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .sidebar .block.block-layered-nav {
    border-bottom: none;
  }
  .block-layered-nav--no-filters .block-title {
    display: none;
  }
  .block-layered-nav .block-content {
    padding-top: 0;
    margin-top: 15px;
  }
  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .block-layered-nav .block-content > dl > dt:hover {
    color: #698BC7;
  }
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content > dl > dd {
    display: none;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    left: initial;
    right: 30px;
    display: block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -155px -66px;
    height: 11px;
    width: 8px;
    height: 11px;
    width: 12px;
    border: none;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }
  .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt {
    cursor: pointer;
  }
  .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dt:hover {
    color: #698BC7;
  }
  .catalog-product-view .block-layered-nav .block-content > dl.collateral-tabs > dd {
    transition: none;
    display: block;
    max-height: 0px;
    padding: 0 10px;
    overflow: hidden;
  }
  .catalog-product-view .block-layered-nav .block-content.accordion-open > dl.collateral-tabs > dt.current {
    border-bottom-width: 0px;
    margin-bottom: 0px;
  }
  .catalog-product-view .block-layered-nav .block-content.accordion-open > dl.collateral-tabs > dt.current:after {
    transform: rotate(90deg);
  }
  .catalog-product-view .block-layered-nav .block-content.accordion-open > dl.collateral-tabs > dt.current:before {
    transform: rotate(180deg);
  }
  .catalog-product-view .block-layered-nav .block-content.accordion-open > dl.collateral-tabs > dd.current {
    display: block;
    max-height: 9000px;
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: #99B9F7;
    border-top: none;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .catalog-product-view .block-layered-nav .block-content.accordion-open > dl.collateral-tabs > dd.current {
    border: none;
  }
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .block-subtitle--filter {
    display: none;
  }
  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border-top: 0;
  }
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}

.block-layered-nav .currently .block-subtitle {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .currently .block-subtitle {
    font-size: 26px;
  }
}

.block-layered-nav .currently ol:first-of-type {
  margin-top: 6px;
}

.block-layered-nav .currently ol {
  margin-bottom: 10px;
}

.block-layered-nav .currently ol li {
  margin-bottom: 5px;
  color: #F38230;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
}

.block-layered-nav .currently ol li .label {
  display: none;
}

.block-layered-nav .currently ol li:after:before, .block-layered-nav .currently ol li:after:after {
  content: " ";
  display: table;
}

.block-layered-nav .currently ol li:after:after {
  clear: both;
}

.block-layered-nav .currently:before {
  content: 'Filtering By';
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #4B4B4B;
  letter-spacing: 1px;
  line-height: 20px;
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .currently:before {
    content: 'Showing';
    font-family: "MontserratBold";
    font-size: 14px;
    color: #4B4B4B;
    letter-spacing: 1px;
    line-height: 20px;
    text-transform: uppercase;
    position: relative;
    left: 50%;
    margin-left: -40px;
  }
}

.block-layered-nav .actions {
  margin-bottom: 50px;
  width: 100%;
}

.block-layered-nav .actions:before, .block-layered-nav .actions:after {
  content: " ";
  display: table;
}

.block-layered-nav .actions:after {
  clear: both;
}

.block-layered-nav .actions a {
  float: right;
  padding-right: 54px;
  text-transform: lowercase;
  color: #92918E;
}

@media only screen and (max-width: 770px) {
  .block-layered-nav .actions {
    display: none;
  }
}

.toolbar-bottom {
  display: inline-block;
  width: 100%;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.catalog-product-view .main-container {
  max-width: 100%;
  padding: 0;
}

.catalog-product-view .breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5% 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .breadcrumbs {
    padding: 20px 0 10px;
  }
}

.catalog-product-view:not(.simple) .lead-time-wrapper {
  display: none;
}

.product-view .available-shipping-wrapper,
.product-view .oversize-shipping-wrapper,
.product-view .lead-time-wrapper {
  clear: both;
  text-align: left;
  margin: auto;
  white-space: nowrap;
  margin-bottom: 25px;
  margin-left: 71px;
}

@media only screen and (max-width: 599px) {
  .product-view .available-shipping-wrapper,
  .product-view .oversize-shipping-wrapper,
  .product-view .lead-time-wrapper {
    max-width: 310px;
    margin: auto;
  }
}

.product-view .add-to-cart-wrapper .available-shipping-wrapper,
.product-view .add-to-cart-wrapper .oversize-shipping-wrapper,
.product-view .add-to-cart-wrapper .lead-time-wrapper {
  margin-left: 50px;
}

.product-view .oversize-icon,
.product-view .available-icon,
.product-view .lead-time-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.product-view .oversize-icon {
  background: url(../images/lead_messages.png) no-repeat -76px -80px;
  height: 28px;
  width: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .oversize-icon {
    background-image: url(../images/lead_messages@2x.png);
    background-size: 188px 136px;
  }
}

.product-view .oversize-icon > span {
  display: none;
}

.product-view .available-icon {
  background: url(../images/lead_messages.png) no-repeat -18px -86px;
  height: 21px;
  width: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .available-icon {
    background-image: url(../images/lead_messages@2x.png);
    background-size: 188px 136px;
  }
}

.product-view .available-message,
.product-view .oversize-message,
.product-view .lead-time-message {
  vertical-align: middle;
  display: inline-block;
  font-size: 14px;
  white-space: initial;
  overflow: hidden;
  text-align: left;
  padding-right: 15px;
}

@media only screen and (max-width: 599px) {
  .product-view .available-message,
  .product-view .oversize-message,
  .product-view .lead-time-message {
    max-width: 255px;
  }
}

.product-view .product-essential {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.8333% 4.1667%;
}

.product-view .product-essential:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .product-view .product-essential {
    padding: 0;
  }
}

.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}

.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}

.product-view .product-essential .extra-info .ratings:after:before, .product-view .product-essential .extra-info .ratings:after:after {
  content: " ";
  display: table;
}

.product-view .product-essential .extra-info .ratings:after:after {
  clear: both;
}

.product-view .product-essential:after:before, .product-view .product-essential:after:after {
  content: " ";
  display: table;
}

.product-view .product-essential:after:after {
  clear: both;
}

.product-view .product-name {
  margin-bottom: 10px;
  width: 50%;
  float: right;
}

@media only screen and (max-width: 770px) {
  .product-view .product-name {
    float: none;
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .product-view .product-name.desktop {
    display: none;
  }
}

.product-view .product-name .h1 {
  color: #698BC7;
  border: 0;
  margin: 0;
  font-size: 45px;
}

@media only screen and (max-width: 770px) {
  .product-view .product-name .h1 {
    color: #4B4B4B;
  }
}

.product-view .product-shop {
  width: 50%;
  float: right;
}

.product-view .product-shop .product-name {
  display: none;
  float: left;
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop .product-name {
    display: block;
    padding: 0;
    text-align: center;
    color: #4B4B4B;
  }
}

.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
}

.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 70%;
}

.product-view .product-shop .extra-info:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 10px;
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop .extra-info,
  .product-view .product-shop .price-info {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}

.product-view .product-shop .price-info {
  display: none;
}

.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}

.product-view .product-shop .truncate-ctrl-btn {
  text-transform: lowercase;
}

.product-view .product-shop .truncate-ctrl-btn:after {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -86px -337px;
  height: 7px;
  width: 9px;
  display: inline-block;
  margin-left: 8px;
  transition: all 300ms ease;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .product-shop .truncate-ctrl-btn:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .product-shop .truncate-ctrl-btn.open:after {
  transform: rotate(180deg);
}

.product-view .product-shop .truncate-ctrl-btn:focus {
  background: none;
  color: #698BC7;
}

.product-view .product-shop .ratings {
  margin-bottom: 8px;
}

.product-view .product-shop .ratings:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-view .product-shop .backorder-details {
  float: left;
  margin-left: 10px;
  line-height: 25px;
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop .backorder-details {
    float: none;
    display: inline-block;
    margin-left: 0;
  }
}

.product-view .product-shop .availability {
  font-size: 16px;
  float: left;
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop .availability {
    float: none;
    display: inline-block;
  }
}

.product-view .product-shop .price-box {
  margin-top: 0;
}

.product-view .product-shop .price-box .price-from,
.product-view .product-shop .price-box .price-to {
  display: none;
}

.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}

.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #698BC7;
  font-size: 24px;
}

.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}

.product-view .product-shop .price-box .special-price span.weee {
  color: #4B4B4B;
}

.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}

.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #4B4B4B;
}

.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}

.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}

.product-view .price-box.map-info a {
  display: inherit;
}

.product-view .old-price .price-label {
  display: none;
}

.product-view .add-to-cart-wrapper,
.product-view .block-related,
.product-view .box-up-sell {
  width: 50%;
  float: right;
  clear: right;
}

@media only screen and (max-width: 850px) {
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px;
  }
}

@media only screen and (max-width: 770px) {
  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both;
  }
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px;
  }
}

@media only screen and (max-width: 420px) {
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}

.product-header-image {
  width: 100%;
  max-width: 1200px;
  padding-top: 14.5%;
  margin: 0 auto;
}

@media only screen and (min-width: 1200px) {
  .product-header-image {
    padding-top: 174px;
  }
}

.product-img-box {
  position: relative;
  width: 50%;
  float: left;
}

.product-img-box .product-name h1 {
  border: 0;
}

.product-img-box .product-image {
  margin-bottom: 10px;
}

.product-img-box .product-image img {
  max-width: 100%;
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .product-img-box .product-image img {
    max-height: 450px;
  }
}

.product-image-gallery {
  position: relative;
}

.product-image-gallery .gallery-image {
  display: none;
}

.product-image-gallery .gallery-image.visible {
  display: block;
  height: auto !important;
}

.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}

.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}

.product-image-gallery:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.product-image-gallery.loading {
  position: relative;
}

.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

.zoomContainer {
  transform: none !important;
}

.product-image-zoom .product-image-gallery {
  position: relative;
}

.product-image-zoom .product-image-gallery:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-image-zoom .product-image-gallery:before {
  content: "";
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -179px -301px;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 90%;
  left: 90%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-image-zoom .product-image-gallery:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .product-image-zoom .product-image-gallery:before {
    display: none;
  }
}

.product-image-thumbs {
  width: 72.1739%;
  margin: 0 auto;
}

.product-image-thumbs li {
  display: inline-block;
  width: 100%;
  float: left;
  margin-bottom: 0;
  position: relative;
}

.product-image-thumbs li:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-image-thumbs li:hover:before {
  content: "";
  border: 2px solid rgba(245, 166, 35, 0.5);
  position: absolute;
  top: 0;
  top: calc(1px);
  left: 0;
  left: calc(1px);
  width: 100%;
  width: calc(100% - 2px);
  height: 100%;
  height: calc(100% - 2px);
}

.product-image-thumbs li:first-child {
  margin-left: -1px;
}

.product-image-thumbs a {
  float: left;
  width: 100%;
  display: inline-block;
  border: 1px solid transparent;
  padding: 12px;
}

.product-image-thumbs a:focus {
  background: white;
}

.product-image-thumbs img {
  width: 100%;
}

.product-image-thumbs .owl-stage-outer {
  padding: 30px 0 0;
}

@media only screen and (max-width: 770px) {
  .product-image-thumbs .owl-stage-outer {
    overflow: hidden;
  }
}

.product-image-thumbs .owl-item {
  background: white;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.product-image-thumbs .owl-item:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-image-thumbs .owl-item.active-item:before {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -138px -326px;
  height: 12px;
  width: 23px;
  position: absolute;
  top: -9px;
  left: 50%;
  margin-left: -11px;
  z-index: 2;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-image-thumbs .owl-item.active-item:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-image-thumbs .owl-item.active-item li {
  z-index: 1;
}

.product-image-thumbs .owl-item.active-item li:before {
  content: "";
  border: 2px solid #F5A623;
  position: absolute;
  top: 0;
  top: calc(1px);
  left: 0;
  left: calc(1px);
  width: 100%;
  width: calc(100% - 2px);
  height: 100%;
  height: calc(100% - 2px);
}

.ie8 .product-image-thumbs .owl-item.active-item li:before {
  display: none;
}

.no-touch .product-image-thumbs .owl-item:hover {
  border-color: #c7c7c7;
}

.product-view .product-shop,
.product-view .product-name,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 4.1667%;
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}

.product-view .add-to-box:after:before, .product-view .add-to-box:after:after,
.product-view .add-to-cart:after:before,
.product-view .add-to-cart:after:after {
  content: " ";
  display: table;
}

.product-view .add-to-box:after:after,
.product-view .add-to-cart:after:after {
  clear: both;
}

.product-view .add-to-cart {
  padding-bottom: 3px;
  margin-bottom: 10px;
}

.product-view .add-to-cart .qty-wrapper {
  display: none;
}

.product-view .add-to-cart .price-box {
  float: left;
  width: 34.1%;
  margin: 0;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .product-view .add-to-cart .price-box {
    width: 100%;
    margin-bottom: 20px;
  }
}

.product-view .add-to-cart .price-box:before {
  content: "Your price";
  display: block;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

@media only screen and (max-width: 1100px) {
  .product-view .add-to-cart .price-box .old-price .price {
    font-size: 14px;
  }
}

.product-view .add-to-cart .price-box .special-price {
  padding-left: 0;
}

.product-view .add-to-cart .price-box .special-price .price {
  padding-left: 0;
}

@media only screen and (max-width: 1100px) {
  .product-view .add-to-cart .price-box .special-price .price {
    font-size: 22px;
  }
}

.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}

.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}

.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}

.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}

.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}

.product-view .add-to-cart-buttons {
  float: left;
  margin: 0;
  width: 65.9%;
  max-width: 100%;
}

@media only screen and (max-width: 770px) {
  .product-view .add-to-cart-buttons {
    width: 100%;
  }
}

.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}

.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}

.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}

.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}

.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}

.product-view .add-to-cart-buttons .paypal-logo:first-of-type {
  margin-top: 10px;
}

.product-view .add-to-cart-buttons .paypal-logo:first-of-type .paypal-or {
  padding-top: 10px;
}

.product-view .add-to-cart-buttons .button {
  min-height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}

.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}

/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none;
}

.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left;
}

.product-view .add-to-links:after:before, .product-view .add-to-links:after:after {
  content: " ";
  display: table;
}

.product-view .add-to-links:after:after {
  clear: both;
}

.product-view .add-to-links li {
  float: left;
}

.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #CCCCCC;
}

.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}

.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

.product-view .sharing-links {
  position: absolute;
  top: 30px;
  right: 20px;
}

.product-view .sharing-links:after:before, .product-view .sharing-links:after:after {
  content: " ";
  display: table;
}

.product-view .sharing-links:after:after {
  clear: both;
}

.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
  clear: both;
}

.product-view .sharing-links a {
  background: url(../images/pjg_icon_sprite.png) no-repeat -81px -402px;
  height: 24px;
  width: 24px;
  display: block;
  overflow: hidden;
  text-indent: 100%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links a {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .sharing-links a.link-facebook:hover {
  background-position: -111px -402px;
}

.product-view .sharing-links a.link-twitter {
  background-position: -81px -431px;
}

.product-view .sharing-links a.link-twitter:hover {
  background-position: -111px -431px;
}

@media only screen and (max-width: 599px) {
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}

.product-collateral {
  clear: both;
  margin-bottom: 4.1667%;
}

@media only screen and (max-width: 770px) {
  .product-collateral {
    padding-top: 30px;
  }
}

.product-collateral .toggle-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 0 12.5%;
}

@media only screen and (min-width: 1200px) {
  .product-collateral .toggle-tabs {
    padding: 0 30px 0 150px;
  }
}

.product-collateral .tab-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.8333% 11.75%;
  font-size: 14px;
  line-height: 28px;
}

.product-collateral .tab-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (min-width: 1200px) {
  .product-collateral .tab-content {
    padding: 75px 150px;
  }
}

.product-collateral .tab-content .desc-image {
  width: 28.9167%;
  max-width: 260px;
  float: right;
}

.product-collateral .tab-content .desc-image img {
  width: 100%;
}

.product-collateral .tab-content .desc-image ~ .std {
  float: left;
  width: 71.0833%;
  max-width: 640px;
  padding-right: 5%;
}

@media only screen and (min-width: 1200px) {
  .product-collateral .tab-content .desc-image ~ .std {
    padding-right: 45px;
  }
}

.product-collateral .tab-content .hazard-info {
  font-size: 13px;
  line-height: 21px;
  padding: 0 0 0 30px;
  margin-top: 6%;
  position: relative;
}

.product-collateral .tab-content .hazard-info:before {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -182px -266px;
  height: 20px;
  width: 22px;
  position: absolute;
  top: 0;
  left: 0px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-collateral .tab-content .hazard-info:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-collateral .tab-container {
  transition: all 300ms ease;
  display: block !important;
  max-height: 0px;
  overflow: hidden;
}

.product-collateral .tab-container.current {
  max-height: 2000px;
}

@media only screen and (max-width: 770px) {
  .product-collateral .tab-container.current {
    max-height: 0;
  }
}

.product-collateral .tab-container .tab-content {
  transition: all 600ms ease;
  transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 770px) {
  .product-collateral .tab-container .tab-content {
    transform: translateX(0%);
  }
}

.product-collateral .tab-container.current .tab-content {
  transform: translateX(0%);
  opacity: 1;
}

.product-collateral .tab-container.current ~ .tab-container .tab-content {
  transform: translateX(100%);
}

@media only screen and (max-width: 770px) {
  .product-collateral .tab-container.current ~ .tab-container .tab-content {
    transform: translateX(0%);
  }
}

.collateral-tabs {
  background: #fff;
}

@media only screen and (max-width: 770px) {
  .collateral-tabs {
    background: none;
  }
}

.collateral-tabs dd h2 {
  display: none;
}

.box-collateral {
  clear: both;
}

@media only screen and (min-width: 771px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #CCCCCC;
    background-color: #F4F4F4;
  }
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  .product-collateral .toggle-tabs li > span {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    bottom: -1px;
  }
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
  }
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }
  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #698BC7;
  }
  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  .product-collateral .toggle-tabs:after:before, .product-collateral .toggle-tabs:after:after {
    content: " ";
    display: table;
  }
  .product-collateral .toggle-tabs:after:after {
    clear: both;
  }
  .product-collateral > dl {
    width: 100%;
  }
  .product-collateral > dl > dt {
    display: block;
  }
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    border-style: solid;
    border-width: 2px;
    border-color: #99B9F7;
    border-top: none;
  }
  .product-collateral > dl > dd.current {
    display: block;
    padding: 15px;
  }
  .catalog-product-view .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    background: none;
    border: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .catalog-product-view .product-collateral .toggle-tabs li {
    float: left;
    background: white;
    margin-left: 10px;
    margin-bottom: 0;
  }
  .catalog-product-view .product-collateral .toggle-tabs li:first-of-type {
    margin-left: 0;
  }
  .catalog-product-view .product-collateral .toggle-tabs li > span {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    color: #07489E;
    cursor: pointer;
    text-transform: capitalize;
    font: 22px/50px "Montserrat", Verdana, Arial, sans-serif;
    letter-spacing: 1px;
    position: relative;
    bottom: -1px;
    height: 50px;
  }
  .catalog-product-view .product-collateral .toggle-tabs li.current {
    border: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs li.current > span {
    z-index: 5;
  }
  .catalog-product-view .product-collateral .toggle-tabs li.current span,
  .catalog-product-view .product-collateral .toggle-tabs li:hover span {
    color: #698BC7;
  }
  .catalog-product-view .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs:after:before, .catalog-product-view .product-collateral .toggle-tabs:after:after {
    content: " ";
    display: table;
  }
  .catalog-product-view .product-collateral .toggle-tabs:after:after {
    clear: both;
  }
  .catalog-product-view .product-collateral > dl {
    width: 100%;
  }
  .catalog-product-view .product-collateral > dl > dt {
    display: none;
  }
  .catalog-product-view .product-collateral > dl > dd {
    width: 100%;
    display: none;
    border: none;
  }
  .catalog-product-view .product-collateral > dl > dd.current {
    display: block;
  }
}

@media only screen and (max-width: 770px) {
  .product-collateral .toggle-tabs {
    display: none;
  }
  .product-collateral > dl.collateral-tabs > dt {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    position: relative;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 22px;
    color: #4B4B4B;
    letter-spacing: 1px;
    line-height: 20px;
    display: block;
  }
  .product-collateral > dl.collateral-tabs > dt:after {
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral > dl.collateral-tabs > dt:hover {
    background-color: #ededed;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #07489E;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 25px;
    font-style: normal;
    text-rendering: optimizeSpeed;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 19px;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    position: relative;
    line-height: 30px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt:after {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 13px !important;
    width: 3px !important;
    border: none;
    background: none !important;
    background-color: #4B4B4B !important;
    position: absolute;
    right: 26px;
    left: auto !important;
    top: 19px !important;
    margin-top: -6px;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt:before {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 3px;
    width: 13px;
    background: none;
    background-color: #4B4B4B;
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -1px;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
    background-color: #ededed;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .product-collateral > dl.collateral-tabs > dt {
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #4B4B4B;
    letter-spacing: 1px;
    line-height: 20px;
  }
  .product-collateral > dl.collateral-tabs > dt:after {
    content: '';
    position: absolute;
    left: initial;
    right: 30px;
    display: block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -177px -66px;
    height: 11px;
    width: 8px;
    height: 11px;
    width: 12px;
    border: none;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (max-width: 770px) and (min-resolution: 2dppx) {
  .product-collateral > dl.collateral-tabs > dt:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .product-collateral > dl.collateral-tabs > dd {
    margin: 14px 0 0 0;
  }
  .product-collateral > dl.collateral-tabs > dd > ol > li {
    margin-top: 11px;
    margin-bottom: 11px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .product-collateral > dl.collateral-tabs > dd > ol {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 770px) {
  .product-collateral > dl.collateral-tabs > dd .count {
    display: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs {
    display: none;
    background: none;
    border: none;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    position: relative;
    display: block;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt:after {
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
    background-color: #ededed;
  }
  .catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #07489E;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 25px;
    font-style: normal;
    text-rendering: optimizeSpeed;
    text-transform: none;
    letter-spacing: 1px;
    line-height: 19px;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    position: relative;
    line-height: 30px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt:after {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 13px !important;
    width: 3px !important;
    border: none;
    background: none !important;
    background-color: #4B4B4B !important;
    position: absolute;
    right: 26px;
    left: auto !important;
    top: 19px !important;
    margin-top: -6px;
  }
  .catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt:before {
    transition: all 300ms ease;
    content: "";
    display: block;
    height: 3px;
    width: 13px;
    background: none;
    background-color: #4B4B4B;
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -1px;
  }
  .catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
    background-color: #ededed;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dd {
    padding: 10px;
    margin: 0;
  }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .product-collateral > dl > dt:hover {
    color: #698BC7;
  }
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  .product-collateral > dl > dd {
    display: none;
  }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .product-collateral.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    left: initial;
    right: 30px;
    display: block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -155px -66px;
    height: 11px;
    width: 8px;
    height: 11px;
    width: 12px;
    border: none;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .product-collateral.accordion-open > dl > dt.current:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    cursor: pointer;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
    color: #698BC7;
  }
  .catalog-product-view .product-collateral > dl.collateral-tabs > dd {
    transition: none;
    display: block;
    max-height: 0px;
    padding: 0 10px;
    overflow: hidden;
  }
  .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current {
    border-bottom-width: 0px;
    margin-bottom: 0px;
  }
  .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current:after {
    transform: rotate(90deg);
  }
  .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current:before {
    transform: rotate(180deg);
  }
  .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dd.current {
    display: block;
    max-height: 9000px;
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: #99B9F7;
    border-top: none;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dd.current {
    border: none;
  }
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-view .box-up-sell,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 479px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 20px;
  }
}

.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0;
}

#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #4B4B4B;
}

#product-attribute-specs-table th {
  border-right: 1px solid #4B4B4B;
  border-bottom: 1px solid #4B4B4B;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #4B4B4B;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

@media only screen and (max-width: 479px) {
  .grouped-items-table-wrapper {
    margin-bottom: 20px;
  }
}

.grouped-items-table .name-wrapper {
  color: #F38230;
  font-family: "MontserratBold";
}

.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}

.grouped-items-table .qty-label {
  margin-left: 7px;
}

.grouped-items-table td {
  padding: 4px;
}

.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}

.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #CCCCCC;
  clear: both;
  position: relative;
}

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

@media only screen and (max-width: 979px) {
  .product-view .product-options .required {
    position: static;
  }
}

.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

.product-options dt:first-child {
  margin-top: 0;
}

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

.product-options dd .qty-holder .qty {
  width: 3em;
}

.product-options dd .qty-holder label {
  vertical-align: middle;
}

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

.product-options:not(.bundle-customizer) dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.product-options dd .input-text {
  width: 98%;
}

.product-options dd .input-box {
  padding-top: 0;
}

.product-options dd input.datetime-picker {
  width: 150px;
}

.product-options dd .time-picker {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-options dd select {
  width: 330px;
  max-width: 100%;
}

.product-options ul.options-list {
  margin-right: 5px;
}

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

.product-options ul.options-list .label {
  display: block;
}

.product-options ul.options-list label {
  font-weight: normal;
}

.product-options p.note {
  margin: 0;
  font-size: 11px;
}

.product-options-bottom {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}

.product-options-bottom:after:before, .product-options-bottom:after:after {
  content: " ";
  display: table;
}

.product-options-bottom:after:after {
  clear: both;
}

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #4B4B4B;
}

@media only screen and (max-width: 1199px) {
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    text-align: right;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
  }
}

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #4B4B4B;
}

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

@media only screen and (max-width: 479px) {
  .product-options-bottom .price-box .price-as-configured {
    text-align: right;
  }
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}

.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
@media only screen and (max-width: 770px) {
  .product-view .block-related, .product-view .box-up-sell {
    padding: 0 45px;
  }
}

.block-related .mini-products-list:after, .box-up-sell .mini-products-list:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.block-related .mini-products-list .product-image, .box-up-sell .mini-products-list .product-image {
  float: none;
  width: 100%;
}

.block-related li, .box-up-sell li {
  margin-bottom: 9.4%;
  width: 31.25%;
  margin-right: 3.125%;
  float: left;
  clear: none;
}

@media only screen and (max-width: 770px) {
  .block-related li, .box-up-sell li {
    width: 100%;
    margin: 0;
  }
}

.block-related li:nth-of-type(3n), .box-up-sell li:nth-of-type(3n) {
  margin-right: 0;
}

.ie8 .block-related li, .ie8 .box-up-sell li {
  margin: 0 1.5625% 9.4%;
}

.block-related li a:hover, .block-related li a:focus, .box-up-sell li a:hover, .box-up-sell li a:focus {
  background: white;
}

.block-related .block-title,
.block-related .box-title, .box-up-sell .block-title,
.box-up-sell .box-title {
  padding: 0;
  margin-bottom: 35px;
}

@media only screen and (max-width: 770px) {
  .block-related .block-title,
  .block-related .box-title, .box-up-sell .block-title,
  .box-up-sell .box-title {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .block-related .block-title,
  .block-related .box-title, .box-up-sell .block-title,
  .box-up-sell .box-title {
    margin-bottom: 10px;
  }
}

.block-related .block-title h2,
.block-related .box-title h2, .box-up-sell .block-title h2,
.box-up-sell .box-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 44px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 43px;
  transition: all 300ms ease;
}

@media only screen and (max-width: 770px) {
  .block-related .block-title h2,
  .block-related .box-title h2, .box-up-sell .block-title h2,
  .box-up-sell .box-title h2 {
    font-size: 49px;
  }
}

@media only screen and (max-width: 770px) {
  .block-related .block-title h2,
  .block-related .box-title h2, .box-up-sell .block-title h2,
  .box-up-sell .box-title h2 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 479px) {
  .block-related .block-title h2,
  .block-related .box-title h2, .box-up-sell .block-title h2,
  .box-up-sell .box-title h2 {
    font-size: 20px;
  }
}

.block-related .block-subtitle, .box-up-sell .block-subtitle {
  margin-bottom: 7px;
}

.block-related .product, .box-up-sell .product {
  position: relative;
}

.block-related .product-details, .box-up-sell .product-details {
  margin: 0;
  width: 100%;
  text-align: center;
}

.block-related .product-name, .box-up-sell .product-name {
  margin: 0;
  float: none;
  width: 100%;
  padding: 0;
}

@media only screen and (max-width: 770px) {
  .block-related .product-name, .box-up-sell .product-name {
    font-size: 13px;
  }
}

.block-related .price-box, .box-up-sell .price-box {
  margin: 0;
}

.block-related .price-box .price, .box-up-sell .price-box .price {
  font-size: 14px;
  line-height: 25px;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px;
}

.box-up-sell .ratings {
  display: none;
}

.catalog-product-view {
  perspective: none;
}

.catalog-product-view .block-viewed {
  clear: both;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5.5% 3.0833%;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-viewed {
    padding: 0 45px;
    margin-bottom: 60px;
  }
}

.catalog-product-view .block-viewed .block-title {
  text-align: center;
  margin-bottom: 35px;
  padding: 0;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-viewed .block-title {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .catalog-product-view .block-viewed .block-title {
    margin-bottom: 10px;
  }
}

.catalog-product-view .block-viewed .block-title strong {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 44px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 35px;
  letter-spacing: 1px;
  line-height: 43px;
  transition: all 300ms ease;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-viewed .block-title strong {
    font-size: 49px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-viewed .block-title strong {
    font-size: 28px;
  }
}

@media only screen and (max-width: 479px) {
  .catalog-product-view .block-viewed .block-title strong {
    font-size: 20px;
  }
}

.catalog-product-view .block-viewed .mini-products-list {
  text-align: center;
}

.catalog-product-view .block-viewed li {
  width: 22%;
  display: inline-block;
  margin: 0 2.9% 6% 0;
  vertical-align: top;
}

.catalog-product-view .block-viewed li:last-of-type {
  margin-right: 0;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-viewed li {
    width: 100%;
    margin: 0;
  }
}

.catalog-product-view .block-viewed a {
  display: block;
  width: 100%;
}

.catalog-product-view .block-viewed a img {
  width: 100%;
}

.catalog-product-view .block-viewed .product-image {
  max-width: 100%;
  float: none;
}

.catalog-product-view .block-viewed .product-details {
  margin: 0;
  text-align: center;
}

.catalog-product-view .block-viewed .product-details .product-name {
  float: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .block-viewed .product-details .product-name {
    font-size: 13px;
  }
}

.catalog-product-view .block-viewed .price-box {
  margin: 0;
}

.catalog-product-view .block-viewed .price-box .price {
  font-size: 14px;
  line-height: 25px;
}

/* -------------------------------------------- *
 * Product Description Bullets
 */
ul.additional-info-bullets {
  margin-top: 20px;
}

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

.map-popup {
  background: #FFFFFF;
  border: 5px solid #CCCCCC;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}

@media only screen and (min-width: 771px) {
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}

@media only screen and (max-width: 770px) {
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}

.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}

.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}

.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}

.map-popup .map-popup-content {
  border-top: 1px solid #EDEDED;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-content {
    text-align: center;
  }
}

.map-popup .map-popup-checkout {
  padding: 10px 0;
}

.map-popup .map-popup-checkout form:after:before, .map-popup .map-popup-checkout form:after:after {
  content: " ";
  display: table;
}

.map-popup .map-popup-checkout form:after:after {
  clear: both;
}

.map-popup .map-popup-checkout span {
  display: block;
}

.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}

.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}

.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}

.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}

.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}

.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}

.map-popup .map-popup-checkout .paypal-logo:after:before, .map-popup .map-popup-checkout .paypal-logo:after:after {
  content: " ";
  display: table;
}

.map-popup .map-popup-checkout .paypal-logo:after:after {
  clear: both;
}

.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  .map-popup .map-popup-checkout .button,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none;
  }
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}

.map-popup .map-popup-checkout:after:before, .map-popup .map-popup-checkout:after:after {
  content: " ";
  display: table;
}

.map-popup .map-popup-checkout:after:after {
  clear: both;
}

.map-popup .map-popup-price {
  padding: 10px 0;
}

@media only screen and (max-width: 479px) {
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}

.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}

.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}

.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after:before, .block-compare .product-name:after:after {
  content: " ";
  display: table;
}

.block-compare .product-name:after:after {
  clear: both;
}

.compare-table .product-image {
  display: inline-block;
}

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}

.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-table, table.cart-table {
  float: left;
  width: 65%;
}

.cart .button {
  white-space: normal;
}

.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 34%;
  padding-left: 20px;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 20px;
  background: #fff;
}

.cart-totals:after,
.cart-forms .discount:after,
.cart-forms .giftcard:after,
.cart-forms .shipping:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

.checkout-cart-index #postcode {
  width: 100%;
}

.checkout-cart-index .product-options p.required {
  top: -16px;
}

.display-both-prices .cart-table {
  float: none;
  width: 100%;
}

.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}

.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}

.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}

.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
  }
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}

@media only screen and (max-width: 599px) {
  .product-cart-sku {
    display: none;
  }
  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}

.display-single-price:after:before, .display-single-price:after:after {
  content: " ";
  display: table;
}

.display-single-price:after:after {
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  padding-right: 20px;
  margin-bottom: 15px;
}

.cart .page-title:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.cart .page-title:after:before, .cart .page-title:after:after {
  content: " ";
  display: table;
}

.cart .page-title:after:after {
  clear: both;
}

.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

@media only screen and (max-width: 770px) {
  .cart .page-title h1 {
    margin-bottom: 35px;
  }
}

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}

.checkout-types li {
  vertical-align: top;
  margin: 0 0 5px 5px;
}

.checkout-types li:after:before, .checkout-types li:after:after {
  content: " ";
  display: table;
}

.checkout-types li:after:after {
  clear: both;
}

.checkout-types li img {
  display: inline;
  vertical-align: top;
}

.checkout-types li:first-child {
  margin-left: 0;
}

.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}

.checkout-types.top li {
  display: inline-block;
}

.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}

.checkout-types.top .bml_button img {
  display: block;
}

.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}

@media only screen and (min-width: 770px) {
  .checkout-types.top .paypal-logo {
    margin-top: 10px;
    float: left;
    clear: left;
  }
  .checkout-types.top .paypal-or {
    clear: left;
  }
}

@media only screen and (max-width: 770px) {
  .checkout-types.top .paypal-logo, .checkout-types.top .paypal-or, .checkout-types.top .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}

.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}

.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

@media only screen and (min-width: 770px) {
  .checkout-types.bottom li {
    text-align: center;
  }
  .checkout-types.bottom li .paypal-or {
    padding-right: 0px;
    text-align: center;
  }
}

@media only screen and (min-width: 741px) {
  .checkout-types.bottom .paypal-or {
    text-align: center;
  }
}

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

@media only screen and (max-width: 770px) {
  .cart-totals .checkout-types .btn-checkout {
    width: 100%;
    letter-spacing: -0.8px;
  }
}

@media only screen and (max-width: 770px) {
  .checkout-types {
    float: none;
    text-align: center;
  }
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }
  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 599px) {
  .btn-checkout {
    width: 100%;
  }
}

.cart-table {
  font-family: "MontserratBold";
  background: none;
}

.cart-table th,
.cart-table td,
.cart-table tbody td {
  vertical-align: top;
}

.cart-table h2 {
  color: #4B4B4B;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "MontserratBold";
}

.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}

.cart-table tr {
  border-bottom: 2px solid #4B4B4B;
}

.cart-table tfoot tr {
  background: none;
}

.cart-table tfoot tr > td:after:before, .cart-table tfoot tr > td:after:after {
  content: " ";
  display: table;
}

.cart-table tfoot tr > td:after:after {
  clear: both;
}

.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "MontserratBold";
}

.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}

.cart-table .product-cart-actions .button {
  padding: 6px 19px 5px 20px;
  background: #07489E;
  position: relative;
  font-size: 14px;
  line-height: 32px;
  width: 100%;
}

.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}

.cart-table .product-cart-image img {
  max-width: 100%;
  width: 100%;
}

.cart-table .product-cart-image a.cart-edit {
  display: none;
}

.cart-table .product-cart-sku {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}

.cart-table .product-cart-sku .label {
  font-weight: 600;
}

.cart-table .btn-empty {
  float: left;
}

.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}

.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}

.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #F38230;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}

.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #F38230;
  border-bottom: none;
  right: -15px;
  top: 6px;
}

.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}

.cart-table .cart-links > li > a {
  display: block;
}

.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}

.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}

.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #D9D7D1;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: auto;
  padding: 0 8px 0 9px;
}

.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}

.cart-table .item-options {
  padding-left: 15px;
}

@media only screen and (max-width: 770px) {
  .cart-table th {
    font-size: 12px;
  }
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}

@media only screen and (max-width: 699px) {
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  .cart-table tr:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .cart-table tr:after:before, .cart-table tr:after:after {
    content: " ";
    display: table;
  }
  .cart-table tr:after:after {
    clear: both;
  }
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  .cart-table td {
    border: none;
    display: block;
  }
  .cart-table td[data-rwd-label] {
    padding-left: 15px;
    margin-bottom: 6px;
  }
  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }
  .cart-table td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "MontserratBold";
    padding-right: 5px;
    text-transform: uppercase;
  }
  .cart-table td.product-cart-price {
    text-align: left;
  }
  .cart-table h2 {
    font-size: 12px;
  }
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 20px;
    font-size: 13px;
  }
  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }
  .cart-table .product-cart-image {
    width: 25%;
    float: left;
    padding-bottom: 0;
  }
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    float: right;
    width: 75%;
  }
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right;
  }
  .cart-table .product-cart-remove,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }
  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  .cart-table .product-cart-actions .button {
    display: none;
  }
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  .cart-table .product-cart-actions {
    text-align: left;
  }
  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
  }
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }
  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 18px;
}

.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #D9D7D1;
}

.shipping select.validation-failed {
  border-color: #D65E56;
}

.shipping .shipping-desc {
  display: none;
}

.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}

.shipping .form-list:after:before, .shipping .form-list:after:after {
  content: " ";
  display: table;
}

.shipping .form-list:after:after {
  clear: both;
}

.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}

.shipping .form-list .shipping-country {
  width: 48%;
}

.shipping .form-list .shipping-region {
  width: 48%;
}

.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 48%;
}

.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}

.shipping .form-list .input-box {
  padding-top: 0;
}

.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}

.shipping .form-list label {
  font-family: "MontserratBold";
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}

.shipping .sp-methods dd {
  margin-bottom: 10px;
}

.shipping .sp-methods label {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}

.shipping .sp-methods label span {
  font-family: "MontserratBold";
  font-weight: bold;
  font-style: normal;
}

.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
  width: 100%;
  background-color: #6689CC;
  color: white;
}

.shipping #co-shipping-method-form .buttons-set .button:hover {
  background: #063d86;
  cursor: pointer;
}

.shipping #co-shipping-method-form .buttons-set .button:active {
  background: #05326d;
  color: #FFFFFF;
}

.shipping #co-shipping-method-form .buttons-set .button:focus {
  background-color: #05326d;
  outline: none;
  color: #FFFFFF;
}

.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #ededed;
  min-width: 220px;
}

.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

@media only screen and (max-width: 770px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}

.cart .cart-totals {
  text-align: right;
}

.cart .cart-totals:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.cart .cart-totals:after:before, .cart .cart-totals:after:after {
  content: " ";
  display: table;
}

.cart .cart-totals:after:after {
  clear: both;
}

.cart .cart-totals table {
  font-family: "MontserratBold";
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
  background: #fff;
}

.cart .cart-totals table td {
  padding: 2px 0px;
}

.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}

.cart .cart-totals table td:last-child {
  min-width: 50px;
}

.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}

.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}

.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}

.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right;
  }
}

@media only screen and (max-width: 770px) {
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}

.discount-form:after:before, .discount-form:after:after,
#giftcard-form:after:before,
#giftcard-form:after:after {
  content: " ";
  display: table;
}

.discount-form:after:after,
#giftcard-form:after:after {
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}

#discount-coupon-form:after,
.cart .giftcard:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}

#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  min-width: 105px;
  display: block;
  margin-right: 10px;
}

#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: block;
}

#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: block;
}

#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}

#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}

#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

.cart .giftcard p {
  margin-bottom: 7px;
}

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}

.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell h2 {
  color: #07489E;
  font-size: 32px;
  line-height: 36px;
}

.crosssell .item a.product-image {
  width: auto;
  float: none;
}

.crosssell .actions {
  display: none;
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
@media only screen and (max-width: 979px) {
  .crosssell {
    /* Undo three-column config */
  }
  .crosssell .products-grid > li:nth-child(even),
  .crosssell .products-grid > li:nth-child(3n),
  .crosssell .products-grid > li {
    width: 47.7273%;
    margin-right: 4.5455%;
  }
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}

@media only screen and (max-width: 599px) {
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}

@media only screen and (max-width: 320px) {
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

.checkout-onepage-index .col-main {
  width: auto;
  float: none;
}

.checkout-onepage-index .col-main ol#checkoutSteps li.section:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (min-width: 980px) {
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 20px;
  }
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block;
  }
  .checkout-onepage-index .col-right {
    padding-left: 0;
  }
}

.calendar_table .input-box .select-container,
.calendar_table .input-box .location_label {
  display: none;
}

.opc select {
  width: 365px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #e6e6e6;
  position: relative;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.opc .section .step-title:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.opc .section .step-title h2 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.opc .section .step-title:after:before, .opc .section .step-title:after:after {
  content: " ";
  display: table;
}

.opc .section .step-title:after:after {
  clear: both;
}

.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

.opc .section.allow:not(.active) .step-title:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.opc .section.active .step-title {
  border-bottom: 1px solid #e6e6e6;
}

.opc .section .step-title a {
  display: none;
}

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px;
}

.no-touch .opc .section .step-title a:hover {
  text-decoration: none;
}

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #698BC7;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.opc .section.allow .step-title .number {
  background-color: #b4c5e3;
}

.opc .section.allow .step-title h2 {
  color: gray;
}

.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #F38230;
}

.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px;
}

.opc .section .step {
  padding: 20px;
}

.opc .section .step:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.opc .section .step:after:before, .opc .section .step:after:after {
  content: " ";
  display: table;
}

.opc .section .step:after:after {
  clear: both;
}

@media only screen and (max-width: 979px) {
  .opc .section .step {
    padding: 10px;
  }
}

.opc .section .step .wide {
  margin-bottom: 25px;
}

.opc .section .step .wide .input-box {
  max-width: 100%;
}

.opc .section .step p.description {
  margin-bottom: 20px;
}

.opc .section .step .button {
  width: auto;
}

.opc select {
  max-width: 365px;
  width: 100%;
}

.opc h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
}

@media only screen and (max-width: 770px) {
  .opc h3 {
    font-size: 26px;
  }
}

.opc .section .buttons-set {
  text-align: left;
}

.opc .section .buttons-set #addressverification_billing,
.opc .section .buttons-set #addressverification_shipping {
  float: right;
}

@media only screen and (max-width: 770px) {
  .opc .section .buttons-set #addressverification_billing,
  .opc .section .buttons-set #addressverification_shipping {
    width: 100%;
    float: none;
    max-width: none;
  }
}

.opc .section .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}

.opc .section .buttons-set button.button.continue {
  float: right;
}

@media only screen and (max-width: 770px) {
  .opc .section .buttons-set button.button {
    letter-spacing: -0.6px;
    float: none;
    width: 100%;
    clear: both;
    margin-top: 10px;
    margin-right: 0;
    max-width: 100%;
  }
  .opc .section .buttons-set button.button.continue {
    float: none;
  }
}

@media only screen and (max-width: 599px) {
  .opc .section .buttons-set button.button.continue span {
    display: none;
  }
  .opc .section .buttons-set button.button.continue:before {
    display: inline-block;
    width: 100%;
    height: 100%;
    content: "Continue";
  }
}

.opc .section .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}

.opc .section .buttons-set .back-link {
  float: right;
  margin: 0;
}

.opc .section .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
}

@media only screen and (max-width: 479px) {
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0;
  }
}

.opc #opc-login .step {
  padding: 0px;
}

.opc #opc-login .col2-set {
  clear: both;
}

.opc #opc-login label[for="login:guest"], .opc #opc-login input[value="guest"] {
  display: none;
}

.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

@media only screen and (max-width: 770px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}

#opc-payment .note {
  padding: 10px;
}

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  transition: opacity 300ms linear 0;
}

.opc.opc-firststep-login .section#opc-login .step-title .number {
  transition: width 80ms linear 0;
}

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  transition: margin-left 80ms linear 0;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 0;
  display: none;
}

body.opc-has-progressed-from-login .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body.opc-has-progressed-from-login .opc-block-progress-step-login {
  opacity: 1;
  display: block;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden;
}

body.opc-has-progressed-from-login .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 26px;
  overflow: visible;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

body.opc-has-progressed-from-login .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 45px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}

.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
  clear: both;
}

.sp-methods dt:first-child {
  margin: 0 0 5px;
}

.sp-methods dd li {
  margin: 5px 0;
}

.sp-methods label img {
  float: left;
}

.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}

.sp-methods .price {
  font-weight: bold;
}

.sp-methods .form-list {
  padding-left: 20px;
}

.sp-methods .form-list li {
  margin: 0 0 8px;
}

@media only screen and (max-width: 770px) {
  .sp-methods .form-list li:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .sp-methods .form-list li.credit-card-verification {
    clear: both;
  }
}

.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}

.sp-methods select.year {
  width: 96px;
}

.sp-methods input.cvv {
  width: 4em !important;
}

.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}

.sp-methods .checkmo-list li {
  margin: 0 0 5px;
}

.sp-methods .checkmo-list li:before, .sp-methods .checkmo-list li:after {
  content: " ";
  display: table;
}

.sp-methods .checkmo-list li:after {
  clear: both;
}

.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}

.sp-methods .checkmo-list address {
  float: left;
}

@media only screen and (max-width: 479px) {
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}

.sp-methods .release-amounts {
  margin: 0.5em 0;
}

.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

.sp-methods dd ul br {
  display: none;
}

body.checkout-onepage-index #checkout-step-login .register-block {
  clear: both;
}

body.checkout-onepage-index .fancybox-inner.forgot-password input.input-text {
  width: 100%;
}

body.checkout-onepage-index .fancybox-inner.forgot-password .input-box {
  max-width: 100%;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}

.block-progress .block-title {
  margin-bottom: 15px;
}

.block-progress .block-content {
  font-size: 13px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 5px;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  text-transform: none;
  margin-bottom: 6px;
  font-weight: normal;
  color: gray;
}

@media only screen and (max-width: 770px) {
  .block-progress dt {
    font-size: 16px;
  }
}

.block-progress dt.complete {
  color: #07489E;
}

.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-style: italic;
}

.block-progress dd address {
  font-style: italic;
}

.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}

.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}

.block-progress .payment-info dt:after {
  content: ': ';
}

.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}

.block-progress .payment-info:after:before, .block-progress .payment-info:after:after {
  content: " ";
  display: table;
}

.block-progress .payment-info:after:after {
  clear: both;
}

/* review step */
#checkout-review-table .btn-remove img {
  display: none;
}

@media only screen and (min-width: 771px) {
  #checkout-review-table td .inline h3.product-name {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 770px) {
  #checkout-review-table {
    /* Helpers */
    border-bottom: none;
  }
  #checkout-review-table td .inline:first-of-type {
    display: none;
  }
  #checkout-review-table tr,
  #checkout-review-table th,
  #checkout-review-table td {
    display: block;
  }
  #checkout-review-table thead th {
    border-right: 0;
    border-left: 0;
  }
  #checkout-review-table thead th.lin-hide {
    display: none;
  }
  #checkout-review-table thead th:nth-child(1n+2) {
    display: none;
  }
  #checkout-review-table tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  #checkout-review-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  #checkout-review-table tbody td.lin-hide {
    display: none;
  }
  #checkout-review-table tbody td:first-child {
    padding-top: 10px;
  }
  #checkout-review-table tbody td:first-child,
  #checkout-review-table tbody td:first-child h3 {
    font-size: 19px;
  }
  #checkout-review-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  #checkout-review-table tbody td[data-rwd-label].last {
    padding-bottom: 10px;
  }
  #checkout-review-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "MontserratBold";
    padding-right: 5px;
    text-transform: uppercase;
  }
  #checkout-review-table tfoot tr {
    display: block;
    text-align: right;
  }
  #checkout-review-table tfoot tr:after:before, #checkout-review-table tfoot tr:after:after {
    content: " ";
    display: table;
  }
  #checkout-review-table tfoot tr:after:after {
    clear: both;
  }
  #checkout-review-table tfoot td {
    display: block;
    float: left;
  }
  #checkout-review-table tfoot td.lin-hide {
    display: none;
  }
  #checkout-review-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  #checkout-review-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  #checkout-review-table .linearize-hide {
    display: none;
  }
  #checkout-review-table .linearize-unpad {
    padding: 0;
  }
  #checkout-review-table .linearize-show {
    display: block;
  }
}

#checkout-review-table tbody tr, #checkout-review-table tbody th, #checkout-review-table tbody td {
  clear: both;
}

#checkout-review-table-wrapper {
  clear: both;
}

#checkout-review-table-wrapper tbody td[data-rwd-label] {
  text-align: right;
  padding-left: 30px;
  padding-right: 0;
}

#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

#review-buttons-container .btn-checkout {
  min-width: 220px;
}

#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}

#review-buttons-container .f-left {
  float: right;
}

@media only screen and (max-width: 599px) {
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}

/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
  text-transform: none;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
}

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}

#checkout-step-review .opc-block-progress .block-title {
  display: none;
}

#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}

#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}

@media only screen and (max-width: 479px) {
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto;
  }
}

#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 479px) {
  #checkout-review-table thead > tr > th {
    display: none;
  }
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}

#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}

#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
.gift-messages-form .item {
  margin-top: 30px;
}

.gift-messages-form .item:before, .gift-messages-form .item:after {
  content: " ";
  display: table;
}

.gift-messages-form .item:after {
  clear: both;
}

.gift-messages-form .item h5 {
  font-weight: bold;
}

.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}

.gift-messages-form .item .details {
  float: left;
}

.gift-message-form .inner-box > div {
  width: 100%;
  margin-top: 20px;
  display: block;
}

.gift-message-form .inner-box > div:before, .gift-message-form .inner-box > div:after {
  content: " ";
  display: table;
}

.gift-message-form .inner-box > div:after {
  clear: both;
}

.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 20px;
}

.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}

.gift-message-form .gift-wrapping-form img {
  float: left;
}

.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}

.gift-message-form .gift-wrapping-form .gift-wrapping-design:after:before, .gift-message-form .gift-wrapping-form .gift-wrapping-design:after:after {
  content: " ";
  display: table;
}

.gift-message-form .gift-wrapping-form .gift-wrapping-design:after:after {
  clear: both;
}

.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}

.gift-message-form #allow-gift-options-for-items-container ol {
  margin-bottom: 40px;
}

.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #e6e6e6;
}

.gift-message-form .gift-item:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.gift-message-form .gift-item:after:before, .gift-message-form .gift-item:after:after {
  content: " ";
  display: table;
}

.gift-message-form .gift-item:after:after {
  clear: both;
}

.gift-message-form .gift-item .product-img-box {
  width: 200px;
}

.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}

.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}

@media only screen and (max-width: 770px) {
  .gift-message-form .gift-item .product-img-box .product-name {
    font-size: 13px;
  }
}

.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

@media only screen and (max-width: 770px) {
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}

body.checkout-onepage-index #checkout-step-billing .field,
body.checkout-onepage-index #checkout-step-billing .fields .fields,
body.checkout-onepage-index #checkout-step-shipping .field,
body.checkout-onepage-index #checkout-step-shipping .fields .fields,
body.checkout-onepage-index #checkout-step-shipping_method .field,
body.checkout-onepage-index #checkout-step-shipping_method .fields .fields {
  margin-bottom: 25px;
}

body.checkout-onepage-index .field.name-lastname {
  clear: left;
}

.blueacorn-couponopc-checkout-container .button-wrapper {
  float: right;
}

.blueacorn-couponopc-checkout-container #coupon_code {
  width: 100%;
}

.blueacorn-couponopc-checkout-container label[for=coupon_code] {
  padding-left: 0px;
}

.gift-messaging-container {
  padding-top: 30px;
  clear: both;
}

.gift-messaging-container #choose-suggestion {
  margin-bottom: 30px;
  display: table-cell;
  width: 30%;
  text-align: right;
  color: #6689CC;
  cursor: pointer;
}

.gift-messaging-container .pre-selected-messages-inner {
  padding: 10px;
  text-align: center;
}

.gift-messaging-container .pre-selected-messages {
  background-color: #fff;
}

.gift-messaging-container .gift-note-heading {
  margin: 0;
  margin-bottom: 10px;
  color: #4B4B4B;
  font-family: Aleo, "Times New Roman", serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
}

.gift-messaging-container .gift-note {
  display: table-cell;
  width: 70%;
  color: #000;
}

.gift-messaging-container .validation-advice-custom {
  color: #D0021B;
  width: 100%;
}

.gift-messaging-container .input-text {
  margin-bottom: 30px;
}

.gift-messaging-container .pre-selected-messages.input-text {
  height: auto;
}

.gift-messaging-container li {
  cursor: pointer;
  cursor: hand;
}

.gift-messaging-container li:hover a {
  color: #07489E;
  text-decoration: none;
}

.gift-messaging-container li:hover a:hover {
  text-decoration: none;
}

body.checkout-onepage-success .items-list {
  padding-bottom: 30px;
}

.gift-note-confirmation-heading {
  font-size: 25px;
  text-align: left;
  margin-top: 30px;
}

.gift-note-confirmation {
  white-space: pre;
  text-align: left;
  size: 8px;
  font-family: Arial;
}

.gift-message-review .gift-message-review-title {
  padding: 10px;
  vertical-align: top;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.gift-message-review .gift-message-review-content {
  padding: 10px;
  vertical-align: top;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  word-break: break-word;
  height: auto;
  white-space: pre;
}

.paypal-express-review .page-title h1 {
  text-transform: none;
  text-align: center;
  line-height: 40px;
  font-size: 35px;
}

.paypal-express-review .col2-set {
  display: inline-block;
  clear: both;
  width: 48%;
}

@media only screen and (max-width: 770px) {
  .paypal-express-review .col2-set {
    width: 100%;
  }
}

.paypal-express-review .col2-set .col-1 {
  width: 50%;
  padding: 10px;
}

@media only screen and (max-width: 770px) {
  .paypal-express-review .col2-set .col-1 {
    width: 100%;
  }
}

.paypal-express-review .col2-set .col-2 {
  width: 100%;
  padding: 10px;
}

@media only screen and (max-width: 770px) {
  .paypal-express-review .small-on-mobile {
    font-size: 22px !important;
  }
}

.paypal-express-review .info-set h2 {
  font-size: 25px;
}

@media only screen and (max-width: 770px) {
  .paypal-express-review .info-set h2 {
    line-height: 1.5;
  }
}

.paypal-express-review .info-set h2 a {
  font-size: 24px;
}

.paypal-express-review .info-set h3 {
  font-size: 23px;
}

.paypal-express-review .info-set h3 a {
  font-size: 15px;
}

.paypal-express-review .info-set .box-title {
  font-size: 23px;
  margin-bottom: 10px;
}

.paypal-express-review .paypal-billing .col-1 {
  width: 100%;
}

.paypal-express-review .box-content #shipping_method_form fieldset {
  width: 80%;
}

@media only screen and (max-width: 770px) {
  .paypal-express-review .box-content #shipping_method_form fieldset {
    width: 100%;
  }
}

input[name="shipping[fax]"] ~ li.fields, input[name="billing[fax]"] ~ li.fields {
  display: none !important;
}

#billing_subscribed_label, input[name="shipping[same_as_billing]"] {
  margin-top: 20px;
}

#checkout-onepage-progress-totals-tbody .a-right .price {
  white-space: nowrap;
}

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}

.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}

.checkout-onepage-success .buttons-set .button {
  margin-left: 0;
}

.checkout-onepage-success .buttons-set button {
  float: none;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-success .main-container .main {
    margin-top: 50px;
  }
}

.checkout-onepage-success .main .summary .summary-title {
  background: #6689CC;
}

.checkout-onepage-success .main .summary > div {
  border: 1px solid #6689CC;
}

/* ============================================ *
 * Checkout - Success - Account Creation Form
 * ============================================ */
.checkout-onepage-success .account-create {
  margin-top: 80px;
  text-align: left;
  clear: both;
  border-top: 1px solid #EDEDED;
}

.checkout-onepage-success .account-create .page-title {
  text-align: center;
  margin-bottom: 30px;
}

.checkout-onepage-success .account-create .fieldset {
  float: left;
  width: 45%;
  margin-left: 10%;
  margin-top: 0;
}

.checkout-onepage-success .account-create .fieldset:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 599px) {
  .checkout-onepage-success .account-create .fieldset {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .checkout-onepage-success .account-create .fieldset:first-child {
    margin-bottom: 50px;
  }
  .checkout-onepage-success .account-create .fieldset .input-box {
    max-width: 100%;
  }
}

.checkout-onepage-success .account-create h2.legend {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-success .account-create h2.legend {
    font-size: 26px;
  }
}

@media only screen and (max-width: 599px) {
  .checkout-onepage-success .account-create h2.legend {
    text-align: center;
  }
}

.checkout-onepage-success .account-create .buttons-set .back-link, .checkout-onepage-success .account-create .buttons-set p.required {
  display: none;
}

.checkout-onepage-success .account-create .buttons-set .button {
  margin-left: 0;
}

.sales-order-print .logo {
  height: 100px;
  position: relative;
  display: inline-block;
}

.sales-order-print h1 {
  line-height: 26px;
  font-size: 26px;
  margin-bottom: 10px;
}

.sales-order-print h2 {
  line-height: 24px;
  font-size: 24px;
  margin-bottom: 10px;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after:before, .clearfix:after:after,
.configurable-swatch-list:after:before,
.configurable-swatch-list:after:after,
.product-view .product-options .swatch-attr:after:before,
.product-view .product-options .swatch-attr:after:after {
  content: " ";
  display: table;
}

.clearfix:after:after,
.configurable-swatch-list:after:after,
.product-view .product-options .swatch-attr:after:after {
  clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #07489E;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #CCCCCC;
  margin: 0 0 3px;
}

.swatch-link img {
  border-radius: 2px;
}

.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}

.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}

.swatch-link.has-image .swatch-label {
  position: relative;
}

.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
}

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}

.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}

.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}

.configurable-swatch-list .not-available .x {
  display: block;
}

.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}

.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}

.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}

.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}

#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}

#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}

#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #7BA2D3;
}

#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}

#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}

#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 770px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}

.currently .swatch-current {
  position: relative;
}

.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}

.currently .swatch-current span {
  display: block;
  float: left;
}

.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}

.currently .swatch-link:hover {
  border-color: #CCCCCC;
  cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #7BA2D3;
}

.configurable-swatch-box {
  background: none !important;
}

.configurable-swatch-box select.swatch-select {
  display: none;
}

.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #D65E56;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
.availability.out-of-stock span {
  color: #D65E56;
}

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}

.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 12px;
}

.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}

.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #F38230;
  padding-left: 5px;
}

.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}

.product-view .product-options .select-label {
  display: none;
}

.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}

.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}

.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}

.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

@media only screen and (min-width: 480px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #EDEDED;
  }
}

@media only screen and (min-width: 770px) {
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 60px;
    border-left: 1px solid #EDEDED;
  }
}

@media only screen and (max-width: 479px) {
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 30px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    border-top: 1px solid #EDEDED;
  }
}

@media only screen and (max-width: 770px) {
  .customer-account-login .col2-set p.required {
    display: none;
  }
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: gray;
}

.remember-me-box a.hide {
  display: none;
}

.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px;
}

.remember-me-popup {
  display: none;
  border: 1px solid #CCCCCC;
  padding: 10px;
  position: relative;
}

.remember-me-popup.show {
  display: block;
}

.remember-me-popup p {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}

.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .buttons-set {
  max-width: 455px;
}

.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 30px;
}

@media only screen and (max-width: 479px) {
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin-left: 0;
  }
}

.customer-account-create .fieldset .hidden {
  display: none;
}

.customer-account-create #remember-me-popup {
  max-width: 455px;
}

.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  margin-left: 30px;
  max-width: 400px;
}

@media only screen and (max-width: 479px) {
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set {
    margin-left: 0;
  }
}

.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

.customer-account-forgotpassword .fieldset h2 {
  font-size: 25px;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}

body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}

body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}

body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}

body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}

body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}

body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}

body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}

body.customer-account .data-table {
  margin-top: 5px;
}

body.customer-account .data-table td a {
  font-family: "MontserratBold";
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}

body.customer-account .data-table span.nobr {
  white-space: normal;
}

body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}

body.customer-account .data-table td.view a {
  display: block;
}

body.customer-account .data-table .separator {
  display: none;
}

body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}

body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 20px;
}

body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}

body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}

body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}

body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 20px;
}

body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}

body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}

body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
  font-size: 15px;
}

body.customer-account .sidebar .block-reorder .actions {
  text-align: center;
}

body.customer-account .sidebar .block-reorder .actions .btn-cart {
  float: none;
  width: 90%;
  max-width: 200px;
}

body.customer-account .sidebar .block-reorder .actions a {
  display: block;
  float: none;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}

.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}

.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}

.dashboard .box-head a {
  padding: 10px;
}

.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}

.dashboard .box-account {
  padding-bottom: 40px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 45px;
}

.dashboard .box-account p,
.dashboard .box-account address {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-style: italic;
}

.dashboard .col2-set {
  overflow: hidden;
}

.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.0968%;
  padding-bottom: 0;
}

.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}

.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}

.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}

.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}

.dashboard .box-reviews li:first-child {
  border-top: 0;
}

.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}

.dashboard .box-reviews li .details {
  margin-left: 20px;
}

.dashboard .box-reviews li .details .ratings {
  margin-bottom: 0;
}

.dashboard .box-reviews li .details .ratings:before, .dashboard .box-reviews li .details .ratings:after {
  content: " ";
  display: table;
}

.dashboard .box-reviews li .details .ratings:after {
  clear: both;
}

.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "MontserratBold";
  font-size: 13px;
  margin-right: 5px;
}

.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}

.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}

.my-account .addresses-list .item p {
  margin-top: 10px;
}

@media only screen and (max-width: 770px) {
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 30px;
}

.order-info:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}

.order-info dt {
  margin-right: 20px;
}

.order-info li {
  margin: 0 0 0 20px;
}

.order-info li.current {
  font-weight: 600;
}

.order-info li:first-child {
  margin-left: 0;
}

.order-date {
  font-family: "MontserratBold";
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}

.order-info-box:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}

.order-info-box + .order-info-box:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}

.order-info-box .col-2 {
  width: 52%;
}

.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}

.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "MontserratBold";
  font-weight: bold;
  line-height: 1.5;
}

.order-info-box .box-title h2:after {
  content: ':';
}

.order-info-box .box-content {
  float: left;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  line-height: 1.3;
}

.order-info-box .box-content th {
  padding-top: 10px;
}

.order-info-box .box-content td {
  padding-left: 20px;
}

.order-info-box .box-content strong {
  font-family: "MontserratBold";
  font-weight: normal;
  text-transform: uppercase;
}

#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}

#my-orders-table .option-value {
  margin-left: 20px;
}

#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}

ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}

ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}

ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

@media only screen and (max-width: 599px) {
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  #my-orders-table tr.bundle {
    border-color: #EDEDED;
  }
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 20px;
  }
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}

.order-additional {
  margin: 40px 0;
}

.order-gift-message dd {
  margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0;
  }
  body.customer-account .data-table td.view a {
    white-space: normal;
  }
}

@media only screen and (max-width: 979px) {
  body.customer-account .my-account .title-buttons {
    text-align: left;
  }
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px;
  }
}

@media only screen and (max-width: 770px) {
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status,
  body.customer-account .data-table.orders th.status {
    display: none;
  }
  body.customer-account .col-left.sidebar {
    clear: both;
    margin-top: 10px;
  }
  .order-info-box .box-content {
    clear: left;
  }
  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px;
  }
  .order-info dt {
    display: none;
  }
  .dashboard .page-title {
    margin-top: 20px;
  }
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  .dashboard .welcome-msg {
    font-family: "Montserrat", Verdana, Arial, sans-serif;
  }
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  .dashboard .box-account {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  .dashboard .col2-set .col-2 {
    float: right;
  }
}

@media only screen and (max-width: 599px) {
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}

@media only screen and (max-width: 479px) {
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 20px;
  }
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 20px;
  }
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 20px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 20px;
  }
  .order-info {
    margin-top: 20px;
  }
  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none;
  }
  .data-table.orders td.view {
    text-align: right;
  }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 100%;
    margin-top: 20px;
  }
  .order-info-box {
    margin: 0;
  }
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #EDEDED;
    padding: 20px 0;
  }
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }
  #my-reviews-table .nobr {
    white-space: normal;
  }
}

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}

body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}

body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #EDEDED;
  padding-top: 10px;
}

.my-account h1 {
  font-size: 35px;
}

.my-account h2 {
  font-size: 25px;
}

.my-account h3 {
  margin-top: 30px;
  font-size: 18px;
}

.my-account .page-title:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.address-list:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.customer-address-form.customer-account .back-link {
  display: none;
}

.customer-address-form.customer-account .buttons-set #addressverification_address {
  float: left;
  margin-left: 0;
}

@media only screen and (max-width: 1050px) {
  .customer-address-form.customer-account .buttons-set #addressverification_address {
    margin-top: 10px;
    max-width: none;
    clear: both;
  }
}

@media only screen and (max-width: 1050px) {
  .customer-address-form.customer-account .buttons-set button:not(#addresverification_address) {
    float: left;
    margin-left: 0;
  }
}

#addressverification_address,
#addressverification_billing,
#addressverification_shipping {
  width: auto;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 599px) {
  #addressverification_address,
  #addressverification_billing,
  #addressverification_shipping {
    width: 100%;
    font-size: 14px;
    height: auto;
  }
  #addressverification_address span,
  #addressverification_billing span,
  #addressverification_shipping span {
    white-space: normal;
  }
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px;
}

.contacts-index-index .buttons-set p.required {
  float: left;
}

@media only screen and (max-width: 599px) {
  .contacts-index-index .buttons-set {
    max-width: 330px;
    margin-left: 0;
  }
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px;
  }
  .contacts-index-index .buttons-set p.required {
    float: right;
  }
}

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 870px) and (min-width: 771px) {
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px;
  }
}

.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}

.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}

.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}

@media only screen and (max-width: 770px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  .paypal-review-order .field.inactive {
    display: none;
  }
}

.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}

.top-container .bml-ad span {
  display: inline-block;
}

.top-container .bml-ad span a {
  display: block;
}

.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}

.bml-ad span {
  display: block;
  line-height: 0;
}

.bml-ad a {
  display: inline-block;
  max-width: 100%;
}

.bml-ad a:hover {
  opacity: 0.7;
}

.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

@media only screen and (max-width: 770px) {
  .bml-ad.small {
    display: block;
  }
}

@media only screen and (min-width: 771px) {
  .bml-ad.large {
    display: block;
  }
}

div.paypal-logo {
  text-align: center;
  margin: 20px 0;
  max-width: 100%;
}

div.paypal-logo span {
  display: block;
  width: 100%;
}

div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}

div.paypal-logo span a img {
  max-width: 100%;
}

div.paypal-logo span > img {
  display: none;
}

.checkout-types div.paypal-logo {
  text-align: right;
}

.bml-checkout-type {
  list-style-type: none;
}

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}

.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}

.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}

.sidebar .paypal-logo > a img {
  display: block;
}

.sidebar .paypal-logo .label {
  margin-top: 4px;
}

.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}

#customer-reviews .review-heading {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 5px;
}

#customer-reviews .review-heading:after:before, #customer-reviews .review-heading:after:after {
  content: " ";
  display: table;
}

#customer-reviews .review-heading:after:after {
  clear: both;
}

#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}

#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}

#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}

#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "MontserratBold";
  font-size: 10px;
  text-transform: uppercase;
}

#customer-reviews .review-heading .pager .amount {
  display: none;
}

#customer-reviews h2 {
  color: #07489E;
  font-size: 12px;
  text-transform: uppercase;
}

#customer-reviews h2 span {
  color: #4B4B4B;
}

#customer-reviews h3 {
  font-family: "MontserratBold";
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}

#customer-reviews h3 span {
  color: #07489E;
}

#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}

#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "MontserratBold";
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}

#customer-reviews .fieldset h4 em {
  display: none;
}

#customer-reviews .fieldset .form-list {
  font-family: "MontserratBold";
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}

#customer-reviews .fieldset .form-list .inline-label:after:before, #customer-reviews .fieldset .form-list .inline-label:after:after {
  content: " ";
  display: table;
}

#customer-reviews .fieldset .form-list .inline-label:after:after {
  clear: both;
}

#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}

#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}

#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}

#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}

#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}

#customer-reviews dl {
  font-family: "MontserratBold";
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}

#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}

#customer-reviews dl dd {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin: 10px 0;
}

#customer-reviews dl dd .ratings-table {
  font-family: "MontserratBold";
  font-size: 12px;
  width: 100%;
}

#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}

#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}

#customer-reviews dl dd table {
  margin: 15px 0;
}

#customer-reviews dl dd .review-meta {
  color: #07489E;
  font-family: "MontserratBold";
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 10px;
}

.review-summary-table thead {
  background: transparent;
}

.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}

.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px;
}

.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}

.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}

.review-summary-table .rating-box .rating-number {
  display: none;
}

.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "MontserratBold";
  font-size: 12px;
  text-transform: uppercase;
}

.ratings-table th {
  padding-right: 10px;
}

.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}

.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

@media only screen and (max-width: 770px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0;
  }
}

@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  #customer-reviews .buttons-set {
    width: 100%;
  }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%;
  }
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}

@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}

/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}

.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}

.review-product-view .product-review .product-img-box > a {
  width: 100%;
}

.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .review-product-view .product-review .product-img-box {
    max-width: 100%;
  }
}

/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #EDEDED;
}

.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}

.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}

.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}

.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}

.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 1px;
  background-color: #FFFFFF;
  position: relative;
}

.slideshow-pager span:hover:before {
  background-color: #063d86;
}

.slideshow-pager span.cycle-pager-active:before {
  background-color: #05326d;
}

.slideshow-pager > * {
  cursor: pointer;
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}

.slideshow-prev.disabled,
.slideshow-next.disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default;
}

.slideshow-prev {
  left: 8px;
}

.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}

.slideshow-prev:hover:before {
  border-color: transparent #063d86 transparent transparent;
}

.slideshow-next {
  right: 8px;
}

.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}

.slideshow-next:hover:before {
  border-color: transparent transparent transparent #063d86;
}

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}

#wishlist-table.clean-table {
  font-family: "MontserratBold";
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}

#wishlist-table.clean-table th {
  border-bottom: 1px solid #4B4B4B;
}

#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}

#wishlist-table.clean-table thead th {
  font-family: "MontserratBold";
  font-size: 12px;
  text-transform: uppercase;
}

#wishlist-table .product-name {
  font-size: 16px;
  font-family: "MontserratBold";
  margin-bottom: 0;
  text-transform: uppercase;
}

#wishlist-table .product-name a {
  color: #6B6B6B;
}

#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "MontserratBold";
  margin: 5px 0;
}

#wishlist-table textarea {
  border: 1px solid #D9D7D1;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "MontserratBold";
}

#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}

#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}

#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}

#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}

#wishlist-table textarea:focus {
  border: 1px solid #7BA2D3;
}

#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}

#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}

#wishlist-table .cart-cell {
  text-align: center;
}

#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}

#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}

#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}

#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}

#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}

#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}

#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}

#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}

#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}

#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}

#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}

#wishlist-table .price-box {
  font-family: "MontserratBold";
  font-size: 12px;
}

#wishlist-table .price-box .price {
  color: #4B4B4B;
}

#wishlist-table .giftregisty-add {
  margin-top: 5px;
}

#wishlist-table .giftregisty-add .change {
  display: none;
}

#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #698BC7;
  margin-bottom: 3px;
}

#wishlist-table .truncated .details {
  background: none;
  color: #698BC7;
}

#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

@media only screen and (max-width: 1199px) {
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 979px) {
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  #wishlist-table.clean-table td textarea {
    height: 100px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  #wishlist-table .product-name {
    font-size: 13px;
  }
}

@media only screen and (max-width: 770px) {
  #wishlist-table:after:before, #wishlist-table:after:after {
    content: " ";
    display: table;
  }
  #wishlist-table:after:after {
    clear: both;
  }
  #wishlist-table .product-name {
    font-size: 16px;
  }
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table tr:after:before, #wishlist-table tr:after:after {
    content: " ";
    display: table;
  }
  #wishlist-table tr:after:after {
    clear: both;
  }
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}

@media only screen and (max-width: 599px) {
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide;
  }
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 20px;
  }
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}

/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}

.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}

.block-wishlist .price-box {
  float: left;
  margin: 0;
}

.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}

.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: inline-block;
  float: right;
  margin-right: 8%;
  width: 40%;
}

@media only screen and (max-width: 770px) {
  .header-minicart {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}

.header-minicart .empty {
  padding: 10px;
  text-align: center;
}

.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}

.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}

.header-minicart .minicart-wrapper:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.header-minicart .minicart-wrapper.loading {
  position: relative;
}

.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}

@media only screen and (max-width: 770px) {
  .header-minicart .minicart-wrapper {
    background: #07489E;
    bottom: 0;
  }
  .header-minicart .minicart-wrapper:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

.header-minicart .block-cart {
  display: none;
}

.header-minicart .block-title {
  color: #fff;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  text-transform: none;
  border: none;
  padding-top: 2px;
  -webkit-font-smoothing: antialiased;
  font-size: 35px;
  letter-spacing: 1px;
}

.header-minicart #header-cart .block-subtitle {
  color: #fff;
  margin-top: 12px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  line-height: 1.4;
  padding: 5px 0;
  text-transform: uppercase;
  margin-bottom: 12px;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  letter-spacing: 1px;
}

.header-minicart #header-cart .block-subtitle .close {
  width: 40px;
  float: right;
  color: #4B4B4B;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -11px;
  content: '';
  text-indent: -9999px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -90px -64px;
  height: 11px;
  width: 11px;
  display: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .header-minicart #header-cart .block-subtitle .close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart #header-cart .block-subtitle .close {
    display: block;
    padding: 10px;
    right: -21px;
  }
}

.header-minicart .mini-products-list {
  padding: 0px;
}

.header-minicart .mini-products-list li {
  padding: 8px 0 8px 0;
  position: relative;
}

.header-minicart .mini-products-list li:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.header-minicart .mini-products-list li.last {
  border: none;
}

.header-minicart .mini-products-list li .product-details {
  position: relative;
}

.header-minicart #cart-sidebar .product-details {
  position: relative;
}

.header-minicart #cart-sidebar .product-details .product-name {
  padding-top: 0px;
  font-size: 13px;
}

.header-minicart #cart-sidebar .product-details .product-name a {
  color: #fff;
  text-transform: none;
  font-size: 14px;
  line-height: 19px;
  height: auto;
}

.header-minicart #cart-sidebar .product-details a.remove {
  background: url(../images/pjg_icon_sprite.png) no-repeat -90px -64px;
  height: 11px;
  width: 11px;
  text-indent: -5555px;
  display: block;
  position: absolute;
  top: 4px;
  right: -24px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .header-minicart #cart-sidebar .product-details a.remove {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.header-minicart #cart-sidebar .product-details .info-wrapper + span {
  display: none;
}

.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}

.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
}

.header-minicart .info-wrapper td {
  color: #F38230;
  clear: right;
}

.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}

.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}

.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 100ms;
}

.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}

.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}

.header-minicart .subtotal {
  text-align: center;
  padding-top: 6px;
  /* SUBTOTAL: */
  font-family: "MontserratBold";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 17px;
}

.header-minicart .subtotal:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.header-minicart .subtotal .label {
  color: white;
  text-transform: uppercase;
  float: left;
  font-family: "MontserratBold";
}

.header-minicart .subtotal .price {
  color: #fff;
  float: right;
  font-family: "MontserratBold";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 17px;
}

.header-minicart #header-cart .minicart-actions {
  padding: 0;
  margin-top: 26px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.header-minicart #header-cart .minicart-actions .checkout-button {
  min-width: 100%;
  background: #C4D440;
  color: #4B4B4B;
  letter-spacing: 1px;
  line-height: 43px;
  height: 56px;
  font-size: 17px;
  padding: 7px 0;
}

.header-minicart #header-cart .minicart-actions .cart-link {
  height: 56px;
  font-size: 17px;
  line-height: 55px;
  text-transform: uppercase;
  background: #FFFFFF;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.header-minicart #header-cart .minicart-actions .cart-link:focus {
  color: #07489E;
}

.header-minicart #header-cart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}

.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}

.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}

.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block !important;
}

@media only screen and (max-width: 770px) {
  #header-cart.block-cart {
    position: fixed;
    width: 310px;
    overflow: scroll;
    display: block;
    right: -100%;
    z-index: 9999;
    background: #07489E;
    height: 100%;
    top: 0;
    transition: all 0.4s ease;
    padding: 26px;
    visibility: hidden;
  }
  #header-cart.block-cart.skip-active {
    right: 0;
    visibility: visible;
  }
  #header-cart.block-cart.skip-active span.close {
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -90px -64px;
    height: 11px;
    width: 11px;
    display: block;
    position: absolute;
    top: 15px;
    right: 16px;
    cursor: pointer;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  #header-cart.block-cart.skip-active span.close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }
}

@media only screen and (max-width: 479px) {
  .header-minicart a.skip-cart {
    z-index: 1;
  }
}

.header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo:first-of-type {
  margin-top: 10px;
}

@media only screen and (max-width: 770px) {
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED;
  }
  .header-minicart .quantity-button {
    float: none;
  }
  .header-minicart .header-minicart .block-cart {
    padding: 20px;
  }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 64px;
  }
  .header-minicart .minicart-actions {
    padding-bottom: 33px;
  }
  .header-minicart .minicart-actions .cart-link {
    bottom: 0;
    right: 10px;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    width: auto;
    float: none;
    display: inline;
    margin: 0 10px 5px 10px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 740px) {
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}

@media only screen and (max-width: 599px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
#search_autocomplete.search-autocomplete {
  overflow: visible !important;
  position: relative !important;
  top: 0 !important;
  z-index: 1100;
  width: 700px !important;
}

#search_autocomplete.search-autocomplete dl dt {
  background: #07489E;
  color: #FFF;
  padding: 5px 10px;
  font-size: 100%;
  clear: both;
  margin: 0;
}

#search_autocomplete.search-autocomplete dl dd {
  background: #FFF;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  clear: both;
  font-family: OpenSans, Arial, sans-serif;
}

#search_autocomplete.search-autocomplete .products-list .product-name {
  font-size: 12px;
  font-weight: bold;
  padding-left: 10px;
  text-align: left;
  font-family: OpenSans, Arial, sans-serif;
}

#search_autocomplete.search-autocomplete ul {
  border-radius: 2px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background-color: #FFFFFF;
  border: 1px solid #7BA2D3;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#search_autocomplete.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #6B6B6B;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}

#search_autocomplete.search-autocomplete ul li:hover {
  color: #f27318;
}

#search_autocomplete.search-autocomplete ul li.selected {
  background-color: #698BC7;
  color: white;
}

#search_autocomplete.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}

#search_autocomplete.search-autocomplete ul li:last-child {
  border-bottom: none;
}

#search_autocomplete.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #698BC7;
  border-top: none;
  left: 50%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  padding: 30px;
}

.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

@media only screen and (max-width: 479px) {
  .advanced-search {
    padding: 20px;
  }
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "MontserratBold";
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.product-review .product-img-box .rating-box {
  margin: 15px 0;
}

.product-review .product-details h2 {
  border-bottom: 1px solid #CCCCCC;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "MontserratBold";
  padding-bottom: 10px;
}

.product-review .ratings-table {
  font-family: "MontserratBold";
}

.product-review .ratings-table th {
  padding-right: 10px;
}

.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}

.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "MontserratBold";
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}

.product-review .ratings-description dd {
  color: #737373;
  font-family: "MontserratBold";
  font-size: 13px;
}

@media only screen and (min-width: 771px) {
  .product-review .ratings-table tr {
    float: none;
  }
}

@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 320px) {
  .product-review .ratings-table tr {
    float: none;
  }
}

/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none;
}

.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}

.cms-page-view .std p,
.cms-no-route .std p {
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}

.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #F38230;
}

.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #F38230;
}

.cms-page-view .std li,
.cms-no-route .std li {
  color: #4B4B4B;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}

.cms-page-view .col-left:after:before, .cms-page-view .col-left:after:after,
.cms-no-route .col-left:after:before,
.cms-no-route .col-left:after:after {
  content: " ";
  display: table;
}

.cms-page-view .col-left:after:after,
.cms-no-route .col-left:after:after {
  clear: both;
}

.cms-no-route .std img {
  width: 100%;
}

.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px;
}

.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0;
}

.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-no-route .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

#accordion .toggle-tabs {
  display: none;
}

#accordion > dl.collateral-tabs > dt {
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #4B4B4B;
  letter-spacing: 1px;
  line-height: 20px;
  display: block;
}

#accordion > dl.collateral-tabs > dt:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

#accordion > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view #accordion > dl.collateral-tabs > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view #accordion > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

.catalog-product-view #accordion > dl.collateral-tabs > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view #accordion > dl.collateral-tabs > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view #accordion > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

@media only screen and (max-width: 770px) {
  #accordion > dl.collateral-tabs > dt {
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #4B4B4B;
    letter-spacing: 1px;
    line-height: 20px;
  }
  #accordion > dl.collateral-tabs > dt:after {
    content: '';
    position: absolute;
    left: initial;
    right: 30px;
    display: block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -177px -66px;
    height: 11px;
    width: 8px;
    height: 11px;
    width: 12px;
    border: none;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  #accordion > dl.collateral-tabs > dt:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#accordion > dl.collateral-tabs > dd {
  margin: 14px 0 0 0;
}

#accordion > dl.collateral-tabs > dd > ol > li {
  margin-top: 11px;
  margin-bottom: 11px;
}

@media only screen and (max-width: 770px) {
  #accordion > dl.collateral-tabs > dd > ol {
    margin-bottom: 0;
  }
}

#accordion > dl.collateral-tabs > dd .count {
  display: none;
}

.catalog-product-view #accordion .toggle-tabs {
  display: none;
  background: none;
  border: none;
}

.catalog-product-view #accordion > dl.collateral-tabs > dt {
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  display: block;
}

.catalog-product-view #accordion > dl.collateral-tabs > dt:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

.catalog-product-view #accordion > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .catalog-product-view #accordion > dl.collateral-tabs > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .catalog-product-view #accordion > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

.catalog-product-view .catalog-product-view #accordion > dl.collateral-tabs > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view .catalog-product-view #accordion > dl.collateral-tabs > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .catalog-product-view #accordion > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view #accordion > dl.collateral-tabs > dd {
  padding: 10px;
  margin: 0;
}

#accordion li {
  position: relative;
  overflow: hidden;
}

#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}

.page-sitemap .links a {
  position: relative;
}

.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}

.page-sitemap .sitemap li {
  margin: 3px 0;
}

.contacts-index-index h1 {
  border: none;
}

#contactForm {
  padding-left: 40px;
}

#contactForm h2 {
  display: none;
}

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

#contactForm:after:after {
  clear: both;
}

#contactForm .fieldset .legend + .required {
  margin: 0;
}

@media only screen and (max-width: 770px) {
  #contactForm {
    padding-left: 0;
  }
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #D0021B;
  font-family: "MontserratBold";
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}

.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}

.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}

.notice-cookie .notice-inner:after:before, .notice-cookie .notice-inner:after:after {
  content: " ";
  display: table;
}

.notice-cookie .notice-inner:after:after {
  clear: both;
}

.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}

.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}

.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

@media only screen and (max-width: 979px) {
  .notice-cookie .notice-text {
    max-width: 86%;
  }
}

@media only screen and (max-width: 770px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-text {
    max-width: 82%;
    padding-top: 0;
  }
}

@media only screen and (max-width: 620px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-inner {
    background-position: left 10px;
  }
  .notice-cookie .notice-inner:after:before, .notice-cookie .notice-inner:after:after {
    content: " ";
    display: table;
  }
  .notice-cookie .notice-inner:after:after {
    clear: both;
  }
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0;
  }
  .notice-cookie .actions {
    text-align: left;
  }
}

/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

#addTagForm .form-add {
  margin-top: 10px;
}

.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #CCCCCC;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

.product-tags li {
  float: left;
  margin-right: 15px;
}

.product-tags li.last {
  margin-right: 0px;
}

.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.tags-list > li {
  float: left;
  margin-right: 10px;
}

.block-tags .actions > a {
  font-size: 12px;
}

.my-tag-edit .button.btn-remove {
  padding: 0;
}

.my-tag-edit .button.btn-remove:after {
  color: white;
}

@media only screen and (max-width: 770px) {
  .tags-list > li,
  .tags-list {
    float: none;
  }
}

/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

.registered-users .captcha-image {
  margin: 0;
}

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

.captcha-img {
  border: 20px solid #bbb;
}

.captcha-input-container {
  margin-bottom: 10px;
}

.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}

.control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
  content: '';
}

.control.newsletter-box:after:before, .control.newsletter-box:after:after, .captcha-input-container:after:before, .captcha-input-container:after:after, .captcha-img-container:after:before, .captcha-img-container:after:after {
  content: " ";
  display: table;
}

.control.newsletter-box:after:after, .captcha-input-container:after:after, .captcha-img-container:after:after {
  clear: both;
}

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
#co-billing-form ul.form-list > .control {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* Split Button */
.split-button {
  display: inline-block;
  z-index: 1;
  position: relative;
  max-width: 300px;
  white-space: nowrap;
}

.split-button.clickable:active {
  left: 1px;
  top: 1px;
}

.split-button {
  background: url(../images/bkg_btn.gif) no-repeat 0 0;
  height: 21px;
  padding: 0 0 0 10px;
  margin: 0;
}

.split-button.active {
  z-index: 100;
}

.split-button strong {
  cursor: default;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  background: url(../images/bkg_btn.gif) no-repeat 100% 0;
  height: 19px;
  padding: 3px 30px 0 5px;
  margin: 0;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.split-button.clickable > strong,
.split-button strong[onclick] {
  text-transform: uppercase;
  font-size: 11px;
  color: #C73615;
  text-transform: uppercase;
  cursor: pointer;
}

.split-button .change {
  display: inline-block;
  border: 1px solid;
  border-color: transparent transparent transparent #999;
  background: url(../images/bkg_btn-split-change.png) 5px 50% no-repeat;
  text-indent: -999em;
  overflow: hidden;
  width: 15px;
  cursor: pointer;
  height: 11px;
  margin-left: 8px;
  vertical-align: middle;
}

.split-button .change {
  position: absolute;
  right: 5px;
  top: 0px;
  height: 19px;
  border-left-color: #ccc;
}

.split-button.light {
  background: none;
  height: auto;
  padding: 0;
}

.split-button.light.clickable:active {
  top: auto;
  left: auto;
}

.split-button.light strong {
  display: inline-block;
  font-size: 11px;
  text-transform: none;
  background: none;
  font-weight: normal;
  padding: 0;
  height: auto;
  overflow: visible;
  white-space: normal;
  text-overflow: visible;
}

.split-button.light.clickable > strong,
.split-button.light strong[onclick] {
  text-transform: none;
  text-decoration: underline;
  color: #999;
}

.split-button.light.clickable > strong:hover,
.split-button.light strong[onclick]:hover {
  text-decoration: none;
}

.split-button.light .change {
  position: static;
  right: auto;
  top: auto;
  height: 11px;
  border-left-color: #999;
}

.split-button.active .change,
.split-button .change:hover {
  background-position: -995px 50%;
}

.split-button .list-container {
  position: absolute;
  display: none;
  right: 0;
  top: 100%;
  padding: 0;
  min-width: 100%;
  max-width: 300px;
  float: left;
}

.split-button.active .list-container {
  display: block;
}

.split-button .list-container ul {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.split-button .list-container ul > li {
  white-space: nowrap;
  background: url(../images/bkg_btn-split-item.png) no-repeat -10000px -10000px;
  border: 1px solid #c1c1c1;
  border-top-width: 0;
  margin: 0;
  display: block !important;
  margin: 0 !important;
}

.split-button .list-container ul > li:first-child {
  border-top-width: 1px;
}

.split-button .list-container li a,
.split-button .list-container li span {
  display: block;
  line-height: 1.2 !important;
  cursor: pointer;
  padding: 5px 18px 5px 18px;
  color: #999;
  font-size: 11px;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
}

.split-button .list-container li:hover a,
.split-button .list-container li:hover span,
.split-button .list-container li:hover {
  color: #fff;
  text-decoration: none;
}

.split-button .list-container li:hover {
  background-color: #999;
  background-position: 5px -984px;
}

.split-button .list-container li.new {
  color: #d33911;
  background-color: #eee;
  background-position: 5px 7px;
}

.split-button .list-container li.new:hover {
  background-color: #999;
  background-position: 5px -485px;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 479px) {
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}

body.sales-order-history .my-account .pager {
  float: right;
  overflow: hidden;
  min-height: 45px;
  width: inherit;
}

body.sales-order-history .my-account .pager .count-container .amount {
  display: none;
}

/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}

#recurring_profile_list_view th span {
  white-space: inherit;
}

@media only screen and (max-width: 479px) {
  #recurring_profile_list_view {
    font-size: 12px;
  }
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

.recurring-profiles-title {
  float: left;
}

.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}

@media only screen and (max-width: 479px) {
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

.recurring-profiles-messages:after:before, .recurring-profiles-messages:after:after {
  content: " ";
  display: table;
}

.recurring-profiles-messages:after:after {
  clear: both;
}

#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 30px;
}

.billing-agreements .info-box:after:before, .billing-agreements .info-box:after:after {
  content: " ";
  display: table;
}

.billing-agreements .info-box:after:after {
  clear: both;
}

.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}

.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}

.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}

@media only screen and (max-width: 479px) {
  .billing-agreements .info-box .button {
    width: 100%;
    float: none;
  }
}

.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}

@media only screen and (max-width: 479px) {
  .billing-agreement-view-header-wrapper .heading {
    max-width: 100%;
  }
}

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

@media only screen and (max-width: 979px) {
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none;
  }
}

/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%;
}

@media only screen and (min-width: 771px) {
  .sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
    max-width: 100px;
  }
}

.widget {
  clear: both;
}

.widget .pager {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 1199px) {
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.2222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.3333%;
    margin-right: 2.2222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.2222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.2222%;
    margin-right: 2.2222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 770px) {
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.2222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.3333%;
    margin-right: 2.2222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.2222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.2222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.2222%;
    margin-right: 2.2222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}

/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}

body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #F4F4F4;
  text-transform: uppercase;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  margin-bottom: 10px;
  font-family: "MontserratBold";
}

body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #7BA2D3;
}

body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}

body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}

body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}

body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}

body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}

body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}

body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}

body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}

body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}

body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}

body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}

body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}

.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}

.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}

.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}

.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px;
  font-size: 14px;
}

.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px;
  font-size: 14px;
}

.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px;
}

.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

@media only screen and (max-width: 979px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px;
  }
  #review-order-form .col-1,
  #review-order-form .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (max-width: 770px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px;
  }
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0;
  }
}

@media only screen and (max-width: 599px) {
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px;
  }
}

@media only screen and (max-width: 479px) {
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}

.global-notice {
  display: none;
  background: #ADBA38;
  color: white;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

@media only screen and (max-width: 770px) {
  .global-notice {
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    padding: 6px 30px 6px 0;
  }
}

.global-notice .close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 10px;
  display: block;
  height: 40px;
  width: 40px;
  padding: 15px;
}

@media only screen and (max-width: 770px) {
  .global-notice .close {
    top: 20%;
    top: calc(50% - 15px);
    right: 0;
    width: 30px;
    height: 30px;
    padding: 8px;
  }
}

.global-notice .close:after {
  content: "";
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -90px -64px;
  height: 11px;
  width: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .global-notice .close:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.main-container > .widget-banner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  float: left;
}

.main-container > .widget-banner li {
  margin: 0;
}

.gift-experience-pdp div.fancybox-mobile:not(.upsell-modal-wrapper) {
  position: fixed !important;
  top: 20px !important;
  bottom: 20px !important;
}

.gift-experience-pdp div.fancybox-mobile:not(.upsell-modal-wrapper) .fancybox-close {
  z-index: 99;
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp div.fancybox-mobile:not(.upsell-modal-wrapper) .fancybox-close {
    right: 5px;
    top: 5px;
    background-color: #fff;
    border-radius: 50%;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
  }
}

.gift-experience-pdp div.fancybox-mobile:not(.upsell-modal-wrapper) .fancybox-wrap {
  z-index: 50;
}

.gift-experience-pdp .product-info-modal.fancybox-wrap .item .product-info .product-description {
  padding-right: 30px;
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .product-info-modal.fancybox-wrap .item img {
    float: none;
    width: 100%;
    margin: auto;
  }
  .gift-experience-pdp .product-info-modal.fancybox-wrap .item .product-info {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  .gift-experience-pdp .product-info-modal.fancybox-wrap .item .product-info h4,
  .gift-experience-pdp .product-info-modal.fancybox-wrap .item .product-info .product-description {
    padding: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .product-view.bearbuilder-pdp .product-essential {
    padding: 0 69px 57px;
  }
}

.product-view.bearbuilder-pdp .product-essential .product-img-box {
  width: 54.2%;
}

.product-view.bearbuilder-pdp .product-essential .product-shop {
  width: 45.7%;
  padding-left: 7.6%;
}

.product-view.bearbuilder-pdp .product-essential .product-shop > div.required {
  display: none;
}

.product-view.bearbuilder-pdp .product-essential .product-shop .extra-info, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description {
  margin-bottom: 8px;
}

.product-view.bearbuilder-pdp .product-essential .product-shop .extra-info + h4, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description + h4 {
  clear: both;
  text-align: center;
  margin-bottom: 8px;
  margin-top: 42px;
}

.product-view.bearbuilder-pdp .product-essential .product-shop .extra-info ~ .instructions, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description ~ .instructions {
  margin: 25px 0;
}

.product-view.bearbuilder-pdp .product-essential .product-shop .extra-info ~ .required, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description ~ .required {
  float: right;
  font-size: 13px;
  color: #A5A5A5;
  line-height: 16px;
  margin-bottom: 7px;
}

.product-view.bearbuilder-pdp .product-essential .product-shop .extra-info ~ .required:before, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description ~ .required:before {
  content: "";
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -198px -66px;
  height: 8px;
  width: 7px;
  margin-right: 4px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view.bearbuilder-pdp .product-essential .product-shop .extra-info ~ .required:before, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description ~ .required:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view.bearbuilder-pdp .product-essential .product-shop .extra-info .std.truncate, .product-view.bearbuilder-pdp .product-essential .product-shop .short-description .std.truncate {
  padding-bottom: 5px;
}

.product-view.bearbuilder-pdp .product-essential .add-to-cart-buttons button.button:disabled {
  background: #e2eaa0;
  box-shadow: inset 0 0 0 0 #FBCF27;
}

.product-view.bearbuilder-pdp .product-essential .add-to-cart-buttons button.button.animated {
  background: #FBCF27;
  transition: all ease 1200ms;
  box-shadow: inset 0 100px 0 0 #FBCF27;
}

@media only screen and (max-width: 770px) {
  .product-view.bearbuilder-pdp .product-essential .product-img-box, .product-view.bearbuilder-pdp .product-essential .product-shop {
    width: 100%;
    padding-left: 0;
  }
  .product-view.bearbuilder-pdp .product-essential .product-shop {
    padding: 0 10px;
  }
}

.product-options.bundle-customizer {
  border: 3px solid #4B4B4B;
  padding: 0;
  overflow: hidden;
  width: 99.8%;
  min-width: 302px;
}

.product-options.bundle-customizer:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (min-width: 771px) {
  .product-options.bundle-customizer {
    transition: 300ms all;
  }
}

.product-options.bundle-customizer #product-options-wrapper {
  position: relative;
}

.product-options.bundle-customizer dt, .product-options.bundle-customizer .step-open, .product-options.bundle-customizer p.required {
  display: none;
}

.product-options.bundle-customizer > dl {
  min-width: 302px;
}

.product-options.bundle-customizer > dl > dd {
  background: #fff;
  width: 33.333%;
  display: block;
  float: left;
  min-height: 132px;
  margin-bottom: 0;
  border: 1px solid #4B4B4B;
  padding: 10px;
  cursor: pointer;
  visibility: hidden;
  transition: background 300ms linear;
}

@media only screen and (max-width: 599px) {
  .product-options.bundle-customizer > dl > dd {
    width: 50%;
  }
}

@media only screen and (min-width: 770px) {
  .product-options.bundle-customizer > dl > dd {
    width: 50%;
  }
}

@media only screen and (min-width: 979px) {
  .product-options.bundle-customizer > dl > dd {
    width: 33.333%;
  }
}

.ie8 .product-options.bundle-customizer > dl > dd, .ie9 .product-options.bundle-customizer > dl > dd {
  visibility: visible;
}

.product-options.bundle-customizer > dl > dd.animated {
  visibility: visible;
  animation: basic-fade-in 700ms normal linear;
}

.product-options.bundle-customizer > dl > dd .input-box {
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.product-options.bundle-customizer > dl > dd.validation-failed {
  background: #FAEEEE;
  box-shadow: inset 0 0 1px 1px #D0021B;
}

.product-options.bundle-customizer > dl > dd.validation-failed .required-label:after {
  content: "Required";
  position: absolute;
  display: block;
  background: #D0021B;
  color: white;
  line-height: 30px;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  z-index: 5;
  width: auto;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 130%;
  animation: ga-clear-bounce 5s ease forwards;
}

.product-options.bundle-customizer > dl > dd.validation-failed .required-label:before {
  content: "";
  display: block;
  position: absolute;
  background: #D0021B;
  width: 20px;
  height: 20px;
  bottom: 120%;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  animation: ga-clear-bounce-triangle 5s ease forwards;
}

.ie8 .product-options.bundle-customizer > dl > dd.validation-failed .required-label:before .ie9 .product-options.bundle-customizer > dl > dd.validation-failed .required-label:before {
  display: none;
}

.product-options.bundle-customizer > dl > dd.selected {
  background: #fdede0;
}

.product-options.bundle-customizer > dl > dd.required .step-closed:after {
  display: none;
}

.product-options.bundle-customizer > dl > dd.selected .step-closed:before {
  content: "";
  display: block;
  background: url(../images/ge_icon_sprite.png) no-repeat -321px -50px;
  height: 8px;
  width: 10px;
  position: absolute;
  bottom: -10px;
  left: -4px;
  animation: basic-fade-in 700ms normal linear;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd.selected .step-closed:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .required-label {
  display: block;
  color: #D0021B;
  text-transform: uppercase;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  font-size: 8px;
}

.product-options.bundle-customizer > dl > dd .required-label:after {
  display: none;
}

@media only screen and (max-width: 599px) {
  .product-options.bundle-customizer > dl > dd .step-open .bundle-option-selection-custom-option {
    width: 90%;
    margin: auto;
  }
}

.product-options.bundle-customizer > dl > dd .step-open .option-select-container {
  position: relative;
  padding: 20px 0;
}

.product-options.bundle-customizer > dl > dd .step-open .option-select-container div.modal-info-extra {
  right: 15px;
  bottom: 30px;
  top: auto;
}

.product-options.bundle-customizer > dl > dd .step-open .option-select-container .option-image-select {
  width: 100px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 1px solid #07489E;
  display: inline-block;
  float: none;
  position: relative;
  vertical-align: bottom;
}

@media only screen and (max-width: 599px) {
  .product-options.bundle-customizer > dl > dd .step-open .option-select-container .option-image-select {
    display: block;
    margin: auto;
    float: none;
    text-align: center;
  }
}

.product-options.bundle-customizer > dl > dd .step-open .option-select-container .option-image-select img {
  width: 100%;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.product-options.bundle-customizer > dl > dd .step-open .option-select-container .input-box.select-container {
  float: none;
  padding-left: 25px;
  width: 75%;
  text-align: center;
  margin-bottom: 0px;
}

@media only screen and (max-width: 599px) {
  .product-options.bundle-customizer > dl > dd .step-open .option-select-container .input-box.select-container {
    float: none;
    padding-left: 0;
    text-align: center !important;
  }
}

.product-options.bundle-customizer > dl > dd .step-open .option-select-container .input-box.select-container .custom-shiv {
  width: 90%;
  float: none;
  margin: auto;
  display: inline-block;
  vertical-align: bottom;
}

.product-options.bundle-customizer > dl > dd .current-qty {
  color: #fff;
  position: absolute;
  top: 0;
  right: -5px;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #F38230;
  height: 14px;
  min-width: 14px;
  line-height: 14px;
  font-size: 9px;
  text-align: center;
  display: none;
}

.product-options.bundle-customizer > dl > dd .current-qty.qty-added {
  display: block;
}

.product-options.bundle-customizer > dl > dd .qty-holder {
  display: inline-block;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.product-options.bundle-customizer > dl > dd .qty-holder.qty-disabled {
  display: none;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-holder-inner:before, .product-options.bundle-customizer > dl > dd .qty-holder .qty-holder-inner:after {
  content: " ";
  display: table;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-holder-inner:after {
  clear: both;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-holder-inner label {
  display: block;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-plus,
.product-options.bundle-customizer > dl > dd .qty-holder .qty-minus {
  width: 41px;
  height: 41px;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 41px;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-plus:before,
.product-options.bundle-customizer > dl > dd .qty-holder .qty-minus:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-plus,
.product-options.bundle-customizer > dl > dd .qty-holder .qty-minus,
.product-options.bundle-customizer > dl > dd .qty-holder .qty {
  display: inline-block;
  float: left;
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-minus:before {
  background: url(../images/ge_icon_sprite.png) no-repeat -356px -9px;
  height: 2px;
  width: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .qty-holder .qty-minus:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty-plus:before {
  background: url(../images/ge_icon_sprite.png) no-repeat -356px -24px;
  height: 18px;
  width: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .qty-holder .qty-plus:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .qty-holder .qty.qty-can-change {
  width: 64px;
}

.product-options.bundle-customizer > dl > dd .step-closed.checkbox {
  display: block;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-closed.checkbox:before {
  left: -4px;
  bottom: -14px;
}

.product-options.bundle-customizer > dl > dd .step-open input[type="checkbox"] {
  position: absolute;
  left: -999em;
}

.product-options.bundle-customizer > dl > dd .step-open select {
  width: 100%;
}

.product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li {
  margin-bottom: 0;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
  display: none !important;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] > li {
  vertical-align: top;
  display: block;
  float: left;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li {
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span {
  padding: 0 0 0 0 !important;
  display: inline-block;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span:before, .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span:after {
  content: " ";
  display: table;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span:after {
  clear: both;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.label.checkbox-label:before {
  display: none !important;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.label.checkbox-label {
  display: inline-block;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.label.checkbox-label:before, .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.label.checkbox-label:after {
  content: " ";
  display: table;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.label.checkbox-label:after {
  clear: both;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.choice-swatch {
  margin-bottom: 5px;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.choice-swatch:hover:before {
  display: none !important;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.label.checkbox-label.checked:after {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn,
.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn {
  text-transform: uppercase;
  color: #07489E;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 4px;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn:before,
.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn:before {
  position: relative;
  display: inline-block;
  top: 1px;
  margin-right: 2px;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn {
  display: block;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn:before {
  content: '';
  background: url(../images/ge_icon_sprite.png) no-repeat -179px -154px;
  height: 11px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn:before {
  content: '';
  background: url(../images/ge_icon_sprite.png) no-repeat -218px -154px;
  height: 11px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span img {
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 1px solid #07489E;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.product-name,
.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.product-price {
  display: block;
  font-size: 12px;
  float: none;
  width: auto;
  margin: 0 auto;
  padding: 0;
  line-height: 17px;
  text-align: center;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checked:not(.choice-swatch) div.add-btn {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checked:not(.choice-swatch) div.remove-btn {
  display: block;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checkbox-label.checked span {
  display: block;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checkbox-label.checked span span {
  display: inline-block;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checkbox-label.checked span span:after {
  visibility: visible;
  content: "";
  display: block;
  background: url(../images/ge_icon_sprite.png) no-repeat -321px -50px;
  height: 8px;
  width: 10px;
  position: absolute;
  bottom: 5px;
  left: 5px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checkbox-label.checked span span:after {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span.checkbox-label.checked span span img {
  border-width: 2px;
}

.product-options.bundle-customizer > dl > dd .step-open.opened, .product-options.bundle-customizer > dl > dd .input-box dl.last.opened {
  display: block !important;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 24px 43px;
  z-index: 99;
}

.product-options.bundle-customizer > dl > dd .step-open.select.opened {
  padding: 24px 20px;
}

.product-options.bundle-customizer > dl > dd .input-box.select-container {
  width: 100%;
}

.product-options.bundle-customizer > dl > dd .step-open {
  text-align: center;
  border: 1px solid #4B4B4B;
}

.product-options.bundle-customizer > dl > dd .step-open:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer > dl > dd .step-open span.upcharge {
  display: block;
  text-align: center;
  margin: auto;
}

.product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra,
.product-options.bundle-customizer > dl > dd .step-open div.modal-info {
  display: block;
  z-index: 9;
  position: absolute;
  top: -5px;
  right: -20px;
  width: 10px;
  height: 10px;
}

.product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra .modal-icon,
.product-options.bundle-customizer > dl > dd .step-open div.modal-info .modal-icon {
  display: block;
  width: 12px;
  height: 11px;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra .modal-icon .modal-text,
.product-options.bundle-customizer > dl > dd .step-open div.modal-info .modal-icon .modal-text {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  right: 25px;
  top: -10px;
  font-size: 10px;
}

.product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra .modal-icon:before,
.product-options.bundle-customizer > dl > dd .step-open div.modal-info .modal-icon:before {
  content: '';
  display: block;
  background: url(../images/ge_icon_sprite.png) no-repeat -398px -7px;
  height: 11px;
  width: 12px;
  position: absolute;
  left: -10px;
  top: -6px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra .modal-icon:before,
  .product-options.bundle-customizer > dl > dd .step-open div.modal-info .modal-icon:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra:hover,
.product-options.bundle-customizer > dl > dd .step-open div.modal-info:hover {
  color: #07489E;
}

.product-options.bundle-customizer > dl > dd .step-open div.modal-info-extra .modal-content,
.product-options.bundle-customizer > dl > dd .step-open div.modal-info .modal-content {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open span.close-button {
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 16px;
  height: 19px;
  cursor: pointer;
  font-size: 12px;
  padding-right: 10px;
}

.product-options.bundle-customizer > dl > dd .step-open span.close-button:before {
  content: "";
  display: inline-block;
  background: url(../images/ge_icon_sprite.png) no-repeat -320px -36px;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 4px;
  right: -5px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .step-open span.close-button:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open span.clear-button {
  display: block;
  margin-top: 20px;
}

.product-options.bundle-customizer > dl > dd .step-open span.clear-button.paw-clear {
  margin-top: 5px;
}

.product-options.bundle-customizer > dl > dd .step-open span.clear-button.cleared {
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open span.clear-button.cleared:after {
  content: "Option(s) Cleared";
  position: absolute;
  display: block;
  background: #6689CC;
  color: #fff;
  line-height: 30px;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  z-index: 5;
  width: 150px;
  left: 30%;
  left: calc(50% - 75px);
  bottom: 130%;
  animation: ga-clear-bounce 5s ease forwards;
}

.product-options.bundle-customizer > dl > dd .step-open span.clear-button.cleared:before {
  content: "";
  display: block;
  position: absolute;
  background: #6689CC;
  width: 20px;
  height: 20px;
  bottom: 120%;
  left: 50%;
  left: calc(50% - 10px);
  transform: rotate(45deg);
  animation: ga-clear-bounce-triangle 5s ease forwards;
}

.ie8 .product-options.bundle-customizer > dl > dd .step-open span.clear-button.cleared:before .ie9 .product-options.bundle-customizer > dl > dd .step-open span.clear-button.cleared:before {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open dl {
  width: 100%;
  text-align: left;
  padding: 22px 0;
}

.product-options.bundle-customizer > dl > dd .step-open dl dt {
  display: block;
}

.product-options.bundle-customizer > dl > dd .step-open dl dt .price-notice .price {
  font-size: inherit;
}

.product-options.bundle-customizer > dl > dd .step-open dl dt p.note {
  line-height: 10px;
  margin-bottom: 10px;
}

.product-options.bundle-customizer > dl > dd .step-open .validation-advice {
  display: block;
  float: none;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin-top: 0;
}

.product-options.bundle-customizer > dl > dd .step-open .select-container .validation-advice {
  bottom: -16px;
}

.product-options.bundle-customizer > dl > dd .step-open dd {
  border: none;
}

.product-options.bundle-customizer > dl > dd .step-open div.close-button {
  width: 123px;
  font-size: 14px;
  line-height: 26px;
  position: relative;
  text-align: left;
  padding-left: 20px;
  margin-top: 12px;
  margin-bottom: 14px;
}

.product-options.bundle-customizer > dl > dd .step-open div.close-button > span:before {
  content: "";
  display: inline-block;
  background: url(../images/ge_icon_sprite.png) no-repeat -320px -5px;
  height: 9px;
  width: 21px;
  position: absolute;
  right: 19px;
  top: 15px;
  animation: button-icon-movement 1200ms infinite linear;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-options.bundle-customizer > dl > dd .step-open div.close-button > span:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open div.close-button.add-this {
  width: 143px;
  display: block;
  margin: 10px auto;
}

.product-options.bundle-customizer > dl > dd .step-open .close-button, .product-options.bundle-customizer > dl > dd .step-open .clear-button {
  visibility: hidden;
}

.ie8 .product-options.bundle-customizer > dl > dd .step-open .close-button, .ie9 .product-options.bundle-customizer > dl > dd .step-open .close-button, .ie8 .product-options.bundle-customizer > dl > dd .step-open .clear-button, .ie9 .product-options.bundle-customizer > dl > dd .step-open .clear-button {
  visibility: visible;
}

.product-options.bundle-customizer > dl > dd .step-open .close-button.animated, .product-options.bundle-customizer > dl > dd .step-open .clear-button.animated {
  visibility: visible;
  animation: basic-fade-in 700ms normal linear;
}

.product-options.bundle-customizer > dl > dd .step-open > h5 {
  text-align: center;
  margin-bottom: 0;
  min-height: 49px;
  line-height: 27px;
}

.product-options.bundle-customizer > dl > dd .step-open > h5 .simple-price {
  display: block;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] {
  text-align: left;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"]:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
  float: left;
  width: 25%;
  text-align: center;
  box-sizing: padding-box;
  padding: 15px 15px 0 15px;
  line-height: 17px;
  visibility: hidden;
  margin-bottom: 1px;
  transition: color 300ms ease;
}

@media only screen and (max-width: 599px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
    width: 50%;
  }
}

@media only screen and (min-width: 770px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
    width: 33.3%;
  }
}

@media only screen and (min-width: 979px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
    width: 25%;
  }
}

.ie8 .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li, .ie9 .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
  visibility: visible;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.animated {
  visibility: visible;
  animation: basic-fade-in 700ms normal linear;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.animated img, .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.animated span.choice-icon {
  animation: grow-in 700ms normal linear;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.has-pza {
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.has-pza:before {
  content: "";
  font-size: 10px;
  position: absolute;
  top: 15px;
  right: 20px;
  color: #4B4B4B;
  z-index: 10;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected {
  color: #F38230;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-icon:before,
.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
  display: block;
  content: '';
  height: 118%;
  width: 88%;
  background: none;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 2px solid #F38230;
  position: absolute;
  top: -5px;
  left: 5px;
}

@media only screen and (max-width: 979px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-icon:before,
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
    top: -5px;
    left: -5px;
  }
}

@media only screen and (max-width: 770px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-icon:before,
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
    top: -5px;
    left: -5px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-icon:hover:before,
.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-swatch:hover:before {
  opacity: 1 !important;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon {
  content: "";
  display: block;
  height: 58px;
  width: 58px;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #E5D081;
  margin: 0 auto 6px;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label {
  width: auto;
  min-width: 62px;
  height: 30px;
  background: #07489E;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label .title {
  color: #fff;
  height: 30px;
  line-height: 30px;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon:hover {
  cursor: pointer;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-swatch {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-swatch:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-swatch img {
  margin: 0 auto;
  max-width: 85px;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-swatch ~ span {
  display: block;
  min-height: 34px;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:hover:before,
.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before {
  display: block;
  content: '';
  height: 118%;
  width: 88%;
  background: none;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 2px solid #F38230;
  position: absolute;
  top: -5px;
  left: 5px;
  animation: ge-option-select 300ms normal linear;
}

@media only screen and (max-width: 979px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:hover:before,
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before {
    top: -5px;
    left: -5px;
  }
}

@media only screen and (max-width: 770px) {
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:hover:before,
  .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before {
    top: -5px;
    left: -5px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] ~ [class^="bundle-option-"] dl {
  margin: 10px 0 0;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] ~ [class^="bundle-option-"] dl:first-of-type {
  padding-top: 30px;
}

.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li {
  width: 100%;
  position: relative;
  float: none;
  margin: auto;
}

.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li span:not(.choice-icon):not(.choice-swatch):not(.modal-info) {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:hover:before,
.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li.selected span.choice-icon:before,
.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before,
.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li span.choice-swatch {
  max-width: none;
}

.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li span.choice-swatch img {
  max-width: none;
  width: 100%;
}

.product-options.bundle-customizer > dl > dd .step-open.options span.choice-swatch {
  margin-top: 15px;
  position: relative;
  display: inline-block;
  margin-bottom: 3px;
}

.product-options.bundle-customizer > dl > dd .step-open.options span.choice-swatch:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer > dl > dd .step-open.options span.choice-swatch img {
  margin: 0 auto;
  max-width: 100%;
}

.product-options.bundle-customizer > dl > dd .step-open.options span.choice-swatch ~ span {
  display: block;
  min-height: 34px;
}

.product-options.bundle-customizer > dl > dd .step-closed h5, .product-options.bundle-customizer > dl > dd .step-closed .price-notice, .product-options.bundle-customizer > dl > dd .step-closed .price {
  margin-bottom: 0;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
}

.product-options.bundle-customizer > dl > dd .step-closed .price-notice {
  display: inherit;
}

.product-options.bundle-customizer > dl > dd .step-closed h5 {
  height: 32px;
  width: 100%;
  overflow: hidden;
}

.product-options.bundle-customizer > dl > dd .step-closed {
  text-align: center;
  min-height: 100px;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon {
  width: 36px !important;
  height: 36px !important;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon.swatch-label {
  width: auto !important;
  min-width: 62px;
  height: 30px !important;
  line-height: 30px;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon.swatch-label:before {
  width: 100%;
  height: 30px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  top: 0;
  left: 0;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon:before {
  display: block;
  content: '';
  height: 122%;
  width: 122%;
  background: none;
  border-radius: 50%;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 2px solid #F38230;
  position: absolute;
  top: -4px;
  left: -4px;
}

@media only screen and (max-width: 979px) {
  .product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon:before {
    top: -4px;
    left: -4px;
    width: 123%;
  }
}

@media only screen and (max-width: 599px) {
  .product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon:before {
    top: -4px;
    left: -4px;
    width: 122%;
  }
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid div.swatch-label {
  width: 100%;
  height: 30px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid .option-value {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #F38230;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid-text > .icon {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid-text .option-value {
  text-align: center;
  font-size: 13px;
  color: #F38230;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid-text .option-value:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid-text .option-value span {
  display: block;
  line-height: 16px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-options.bundle-customizer > dl > dd .step-closed > .icon {
  display: inline-block;
  content: "";
  margin-top: 11px;
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-closed > .icon img {
  max-width: 54px;
  width: 100%;
}

.product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon {
  background: none !important;
}

.product-options.bundle-customizer > dl:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer > dl .input-box {
  max-width: 100%;
}

.product-options.bundle-customizer > dl .input-box.checkbox {
  line-height: 14px;
}

.product-options.bundle-customizer > dl span.label.checkbox-label label {
  padding: 0;
  line-height: 14px;
}

.product-options.bundle-customizer > dl span.price-notice .price {
  line-height: 14px;
  font-size: 14px;
}

.product-options.bundle-customizer ~ .product-options-bottom {
  background: none;
  border: none;
  padding: 30px 0;
}

.product-options.bundle-customizer ~ .product-options-bottom:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer ~ .product-options-bottom.jumbo-price {
  text-align: center;
}

.product-options.bundle-customizer ~ .product-options-bottom.jumbo-price > .price-box {
  float: none;
  display: inline-block;
}

.product-options.bundle-customizer ~ .product-options-bottom.jumbo-price .add-to-cart {
  float: none;
  margin: 0 auto;
}

.product-options.bundle-customizer ~ .product-options-bottom > .price-box {
  display: block;
  float: left;
  text-align: center;
}

.product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label, .product-options.bundle-customizer ~ .product-options-bottom > .price-box .full-product-price {
  display: block;
}

@media only screen and (max-width: 770px) {
  .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label, .product-options.bundle-customizer ~ .product-options-bottom > .price-box .full-product-price {
    display: inline-block;
  }
}

.product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label {
  font-size: 14px;
  color: #656963;
  line-height: 30px;
  vertical-align: top;
  margin-right: 10px;
}

.product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
  font-family: "MontserratBold";
}

.product-options.bundle-customizer ~ .product-options-bottom .add-to-cart {
  float: right;
  width: 272px;
}

.product-options.bundle-customizer ~ .product-options-bottom .add-to-cart:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-options.bundle-customizer ~ .product-options-bottom .add-to-cart .price-box {
  display: none;
}

.product-options.bundle-customizer ~ .product-options-bottom .add-to-cart .add-to-cart-buttons {
  width: 100%;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened {
  padding: 24px 35px;
}

@media only screen and (max-width: 1040px) {
  .product-options.bundle-customizer > dl > dd .step-open.paw.opened {
    padding: 24px 10px;
  }
}

@media only screen and (max-width: 1040px) {
  .product-options.bundle-customizer > dl > dd .step-open.paw.opened {
    padding: 24px 20px;
  }
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened dl {
  margin: 4px 0 0;
  padding: 0 10px;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li {
  width: 100% !important;
  margin: 0;
  padding: 0;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li .input-text {
  width: 140px;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li span.choice-swatch img {
  margin-top: 10px;
  max-width: none;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened .LEFTHAND,
.product-options.bundle-customizer > dl > dd .step-open.paw.opened .LEFTFOOT,
.product-options.bundle-customizer > dl > dd .step-open.paw.opened .RIGHTHAND,
.product-options.bundle-customizer > dl > dd .step-open.paw.opened .RIGHTFOOT {
  float: none;
  padding-bottom: 10px;
}

.paw-pza {
  padding-top: 22px;
  padding-bottom: 16px;
  max-width: 480px;
  margin: auto;
}

.paw-pza:before, .paw-pza:after {
  content: " ";
  display: table;
}

.paw-pza:after {
  clear: both;
}

.paw-pza > div {
  width: auto;
  display: inline-block;
  float: left;
}

.paw-pza > div:nth-child(even) {
  float: right;
}

.paw-pza > div:nth-child(even):before, .paw-pza > div:nth-child(even):after {
  content: " ";
  display: table;
}

.paw-pza > div:nth-child(even):after {
  clear: both;
}

.paw-pza > div p.note {
  display: none;
}

.paw-pza > div dt.last label {
  display: none;
}

.paw-pza > div dt label:only-of-type {
  display: inline-block;
}

.paw-pza > div dt:nth-of-type(2) label {
  display: none;
}

.paw-pza .pza-max-text {
  display: block;
  float: none;
  margin: 0 auto;
  font-size: 13px;
  margin-bottom: 25px;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:hover:before,
.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li.selected span.choice-icon:before,
.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li.selected span.choice-icon:before:hover,
.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li.selected span.choice-swatch:before:hover {
  display: none;
}

.product-options.bundle-customizer > dl > dd .step-open.paw.opened ul[class^="bundle-option-"] li.selected {
  color: #4B4B4B;
}

/* ============================================ *
 * General Enterprise Styles
 * ============================================ */
.global-site-notice div.notice-inner {
  background-image: url("../images/demo-logo.png");
}

/* ============================================ *
 * RMA List
 * ============================================ */
@media only screen and (max-width: 599px) {
  #my-returns-table .ship-from,
  #my-returns-table .number {
    display: none;
  }
}

/* ============================================ *
 * RMA Create
 * ============================================ */
#rma_create_form .form-list li {
  border-bottom: 1px solid #CCCCCC;
  font-family: "MontserratBold";
  font-size: f-size-xs;
}

#rma_create_form .form-list li:last-child {
  border-bottom: none;
}

#rma_create_form .form-list li h5 {
  font-weight: 400;
  text-align: left;
  padding-left: 15px;
  text-transform: none;
}

#rma_create_form .form-list li h5.rma-email {
  text-transform: none;
}

#rma_create_form .fieldset {
  margin: 20px 0;
}

#rma_create_form .fieldset #registrant_options .field .input-box {
  margin-bottom: 10px;
}

#rma_create_form .buttons-set {
  border-top: none;
}

/* ============================================ *
 * RMA View
 * ============================================ */
.rma-view.col-2 {
  text-align: right;
}

.rma-view h3 {
  font-weight: 600;
}

body.enterprise-rma-return-view .box-content {
  font-family: "MontserratBold";
  font-size: f-size-xs;
  margin-bottom: 20px;
}

#my-returns-items-table th,
#my-returns-items-table td {
  font-size: 13px;
}

#rma_comment .box-content label {
  font-family: "MontserratBold";
  font-size: f-size-xs;
  font-weight: 400;
}

#rma_comment .buttons-set {
  border-top: none;
}

#rma_comment .note-list {
  font-family: "MontserratBold";
  font-size: f-size-xs;
  font-weight: 400;
}

#rma_comment .note-list li {
  border-bottom: 1px solid #CCCCCC;
  padding: 5px 0;
}

#rma_comment .note-list li:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 480px) {
  .rma-view.col-2 {
    text-align: left;
  }
  .rma-view.col-1, .rma-view.col-2 {
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 20px;
  }
  .rma-view.col-1 h3, .rma-view.col-2 h3 {
    margin-bottom: 0;
  }
}

/* ============================================ *
 * Store credit
 * ============================================ */
.storecredit .account-balance {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

body.customer-account .storecredit .data-table td.last {
  padding: 10px;
}

@media only screen and (max-width: 420px) {
  .storecredit th,
  .storecredit td {
    font-size: 12px;
    padding: 5px;
  }
  body.customer-account .storecredit .data-table td.last {
    padding: 5px;
  }
}

/* ============================================ *
 * Gift Registry
 * ============================================ */
.gift-note {
  width: 99%;
}

.btn-gift-registry {
  padding-top: 7px;
}

.btn-gift-registry .input-box {
  margin: 0 0 7px;
}

.btn-gift-registry select {
  width: 100%;
}

.gr-manage-items {
  margin-bottom: 20px;
}

.gr-manage-items input.qty {
  min-width: 45px;
}

#event_date_trig {
  display: inline;
}

.gift-registry-edit textarea,
.gift-registry-edit input {
  max-width: 100%;
  width: 365px;
}

.gift-registry-edit label[for=type_id] {
  text-transform: uppercase;
  margin-bottom: 0px;
  font-size: 13px;
}

.gift-registry-edit .add-row {
  width: 100%;
  max-width: 365px;
}

.gift-registry-edit .add-row > p {
  float: right;
}

.gift-registry-edit .btn-remove {
  float: right;
}

.block-gr-search .form-alt > li {
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}

.block-gr-search button {
  margin-top: 7px;
}

.block-gr-search .input-box > select {
  width: 100%;
}

#gr-please-wait {
  margin-bottom: 10px;
  margin-left: 0;
}

.gift-registry-view .subtitle {
  margin-top: 30px;
  font-size: 18px;
}

@media only screen and (max-width: 479px) {
  .gift-registry-view .subtitle {
    margin-top: 20px;
  }
}

.gift-registry-items .btn-update {
  margin-top: 7px;
}

.gift-registry-items textarea {
  min-width: 80px;
}

.gr-type-specific-options img.v-middle {
  display: inline;
}

#gr_search_form select,
#gr_search_email_form select,
#gr_search_id_form select {
  margin-bottom: 5px;
}

#gr_search_form .buttons-set,
#gr_search_email_form .buttons-set,
#gr_search_id_form .buttons-set {
  max-width: 365px;
}

#gr_search_form p.required,
#gr_search_email_form p.required,
#gr_search_id_form p.required {
  position: relative;
  top: -30px;
}

@media only screen and (max-width: 979px) {
  .gr-manage-items col.note-col,
  .gr-manage-items .head-note,
  .gr-manage-items .left-note,
  .gr-manage-items col.date-col,
  .gr-manage-items .head-add-date,
  .gr-manage-items .add-date {
    display: none;
  }
  .head-requested,
  .head-fulfilled {
    display: none;
  }
  .gift-image img {
    width: 68px;
  }
  .gift-registry-actions a {
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 7px;
  }
}

@media only screen and (max-width: 770px) {
  .gift-info {
    width: 55%;
  }
  .item-options {
    float: left;
  }
  .item-options ~ .gift-note {
    float: left;
    width: 35%;
    height: 10em;
    margin: 10px 0 0 5%;
  }
  .gift-registry-items {
    font-size: 12px;
  }
  .gift-registry-items td, .gift-registry-items th {
    padding: 7px 3.5px;
  }
  .gr-manage-items {
    font-size: 12px;
  }
  .gift-image,
  col.img-col {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .gift-registry-actions a {
    font-size: 11px !important;
    white-space: normal !important;
  }
  .item-options ~ .gift-note {
    width: 99% !important;
  }
  .item-options {
    float: none;
  }
  .item-options ~ .gift-note {
    float: none;
    height: 10em;
    margin: 10px 0 0 5%;
  }
  .gr-manage-items {
    font-size: 11px;
  }
  .gr-manage-items input,
  .gr-manage-items dt,
  .gr-manage-items dl,
  .gr-manage-items a {
    font-size: inherit;
  }
  #giftregistry-search-results .location,
  #giftregistry-search-results .event-type {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  .gr-manage-items .gift-secondary,
  .gift-registry-items .gift-secondary {
    display: none;
  }
  #event_date_trig {
    display: inline;
    float: right;
    margin-top: 7px;
  }
  .giftregistry-search-results {
    font-size: 11px;
  }
  .giftregistry-search-results td,
  .giftregistry-search-results th {
    padding: 7px 3.5px;
    vertical-align: top;
  }
  .gr-manage-items td,
  .gr-manage-items th,
  .gift-registry-items td,
  .gift-registry-items th {
    padding: 7px 3.5px;
    vertical-align: top;
  }
  .giftregistry-table td,
  .giftregistry-table th {
    font-size: 11px;
  }
  #gr_search_form p.required,
  #gr_search_email_form p.required,
  #gr_search_id_form p.required {
    padding-bottom: 15px;
    position: static;
  }
}

/* ============================================ *
 * Reward
 * ============================================ */
.rewards {
  margin-bottom: 30px;
}

.reward-message {
  background-color: #698BC7;
  display: block;
  margin: 5px 0;
  padding: 3px 10px;
  color: #e6e6e6;
  font-family: "MontserratBold";
}

.reward-message.reward-checkout {
  margin-bottom: 10px;
}

.reward-message p {
  display: inline;
  font-size: 13px;
}

.reward-message p.limit {
  display: block;
  font-size: 12px;
  font-style: italic;
}

.reward-message a {
  color: #e6e6e6;
  text-decoration: underline;
}

.my-rewards h2 {
  position: relative;
  line-height: 1.7;
}

.my-rewards h2 .separator {
  display: none;
}

.my-rewards h2 a {
  white-space: nowrap;
  float: right;
  margin: 0 0 5px 10px;
}

.my-rewards .box {
  margin-bottom: 20px;
}

.my-rewards .box.info-box {
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 10px;
}

.my-rewards .box.info-box dt {
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: none;
}

@media only screen and (max-width: 979px) {
  .my-rewards #reward-history small.nobr {
    white-space: normal;
  }
}

@media only screen and (max-width: 599px) {
  .my-rewards #reward-history small {
    display: none;
  }
  .my-rewards #reward-history th.balance,
  .my-rewards #reward-history td.balance,
  .my-rewards #reward-history th.date,
  .my-rewards #reward-history td.date {
    display: none;
  }
}

/* ============================================ *
 * Gift Message Styles
 * ============================================ */
.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

#allow-gift-options-for-items-container,
#allow-gift-messages-for-order-container,
#allow-gift-options-for-order-container {
  width: 100%;
  float: left;
  display: block;
}

.gift-message-form .gift-item .fieldset {
  float: left;
  width: 100%;
  margin-left: 0px !important;
}

.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

.gift-wrapping-form .select {
  max-width: 300px;
}

.gift-item .product-img-box > * {
  float: left;
  clear: both;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .gift-message-form .gift-item .product-img-box {
    float: left;
    width: 140px;
  }
}

/* ============================================ *
 * Enterprise Wishlist Styles
 * ============================================ */
/* Customer Account Styles */
#wishlist_edit_action_container {
  left: 0;
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 99999;
}

#wishlist_edit_action_container .popup-block {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  display: block;
  margin: 0 auto;
  padding: 2% 20px;
  width: 100%;
  max-width: 500px;
  min-width: 320px;
}

#wishlist_edit_action_container .popup-block .block-title {
  padding-top: 0;
  border-top: 0;
}

#wishlist_edit_action_container .popup-block .block-title .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.wishlist-actions-container {
  width: 100%;
  margin-bottom: 10px;
}

.wishlist-actions-container:before, .wishlist-actions-container:after {
  content: " ";
  display: table;
}

.wishlist-actions-container:after {
  clear: both;
}

.wishlist-actions-container .sub-title {
  float: left;
}

.wishlist-actions-container .sub-title .item-count {
  text-transform: none;
  margin-left: 10px;
}

.wishlist-actions-container .sub-title .wishlist-edit {
  margin-left: 10px;
  font-size: 15px;
}

.wishlist-actions-container .btn-create {
  float: right;
}

.wishlist-management .table-caption {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
}

.wishlist-management .table-caption:before, .wishlist-management .table-caption:after {
  content: " ";
  display: table;
}

.wishlist-management .table-caption:after {
  clear: both;
}

.wishlist-management .table-caption .sub-title {
  float: left;
  padding-bottom: 5px;
}

.wishlist-management .table-caption .sub-title:after {
  content: ':';
}

.wishlist-management .table-caption #wishlists-select,
.wishlist-management .table-caption #wishlists-move,
.wishlist-management .table-caption #wishlists-copy {
  float: left;
  margin-left: 10px;
  position: relative;
  padding-bottom: 5px;
}

.wishlist-management .table-caption #wishlists-select .split-button-title,
.wishlist-management .table-caption #wishlists-move .split-button-title,
.wishlist-management .table-caption #wishlists-copy .split-button-title {
  display: inline;
}

.wishlist-management .table-caption #wishlists-select .change,
.wishlist-management .table-caption #wishlists-move .change,
.wishlist-management .table-caption #wishlists-copy .change {
  margin-left: 10px;
  font-size: 15px;
}

.wishlist-management .table-caption #wishlists-select .list-container,
.wishlist-management .table-caption #wishlists-move .list-container,
.wishlist-management .table-caption #wishlists-copy .list-container {
  width: auto;
  left: auto;
  right: 0;
}

.wishlist-management .table-caption #wishlists-select .list-container li,
.wishlist-management .table-caption #wishlists-move .list-container li,
.wishlist-management .table-caption #wishlists-copy .list-container li {
  padding: 2px 10px;
}

.wishlist-management .table-caption #wishlists-select .list-container li a,
.wishlist-management .table-caption #wishlists-select .list-container li span,
.wishlist-management .table-caption #wishlists-move .list-container li a,
.wishlist-management .table-caption #wishlists-move .list-container li span,
.wishlist-management .table-caption #wishlists-copy .list-container li a,
.wishlist-management .table-caption #wishlists-copy .list-container li span {
  font-size: 15px;
  padding: 0;
}

.wishlist-management .table-caption #wishlists-select .list-container li:last-child,
.wishlist-management .table-caption #wishlists-move .list-container li:last-child,
.wishlist-management .table-caption #wishlists-copy .list-container li:last-child {
  border-bottom: 0;
}

.wishlist-management .table-caption #wishlists-move,
.wishlist-management .table-caption #wishlists-copy {
  float: right;
}

.wishlist-management .table-caption #wishlists-move .split-button-title,
.wishlist-management .table-caption #wishlists-copy .split-button-title {
  display: none;
}

.wishlist-management + .fieldset .buttons-set button {
  margin-bottom: 10px;
}

.fieldset .wishlist-empty {
  margin-bottom: 30px;
}

#wishlist-table .item-manage .split-button {
  float: right;
  margin-left: 20px;
  margin-bottom: 3px;
}

#wishlist-table .item-manage .split-button .change:after {
  top: 5px;
}

#wishlist-table .item-manage .split-button .list-container {
  left: auto;
  right: 0;
  width: auto;
}

#wishlist-table .item-manage .split-button .list-container li span {
  padding: 0 10px;
}

#wishlist-table .item-manage .split-button ~ .btn-update {
  clear: right;
  float: right;
  margin-top: 10px;
}

@media only screen and (max-width: 479px) {
  body.customer-account .my-account .my-wishlist .fieldset {
    margin-top: 10px;
  }
  #wishlist-table .item-manage .split-button {
    float: left;
    margin-right: 20px;
    margin-left: 0;
    margin-top: 20px;
  }
  #wishlist-table .item-manage .split-button .list-container {
    left: 0;
    right: auto;
  }
  #wishlist-table .item-manage .split-button ~ .btn-update {
    clear: left;
    float: left;
  }
  #wishlist-table thead {
    display: none;
  }
  .customer-wishlist-item-info .item-manage {
    width: 100%;
  }
  .customer-wishlist-item-info .item-manage:before, .customer-wishlist-item-info .item-manage:after {
    content: " ";
    display: table;
  }
  .customer-wishlist-item-info .item-manage:after {
    clear: both;
  }
}

.wishlist-search-view h2.subtitle {
  margin-top: 20px;
  margin-bottom: 5px;
}

.wishlist-search-view .info-table .nobr {
  margin-right: 30px;
}

.wishlist-search-view #wishlist-table.clean-table td {
  max-width: 100%;
}

.wishlist-search-view #wishlist-table.clean-table td p.qty {
  text-align: center;
  width: 100%;
}

.wishlist-search-view #wishlist-table.clean-table td .price-box {
  margin: 0;
}

.wishlist-search-view #wishlist-table.clean-table th {
  padding-left: 2px;
  padding-right: 2px;
}

.wishlist-search-view .truncated .truncated_full_value .item-options {
  left: -40px;
}

@media only screen and (max-width: 770px) {
  .wishlist-search-view #wishlist-table.clean-table td {
    max-width: 100px;
    word-wrap: break-word;
  }
}

@media only screen and (max-width: 599px) {
  .wishlist-search-view #wishlist-table.clean-table td {
    padding: 6px 10px;
  }
  .wishlist-search-view #wishlist-table.clean-table td p.qty {
    text-align: left;
  }
  .wishlist-search-view #wishlist-table.clean-table td .price-box {
    margin: 0;
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }
  .wishlist-search-view .customer-wishlist-item-comment {
    width: 100%;
    clear: both;
  }
}

@media only screen and (max-width: 479px) {
  .wishlist-search-view #wishlist-table.clean-table td {
    max-width: 100%;
  }
}

/* Store Front Styles */
.split-button {
  position: relative;
}

.split-button .split-button-title {
  display: none;
}

.split-button .change {
  padding-right: 13px;
  min-height: 25px;
  position: relative;
}

.split-button .change:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #698BC7;
  border-bottom: none;
  content: '';
  right: 0;
  top: 8px;
}

.split-button .change.active:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 4px solid #698BC7;
  border-top: none;
}

.split-button .list-container {
  display: none;
  width: 120%;
  max-width: 320px;
  min-width: 175px;
  position: absolute;
  left: -10%;
  top: 100%;
  background: #FBFBFB;
  border: 1px solid #CCCCCC;
  text-align: center;
  z-index: 99999999;
}

.split-button .list-container li {
  border-bottom: 1px solid #EDEDED;
}

.split-button .list-container li span,
.split-button .list-container li a {
  color: #698BC7;
  font-family: "MontserratBold";
  position: relative;
  font-size: 14px;
  cursor: pointer;
  display: block;
  padding: 5px 10px;
  white-space: normal;
  text-transform: none;
}

.split-button .list-container li span:hover,
.split-button .list-container li a:hover {
  color: #cb5c0c;
}

.split-button .list-container li.new {
  background-color: #EDEDED;
}

.split-button .list-container li.new span:before,
.split-button .list-container li.new a:before {
  content: '+ ';
}

.split-button.active .list-container {
  display: block;
}

.products-grid .split-button .list-container {
  width: 115%;
}

.products-grid .split-button .list-container li span,
.products-grid .split-button .list-container li a {
  font-size: 12px;
}

.products-list .split-button .list-container {
  width: auto;
}

.product-view .split-button .change {
  padding-right: 20px;
}

.product-view .split-button .change:after {
  right: 7px;
}

.product-view .split-button .list-container {
  width: auto;
}

.product-view .split-button .list-container li {
  float: none;
  margin-bottom: 0;
}

@media only screen and (min-width: 601px) {
  .products-list .split-button .list-container {
    left: auto;
    right: -10%;
  }
}

@media only screen and (max-width: 600px) {
  .products-list .split-button .list-container {
    left: -10%;
    right: auto;
  }
}

@media only screen and (max-width: 599px) {
  .cart-table .split-button .list-container {
    width: auto;
    top: auto;
    bottom: 0;
    left: 100%;
  }
}

/* ============================================ *
 * Customer Order by SKU
 * ============================================ */
.widget-addbysku td.last .input-box {
  float: left;
}

.widget-addbysku .btn-remove {
  cursor: pointer;
  float: left;
  margin-top: 7px;
  margin-left: 5px;
}

.widget-addbysku .add-row {
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  .widget-addbysku input[type="text"] {
    float: left;
    width: 100%;
  }
  .widget-addbysku .input-text.qty {
    width: 50px;
  }
}

/* ============================================ *
 * Gift Message Styles
 * ============================================ */
.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

#allow-gift-options-for-items-container,
#allow-gift-messages-for-order-container,
#allow-gift-options-for-order-container {
  width: 100%;
  float: left;
  display: block;
}

.gift-message-form .gift-item .fieldset {
  float: left;
  width: 100%;
  margin-left: 0px !important;
}

.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

.gift-wrapping-form .select {
  max-width: 300px;
}

.gift-item .product-img-box > * {
  float: left;
  clear: both;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .gift-message-form .gift-item .product-img-box {
    float: left;
    width: 140px;
  }
}

/* ============================================ *
 * Catalog Event
 * ============================================ */
.event-container {
  clear: both;
  border: 1px solid #F38230;
  background: #EAF8FF;
  position: relative;
  z-index: 2;
  border-width: 1px 1px;
  min-height: 59px;
  margin: 7px 0px 20px;
}

.event-container:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #F38230;
  border-bottom: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}

.event-container .event {
  padding: 15px 10px 28px;
  margin-bottom: -18px;
  min-height: 52px;
  line-height: 30px;
  text-align: center;
  width: auto;
  position: relative;
  z-index: 2;
  border-bottom: 0 !important;
}

.event-container .event .event-ticker {
  display: inline;
  font-size: 28px;
  height: auto;
}

.event-container .event .event-ticker span {
  line-height: 50px;
  height: 50px;
  padding: 0;
}

.event-container .container {
  display: inline;
  margin: 0;
  padding: 0;
  background: none;
}

.event-container .status {
  display: inline;
  margin: 0 3px 0 0;
  background: none;
  font-size: 22px;
}

.event-container .event-dates {
  display: inline;
  font-size: 22px;
  height: auto;
}

.event-container .event-dates div,
.event-container .event-dates p {
  display: inline;
}

.event-container .event-dates .time-part {
  font-size: 14px;
}

.events-panel {
  border-top: 1px solid #CCCCCC;
  float: left;
  width: 100%;
  margin-top: 10px;
}

.events-panel .event-item {
  float: left;
  width: 100%;
  margin: 10px 0;
}

.events-panel .event-item .status {
  font-size: 18px;
}

.events-panel .event-item .event-dates, .events-panel .event-item .event-button, .events-panel .event-item .event-ticker {
  margin-bottom: 10px;
}

.events-panel .event-item .category-show {
  border: 1px solid #CCCCCC;
  float: left;
  width: 100%;
}

.events-panel .event-item .category-show img {
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .event-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Category Event Module - Upcoming */
.container-upcoming {
  background: #F4F4F4;
  border-color: #CCCCCC;
}

.container-upcoming:after {
  border-top-color: #CCCCCC;
}

/* Category Event Module - Closed */
.container-closed {
  background: #AAAAAA;
  border-color: #777777;
}

.container-closed:after {
  border-top-color: #777777;
}

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate;
}

div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
}

body.simple .product-options.bundle-customizer dt {
  display: block;
}

body.simple .product-options.bundle-customizer dd .input-box {
  margin: auto;
}

.product-options.bundle-customizer > dl > dd .step-open div.close-button {
  height: 40px;
}

.product-options.bundle-customizer > dl > dd .step-open span.close-button {
  line-height: 16px;
}

.gift-experience-pdp .fancybox-wrap .fancybox-skin {
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #fff;
}

.gift-experience-pdp .fancybox-wrap .fancybox-close {
  background: url(../images/pjg_icon_sprite.png) no-repeat -212px -91px;
  height: 23px;
  width: 23px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .fancybox-wrap .fancybox-close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .fancybox-wrap .fancybox-close {
    top: 0px;
    right: -8px;
  }
}

.gift-experience-pdp .product-info-modal.fancybox-wrap .fancybox-close {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.gift-experience-pdp .product-info-modal.fancybox-wrap .fancybox-inner {
  overflow-x: hidden !important;
  overflow-y: scroll !important;
}

.gift-experience-pdp .product-view .product-shop .extra-info .price-info {
  display: none;
}

.gift-experience-pdp .product-shop > .price-info .price-box {
  display: none;
}

.gift-experience-pdp .product-shop > .price-info .price-box:last-of-type {
  display: block;
}

.gift-experience-pdp .product-shop h4 {
  font-size: 22px;
  color: #004276;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.gift-experience-pdp .product-options.bundle-customizer {
  border: 1px solid #99B9F7;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .product-options.bundle-customizer {
    min-width: 0;
  }
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom {
  padding: 30px 0 0 0;
  margin-bottom: 1px;
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom {
    padding-top: 22px !important;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .price-box {
  width: 25%;
}

@media only screen and (max-width: 770px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .price-box {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 479px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .price-box {
    width: 100%;
    margin-bottom: 19px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart {
  width: 75%;
}

@media only screen and (max-width: 479px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart {
    width: 100%;
  }
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart .qty-wrapper {
  display: none;
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart button.btn-cart {
  max-width: 100%;
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box p {
  position: relative;
  top: -6px;
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label, .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 1px;
  margin-right: 0;
}

@media only screen and (max-width: 770px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label, .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
    margin-right: 5px;
    line-height: initial;
    position: relative;
    top: -6px;
  }
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label, .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
    display: block;
    line-height: 27px;
    top: auto;
    position: static;
  }
}

.gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
  font-size: 22px;
  color: #2A2A2A;
}

@media only screen and (max-width: 770px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
    line-height: 30px;
  }
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price {
    width: 100%;
  }
}

.gift-experience-pdp .product-options.bundle-customizer .builder-options-wrapper .step-open .close-label {
  display: none;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open span.close-button {
  line-height: 26px;
  height: 40px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open span.close-button:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -188px -36px;
  height: 23px;
  width: 23px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open span.close-button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open div.close-button > span:before {
  content: "→";
  font-family: Arial;
  font-size: 20px;
  line-height: 12px;
  background: none;
  top: 12px;
  width: auto;
  height: auto;
  right: 12px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open div.modal-info .modal-icon .modal-text {
  color: #4B4B4B;
}

.gift-experience-pdp .product-options.bundle-customizer > dl .input-box {
  text-align: center;
}

.gift-experience-pdp .product-options.bundle-customizer > dl:after {
  visibility: visible;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #99B9F7;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  pointer-events: none;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd {
  border-color: #99B9F7;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd:first-of-type {
  border-top-left-radius: 5px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd:last-of-type {
  border-bottom-right-radius: 5px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed .option-value {
  color: #6B6B6B !important;
  font-size: 12px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed .option-value span {
  color: #6B6B6B !important;
  font-size: 12px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd.validation-failed {
  border-color: #D0021B;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd h5 {
  color: #6B6B6B;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open > h5,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open dl dt label {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: #656963;
  color: #004276;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .input-box.select-container .custom-shiv {
  width: 100%;
  max-width: 100%;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .price-notice {
  display: block;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .price-notice:before {
  content: '(';
  display: inline-block;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .price-notice:after {
  content: ')';
  display: inline-block;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .option-select-container {
  width: 100%;
  padding: 0 6px;
  white-space: nowrap;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .option-select-container .option-image-select {
  width: 25%;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .option-select-container .validation-advice {
  text-align: left;
  padding-left: 25px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .option-select-container div.modal-info-extra {
  right: -4px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .option-image-select + .input-box {
  margin-top: 20px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container {
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  text-align: left;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container .custom-shiv {
  max-width: 227px;
  height: 30px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #fff;
  color: #6B6B6B;
  border: 1px solid #99B9F7;
  line-height: 30px;
  text-align: left;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container .custom-shiv span:after {
  top: 12px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -109px;
  height: 7px;
  width: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container .custom-shiv span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 599px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container .custom-shiv span:after {
    right: 4px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container.validation-passed .custom-shiv {
  color: #fff;
  background: #6689CC;
  border-color: #6689CC;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container.validation-passed .custom-shiv span:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -96px;
  height: 7px;
  width: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container.validation-passed .custom-shiv span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container.validation-error .custom-shiv {
  background: #D0021B;
  color: #fff;
  border-color: #D0021B;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container.validation-error .custom-shiv span:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -96px;
  height: 7px;
  width: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .input-box.select-container.validation-error .custom-shiv span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .qty-plus,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .qty-minus {
  background: #07489E;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  width: 36px;
  height: 30px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .qty {
  margin: 0 10px 0 10px;
  height: 30px;
  width: 56px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd.selected {
  background: #FFFBF4;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.checkbox {
  position: relative;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.checkbox:before {
  left: 0;
  bottom: -11px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:hover:before,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before {
  border-color: #99B9F7;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-width: 1px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li.selected span.choice-icon:before,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
  height: 100%;
  width: 100%;
  background: none;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 2px solid #99B9F7;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 979px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li.selected span.choice-icon:before,
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
    top: 0;
    left: 0;
  }
}

@media only screen and (max-width: 770px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li.selected span.choice-icon:before,
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li.selected span.choice-swatch:before {
    top: 0;
    left: 0;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:hover:before {
  border-color: #99B9F7;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:before,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:before {
  display: block;
  content: '';
  height: 100%;
  width: 100%;
  background: none;
  border-radius: 4px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border: 1px solid #99B9F7;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 979px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:before,
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:before {
    top: 0;
    left: 0;
  }
}

@media only screen and (max-width: 770px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-icon:before,
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.select ul[class^="bundle-option-"] li:not(.selected) span.choice-swatch:before {
    top: 0;
    left: 0;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .option-select-container .input-box.select-container {
  text-align: left;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open dl {
  margin: 0;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open dl dt {
  text-align: center;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .bundle-option-selection-custom-option {
  text-align: center;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open .bundle-option-selection-custom-option label {
  font-size: 22px;
  font-family: "MontserratBold";
  color: #07489E;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.opened {
  border-color: #99B9F7;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 24px 10px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span img {
  border-color: #99B9F7;
  max-height: 115px;
  max-width: 115px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn {
  color: #6689CC;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn:before,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn:before {
  border-color: #6689CC;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn:before {
  background: url(../images/ge_icon_sprite.png) no-repeat -179px -114px;
  height: 11px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.add-btn:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn:before {
  background: url(../images/ge_icon_sprite.png) no-repeat -218px -114px;
  height: 11px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open.checkbox ul[class^="bundle-option-"] li span div.remove-btn:before {
    background-image: url(../images/ge_icon_sprite@2x.png);
    background-size: 566px 521px;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open input.input-text {
  height: 30px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-swatch {
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-swatch {
  max-width: 115px;
  margin: auto;
  margin-bottom: 5px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.out-of-stock {
  color: #ACACAB;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.out-of-stock span.choice-icon.swatch-label,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.out-of-stock span.choice-icon.swatch-label:hover {
  border-color: #ACACAB;
  background: url(../images/strikethrough.svg) no-repeat 100% 100%;
  color: #ACACAB;
  background-size: 100% 100%;
  background-color: transparent;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.out-of-stock span.choice-icon.swatch-label .title,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.out-of-stock span.choice-icon.swatch-label:hover .title {
  color: #ACACAB;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label {
  background: #fff;
  border-color: #6689CC;
  width: 62px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label .title {
  color: #6B6B6B;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label:before {
  border-width: 0 !important;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label:hover {
  background: #6689CC;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li span.choice-icon.swatch-label:hover .title {
  color: #fff;
}

@media only screen and (min-width: 770px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
    width: 50%;
  }
}

@media only screen and (min-width: 979px) {
  .gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
    width: 33.3%;
  }
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected {
  color: #6B6B6B;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-icon.swatch-label {
  background: #6689CC;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li.selected span.choice-icon.swatch-label .title {
  color: #fff;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-text-valid > .icon:before,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon:before {
  border-color: #99B9F7;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  border-width: 1px;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-text-valid > .icon.swatch-label:before,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-valid > .icon.swatch-label:before {
  display: none;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-text-valid span.icon img:not(.closed-icon),
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-valid span.icon img:not(.closed-icon) {
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-text-valid div.swatch-label,
.gift-experience-pdp .product-options.bundle-customizer > dl > dd .step-closed.choice-valid div.swatch-label {
  color: #fff;
  background: #6689CC;
}

.gift-experience-pdp .product-options.bundle-customizer > dl > dd .current-qty {
  background: #FBCF27;
  color: #000000;
  top: -8px;
  right: -8px;
}

.product-view.bearbuilder-pdp .product-essential .product-img-box {
  width: 38.5%;
}

@media only screen and (max-width: 770px) {
  .product-view.bearbuilder-pdp .product-essential .product-img-box {
    width: 100%;
  }
}

.product-view.bearbuilder-pdp .product-essential .product-shop,
.product-view.bearbuilder-pdp .product-name {
  width: 50%;
  padding-left: 0%;
}

@media only screen and (max-width: 770px) {
  .product-view.bearbuilder-pdp .product-essential .product-shop,
  .product-view.bearbuilder-pdp .product-name {
    width: 100%;
  }
}

.product-view.bearbuilder-pdp .product-essential .product-options-bottom .add-to-cart-buttons button.button {
  background: #FBCF27;
  box-shadow: inset 0 100px 0 0 #FBCF27;
}

.step-open ul[class^="bundle-option-"] ~ [class^="bundle-option-"] dl {
  margin: 10px 0 0;
}

.step-open ul[class^="bundle-option-"] ~ [class^="bundle-option-"] dl:first-of-type {
  margin-top: 10px;
}

.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] ~ [class^="bundle-option-"] dl:first-of-type {
  margin-top: 20px;
}

.product-options.bundle-customizer > dl > dd .step-open span.clear-button {
  margin-top: 10px;
  clear: both;
}

.product-options.bundle-customizer > dl > dd .step-open.single ul[class^="bundle-option-"] li,
.product-options.bundle-customizer > dl > dd .step-open ul[class^="bundle-option-"] li {
  position: relative;
}

.product-options.bundle-customizer > dl > dd .step-open span.modal-info {
  position: absolute;
  top: 0;
  right: 40px;
}

.product-options.bundle-customizer .step-open.single.opened span.modal-info {
  right: 160px;
}

.product-options.bundle-customizer .step-open.single span.choice-icon img,
.product-options.bundle-customizer .step-open.single span.choice-swatch img {
  border: 1px solid #99B9F7;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.add-to-cart-wrapper.family-planner {
  text-align: right;
  width: 50%;
  padding-right: 6.6%;
}

@media only screen and (max-width: 770px) {
  .add-to-cart-wrapper.family-planner {
    width: 100%;
  }
}

@media only screen and (max-width: 479px) {
  .add-to-cart-wrapper.family-planner {
    padding-right: 0;
  }
}

.add-to-cart-wrapper.family-planner .pjg-price-block {
  float: left;
  width: 25%;
}

@media only screen and (max-width: 479px) {
  .add-to-cart-wrapper.family-planner .pjg-price-block {
    width: 100%;
  }
}

.add-to-cart-wrapper.family-planner .add-to-box {
  float: none;
}

.add-to-cart-wrapper.family-planner .add-to-box .add-to-cart-buttons {
  width: 75%;
}

@media only screen and (max-width: 479px) {
  .add-to-cart-wrapper.family-planner .add-to-box .add-to-cart-buttons {
    width: 100%;
  }
}

.add-to-cart-wrapper.family-planner .add-to-box .add-to-cart-buttons .btn-cart {
  min-width: 250px;
  margin: 0;
}

.family-planner-top,
#pajama-planner-selector,
.pajama-planner-instructions,
.grouped-items-table-wrapper,
.add-to-box {
  max-width: 399px;
  display: inline-block;
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .family-planner-top,
  #pajama-planner-selector,
  .pajama-planner-instructions,
  .grouped-items-table-wrapper,
  .add-to-box {
    max-width: 100%;
  }
}

.family-planner-top {
  text-align: center;
  margin-bottom: 18px;
  border: 2px solid #99B9F7;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 0 10px 24px;
}

.family-planner-top h4 {
  color: #004276;
  margin: 17px 0 16px;
  font-family: "MontserratBold", Verdana, Arial, sans-serif;
}

.family-planner-top .pajama-planner-availability a {
  font-size: 12px;
}

#pajama-planner-selector {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 16px;
  max-width: 356px;
}

#pajama-planner-selector .planner-item {
  display: inline-block;
  width: 20.7865%;
  cursor: pointer;
  text-align: center;
  position: relative;
  margin-left: 4.2135%;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

#pajama-planner-selector .planner-item span {
  font-size: 12px;
  color: #6B6B6B;
  display: block;
}

#pajama-planner-selector .planner-item span.count {
  position: absolute;
  top: -5px;
  right: -5px;
  animation: small-grow-in 300ms ease forwards;
  background: #FBCF27;
  color: #2A2A2A;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 18px;
}

#pajama-planner-selector .planner-item + .planner-item + .planner-item + .planner-item + .planner-item {
  margin-top: 14px;
}

#pajama-planner-selector .planner-item:nth-child(4n+1) {
  margin-left: 0;
  clear: left;
}

#pajama-planner-selector .planner-item img {
  margin: auto;
  width: 100%;
  height: auto;
}

#pajama-planner-selector .planner-item .name {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 11px;
  color: #6B6B6B;
}

#pajama-planner-selector .planner-item.outofstock > div {
  position: relative;
}

#pajama-planner-selector .planner-item.outofstock > div:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: '';
  background: url(../images/strikethrough.svg) no-repeat 100% 100%;
  background-size: 96% 96%;
  background-position: center center;
}

#pajama-planner-selector .planner-item.outofstock > div img {
  opacity: 0.3;
  cursor: not-allowed;
}

.instruction-modal-button {
  cursor: pointer;
  display: none;
  margin: 1px auto 0 auto;
  text-align: right;
  max-width: 399px;
  font-size: 12px;
  position: relative;
  padding-right: 9px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 770px) {
  .instruction-modal-button {
    max-width: none;
  }
}

.instruction-modal-button:before {
  position: absolute;
  display: inline-block;
  top: 3px;
  bottom: 0;
  right: 38px;
  content: "";
  background: url(../images/family_planner_sprite.png) no-repeat -30px 0;
  height: 13px;
  width: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .instruction-modal-button:before {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

.pajama-planner-instructions {
  border: 2px solid #99B9F7;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 18px 20px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: left;
}

.pajama-planner-instructions h4 {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.pajama-planner-instructions p {
  margin-bottom: 17px;
}

.grouped-items-table-wrapper,
.pajama-planner-completed-grid {
  border: none;
  padding: 0;
}

.grouped-items-table-wrapper .pjg-planner-selection-label.validation-failed:after,
.pajama-planner-completed-grid .pjg-planner-selection-label.validation-failed:after {
  content: "This is a required field.";
  color: #D0021B;
  display: block;
}

.grouped-items-table-wrapper .grouped-items-table .price-box, .grouped-items-table-wrapper ul .price-box,
.pajama-planner-completed-grid .grouped-items-table .price-box,
.pajama-planner-completed-grid ul .price-box {
  float: left;
  width: 100px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form, .grouped-items-table-wrapper .grouped-items-table li, .grouped-items-table-wrapper ul .product-form, .grouped-items-table-wrapper ul li,
.pajama-planner-completed-grid .grouped-items-table .product-form,
.pajama-planner-completed-grid .grouped-items-table li,
.pajama-planner-completed-grid ul .product-form,
.pajama-planner-completed-grid ul li {
  border-bottom: none;
  padding: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .member-closed .planner-row-delete, .grouped-items-table-wrapper .grouped-items-table li .member-closed .planner-row-delete, .grouped-items-table-wrapper ul .product-form .member-closed .planner-row-delete, .grouped-items-table-wrapper ul li .member-closed .planner-row-delete,
.pajama-planner-completed-grid .grouped-items-table .product-form .member-closed .planner-row-delete,
.pajama-planner-completed-grid .grouped-items-table li .member-closed .planner-row-delete,
.pajama-planner-completed-grid ul .product-form .member-closed .planner-row-delete,
.pajama-planner-completed-grid ul li .member-closed .planner-row-delete {
  cursor: pointer;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-align: center;
  position: absolute;
  display: inline-block;
  margin-right: 21px;
  margin-top: 10px;
  width: 50px;
  top: 0;
  right: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .member-closed .planner-row-delete:after, .grouped-items-table-wrapper .grouped-items-table li .member-closed .planner-row-delete:after, .grouped-items-table-wrapper ul .product-form .member-closed .planner-row-delete:after, .grouped-items-table-wrapper ul li .member-closed .planner-row-delete:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .member-closed .planner-row-delete:after,
.pajama-planner-completed-grid .grouped-items-table li .member-closed .planner-row-delete:after,
.pajama-planner-completed-grid ul .product-form .member-closed .planner-row-delete:after,
.pajama-planner-completed-grid ul li .member-closed .planner-row-delete:after {
  content: '';
  display: block;
  background: url(../images/family_planner_sprite.png) no-repeat -1px -1px;
  height: 11px;
  width: 10px;
  position: absolute;
  right: -4px;
  top: 4px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .member-closed .planner-row-delete:after, .grouped-items-table-wrapper .grouped-items-table li .member-closed .planner-row-delete:after, .grouped-items-table-wrapper ul .product-form .member-closed .planner-row-delete:after, .grouped-items-table-wrapper ul li .member-closed .planner-row-delete:after,
  .pajama-planner-completed-grid .grouped-items-table .product-form .member-closed .planner-row-delete:after,
  .pajama-planner-completed-grid .grouped-items-table li .member-closed .planner-row-delete:after,
  .pajama-planner-completed-grid ul .product-form .member-closed .planner-row-delete:after,
  .pajama-planner-completed-grid ul li .member-closed .planner-row-delete:after {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .member-closed .planner-row-hide, .grouped-items-table-wrapper .grouped-items-table li .member-closed .planner-row-hide, .grouped-items-table-wrapper ul .product-form .member-closed .planner-row-hide, .grouped-items-table-wrapper ul li .member-closed .planner-row-hide,
.pajama-planner-completed-grid .grouped-items-table .product-form .member-closed .planner-row-hide,
.pajama-planner-completed-grid .grouped-items-table li .member-closed .planner-row-hide,
.pajama-planner-completed-grid ul .product-form .member-closed .planner-row-hide,
.pajama-planner-completed-grid ul li .member-closed .planner-row-hide {
  cursor: pointer;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-align: center;
  position: absolute;
  display: inline-block;
  margin-right: 21px;
  margin-top: 10px;
  width: 50px;
  bottom: 10px;
  right: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .member-closed .planner-row-hide:after, .grouped-items-table-wrapper .grouped-items-table li .member-closed .planner-row-hide:after, .grouped-items-table-wrapper ul .product-form .member-closed .planner-row-hide:after, .grouped-items-table-wrapper ul li .member-closed .planner-row-hide:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .member-closed .planner-row-hide:after,
.pajama-planner-completed-grid .grouped-items-table li .member-closed .planner-row-hide:after,
.pajama-planner-completed-grid ul .product-form .member-closed .planner-row-hide:after,
.pajama-planner-completed-grid ul li .member-closed .planner-row-hide:after {
  content: '';
  display: block;
  background: url(../images/family_planner_sprite.png) no-repeat -15px -4px;
  height: 8px;
  width: 13px;
  position: absolute;
  right: -4px;
  top: 6px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .member-closed .planner-row-hide:after, .grouped-items-table-wrapper .grouped-items-table li .member-closed .planner-row-hide:after, .grouped-items-table-wrapper ul .product-form .member-closed .planner-row-hide:after, .grouped-items-table-wrapper ul li .member-closed .planner-row-hide:after,
  .pajama-planner-completed-grid .grouped-items-table .product-form .member-closed .planner-row-hide:after,
  .pajama-planner-completed-grid .grouped-items-table li .member-closed .planner-row-hide:after,
  .pajama-planner-completed-grid ul .product-form .member-closed .planner-row-hide:after,
  .pajama-planner-completed-grid ul li .member-closed .planner-row-hide:after {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .member-open, .grouped-items-table-wrapper .grouped-items-table li .member-open, .grouped-items-table-wrapper ul .product-form .member-open, .grouped-items-table-wrapper ul li .member-open,
.pajama-planner-completed-grid .grouped-items-table .product-form .member-open,
.pajama-planner-completed-grid .grouped-items-table li .member-open,
.pajama-planner-completed-grid ul .product-form .member-open,
.pajama-planner-completed-grid ul li .member-open {
  display: none;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block, .grouped-items-table-wrapper .grouped-items-table li .pjg-block, .grouped-items-table-wrapper ul .product-form .pjg-block, .grouped-items-table-wrapper ul li .pjg-block,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block,
.pajama-planner-completed-grid ul .product-form .pjg-block,
.pajama-planner-completed-grid ul li .pjg-block {
  width: 100%;
  border: 2px solid #99B9F7;
  margin-bottom: 10px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 12px 12px 30px 12px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block:after, .grouped-items-table-wrapper ul .product-form .pjg-block:after, .grouped-items-table-wrapper ul li .pjg-block:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block:after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block:after,
.pajama-planner-completed-grid ul .product-form .pjg-block:after,
.pajama-planner-completed-grid ul li .pjg-block:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block .modal-info, .grouped-items-table-wrapper .grouped-items-table li .pjg-block .modal-info, .grouped-items-table-wrapper ul .product-form .pjg-block .modal-info, .grouped-items-table-wrapper ul li .pjg-block .modal-info,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block .modal-info,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block .modal-info,
.pajama-planner-completed-grid ul .product-form .pjg-block .modal-info,
.pajama-planner-completed-grid ul li .pjg-block .modal-info {
  float: right;
  font-size: 11px;
  cursor: pointer;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block .modal-info.size-chart-link, .grouped-items-table-wrapper .grouped-items-table li .pjg-block .modal-info.size-chart-link, .grouped-items-table-wrapper ul .product-form .pjg-block .modal-info.size-chart-link, .grouped-items-table-wrapper ul li .pjg-block .modal-info.size-chart-link,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block .modal-info.size-chart-link,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block .modal-info.size-chart-link,
.pajama-planner-completed-grid ul .product-form .pjg-block .modal-info.size-chart-link,
.pajama-planner-completed-grid ul li .pjg-block .modal-info.size-chart-link {
  float: none;
  display: inline-block;
  position: absolute;
  right: 0;
  padding-right: 16px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block .modal-info.size-chart-link span, .grouped-items-table-wrapper .grouped-items-table li .pjg-block .modal-info.size-chart-link span, .grouped-items-table-wrapper ul .product-form .pjg-block .modal-info.size-chart-link span, .grouped-items-table-wrapper ul li .pjg-block .modal-info.size-chart-link span,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block .modal-info.size-chart-link span,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block .modal-info.size-chart-link span,
.pajama-planner-completed-grid ul .product-form .pjg-block .modal-info.size-chart-link span,
.pajama-planner-completed-grid ul li .pjg-block .modal-info.size-chart-link span {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  background: url(../images/family_planner_sprite.png) no-repeat -80px -3px;
  height: 11px;
  width: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block .modal-info.size-chart-link span, .grouped-items-table-wrapper .grouped-items-table li .pjg-block .modal-info.size-chart-link span, .grouped-items-table-wrapper ul .product-form .pjg-block .modal-info.size-chart-link span, .grouped-items-table-wrapper ul li .pjg-block .modal-info.size-chart-link span,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block .modal-info.size-chart-link span,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block .modal-info.size-chart-link span,
  .pajama-planner-completed-grid ul .product-form .pjg-block .modal-info.size-chart-link span,
  .pajama-planner-completed-grid ul li .pjg-block .modal-info.size-chart-link span {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left, .grouped-items-table-wrapper ul .product-form .pjg-block-left, .grouped-items-table-wrapper ul li .pjg-block-left,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left,
.pajama-planner-completed-grid ul .product-form .pjg-block-left,
.pajama-planner-completed-grid ul li .pjg-block-left {
  width: 29%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left .qty-wrapper, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left .qty-wrapper, .grouped-items-table-wrapper ul .product-form .pjg-block-left .qty-wrapper, .grouped-items-table-wrapper ul li .pjg-block-left .qty-wrapper,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left .qty-wrapper,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left .qty-wrapper,
.pajama-planner-completed-grid ul .product-form .pjg-block-left .qty-wrapper,
.pajama-planner-completed-grid ul li .pjg-block-left .qty-wrapper {
  display: none;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left img, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left img, .grouped-items-table-wrapper ul .product-form .pjg-block-left img, .grouped-items-table-wrapper ul li .pjg-block-left img,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left img,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left img,
.pajama-planner-completed-grid ul .product-form .pjg-block-left img,
.pajama-planner-completed-grid ul li .pjg-block-left img {
  display: inline-block;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left .price-box, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left .price-box, .grouped-items-table-wrapper ul .product-form .pjg-block-left .price-box, .grouped-items-table-wrapper ul li .pjg-block-left .price-box,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left .price-box,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left .price-box,
.pajama-planner-completed-grid ul .product-form .pjg-block-left .price-box,
.pajama-planner-completed-grid ul li .pjg-block-left .price-box {
  display: block;
  text-align: center;
  float: none;
  width: 100%;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left h6, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left h6, .grouped-items-table-wrapper ul .product-form .pjg-block-left h6, .grouped-items-table-wrapper ul li .pjg-block-left h6,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left h6,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left h6,
.pajama-planner-completed-grid ul .product-form .pjg-block-left h6,
.pajama-planner-completed-grid ul li .pjg-block-left h6 {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left .planner-row-delete, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left .planner-row-delete, .grouped-items-table-wrapper ul .product-form .pjg-block-left .planner-row-delete, .grouped-items-table-wrapper ul li .pjg-block-left .planner-row-delete,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left .planner-row-delete,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left .planner-row-delete,
.pajama-planner-completed-grid ul .product-form .pjg-block-left .planner-row-delete,
.pajama-planner-completed-grid ul li .pjg-block-left .planner-row-delete {
  cursor: pointer;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-right: 21px;
  margin-top: 10px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left .planner-row-delete:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left .planner-row-delete:after, .grouped-items-table-wrapper ul .product-form .pjg-block-left .planner-row-delete:after, .grouped-items-table-wrapper ul li .pjg-block-left .planner-row-delete:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left .planner-row-delete:after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-left .planner-row-delete:after,
.pajama-planner-completed-grid ul .product-form .pjg-block-left .planner-row-delete:after,
.pajama-planner-completed-grid ul li .pjg-block-left .planner-row-delete:after {
  content: '';
  display: block;
  background: url(../images/family_planner_sprite.png) no-repeat -1px -1px;
  height: 11px;
  width: 10px;
  position: absolute;
  right: -14px;
  top: 4px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-left .planner-row-delete:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-left .planner-row-delete:after, .grouped-items-table-wrapper ul .product-form .pjg-block-left .planner-row-delete:after, .grouped-items-table-wrapper ul li .pjg-block-left .planner-row-delete:after,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-left .planner-row-delete:after,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-left .planner-row-delete:after,
  .pajama-planner-completed-grid ul .product-form .pjg-block-left .planner-row-delete:after,
  .pajama-planner-completed-grid ul li .pjg-block-left .planner-row-delete:after {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right, .grouped-items-table-wrapper ul .product-form .pjg-block-right, .grouped-items-table-wrapper ul li .pjg-block-right,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right,
.pajama-planner-completed-grid ul .product-form .pjg-block-right,
.pajama-planner-completed-grid ul li .pjg-block-right {
  width: 60.7%;
  float: right;
  text-align: left;
  margin-right: 8%;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .style-block, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .style-block, .grouped-items-table-wrapper ul .product-form .pjg-block-right .style-block, .grouped-items-table-wrapper ul li .pjg-block-right .style-block,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .style-block,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .style-block,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .style-block,
.pajama-planner-completed-grid ul li .pjg-block-right .style-block {
  margin-bottom: 20px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .style-block .required::after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .style-block .required::after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .style-block .required::after, .grouped-items-table-wrapper ul li .pjg-block-right .style-block .required::after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .style-block .required::after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .style-block .required::after,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .style-block .required::after,
.pajama-planner-completed-grid ul li .pjg-block-right .style-block .required::after {
  display: none;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .fieldset .field, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .fieldset .field, .grouped-items-table-wrapper ul .product-form .pjg-block-right .fieldset .field, .grouped-items-table-wrapper ul li .pjg-block-right .fieldset .field,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .fieldset .field,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .fieldset .field,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .fieldset .field,
.pajama-planner-completed-grid ul li .pjg-block-right .fieldset .field {
  position: relative;
  margin-bottom: 9px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .fieldset .field:last-child, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .fieldset .field:last-child, .grouped-items-table-wrapper ul .product-form .pjg-block-right .fieldset .field:last-child, .grouped-items-table-wrapper ul li .pjg-block-right .fieldset .field:last-child,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .fieldset .field:last-child,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .fieldset .field:last-child,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .fieldset .field:last-child,
.pajama-planner-completed-grid ul li .pjg-block-right .fieldset .field:last-child {
  margin-bottom: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .validation-passed .please-select, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .validation-passed .please-select, .grouped-items-table-wrapper ul .product-form .pjg-block-right .validation-passed .please-select, .grouped-items-table-wrapper ul li .pjg-block-right .validation-passed .please-select,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .validation-passed .please-select,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .validation-passed .please-select,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .validation-passed .please-select,
.pajama-planner-completed-grid ul li .pjg-block-right .validation-passed .please-select {
  display: none;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right dd, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right dd, .grouped-items-table-wrapper ul .product-form .pjg-block-right dd, .grouped-items-table-wrapper ul li .pjg-block-right dd,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right dd,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right dd,
.pajama-planner-completed-grid ul .product-form .pjg-block-right dd,
.pajama-planner-completed-grid ul li .pjg-block-right dd {
  margin-bottom: 25px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .backorder-message, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .backorder-message, .grouped-items-table-wrapper ul .product-form .pjg-block-right .backorder-message, .grouped-items-table-wrapper ul li .pjg-block-right .backorder-message,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .backorder-message,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .backorder-message,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .backorder-message,
.pajama-planner-completed-grid ul li .pjg-block-right .backorder-message {
  position: absolute;
  display: block;
  bottom: -17px;
  left: 0;
  font-size: 11px;
  color: #6B6B6B;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections {
  margin-top: 5px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label {
  margin-bottom: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label label {
  margin-bottom: 1px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection-label .required::after {
  display: none;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector {
  border: 1px solid #99B9F7;
  border-radius: 6px;
  display: inline-block !important;
  cursor: pointer;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #656963;
  line-height: 26px;
  width: auto;
  text-align: center;
  padding: 1px 5px;
  min-width: 62px;
  box-sizing: border-box;
  margin: 5px 0 5px 15px;
  max-width: 62px;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all ease 300ms;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1) {
  margin-left: 0;
}

@media only screen and (max-width: 870px) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1) {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:nth-child(3n-1),
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1) {
    margin-left: 3.5%;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:hover, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.selected, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:hover, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector.selected, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:hover, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.selected, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector:hover, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector.selected,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:hover,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.selected,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:hover,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector.selected,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:hover,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.selected,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection:hover,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.selected,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector:hover,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector.selected {
  background: #6689CC;
  color: #fff;
  border-color: #6689CC;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock {
  border-color: #ACACAB;
  background: url(../images/strikethrough.svg) no-repeat 100% 100%;
  color: #ACACAB;
  background-size: 100% 100%;
}

@media only screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector {
    width: 30%;
    margin: 5px 0 5px 3.5%;
    min-width: 0;
  }
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock,
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection.outofstock,
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector.outofstock {
    background: url(../images/strikethrough.png) no-repeat 59% 100%;
    background-size: 70px;
  }
}

@media only screen and (max-width: 479px) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection, .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector,
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .pjg-planner-selection,
  .pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector {
    width: 29.5%;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1),
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(3n-1) {
  margin-left: 15px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1), .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1), .grouped-items-table-wrapper ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1), .grouped-items-table-wrapper ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1),
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1),
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1),
.pajama-planner-completed-grid ul .product-form .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1),
.pajama-planner-completed-grid ul li .pjg-block-right .pjg-planner-selections .personalize-selector:nth-child(2n-1) {
  margin-left: 0;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right label, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right label, .grouped-items-table-wrapper ul .product-form .pjg-block-right label, .grouped-items-table-wrapper ul li .pjg-block-right label,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right label,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right label,
.pajama-planner-completed-grid ul .product-form .pjg-block-right label,
.pajama-planner-completed-grid ul li .pjg-block-right label {
  display: block;
  font-size: 12px;
  color: #ACACAB;
  margin-bottom: 4px;
  max-width: 225px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right label span, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right label span, .grouped-items-table-wrapper ul .product-form .pjg-block-right label span, .grouped-items-table-wrapper ul li .pjg-block-right label span,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right label span,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right label span,
.pajama-planner-completed-grid ul .product-form .pjg-block-right label span,
.pajama-planner-completed-grid ul li .pjg-block-right label span {
  color: #6B6B6B;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right label span.description, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right label span.description, .grouped-items-table-wrapper ul .product-form .pjg-block-right label span.description, .grouped-items-table-wrapper ul li .pjg-block-right label span.description,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right label span.description,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right label span.description,
.pajama-planner-completed-grid ul .product-form .pjg-block-right label span.description,
.pajama-planner-completed-grid ul li .pjg-block-right label span.description {
  margin-left: 6px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right label span.price, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right label span.price, .grouped-items-table-wrapper ul .product-form .pjg-block-right label span.price, .grouped-items-table-wrapper ul li .pjg-block-right label span.price,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right label span.price,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right label span.price,
.pajama-planner-completed-grid ul .product-form .pjg-block-right label span.price,
.pajama-planner-completed-grid ul li .pjg-block-right label span.price {
  margin-left: 2px;
  font-size: 12px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right label span.price span, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right label span.price span, .grouped-items-table-wrapper ul .product-form .pjg-block-right label span.price span, .grouped-items-table-wrapper ul li .pjg-block-right label span.price span,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right label span.price span,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right label span.price span,
.pajama-planner-completed-grid ul .product-form .pjg-block-right label span.price span,
.pajama-planner-completed-grid ul li .pjg-block-right label span.price span {
  color: #383838;
}

@media only screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right label, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right label, .grouped-items-table-wrapper ul .product-form .pjg-block-right label, .grouped-items-table-wrapper ul li .pjg-block-right label,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right label,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right label,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right label,
  .pajama-planner-completed-grid ul li .pjg-block-right label {
    max-width: 100%;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .select-container, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right input, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .input-box, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .select-container, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right input, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .input-box, .grouped-items-table-wrapper ul .product-form .pjg-block-right .select-container, .grouped-items-table-wrapper ul .product-form .pjg-block-right input, .grouped-items-table-wrapper ul .product-form .pjg-block-right .input-box, .grouped-items-table-wrapper ul li .pjg-block-right .select-container, .grouped-items-table-wrapper ul li .pjg-block-right input, .grouped-items-table-wrapper ul li .pjg-block-right .input-box,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .select-container,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right input,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .input-box,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .select-container,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right input,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .input-box,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .select-container,
.pajama-planner-completed-grid ul .product-form .pjg-block-right input,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .input-box,
.pajama-planner-completed-grid ul li .pjg-block-right .select-container,
.pajama-planner-completed-grid ul li .pjg-block-right input,
.pajama-planner-completed-grid ul li .pjg-block-right .input-box {
  width: 100%;
  max-width: 227px;
}

@media only screen and (max-width: 770px) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .select-container, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right input, .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .input-box, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .select-container, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right input, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .input-box, .grouped-items-table-wrapper ul .product-form .pjg-block-right .select-container, .grouped-items-table-wrapper ul .product-form .pjg-block-right input, .grouped-items-table-wrapper ul .product-form .pjg-block-right .input-box, .grouped-items-table-wrapper ul li .pjg-block-right .select-container, .grouped-items-table-wrapper ul li .pjg-block-right input, .grouped-items-table-wrapper ul li .pjg-block-right .input-box,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .select-container,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right input,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .input-box,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .select-container,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right input,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .input-box,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .select-container,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right input,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .input-box,
  .pajama-planner-completed-grid ul li .pjg-block-right .select-container,
  .pajama-planner-completed-grid ul li .pjg-block-right input,
  .pajama-planner-completed-grid ul li .pjg-block-right .input-box {
    max-width: 100%;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right input, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right input, .grouped-items-table-wrapper ul .product-form .pjg-block-right input, .grouped-items-table-wrapper ul li .pjg-block-right input,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right input,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right input,
.pajama-planner-completed-grid ul .product-form .pjg-block-right input,
.pajama-planner-completed-grid ul li .pjg-block-right input {
  border-color: #99B9F7;
  height: 30px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right input.validation-failed, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right input.validation-failed, .grouped-items-table-wrapper ul .product-form .pjg-block-right input.validation-failed, .grouped-items-table-wrapper ul li .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid ul .product-form .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid ul li .pjg-block-right input.validation-failed {
  border-color: #D0021B;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .validation-error .custom-shiv, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .validation-error .custom-shiv, .grouped-items-table-wrapper ul .product-form .pjg-block-right .validation-error .custom-shiv, .grouped-items-table-wrapper ul li .pjg-block-right .validation-error .custom-shiv,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .validation-error .custom-shiv,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .validation-error .custom-shiv,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .validation-error .custom-shiv,
.pajama-planner-completed-grid ul li .pjg-block-right .validation-error .custom-shiv {
  background: #D0021B;
  color: #fff;
  border: 1px solid #D0021B;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .validation-error .custom-shiv span:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .validation-error .custom-shiv span:after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .validation-error .custom-shiv span:after, .grouped-items-table-wrapper ul li .pjg-block-right .validation-error .custom-shiv span:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .validation-error .custom-shiv span:after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .validation-error .custom-shiv span:after,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .validation-error .custom-shiv span:after,
.pajama-planner-completed-grid ul li .pjg-block-right .validation-error .custom-shiv span:after {
  background-position: -44px -96px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right input.validation-failed, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right input.validation-failed, .grouped-items-table-wrapper ul .product-form .pjg-block-right input.validation-failed, .grouped-items-table-wrapper ul li .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid ul .product-form .pjg-block-right input.validation-failed,
.pajama-planner-completed-grid ul li .pjg-block-right input.validation-failed {
  color: #6B6B6B;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .custom-shiv, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .custom-shiv, .grouped-items-table-wrapper ul .product-form .pjg-block-right .custom-shiv, .grouped-items-table-wrapper ul li .pjg-block-right .custom-shiv,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .custom-shiv,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .custom-shiv,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .custom-shiv,
.pajama-planner-completed-grid ul li .pjg-block-right .custom-shiv {
  background: #fff;
  color: #4B4B4B;
  border: 1px solid #99B9F7;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  height: 30px;
  line-height: 29px;
  text-align: left;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .custom-shiv span:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .custom-shiv span:after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .custom-shiv span:after, .grouped-items-table-wrapper ul li .pjg-block-right .custom-shiv span:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .custom-shiv span:after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .custom-shiv span:after,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .custom-shiv span:after,
.pajama-planner-completed-grid ul li .pjg-block-right .custom-shiv span:after {
  background-position: -44px -109px;
  top: 11px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .validation-passed .custom-shiv, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .validation-passed .custom-shiv, .grouped-items-table-wrapper ul .product-form .pjg-block-right .validation-passed .custom-shiv, .grouped-items-table-wrapper ul li .pjg-block-right .validation-passed .custom-shiv,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .validation-passed .custom-shiv,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .validation-passed .custom-shiv,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .validation-passed .custom-shiv,
.pajama-planner-completed-grid ul li .pjg-block-right .validation-passed .custom-shiv {
  background: #6689CC;
  border-color: #6689CC;
  color: #fff;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .validation-passed .custom-shiv span:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .validation-passed .custom-shiv span:after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .validation-passed .custom-shiv span:after, .grouped-items-table-wrapper ul li .pjg-block-right .validation-passed .custom-shiv span:after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .validation-passed .custom-shiv span:after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .validation-passed .custom-shiv span:after,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .validation-passed .custom-shiv span:after,
.pajama-planner-completed-grid ul li .pjg-block-right .validation-passed .custom-shiv span:after {
  background-position: -44px -96px;
  position: absolute;
  right: 15px;
  top: 12px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -96px;
  height: 7px;
  width: 12px;
  content: '';
  display: block;
  text-align: center;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .validation-passed .custom-shiv span:after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .validation-passed .custom-shiv span:after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .validation-passed .custom-shiv span:after, .grouped-items-table-wrapper ul li .pjg-block-right .validation-passed .custom-shiv span:after,
  .pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .validation-passed .custom-shiv span:after,
  .pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .validation-passed .custom-shiv span:after,
  .pajama-planner-completed-grid ul .product-form .pjg-block-right .validation-passed .custom-shiv span:after,
  .pajama-planner-completed-grid ul li .pjg-block-right .validation-passed .custom-shiv span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right ul.item-list li, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right ul.item-list li, .grouped-items-table-wrapper ul .product-form .pjg-block-right ul.item-list li, .grouped-items-table-wrapper ul li .pjg-block-right ul.item-list li,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right ul.item-list li,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right ul.item-list li,
.pajama-planner-completed-grid ul .product-form .pjg-block-right ul.item-list li,
.pajama-planner-completed-grid ul li .pjg-block-right ul.item-list li {
  position: relative;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right ul.item-list li img, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right ul.item-list li img, .grouped-items-table-wrapper ul .product-form .pjg-block-right ul.item-list li img, .grouped-items-table-wrapper ul li .pjg-block-right ul.item-list li img,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right ul.item-list li img,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right ul.item-list li img,
.pajama-planner-completed-grid ul .product-form .pjg-block-right ul.item-list li img,
.pajama-planner-completed-grid ul li .pjg-block-right ul.item-list li img {
  position: absolute;
  left: -50px;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right ul.item-list li span.item-name, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right ul.item-list li span.item-name, .grouped-items-table-wrapper ul .product-form .pjg-block-right ul.item-list li span.item-name, .grouped-items-table-wrapper ul li .pjg-block-right ul.item-list li span.item-name,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right ul.item-list li span.item-name,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right ul.item-list li span.item-name,
.pajama-planner-completed-grid ul .product-form .pjg-block-right ul.item-list li span.item-name,
.pajama-planner-completed-grid ul li .pjg-block-right ul.item-list li span.item-name {
  display: inline-block;
  width: 50%;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right ul.item-list li span.price, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right ul.item-list li span.price, .grouped-items-table-wrapper ul .product-form .pjg-block-right ul.item-list li span.price, .grouped-items-table-wrapper ul li .pjg-block-right ul.item-list li span.price,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right ul.item-list li span.price,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right ul.item-list li span.price,
.pajama-planner-completed-grid ul .product-form .pjg-block-right ul.item-list li span.price,
.pajama-planner-completed-grid ul li .pjg-block-right ul.item-list li span.price {
  vertical-align: top;
}

.grouped-items-table-wrapper .grouped-items-table .product-form .pjg-block-right .bundle-select .required::after, .grouped-items-table-wrapper .grouped-items-table li .pjg-block-right .bundle-select .required::after, .grouped-items-table-wrapper ul .product-form .pjg-block-right .bundle-select .required::after, .grouped-items-table-wrapper ul li .pjg-block-right .bundle-select .required::after,
.pajama-planner-completed-grid .grouped-items-table .product-form .pjg-block-right .bundle-select .required::after,
.pajama-planner-completed-grid .grouped-items-table li .pjg-block-right .bundle-select .required::after,
.pajama-planner-completed-grid ul .product-form .pjg-block-right .bundle-select .required::after,
.pajama-planner-completed-grid ul li .pjg-block-right .bundle-select .required::after {
  display: none;
}

.grouped-items-table-wrapper .grouped-items-table tr.last td .pjg-block, .grouped-items-table-wrapper ul tr.last td .pjg-block,
.pajama-planner-completed-grid .grouped-items-table tr.last td .pjg-block,
.pajama-planner-completed-grid ul tr.last td .pjg-block {
  border: none;
}

.familyset_group_container .bundle-product-block .bundle-select .fieldset label .modal-info {
  display: none;
}

.familyset_group_container .bundle-product-block > dl > div.personalize-container.active {
  padding-bottom: 25px;
}

.familyset_group_container .bundle-product-block .pjg-configurable-options-block {
  margin-top: 21px;
}

.familyset_group_container .bundle-product-block .pjg-configurable-options-block dd.swatch-attr {
  margin-bottom: 17px;
}

.familyset_group_container .bundle-product-block .pjg-configurable-options-block dd.swatch-attr .validation-advice {
  float: left;
  margin-top: 2px;
  padding-left: 0;
}

.familyset_group_container .bundle-product-block .pjg-configurable-options-block dt.swatch-attr label {
  margin-bottom: 0;
  line-height: 18px;
}

.familyset_group_container ul.configurable-swatch-list {
  margin-left: 0;
}

.familyset_group_container ul.configurable-swatch-list li a {
  border: none;
}

.familyset_group_container ul.configurable-swatch-list li a span.swatch-label {
  border: 1px solid #99B9F7;
  border-radius: 6px;
  cursor: pointer;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #656963;
  line-height: 27px;
  width: 100%;
  text-align: center;
  padding: 1px 5px;
  box-sizing: border-box;
  transition: all ease 300ms;
  background: none;
}

.familyset_group_container ul.configurable-swatch-list li {
  margin: 5px 0 5px 15px;
  min-width: 62px;
}

.familyset_group_container ul.configurable-swatch-list li:first-child {
  margin-left: 0;
}

.familyset_group_container ul.configurable-swatch-list li.not-available .x {
  display: none;
}

.familyset_group_container ul.configurable-swatch-list li.not-available span.swatch-label {
  border-color: #ACACAB;
  background: url(../images/strikethrough.svg) no-repeat 100% 100%;
  color: #656963;
  background-size: 100% 100%;
}

.familyset_group_container ul.configurable-swatch-list li.hover:hover a span, .familyset_group_container ul.configurable-swatch-list li.selected.selected a span {
  background: #6689CC;
  color: #fff;
  border-color: #6689CC;
}

@media only screen and (max-width: 770px) {
  .familyset_group_container ul.configurable-swatch-list li {
    width: 30%;
    margin: 5px 0 5px 3.5%;
    min-width: 0;
  }
}

@media only screen and (max-width: 479px) {
  .familyset_group_container ul.configurable-swatch-list li {
    width: 29.5%;
  }
}

.product-form {
  display: none;
}

.pjg-complete-item {
  margin-top: 10px;
  background-color: #07489E;
  color: #fff;
  border: none;
  height: 30px;
  font-size: 12px;
  border-radius: 6px;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  max-width: 227px;
  text-transform: uppercase;
}

.pjg-complete-item:focus {
  outline: 0;
}

.completed-container {
  max-width: 399px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: -1px;
}

@media only screen and (max-width: 770px) {
  .completed-container {
    max-width: 100%;
  }
}

.completed-container ul li .member-closed {
  border: 2px solid #99B9F7;
  width: 100%;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #fffbf4;
  position: relative;
  padding: 10px 10px 8px;
}

.completed-container ul li .member-closed:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.completed-container ul li .member-closed .price-box .price {
  padding-left: 21px;
}

.completed-container ul li .member-closed div, .completed-container ul li .member-closed h6 {
  float: right;
  clear: right;
  text-align: left;
  width: 80%;
}

.completed-container ul li .member-closed div.icon {
  float: left;
  background: #99B9F7;
  width: 54px;
  text-align: center;
  position: relative;
}

.completed-container ul li .member-closed div.icon img {
  width: 100%;
}

.pjg-block-right dd {
  opacity: 0;
  animation: small-grow-in 300ms ease forwards;
}

.ie8 .pjg-block-right dd, .ie9 .pjg-block-right dd {
  opacity: 1;
}

.pjg-block-right dd:nth-of-type(1) {
  animation-delay: 100ms;
}

.pjg-block-right dd:nth-of-type(2) {
  animation-delay: 200ms;
}

.pjg-block-right dd:nth-of-type(3) {
  animation-delay: 300ms;
}

.pjg-block-right dd:nth-of-type(4) {
  animation-delay: 400ms;
}

.pjg-block-right dd:nth-of-type(5) {
  animation-delay: 500ms;
}

.pjg-block-right dd:nth-of-type(6) {
  animation-delay: 600ms;
}

.pjg-block-right dd:nth-of-type(7) {
  animation-delay: 700ms;
}

.pjg-block-right .note {
  font-size: 11px;
  line-height: 14px;
}

.bundle-product-block .fieldset .swatch.field .pjg-planner-selection-label label {
  max-width: 100%;
}

.instructions-modal.fancybox-wrap,
.availability-modal.fancybox-wrap {
  animation: modal-fadein 750ms cubic-bezier(0.36, 1.92, 0.62, 0.61) forwards;
}

.ie8 .instructions-modal.fancybox-wrap, .ie9 .instructions-modal.fancybox-wrap, .ie8
.availability-modal.fancybox-wrap, .ie9
.availability-modal.fancybox-wrap {
  opacity: 1 !important;
}

.instructions-modal.fancybox-wrap .instructions-modal-content,
.instructions-modal.fancybox-wrap .availability-modal-content,
.availability-modal.fancybox-wrap .instructions-modal-content,
.availability-modal.fancybox-wrap .availability-modal-content {
  max-width: 400px;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #656963;
}

.instructions-modal.fancybox-wrap .instructions-modal-content h4,
.instructions-modal.fancybox-wrap .availability-modal-content h4,
.availability-modal.fancybox-wrap .instructions-modal-content h4,
.availability-modal.fancybox-wrap .availability-modal-content h4 {
  font-family: "MontserratBold", Verdana, Arial, sans-serif;
  margin-bottom: 7px;
  color: #004276;
  text-align: center;
}

.instructions-modal.fancybox-wrap .fancybox-skin,
.availability-modal.fancybox-wrap .fancybox-skin {
  padding-top: 31px !important;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.instructions-modal.fancybox-wrap .fancybox-close,
.availability-modal.fancybox-wrap .fancybox-close {
  background: url(../images/pjg_icon_sprite.png) no-repeat -188px -36px;
  height: 23px;
  width: 23px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .instructions-modal.fancybox-wrap .fancybox-close,
  .availability-modal.fancybox-wrap .fancybox-close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.instructions-modal.fancybox-wrap .availability-modal-content,
.availability-modal.fancybox-wrap .availability-modal-content {
  max-width: 370px;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header,
.availability-modal.fancybox-wrap .availability-modal-content .header {
  margin-bottom: 17px;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header h2,
.availability-modal.fancybox-wrap .availability-modal-content .header h2 {
  color: #004276;
  font-size: 22px;
  text-align: center;
  line-height: 44px;
  margin-bottom: 0;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header ul li,
.availability-modal.fancybox-wrap .availability-modal-content .header ul li {
  display: inline-block;
  width: 33.33%;
  color: #6B6B6B;
  text-align: center;
  font-size: 11px;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header ul li span,
.availability-modal.fancybox-wrap .availability-modal-content .header ul li span {
  border: 1px solid #99B9F7;
  border-radius: 3px;
  width: 28px;
  height: 14px;
  content: '';
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header ul li.outofstock span,
.availability-modal.fancybox-wrap .availability-modal-content .header ul li.outofstock span {
  border-color: #ACACAB;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header ul li.outofstock span:before,
.availability-modal.fancybox-wrap .availability-modal-content .header ul li.outofstock span:before {
  content: '';
  display: block;
  background: url(../images/strikethrough.png) no-repeat 100% 10%;
  width: 28px;
  height: 14px;
}

.instructions-modal.fancybox-wrap .availability-modal-content .header ul li.backorder span:before,
.availability-modal.fancybox-wrap .availability-modal-content .header ul li.backorder span:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  background: url(../images/family_planner_sprite.png) no-repeat -114px -6px;
  height: 11px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .instructions-modal.fancybox-wrap .availability-modal-content .header ul li.backorder span:before,
  .availability-modal.fancybox-wrap .availability-modal-content .header ul li.backorder span:before {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

@media only screen and (max-width: 479px) {
  .instructions-modal.fancybox-wrap .availability-modal-content .header ul li span,
  .availability-modal.fancybox-wrap .availability-modal-content .header ul li span {
    display: block;
    margin: 0 auto;
  }
}

.instructions-modal.fancybox-wrap .availability-modal-content .left,
.availability-modal.fancybox-wrap .availability-modal-content .left {
  float: left;
  max-width: 75px;
  width: 20%;
  margin-right: 4.5946%;
}

.instructions-modal.fancybox-wrap .availability-modal-content .left img,
.availability-modal.fancybox-wrap .availability-modal-content .left img {
  width: 100%;
  height: auto;
}

.instructions-modal.fancybox-wrap .availability-modal-content .left h6,
.availability-modal.fancybox-wrap .availability-modal-content .left h6 {
  font-size: 12px;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #6B6B6B;
  text-align: center;
}

.instructions-modal.fancybox-wrap .availability-modal-content > ul > li,
.availability-modal.fancybox-wrap .availability-modal-content > ul > li {
  margin-bottom: 17px;
}

.instructions-modal.fancybox-wrap .availability-modal-content > ul > li:after,
.availability-modal.fancybox-wrap .availability-modal-content > ul > li:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right,
.availability-modal.fancybox-wrap .availability-modal-content .right {
  float: right;
  width: 75.4054%;
  max-width: 279px;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul,
.availability-modal.fancybox-wrap .availability-modal-content .right ul {
  margin-top: 0;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul li,
.availability-modal.fancybox-wrap .availability-modal-content .right ul li {
  border: 1px solid #99B9F7;
  border-radius: 6px;
  display: block !important;
  float: left;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #656963;
  text-align: center;
  margin: 0 0 10px 8px;
  padding: 0px 5px;
  width: 26%;
  box-sizing: border-box;
  transition: all ease 300ms;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul li > span.size,
.availability-modal.fancybox-wrap .availability-modal-content .right ul li > span.size {
  display: inline-block;
  line-height: normal;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul li:nth-child(3n+1),
.availability-modal.fancybox-wrap .availability-modal-content .right ul li:nth-child(3n+1) {
  margin-left: 0;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul li.outofstock,
.availability-modal.fancybox-wrap .availability-modal-content .right ul li.outofstock {
  border-color: #ACACAB;
  background: url(../images/strikethrough.svg) no-repeat 100% 100%;
  background-size: 100% 100%;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul li.backorder,
.availability-modal.fancybox-wrap .availability-modal-content .right ul li.backorder {
  position: relative;
}

.instructions-modal.fancybox-wrap .availability-modal-content .right ul li.backorder:before,
.availability-modal.fancybox-wrap .availability-modal-content .right ul li.backorder:before {
  position: absolute;
  right: -4px;
  top: -5px;
  content: '';
  background: url(../images/family_planner_sprite.png) no-repeat -95px -2px;
  height: 15px;
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .instructions-modal.fancybox-wrap .availability-modal-content .right ul li.backorder:before,
  .availability-modal.fancybox-wrap .availability-modal-content .right ul li.backorder:before {
    background-image: url(../images/family_planner_sprite@2x.png);
    background-size: 157px 93px;
  }
}

@media only screen and (max-width: 479px) {
  .instructions-modal.fancybox-wrap .availability-modal-content .right ul li:nth-child(4n+1),
  .availability-modal.fancybox-wrap .availability-modal-content .right ul li:nth-child(4n+1) {
    margin-left: 10px;
  }
  .instructions-modal.fancybox-wrap .availability-modal-content .right ul li:nth-child(3n+1),
  .availability-modal.fancybox-wrap .availability-modal-content .right ul li:nth-child(3n+1) {
    margin-left: 0;
    clear: both;
  }
}

.product-info-modal.fancybox-wrap {
  animation: modal-fadein 750ms cubic-bezier(0.36, 1.92, 0.62, 0.61) forwards;
}

.ie8 .product-info-modal.fancybox-wrap, .ie9 .product-info-modal.fancybox-wrap {
  opacity: 1 !important;
}

@media only screen and (max-width: 770px) {
  .product-info-modal.fancybox-wrap {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
  }
}

.product-info-modal.fancybox-wrap .fancybox-skin {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  background: #FFFFFF;
}

.product-info-modal.fancybox-wrap .fancybox-close {
  background: url(../images/pjg_icon_sprite.png) no-repeat -188px -36px;
  height: 23px;
  width: 23px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-info-modal.fancybox-wrap .fancybox-close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-info-modal.fancybox-wrap .item {
  max-width: 900px;
  padding: 10px 0 20px;
  opacity: 0;
  animation: modal-fadein 750ms cubic-bezier(0.36, 1.92, 0.62, 0.61) forwards;
}

.product-info-modal.fancybox-wrap .item:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.ie8 .product-info-modal.fancybox-wrap .item, .ie9 .product-info-modal.fancybox-wrap .item {
  opacity: 1;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(1) {
  animation-delay: 100ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(2) {
  animation-delay: 200ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(3) {
  animation-delay: 300ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(4) {
  animation-delay: 400ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(5) {
  animation-delay: 500ms;
}

.product-info-modal.fancybox-wrap .item:nth-of-type(6) {
  animation-delay: 600ms;
}

.product-info-modal.fancybox-wrap .item img {
  display: block;
  float: left;
  width: 45%;
  max-width: 100%;
}

@media only screen and (max-width: 770px) {
  .product-info-modal.fancybox-wrap .item img {
    width: 100%;
  }
}

.product-info-modal.fancybox-wrap .item img ~ .product-info {
  width: 55%;
}

@media only screen and (max-width: 770px) {
  .product-info-modal.fancybox-wrap .item img ~ .product-info {
    width: 100%;
  }
}

.product-info-modal.fancybox-wrap .item h4 {
  padding-right: 40px;
  margin: 0;
  color: #004276;
  font-family: "MontserratBold", Verdana, Arial, sans-serif;
}

.product-info-modal.fancybox-wrap .item h4.mobile-name {
  display: none;
  text-align: center;
  padding-left: 40px;
}

@media only screen and (max-width: 770px) {
  .product-info-modal.fancybox-wrap .item h4.mobile-name {
    display: block;
  }
  .product-info-modal.fancybox-wrap .item h4.desktop-name {
    display: none;
  }
}

.product-info-modal.fancybox-wrap .item .product-info {
  float: right;
  width: 100%;
  color: #6B6B6B;
  padding-left: 10px;
}

.product-info-modal.fancybox-wrap .item .product-info .product-description {
  margin-top: 10px;
}

.product-info-modal.fancybox-wrap .item .product-info ul {
  margin-top: 9px;
}

.product-info-modal.fancybox-wrap .item .product-info ul li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 10px;
}

.product-info-modal.fancybox-wrap .item .product-info ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "\00B7";
  color: #6B6B6B;
  font-size: 26px;
}

.product-info-modal.fancybox-wrap .item ~ .item {
  border-top: 1px solid lightgrey;
}

.product-info-modal.fancybox-wrap .size-chart {
  width: 500px;
}

@media only screen and (max-width: 600px) {
  .product-info-modal.fancybox-wrap .size-chart {
    width: 400px;
  }
}

@media only screen and (max-width: 450px) {
  .product-info-modal.fancybox-wrap .size-chart {
    width: 254px;
  }
}

.product-info-modal.fancybox-wrap .size-chart .sizing {
  width: 100%;
}

@media only screen and (min-width: 771px) {
  .family-planner-pdp .product-view .add-to-cart-wrapper .available-shipping-wrapper,
  .family-planner-pdp .product-view .add-to-cart-wrapper .oversize-shipping-wrapper {
    margin-left: 5%;
  }
}

.family-planner-pdp .product-view .price-info-top {
  display: block;
  text-align: left;
  padding: 5px 0;
}

.family-planner-pdp .product-view .price-info-top .price-label,
.family-planner-pdp .product-view .price-info-top .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
}

.family-planner-pdp .wrapper .product-name.mobile {
  text-align: left;
}

.family-planner-pdp .fancybox-skin .fancybox-close {
  width: 36px;
}

@media only screen and (max-width: 770px) {
  .family-planner-pdp .short-description {
    margin: 5px 0 10px 0;
    max-width: 430px;
    width: 100%;
    display: block;
  }
}

.ie .family-planner-pdp .pjg-planner-selection, .ie .family-planner-pdp .personalize-selector, .edge .family-planner-pdp .pjg-planner-selection, .edge .family-planner-pdp .personalize-selector {
  margin: 5px 0 5px 8px !important;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
/* -------------------------------------------- *
 * Container
 */
html .main-container,
html .footer,
html .top-header-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

html .main-container:after:before, html .main-container:after:after,
html .footer:after:before,
html .footer:after:after,
html .top-header-content:after:before,
html .top-header-content:after:after {
  content: " ";
  display: table;
}

html .main-container:after:after,
html .footer:after:after,
html .top-header-content:after:after {
  clear: both;
}

html .main-container,
html .footer {
  padding: 57px;
}

html .top-header-content {
  padding: 0 0;
}

@media only screen and (max-width: 770px) {
  html .top-header-content {
    padding: 0 0;
    max-height: 50px;
  }
}

@media only screen and (max-width: 770px) {
  html .main-container {
    padding: 57px 20px;
    /* fix for footer overflow on mobile breakpoints */
  }
  html .main-container:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .checkout-onepage-index html .main-container .main,
  .checkout-cart-index html .main-container .main {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 480px) {
  html .main-container,
  html .footer,
  html .top-header-content {
    padding: 0px;
  }
  html .main-container:after,
  html .footer:after,
  html .top-header-content:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  html .top-header-content {
    padding: 0 0;
  }
  html .main-container {
    padding: 57px;
  }
  html .footer-container {
    background-color: #F1F1F1;
  }
  html .footer {
    padding: 0;
  }
}

@media only screen and (min-width: 771px) {
  .top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
  }
}

/* ============================================ *
 * Global 
 * ============================================ */
body,
button {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  line-height: 21px;
}

body .wrapper {
  background-color: white;
}

input,
select,
textarea,
table,
li,
p,
a,
strong {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

em {
  font-style: normal;
}

a {
  color: #6689CC;
}

a:hover {
  color: #6689CC;
  text-decoration: underline;
}

a:active {
  color: #6689CC;
  text-decoration: underline;
  background: transparent;
}

a:focus {
  color: #6689CC;
  background: transparent;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .cms-page-view .std h1, .cms-no-route .std h1 {
  font-family: "MontserratBold";
  font-weight: normal;
  color: #4B4B4B;
}

h1, .h1 {
  font-size: 47px;
  line-height: 57px;
}

h2, .h2 {
  font-size: 40px;
  line-height: 49px;
}

h3, .h3 {
  font-size: 28px;
  line-height: 34px;
}

h4, .h4 {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 22px;
  line-height: 30px;
}

h5, .h5 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
}

h6, .h6 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  text-transform: none;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #7BA2D3;
  color: #fff;
  font-size: 17px;
}

.cart .buttons-set .button.btn-small,
.cart-table .button.btn-small,
.sidebar .actions .button.btn-small,
.button.button-secondary.btn-small {
  background: #6689CC;
  line-height: 19px;
  font-size: 14px;
}

.cart .buttons-set .button.btn-medium,
.cart-table .button.btn-medium,
.sidebar .actions .button.btn-medium,
.button.button-secondary.btn-medium {
  background: #6689CC;
  line-height: 19px;
  font-size: 15px;
}

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
.button,
.footer .button {
  background: #07489E;
  color: #FFFFFF;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  height: 52px;
  font-size: 17px;
}

.button:hover,
.cart-table .product-cart-actions .button:hover,
.button:hover,
.footer .button:hover {
  background: #042755;
  cursor: pointer;
  color: #FFFFFF;
}

.button:active,
.cart-table .product-cart-actions .button:active,
.button:active,
.footer .button:active {
  background: #05326d;
  color: #FFFFFF;
}

.button:focus,
.cart-table .product-cart-actions .button:focus,
.button:focus,
.footer .button:focus {
  background-color: #05326d;
  outline: none;
  color: #FFFFFF;
}

.button.btn-small,
.cart-table .product-cart-actions .button.btn-small,
.button.btn-small,
.footer .button.btn-small {
  line-height: 19px;
  background: #07489E;
  height: 38px;
  font-size: 14px;
}

.button.btn-small:hover,
.cart-table .product-cart-actions .button.btn-small:hover,
.button.btn-small:hover,
.footer .button.btn-small:hover {
  background: #042755;
  cursor: pointer;
}

.button.btn-small:active,
.cart-table .product-cart-actions .button.btn-small:active,
.button.btn-small:active,
.footer .button.btn-small:active {
  background: #05326d;
  color: #FFFFFF;
}

.button.btn-small:focus,
.cart-table .product-cart-actions .button.btn-small:focus,
.button.btn-small:focus,
.footer .button.btn-small:focus {
  background-color: #05326d;
  outline: none;
  color: #FFFFFF;
}

.button.btn-medium,
.cart-table .product-cart-actions .button.btn-medium,
.button.btn-medium,
.footer .button.btn-medium {
  line-height: 19px;
  background: #07489E;
  height: 44px;
  font-size: 15px;
}

.button.btn-medium:hover,
.cart-table .product-cart-actions .button.btn-medium:hover,
.button.btn-medium:hover,
.footer .button.btn-medium:hover {
  background: #042755;
  cursor: pointer;
}

.button.btn-medium:active,
.cart-table .product-cart-actions .button.btn-medium:active,
.button.btn-medium:active,
.footer .button.btn-medium:active {
  background: #05326d;
  color: #FFFFFF;
}

.button.btn-medium:focus,
.cart-table .product-cart-actions .button.btn-medium:focus,
.button.btn-medium:focus,
.footer .button.btn-medium:focus {
  background-color: #05326d;
  outline: none;
  color: #FFFFFF;
}

.button.btn-cart, .button.btn-checkout,
.cart-table .product-cart-actions .button.btn-cart,
.cart-table .product-cart-actions .button.btn-checkout,
.button.btn-cart,
.button.btn-checkout,
.footer .button.btn-cart,
.footer .button.btn-checkout {
  background: #FBCF27;
  color: #4B4B4B;
}

.button.btn-cart:hover, .button.btn-checkout:hover,
.cart-table .product-cart-actions .button.btn-cart:hover,
.cart-table .product-cart-actions .button.btn-checkout:hover,
.button.btn-cart:hover,
.button.btn-checkout:hover,
.footer .button.btn-cart:hover,
.footer .button.btn-checkout:hover {
  background: #fbc90e;
  cursor: pointer;
}

.button.btn-cart:active, .button.btn-checkout:active,
.cart-table .product-cart-actions .button.btn-cart:active,
.cart-table .product-cart-actions .button.btn-checkout:active,
.button.btn-cart:active,
.button.btn-checkout:active,
.footer .button.btn-cart:active,
.footer .button.btn-checkout:active {
  background: #ebbb04;
  color: #4B4B4B;
}

.button.btn-cart:focus, .button.btn-checkout:focus,
.cart-table .product-cart-actions .button.btn-cart:focus,
.cart-table .product-cart-actions .button.btn-checkout:focus,
.button.btn-cart:focus,
.button.btn-checkout:focus,
.footer .button.btn-cart:focus,
.footer .button.btn-checkout:focus {
  background-color: #ebbb04;
  outline: none;
  color: #4B4B4B;
}

.block-reorder .button.btn-cart, .block-reorder
.cart-table .product-cart-actions .button.btn-cart, .block-reorder
.button.btn-cart, .block-reorder
.footer .button.btn-cart {
  background: #FBCF27;
  color: #4B4B4B;
}

.block-reorder .button.btn-cart:hover, .block-reorder
.cart-table .product-cart-actions .button.btn-cart:hover, .block-reorder
.button.btn-cart:hover, .block-reorder
.footer .button.btn-cart:hover {
  background: #fbc90e;
  cursor: pointer;
}

.block-reorder .button.btn-cart:active, .block-reorder
.cart-table .product-cart-actions .button.btn-cart:active, .block-reorder
.button.btn-cart:active, .block-reorder
.footer .button.btn-cart:active {
  background: #ebbb04;
  color: #4B4B4B;
}

.block-reorder .button.btn-cart:focus, .block-reorder
.cart-table .product-cart-actions .button.btn-cart:focus, .block-reorder
.button.btn-cart:focus, .block-reorder
.footer .button.btn-cart:focus {
  background-color: #ebbb04;
  outline: none;
  color: #4B4B4B;
}

a.button, a.button.button-secondary {
  padding-top: 16px;
}

.block-title strong {
  font-size: 28px;
  line-height: 36px;
  color: #2A2A2A;
  font-family: "MontserratBold";
}

.price-box .price,
.price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
}

.block-layered-nav .actions a {
  font-size: 16px;
  line-height: 24px;
  color: #ACACAB;
}

.toolbar label,
.pager-no-toolbar label {
  text-transform: none;
  color: #ACACAB;
}

.pager .limiter .selected {
  color: white;
  background-color: #6689CC;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.product-view .product-essential {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.product-view .product-view .product-shop .availability.in-stock {
  font-size: 14px;
  color: #6B6B6B;
}

.product-view .product-collateral .toggle-tabs li > span {
  line-height: 30px;
  color: #07489E;
  letter-spacing: 0px;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.product-view .collateral-tabs {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.messages .error-msg li {
  background-color: #D0021B;
}

.messages .notice-msg li {
  background-color: #EFBD26;
  color: #fff;
  border-left: 5px solid #EFBD26;
}

.messages li li {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  letter-spacing: 0px;
  line-height: 21px;
}

ol li {
  margin-bottom: 0;
}

.customer-account-login .ui-helper-hidden-accessible, .customer-account-index .ui-helper-hidden-accessible {
  display: none;
}

.customer-account-login .widget-banner + div.main, .customer-account-index .widget-banner + div.main {
  margin-top: 30px;
}

@media only screen and (max-width: 770px) {
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border: 0px;
  }
}

@media only screen and (max-width: 770px) {
  .sidebar .block-account .block-title > strong {
    color: #07489E;
  }
}

a:focus {
  outline: none;
  color: #000;
  background: none;
}

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}

.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "MontserratBold";
  margin: 7px 0;
}

.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #6689CC;
}

.block-account li a,
.block-cms-menu li a {
  color: #4B4B4B;
}

.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #6689CC;
}

.block-account li.current a,
.block-cms-menu li.current a {
  color: #6689CC;
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs li, .breadcrumbs a, .breadcrumbs strong {
  color: #4B4B4B;
  text-transform: none;
  font-size: 14px;
}

@media only screen and (max-width: 770px) {
  .breadcrumbs li, .breadcrumbs a, .breadcrumbs strong {
    color: #4B4B4B;
  }
}

.breadcrumbs span {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.top-container {
  max-width: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .col-main {
    background-color: #F1F1F1;
    margin-bottom: 0;
  }
}

.cms-homepage .wrapper {
  background-color: #fff;
}

.cms-homepage .main-container {
  max-width: none;
  padding: 0;
}

.cms-homepage .section {
  max-width: 1200px;
  margin: 0 auto;
}

.cms-homepage .section:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.cms-homepage .hero-grid {
  max-width: 1200px;
  height: auto;
  margin-top: 20px;
}

.cms-homepage .hero-grid .hero-grid-item {
  width: 50%;
  position: relative;
  float: left;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hero-grid .hero-grid-item {
    width: 100%;
    border-bottom-style: solid;
    border-bottom-color: #abc2e5;
    border-bottom-width: 2px;
  }
}

.cms-homepage .hero-grid .hero-grid-item .left {
  width: 100%;
  height: 100%;
}

.cms-homepage .hero-grid .hero-grid-item .right {
  width: 100%;
  height: 100%;
}

.cms-homepage .hero-grid .hero-grid-item .right img {
  float: right;
}

.cms-homepage .hero-grid .hero-grid-item img {
  max-width: 100%;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hero-grid .hero-grid-item img {
    width: 100%;
    margin: 0 auto;
  }
}

.cms-homepage .hero-grid .grid-copy h3 {
  font-family: "MontserratBold";
  font-size: 28px;
  color: #2A2A2A;
  letter-spacing: 1px;
  line-height: 34px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hero-grid .grid-copy h3 {
    font-size: 18px;
    line-height: 23px;
  }
}

.cms-homepage .hero-grid .grid-copy p {
  margin-top: 10px;
  text-transform: uppercase;
  display: inline-block;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 18px;
  color: #2A2A2A;
  line-height: 22px;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hero-grid .grid-copy p {
    font-size: 13px;
    margin-top: 0px;
  }
}

.cms-homepage .hero-grid .grid-copy .right-arrow {
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -34px -41px;
  height: 12px;
  width: 26px;
  margin-left: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .cms-homepage .hero-grid .grid-copy .right-arrow {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.cms-homepage .hero-grid .grid-copy .right {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  padding: 33px 3% 3% 3%;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hero-grid .grid-copy .right {
    padding: 18px 3% 3% 3%;
  }
}

.cms-homepage .hero-grid .grid-copy .left {
  position: absolute;
  top: 0;
  left: 0;
  padding: 33px 3% 3% 3%;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hero-grid .grid-copy .left {
    padding: 18px 3% 3% 3%;
  }
}

.cms-homepage .ribbon {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 69px;
  top: 23px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon {
    top: 18px;
  }
}

.cms-homepage .ribbon h3 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 28px;
  color: #2A2A2A;
  line-height: 34px;
  margin-bottom: 0px;
}

.cms-homepage .ribbon .ribbon-background {
  width: 92%;
  margin: 0 3%;
  height: 100%;
  background-color: #F9CD4D;
}

.cms-homepage .ribbon .ribbon-background:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -6px -144px;
  height: 69px;
  width: 31px;
  position: absolute;
  left: 0;
  margin-left: 1%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .cms-homepage .ribbon .ribbon-background:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-background:before {
    margin-left: 0;
  }
}

.cms-homepage .ribbon .ribbon-background:after {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -6px -62px;
  height: 69px;
  width: 30px;
  position: absolute;
  right: 0;
  margin-right: 3%;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .cms-homepage .ribbon .ribbon-background:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 580px) {
  .cms-homepage .ribbon .ribbon-background:after {
    margin-right: 0;
  }
}

.cms-homepage .ribbon .ribbon-wrapper {
  height: 100%;
  width: 50%;
  float: left;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-wrapper:first-of-type {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-wrapper {
    width: 100%;
  }
}

.cms-homepage .ribbon .ribbon-wrapper .ribbon-left {
  display: inline-block;
  height: 100%;
  width: 100%;
  font-size: 28px;
  color: #2A2A2A;
  line-height: 34px;
}

@media only screen and (max-width: 1100px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-left {
    text-align: left;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 1000px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-left {
    font-size: 20px;
  }
}

@media only screen and (max-width: 920px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-left {
    width: 79%;
    float: left;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-left {
    display: none;
  }
}

.cms-homepage .ribbon .ribbon-wrapper .ribbon-left h3 {
  margin-top: 18px;
  font-family: "MontserratBold";
}

@media only screen and (max-width: 1100px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-left h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 920px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-left h3 {
    line-height: 24px;
    margin-top: 12px;
    text-align: center;
  }
}

.cms-homepage .ribbon .ribbon-wrapper .ribbon-right {
  height: 100%;
  width: 100%;
  font-size: 20px;
  color: #2A2A2A;
  line-height: 24px;
  padding-top: 23px;
  text-align: right;
  padding-right: 43px;
}

@media only screen and (max-width: 1100px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right {
    padding-right: 10px;
  }
}

@media only screen and (max-width: 920px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right {
    width: 78%;
    float: right;
    text-align: center;
    padding-top: 14px;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right {
    width: 90%;
    margin-left: 20%;
    padding-top: 15px;
    line-height: 19px;
    padding-right: 0;
  }
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right p .bold_on_mobile {
    font-family: "OpenSans", Verdana, Arial, sans-serif;
    font-weight: bolder;
  }
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right p span {
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: "OpenSans", Verdana, Arial, sans-serif;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right p span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 770px) and (max-width: 599px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right p span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 500px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right {
    width: 80%;
  }
}

@media only screen and (max-width: 400px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right p {
    font-size: 14px;
  }
}

.cms-homepage .ribbon .ribbon-wrapper .ribbon-right p {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 1000px) {
  .cms-homepage .ribbon .ribbon-wrapper .ribbon-right p {
    font-size: 17px;
  }
}

.cms-homepage .ribbon .ribbon-middle {
  position: absolute;
  top: -100px;
  right: 43%;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .ribbon .ribbon-middle {
    top: -40px;
    left: 2.5%;
  }
  .cms-homepage .ribbon .ribbon-middle img {
    max-height: 140px;
  }
}

.cms-homepage .background-container {
  margin-top: -69px;
  padding-bottom: 64px;
  border-top-style: solid;
  border-top-color: #abc2e5;
  border-top-width: 2px;
  background-position-x: -700px;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .background-container {
    background: none;
    margin-top: 71px;
    border-top: none;
    padding-bottom: 34px;
  }
}

.cms-homepage .background-container-2 {
  padding-bottom: 6px;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .background-container-2 {
    background: none;
    padding-bottom: 0;
  }
}

.cms-homepage .featured-products {
  padding-top: 155px;
  margin: 0 50px 0 50px;
}

.ie8 .cms-homepage .featured-products {
  margin: 0 auto;
}

@media only screen and (min-width: 1300px) {
  .cms-homepage .featured-products {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .featured-products {
    margin: 0;
    padding-top: 3px;
  }
}

.cms-homepage .featured-products .section-title {
  text-align: center;
}

.cms-homepage .featured-products .products-grid {
  padding-top: 15px;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .featured-products .products-grid {
    overflow: hidden;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .featured-products .products-grid .product-info {
    margin-top: 0;
    height: 74px;
  }
}

.cms-homepage .featured-products .products-grid .product-name {
  padding: 9px;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .featured-products .products-grid .product-name {
    padding: 7px;
  }
  .cms-homepage .featured-products .products-grid .product-name a {
    line-height: 16px;
    display: inline-block;
  }
}

.cms-homepage .featured-products .products-grid .item {
  min-width: 145px;
}

.cms-homepage .featured-products h3 {
  font-family: "MontserratBold";
  font-size: 28px;
  color: #07489E;
  letter-spacing: 1px;
  line-height: 34px;
}

@media only screen and (max-width: 599px) {
  .cms-homepage .featured-products h3 {
    font-size: 18px;
  }
}

.cms-homepage .savings-banner-container {
  background-color: #9CBCF3;
  max-width: none;
  border-top: 11px #FFF solid;
}

.cms-homepage .savings-banner-container .savings-banner {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

@media only screen and (max-width: 1000px) {
  .cms-homepage .savings-banner-container .savings-banner {
    white-space: normal;
  }
}

.cms-homepage .savings-banner-container .savings-banner .savings-banner-content-wrapper a {
  text-decoration: none;
}

.cms-homepage .savings-banner-container .savings-banner .savings-banner-content {
  display: inline-block;
}

.cms-homepage .savings-banner-container .savings-banner .image {
  width: 16.6667%;
  margin: 0 1px 0 1px;
}

@media only screen and (max-width: 1000px) {
  .cms-homepage .savings-banner-container .savings-banner .image {
    width: 25%;
    padding: 0 1px 0 0;
    margin: 0;
  }
  .cms-homepage .savings-banner-container .savings-banner .image img {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .savings-banner-container .savings-banner .image {
    width: 33.33%;
    margin: 0;
    padding: 0 1px 0 0;
  }
  .cms-homepage .savings-banner-container .savings-banner .image img {
    width: 100%;
  }
}

.cms-homepage .savings-banner-container .savings-banner .middle {
  width: 31.6667%;
  text-align: center;
  padding-top: 62px;
}

@media only screen and (max-width: 1200px) {
  .cms-homepage .savings-banner-container .savings-banner .middle {
    width: 35%;
  }
}

@media only screen and (max-width: 1000px) {
  .cms-homepage .savings-banner-container .savings-banner .middle {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .savings-banner-container .savings-banner .middle {
    float: right;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.cms-homepage .savings-banner-container .savings-banner .middle h4 {
  font-family: "MontserratBold";
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 23px;
}

.cms-homepage .savings-banner-container .savings-banner .middle p {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 18px;
  color: #07489E;
  line-height: 22px;
  text-transform: uppercase;
  padding-top: 6px;
}

.cms-homepage .savings-banner-container .savings-banner .middle .right-arrow-blue {
  background: url(../images/pjg_icon_sprite.png) no-repeat -68px -41px;
  height: 12px;
  width: 26px;
  display: inline-block;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .cms-homepage .savings-banner-container .savings-banner .middle .right-arrow-blue {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.cms-homepage .savings-banner-container .savings-banner .left {
  float: left;
}

.cms-homepage .savings-banner-container .savings-banner .right {
  float: right;
}

@media only screen and (max-width: 1000px) {
  .cms-homepage .savings-banner-container .savings-banner .right {
    float: left;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .savings-banner-container .savings-banner .right {
    float: left;
  }
}

.cms-homepage .bestsellers h2 {
  font-family: "MontserratBold";
  font-size: 17px;
  color: #07489E;
  line-height: 20px;
  margin-bottom: 0;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .bestsellers h2 {
    font-size: 16px;
  }
}

.cms-homepage .bestsellers .subtext p {
  /* Gift the gift of relaxation for birthdays & more.: */
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

@media only screen and (min-width: 771px) {
  .cms-homepage .bestsellers .subtext p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 1px;
  }
}

.cms-homepage .bestsellers .caption {
  background-color: #fff;
  border-top-style: solid;
  border-top-color: #abc2e5;
  border-top-width: 1px;
  padding: 15px 19px 17px 19px;
}

@media only screen and (max-width: 1100px) {
  .cms-homepage .bestsellers .caption {
    padding: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .bestsellers .caption {
    padding: 17px 24px;
  }
}

.cms-homepage .bestsellers .bestseller-header {
  text-align: center;
  padding: 43px 0 24px 0;
}

.cms-homepage .bestsellers .bestseller-header h3 {
  font-family: "MontserratBold";
  font-size: 28px;
  color: #07489E;
  letter-spacing: 1px;
  line-height: 34px;
}

@media only screen and (max-width: 599px) {
  .cms-homepage .bestsellers .bestseller-header h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .bestsellers .bestseller-header {
    padding: 30px 0 20px 0;
    background: #FFF;
  }
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hide-mobile {
    display: none !important;
  }
}

.cms-homepage .hide-desktop {
  display: none !important;
}

@media only screen and (max-width: 770px) {
  .cms-homepage .hide-desktop {
    display: block !important;
  }
}

.price-box .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #2A2A2A;
  line-height: 18px;
}

.avail-ship-date {
  color: #6B6B6B;
}

.btn-remove2 {
  background: url(../images/pjg_icon_sprite.png) no-repeat -43px -188px;
  height: 13px;
  width: 13px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .btn-remove2 {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 870px) {
  .my-account #giftcard-form .button {
    width: 100%;
    margin-bottom: 3px;
  }
}

@media only screen and (max-width: 770px) {
  .my-account #giftcard-form .buttons-set {
    height: 120px;
  }
}

.product-view .product-options-bottom .add-to-cart .btn-cart, .product-view .product-options-bottom .add-to-cart .price-box {
  margin-bottom: 10px;
}

.minicart-wrapper li.bml-checkout-type {
  margin-bottom: 8px;
}

.minicart-wrapper .paypal-logo .bml_button a {
  height: 30px;
}

@media only screen and (max-width: 770px) {
  .checkout-onepage-index .main-container {
    padding: 10px 20px;
  }
}

.cms-index-index .breadcrumbs {
  display: none;
}

.catalog-category-view .sorter label {
  margin-right: 10px;
}

.catalog-category-view .pager .limiter > label {
  padding-right: 8px;
}

.upsell-modal-wrapper.fancybox-wrap .fancybox-skin {
  padding-top: 19px !important;
  padding-bottom: 19px !important;
  border-radius: 0;
  border: 2px solid #8fb8f3;
  box-shadow: none;
}

.upsell-modal-wrapper.fancybox-wrap .fancybox-skin .fancybox-close {
  background: none;
  text-transform: uppercase;
  color: #000;
  width: auto;
  top: 10px;
  right: 13px;
  font-size: 11px;
}

.upsell-modal-wrapper.fancybox-wrap .fancybox-skin .fancybox-close:before {
  content: attr(title);
}

.upsell-modal-wrapper.fancybox-wrap .fancybox-skin .fancybox-close:after {
  content: ' [x]';
  text-transform: lowercase;
}

.upsell-modal-wrapper .button.btn-small {
  height: auto;
  padding-bottom: 6px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.upsell-modal-wrapper .products-grid {
  padding-top: 2px;
}

.upsell-modal-wrapper .products-grid .product-name {
  line-height: 13px;
  padding-top: 9px;
  margin-bottom: 1px;
}

.upsell-modal-wrapper .products-grid .product-name a {
  font-size: 12px;
  line-height: 13px;
}

.upsell-modal-wrapper .products-grid .product-info {
  height: auto;
  padding-bottom: 0;
}

.upsell-modal-wrapper .products-grid .product-image {
  border: none;
}

.upsell-modal-wrapper .products-grid .price-box {
  white-space: nowrap;
}

.upsell-modal-wrapper .products-grid .price-box .price {
  font-size: 12px;
  line-height: 13px;
  font-weight: 600;
}

.upsell-modal-wrapper .products-grid .price-box .old-price .price {
  color: #000;
}

.upsell-modal-wrapper .products-grid .price-box .special-price {
  padding-left: 0.4em;
}

.upsell-modal-wrapper .bundle-upsell-modal {
  max-width: 100%;
  width: 823px;
}

.upsell-modal-wrapper .bundle-upsell-modal-count-1 {
  width: 139px;
}

.upsell-modal-wrapper .bundle-upsell-modal-count-2 {
  width: 304px;
}

.upsell-modal-wrapper .bundle-upsell-modal-count-3 {
  width: 469px;
}

.upsell-modal-wrapper .bundle-upsell-modal-count-4 {
  width: 634px;
}

.upsell-modal-wrapper .bundle-upsell-modal .actions {
  padding-top: 5px;
}

.upsell-modal-wrapper .item {
  padding: 0 13px;
}

.upsell-modal-wrapper h2 {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 0;
}

@media only screen and (max-width: 599px) {
  .upsell-modal-wrapper .button.btn-small {
    padding-left: 2px;
    padding-right: 2px;
  }
  .upsell-modal-wrapper .item {
    padding: 4px;
  }
}

.wrapper {
  background: #fff;
}

@media only screen and (max-width: 770px) {
  .wrapper {
    margin-top: 30px;
  }
}

/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 771px) {
  .page-header {
    max-width: none;
    width: 100%;
    padding: 0 0px;
    margin: 0;
    background-color: #698BC7;
  }
  .page-header-container {
    position: relative;
  }
}

.ie8 .page-header {
  margin-top: 0;
}

.header-language-container,
.page-header {
  font-family: "MontserratBold";
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #698BC7;
  text-transform: uppercase;
}

.header-language-background .header-language-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.header-language-background:after:after {
  clear: both;
}

.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}

.header-language-background .welcome-msg {
  float: right;
}

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}

.page-header-container .store-language-container label {
  display: none;
}

.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 479px) {
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}

.header-language-background,
.header-language-background a {
  color: #e6e6e6;
}

@media only screen and (max-width: 770px) {
  .header-language-background {
    display: none;
  }
}

/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  min-width: 100px;
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  margin: 3px 0 0;
  text-align: center;
}

.logo img {
  max-width: 100%;
  display: inline-block;
}

.logo .small {
  display: none;
}

@media only screen and (max-width: 770px) {
  .logo {
    min-width: 10px;
  }
  .logo.desktop {
    display: none;
  }
  .logo.mobile {
    display: block;
  }
  .logo img {
    max-width: 126px;
    display: inline;
    margin-top: 5px;
    z-index: 9999;
  }
}

.logo:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 771px) {
  .logo {
    min-height: 90px;
    text-align: center;
    margin-top: 3px;
  }
  .logo .small {
    display: none;
  }
  .logo .large {
    display: block;
    margin: 19px auto;
    padding-right: 50px;
  }
  .logo.mobile {
    display: none;
  }
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  overflow: visible;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  float: right;
  width: 24.4%;
}

@media only screen and (max-width: 1040px) {
  .skip-links {
    width: 32.2%;
  }
}

@media only screen and (max-width: 770px) {
  .skip-links {
    width: 100%;
    float: none;
    border: none;
    overflow: visible;
  }
}

@media only screen and (min-width: 771px) {
  .skip-links {
    border: 0;
    height: 42px;
  }
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #4B4B4B;
  line-height: 42px;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .skip-link {
    height: 50px;
  }
}

.skip-link.skip-search {
  width: 18.4%;
}

@media only screen and (max-width: 499px) {
  .skip-link.skip-search {
    width: 12.4%;
  }
}

a.skip-link {
  text-decoration: none;
}

.skip-link:not(.skip-active):hover {
  background: none;
}

@media only screen and (max-width: 770px) {
  .skip-link.skip-account {
    display: none;
  }
  .skip-link:last-child {
    border-right: 0;
  }
}

@media only screen and (min-width: 500px) {
  .skip-link {
    width: 25%;
  }
}

/* -------------------------------------------- *
 * Skip Link - Active
 */
@media only screen and (max-width: 770px) {
  .skip-link.skip-active {
    color: #698BC7;
    background-color: #F1F1F1 !important;
  }
  .skip-link.skip-active.skip-nav {
    background-color: #F1F1F1 !important;
    padding: 0 5px;
  }
  .skip-link.skip-active.skip-nav .icon {
    margin-left: 4px;
  }
  .skip-link.skip-nav {
    width: 50px;
    padding-left: 0;
  }
  .skip-link.skip-nav:after {
    content: '';
    display: block;
    height: 19px;
    bottom: -19px;
    position: absolute;
  }
  .skip-link.skip-active span {
    color: #fff;
    z-index: 2;
    position: relative;
  }
  .skip-link.skip-active span.label {
    display: none;
  }
  .skip-link.skip-active span.icon {
    background: url(../images/pjg_icon_sprite.png) no-repeat -152px -40px;
    height: 24px;
    width: 25px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .skip-link.skip-active span.icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 8px;
  top: 1px;
}

.skip-link.skip-nav .icon {
  float: left;
  margin-left: 12px;
  top: 12px;
}

@media only screen and (min-width: 500px) {
  .skip-link .icon {
    margin-right: 5px;
  }
}

@media only screen and (min-width: 770px) {
  .skip-link .icon {
    margin-right: 0px;
  }
}

.fill {
  position: relative;
  transition: 0.9s ease-in-out;
  -o-transition: 0.9s ease-in-out;
  -moz-transition: 0.9s ease-in-out;
  -webkit-transition: 0.9s ease-in-out;
}

.fill:before, .fill:after {
  content: "";
  position: absolute;
  background: #07489E;
  bottom: 0;
  left: 0;
  right: 100%;
  top: 0;
  -webkit-transition: right 0.8s ease-in-out;
  z-index: 1;
}

.fill:after {
  top: auto;
}

.fill.skip-active:before, .fill.skip-active:after {
  right: 0;
}

/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label {
  display: none;
}

@media only screen and (min-width: 500px) {
  .skip-link .label {
    display: inline;
    font-size: 14px;
    color: #6B6B6B;
    line-height: 36px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-link .label {
    display: none;
  }
}

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content:not(#header-nav) {
  display: none;
}

.skip-content.skip-active {
  display: block;
  background: #F1F1F1;
}

.skip-content.skip-active#header-search {
  display: block;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 20px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
  }
  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }
  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background-color: #F1F1F1;
    text-decoration: none;
    color: #07489E;
  }
}

.account-cart-wrapper {
  display: block;
  height: 50px;
  position: relative;
}

.ie8 .account-cart-wrapper {
  max-width: 250px;
}

@media only screen and (max-width: 770px) {
  .account-cart-wrapper {
    float: right;
    width: 18.4%;
    max-width: 68px;
  }
}

@media only screen and (max-width: 499px) {
  .account-cart-wrapper {
    width: 12.4%;
    max-width: 35px;
  }
}

#top-header #header-account.skip-content.skip-active {
  top: 44px;
  left: 30px;
  box-shadow: none;
}

@media only screen and (max-width: 1199px) {
  #top-header #header-account.skip-content.skip-active {
    left: 10px;
  }
}

#header-cart.block-cart {
  top: 44px;
}

@media only screen and (max-width: 1199px) {
  #header-cart.block-cart {
    right: 0px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-nav {
    line-height: 30px !important;
    width: 11%;
    padding: 0 0 0 10px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-nav .label {
    font-size: 9px;
    margin-left: 9px;
    margin-top: 29px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-nav .label {
    display: block;
    color: #4A4A4A;
    line-height: 11px;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-nav .icon {
    background: url(../images/pjg_icon_sprite.png) no-repeat -152px -6px;
    height: 15px;
    width: 20px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .skip-nav .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  #header-nav {
    margin-top: 50px;
    padding: 43px 0;
    background: #F1F1F1;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  #header-nav {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 770px) {
  #header-nav span.close {
    display: none;
  }
}

@media only screen and (min-width: 771px) {
  .nav-primary {
    margin-top: 0;
    padding: 0 3%;
  }
}

@media only screen and (max-width: 1100px) {
  .nav-primary {
    padding: 0 2%;
  }
}

.nav-primary {
  position: relative;
  max-height: 43px;
  max-width: 1260px;
  margin: 0 auto;
}

.nav-primary li {
  position: static;
  padding: 0;
}

@media only screen and (max-width: 770px) {
  .nav-primary li {
    padding: 0 30px 0 30px;
  }
}

.nav-primary li.menu-active.parent:before {
  display: none;
}

.nav-primary li.level0 img {
  display: inline-block;
  float: none;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.level0 img {
    display: none;
  }
}

.nav-primary li.level0:hover {
  background-color: #EFEFEF;
}

.nav-primary li.level0 a {
  padding: 11px;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.level0 a {
    padding: 11px 0;
  }
}

.nav-primary .title-li {
  margin-bottom: 14px;
}

@media only screen and (max-width: 770px) {
  .nav-primary .title-li {
    margin-bottom: 25px;
  }
}

.nav-primary a {
  text-decoration: none;
}

.nav-primary h4,
.nav-primary .mm-wrapper h4.title > a.level0 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 15px;
  color: #2A2A2A;
  letter-spacing: 1px;
  line-height: 21px;
  margin-bottom: 0px;
  min-height: 24px;
  text-transform: none;
}

.nav-primary h5 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 15px;
  color: #2A2A2A;
  letter-spacing: 1px;
  line-height: 21px;
  margin-bottom: 15px;
  min-height: 24px;
  text-transform: none;
}

.mm-wrapper .mm-wrapper-content {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1100px;
  text-align: justify;
}

.mm-wrapper .mm-wrapper-content > a {
  display: inline-block;
  padding: 0 !important;
}

@media only screen and (max-width: 770px) {
  .mm-wrapper .mm-wrapper-content {
    padding: 0;
  }
}

.mm-wrapper .mm-wrapper-content:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .mm-wrapper .mm-wrapper-content:after {
    display: none;
  }
}

.mm-wrapper ul.level0 {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 18%;
}

@media only screen and (max-width: 770px) {
  .mm-wrapper ul.level0 {
    width: 100%;
  }
  .mm-wrapper ul.level0 > li:last-of-type {
    margin: 0;
  }
}

.mm-wrapper ul.level0 li.sub-menu-active h4:after {
  transform: rotate(180deg);
}

@media only screen and (max-width: 770px) {
  .mm-wrapper ul.level0 li h4 {
    position: relative;
  }
  .mm-wrapper ul.level0 li h4:after {
    position: absolute;
    right: -17px;
    content: "";
    background-color: transparent;
    display: block;
    float: right;
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    height: 8px;
    width: 16px;
    transition: all 300ms ease;
    top: 50%;
    margin-top: -4px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .mm-wrapper ul.level0 li h4:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .mm-wrapper ul.level0 li ul {
    display: none;
  }
}

.mm-wrapper ul.level0 li.level1 ul li {
  padding: 0 0 9px 0;
}

@media only screen and (max-width: 770px) {
  .mm-wrapper ul.level0 li.level1 ul li {
    padding: 0 0 26px 0;
  }
}

.mm-wrapper ul.level0 li.level1 a {
  font-size: 14px;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #6B6B6B;
  line-height: 20px;
  padding: 0;
  letter-spacing: 0;
}

.mm-wrapper ul.level0 li.level1 a:hover {
  color: #698BC7;
}

.nav-primary li.level0 > a {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 21px;
}

@media only screen and (max-width: 770px) {
  .nav-primary li.level0 > a {
    padding-top: 14px;
    padding-bottom: 14px;
    color: #000;
  }
}

@media only screen and (max-width: 770px) {
  .nav-primary li.parent > i:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    height: 8px;
    width: 16px;
    right: 0px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .nav-primary li.parent > i:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .nav-primary li.level0 li {
    padding: 0 0 0 5px;
    margin-top: 6px;
  }
  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    right: 0;
  }
}

@media only screen and (min-width: 771px) {
  .nav-primary {
    /* Default styles for 1+ drop-down menus */
  }
  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #000;
  }
  .nav-primary .menu-active {
    color: #000;
  }
  .nav-primary li.level0 .mm-wrapper {
    background-color: #EFEFEF;
    top: 43px;
    left: 0 !important;
    min-height: 261px;
    width: 100%;
    box-shadow: none;
    padding: 23px 10px 30px;
  }
}

.nav-primary li.menu-active > .mm-wrapper > ul, .nav-primary li.menu-active > .mm-wrapper > img {
  width: 18%;
}

@media only screen and (max-width: 770px) {
  #header-nav.skip-active span.close {
    display: none;
  }
}

.skip-search .icon {
  background: url(../images/pjg_icon_sprite.png) no-repeat -204px -2px;
  height: 21px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-search .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-search .icon {
    right: 1px;
  }
}

@media only screen and (min-width: 770px) {
  .open {
    width: 350px;
  }
}

@media only screen and (min-width: 771px) {
  #search {
    top: -2px;
  }
  #header-search.skip-content {
    display: block;
    width: 10.8%;
    height: 42px;
    min-width: 108px;
    margin-left: 60px;
    border-style: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: #7B95BE;
    top: -1px;
  }
  #header-search.skip-content .input-box:hover button:before {
    background: url(../images/pjg_icon_sprite.png) no-repeat -9px -6px;
    height: 22px;
    width: 22px;
  }
}

@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-resolution: 192dpi), only screen and (min-width: 771px) and (min-resolution: 2dppx) {
  #header-search.skip-content .input-box:hover button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) and (max-width: 1040px) {
  #header-search.skip-content {
    margin-left: 30px;
  }
}

#search_mini_form label {
  line-height: 42px;
  font-size: 14px;
  color: #6B6B6B;
  letter-spacing: 0;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  #search_mini_form label {
    display: none;
  }
}

#search_mini_form .search-button:before {
  top: 24px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -9px -6px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #search_mini_form .search-button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  #search_mini_form input {
    border-style: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: #7B95BE;
    font-size: 14px;
    font-family: "OpenSans", Verdana, Arial, sans-serif;
  }
  #search_mini_form input:-moz-placeholder {
    color: #6B6B6B;
  }
  #search_mini_form input::-moz-placeholder {
    color: #6B6B6B;
  }
  #search_mini_form input:-ms-input-placeholder {
    color: #6B6B6B;
  }
  #search_mini_form input::-webkit-input-placeholder {
    color: #6B6B6B;
  }
}

@media only screen and (max-width: 770px) {
  #header-search.skip-content {
    padding: 10px 14px;
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 999;
  }
}

#search:hover + button:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -9px -6px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #search:hover + button:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  #search {
    padding: 0 10px;
  }
}

@media only screen and (min-width: 770px) {
  #search.open {
    width: 350px;
  }
}

@media only screen and (max-width: 1150px) {
  #search.open {
    width: 290px;
  }
}

@media only screen and (max-width: 1040px) {
  #search.open {
    width: 210px;
  }
}

@media only screen and (max-width: 770px) {
  #search_mini_form .search-button {
    right: 0px;
    top: 0px;
    left: auto;
  }
}

@media only screen and (max-width: 770px) {
  #search_mini_form .input-box {
    max-width: none;
  }
}

#search_autocomplete.search-autocomplete dl dt {
  background: #698BC7;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -92px -3px;
  height: 25px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-account:not(.skip-active):hover .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.skip-account .icon {
  content: '';
  display: inline-block;
  margin-top: -5px;
  margin-right: 7px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -92px -3px;
  height: 25px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-account .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-account {
    float: none;
    position: relative;
    width: auto;
    vertical-align: top;
    display: inline-block;
    padding: 0;
    text-transform: uppercase;
  }
  .skip-account.skip-active .icon {
    content: '';
    display: inline-block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -86px -458px;
    height: 25px;
    width: 26px;
  }
}

@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-resolution: 192dpi), only screen and (min-width: 771px) and (min-resolution: 2dppx) {
  .skip-account.skip-active .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 771px) {
  .skip-account.skip-active .label {
    color: #698BC7;
  }
  .skip-account.skip-active:after {
    content: '';
    top: 39px;
    left: 52%;
    margin-left: -17px;
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-bottom: 17px solid #F1F1F1;
    border-top: none;
  }
  #header-account.skip-active {
    display: block;
    position: absolute;
    z-index: 200;
    top: 56px;
    right: 15%;
    width: 200px;
    padding: 20px;
    box-shadow: 6px 6px 1px 0px rgba(75, 75, 75, 0.1);
  }
  #header-account.skip-active .links ul li a {
    line-height: 30px;
    height: 31px;
  }
  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #4B4B4B;
    line-height: 2;
  }
  #header-account a:hover {
    color: #698BC7;
  }
}

/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  padding: 5px 0;
}

#header-account.skip-content.skip-active a {
  position: relative;
  display: block;
  padding: 0px 10px;
  line-height: 30px;
  text-align: center;
  color: #4B4B4B;
  height: 31px;
}

#header-account a:hover {
  color: #698BC7;
}

.skip-cart:not(.skip-active):hover .icon {
  background: url(../images/pjg_icon_sprite.png) no-repeat -121px -5px;
  height: 23px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-cart:not(.skip-active):hover .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.skip-cart .icon {
  background: url(../images/pjg_icon_sprite.png) no-repeat -121px -5px;
  height: 23px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .skip-cart .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .skip-cart .icon {
    background: url(../images/pjg_icon_sprite.png) no-repeat -228px -3px;
    height: 23px;
    width: 26px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .skip-cart .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.skip-cart .label {
  margin-left: 0;
}

@media only screen and (min-width: 771px) {
  .skip-cart {
    padding: 0;
  }
  .skip-cart .icon {
    margin-right: 5px;
    margin-bottom: 8px;
  }
  .skip-cart.skip-active .icon {
    background: url(../images/pjg_icon_sprite.png) no-repeat -115px -460px;
    height: 23px;
    width: 26px;
  }
}

@media only screen and (min-width: 771px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-device-pixel-ratio: 2), only screen and (min-width: 771px) and (min-resolution: 192dpi), only screen and (min-width: 771px) and (min-resolution: 2dppx) {
  .skip-cart.skip-active .icon {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.wrapper .skip-cart .count {
  color: #000;
  background: #FBCF27;
  left: 31px;
  top: 4px;
}

@media only screen and (max-width: 770px) {
  .wrapper .skip-cart .count {
    position: absolute;
    left: 15px;
    top: 15px;
  }
}

.skip-link.skip-active .count {
  color: #000;
}

@media only screen and (max-width: 770px) {
  .skip-link.skip-active .count {
    display: none;
  }
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: "MontserratBold";
}

.footer-container {
  position: relative;
  z-index: 3;
}

.footer-container:before {
  display: block;
  background: none;
  height: 0;
  width: 100%;
  top: -5px;
  position: absolute;
  left: 0;
}

.footer {
  clear: both;
  padding: 0;
  margin: 0;
  max-width: none;
  background-color: #F1F1F1;
  /* -------------------------------------------- *
     * Social icons
     */
}

.footer hr {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  height: 0;
  width: 100%;
  max-height: 0;
  font-size: 1px;
  line-height: 0;
  clear: both;
  border: 0;
  border-style: solid;
  border-bottom: 2px solid #fff;
  border-color: #fff;
}

@media only screen and (max-width: 770px) {
  .footer hr {
    display: none;
  }
}

.footer h4 {
  font-size: 25px;
  color: #4B4B4B;
  letter-spacing: 1px;
}

@media only screen and (max-width: 770px) {
  .footer {
    padding: 1px 20px 20px 20px;
  }
}

.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}

.footer .block-title strong {
  font-weight: normal;
  line-height: 12px;
}

.footer .block-title,
.footer address {
  color: #F38230;
}

.footer .links {
  float: left;
  width: 17%;
  padding: 0 0px 0 0;
  margin-bottom: 0px;
}

.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}

.footer .links a {
  color: #4B4B4B;
}

.footer .links a:hover {
  color: #698BC7;
}

.footer .links,
.footer .block-subscribe {
  margin-bottom: 0;
  font-size: 12px;
}

.footer .links .block-title,
.footer .block-subscribe .block-title {
  margin: 0;
}

.footer .form-subscribe-header {
  display: none;
}

.footer .footer-subscribe {
  height: 120px;
  float: left;
  display: inline-block;
}

.footer .footer-subscribe .block-title span {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  font-size: 16px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .block-title span {
    font-size: 26px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .block-title span {
    font-size: 16px;
    line-height: 21px;
  }
}

.footer .footer-subscribe .block-title {
  margin-top: 26px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .block-title {
    margin: 4px 0 0 14px;
  }
}

.footer .footer-subscribe .footer-subscribe-text p {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

.footer .footer-subscribe .footer-subscribe-text {
  float: left;
  width: 40%;
  margin-top: 0;
  max-width: 300px;
}

@media only screen and (max-width: 897px) {
  .footer .footer-subscribe .footer-subscribe-text {
    float: none;
    width: 100%;
    max-width: none;
    white-space: nowrap;
  }
  .footer .footer-subscribe .footer-subscribe-text p {
    max-width: none;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe .footer-subscribe-text {
    white-space: normal;
    padding-top: 14px;
  }
}

.footer .footer-subscribe form {
  max-width: 290px;
  width: 25%;
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  margin: auto;
  top: 44px;
}

@media only screen and (max-width: 974px) {
  .footer .footer-subscribe form {
    right: -110px;
  }
}

@media only screen and (max-width: 897px) {
  .footer .footer-subscribe form {
    position: relative;
    top: 11px;
    width: 100%;
    max-width: 500px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe form {
    max-width: none;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-subscribe {
    float: none;
    width: 100%;
    text-align: center;
  }
  .footer .footer-subscribe:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

.footer .footer-seperator {
  display: inline-block;
  max-width: none;
  background-color: #fff;
  height: 2px;
  width: 100%;
  line-height: 0;
  font-size: 0px;
  padding: 0;
}

.footer .footer-top {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-top {
    padding: 0;
  }
}

.footer .footer-mid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 28px 3.6% 0 3.6%;
  white-space: nowrap;
}

.footer .footer-mid:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid {
    padding: 28px 0 0 0;
  }
}

.footer .footer-mid .block {
  float: left;
  width: 17.2%;
  box-sizing: border-box;
  margin-right: 35px;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block {
    width: 28%;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-mid .block {
    width: 33%;
    margin-right: 0px;
  }
}

.footer .footer-mid .block ul li {
  margin-bottom: 0;
}

.footer .footer-mid .block:nth-child(2) {
  width: 17.7%;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:nth-child(2) {
    width: 28%;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(2) {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:nth-child(3) {
  width: 17.7%;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:nth-child(3) {
    width: 28%;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(3) {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:nth-child(4) {
  width: 35%;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:nth-child(4) {
    margin-right: 0;
    width: 40%;
    min-width: 325px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(4) {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:nth-child(4) ul {
  float: left;
}

.footer .footer-mid .block:nth-child(4) ul:first-of-type {
  margin-right: 35px;
  width: 47.3%;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:nth-child(4) ul {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block:last-child {
  text-align: left;
  margin-bottom: 26px;
}

.footer .footer-mid .block:last-child h4 {
  margin-bottom: 5px;
}

@media only screen and (max-width: 1010px) {
  .footer .footer-mid .block:last-child {
    display: block;
    float: left;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block:last-child {
    float: none;
    width: 100%;
  }
}

.footer .footer-mid .block h4 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #07489E;
  letter-spacing: 1px;
  line-height: 19px;
  margin-bottom: 9px;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block h4 {
    font-size: 16px;
    line-height: 26px;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
  }
  .footer .footer-mid .block h4:after {
    content: '';
    display: block;
    position: absolute;
    top: 41%;
    right: 0;
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    height: 8px;
    width: 16px;
    transition: all 0.2s ease-in;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-mid .block h4:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-mid .block a {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 28px;
  color: #6B6B6B;
}

.footer .footer-mid .block a:hover {
  color: #698BC7;
}

@media only screen and (max-width: 770px) {
  .footer .footer-mid .block {
    float: none;
    width: 100%;
    margin-bottom: 8px;
  }
  .footer .footer-mid .block a {
    line-height: 36px;
  }
  .footer .footer-mid .block.active h4:after {
    transform: rotate(180deg);
  }
}

.footer .footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 3.6% 40px 3.6%;
}

.footer .footer-bottom:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.footer .footer-bottom .block {
  margin-top: 26px;
  float: left;
}

.footer .footer-bottom .block:first-child {
  width: 71%;
}

.footer .footer-bottom .block:first-child ul li {
  display: inline-block;
  margin-right: 50px;
  height: 72px;
  padding-top: 20px;
}

.footer .footer-bottom .block:first-child ul li a {
  height: 72px;
}

.footer .footer-bottom .block:first-child ul li:first-of-type {
  padding: 0;
}

.footer .footer-bottom .block:first-child h4 {
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #07489E;
  letter-spacing: 1px;
  line-height: 19px;
  margin-top: 24px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 1050px) {
  .footer .footer-bottom .block:first-child ul li:last-of-type {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 900px) {
  .footer .footer-bottom .block:first-child {
    width: 100%;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-bottom .block:first-child {
    width: 100%;
    margin-bottom: 12px;
  }
  .footer .footer-bottom .block:first-child h4, .footer .footer-bottom .block:first-child ul {
    display: none;
  }
}

.footer .footer-bottom .block.confidence {
  float: right;
}

.footer .footer-bottom .block.confidence ul li a.bizrate img {
  float: right;
  margin-bottom: 10px;
}

@media only screen and (max-width: 900px) {
  .footer .footer-bottom .block.confidence {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-bottom {
    padding-bottom: 0;
  }
}

.footer .footer-social {
  padding-top: 45px;
  width: 27.6786%;
  max-width: none;
}

.footer .footer-social h4 {
  display: none;
}

@media only screen and (max-width: 974px) {
  .footer .footer-social {
    padding: 25px 0 20px 0;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social {
    float: none;
    width: 100%;
    max-width: none;
    padding: 71px 0 0 0;
  }
  .footer .footer-social h4 {
    color: #07489E;
    display: block;
    font-size: 16px;
    line-height: 21px;
    font-family: "Montserrat", Verdana, Arial, sans-serif;
  }
}

.footer .footer-social ul {
  float: right;
}

@media only screen and (max-width: 973px) {
  .footer .footer-social ul {
    width: 77%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 950px) {
  .footer .footer-social ul {
    white-space: normal;
    margin-right: 0;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul {
    width: 100%;
  }
}

.footer .footer-social ul li {
  display: inline-block;
  margin-right: 21px;
}

.footer .footer-social ul li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 973px) {
  .footer .footer-social ul li:nth-child(3), .footer .footer-social ul li:last-child {
    margin-right: 21px;
  }
}

@media only screen and (max-width: 830px) {
  .footer .footer-social ul li:nth-child(even) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li {
    margin-right: 8px;
  }
  .footer .footer-social ul li:nth-child(3), .footer .footer-social ul li:last-child {
    margin-right: 10px;
  }
  .footer .footer-social ul li:nth-child(even) {
    margin-right: 10px;
  }
}

.footer .footer-social ul li a {
  content: '';
  display: block;
}

.footer .footer-social ul li a.facebook {
  background: url(../images/pjg_icon_sprite.png) no-repeat -9px -219px;
  height: 42px;
  width: 42px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.facebook {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li a.facebook {
    background: url(../images/pjg_icon_sprite.png) no-repeat -61px -217px;
    height: 43px;
    width: 44px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-social ul li a.facebook {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.twitter {
  background: url(../images/pjg_icon_sprite.png) no-repeat -10px -267px;
  height: 42px;
  width: 42px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.twitter {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li a.twitter {
    background: url(../images/pjg_icon_sprite.png) no-repeat -61px -266px;
    height: 43px;
    width: 43px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-social ul li a.twitter {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.pinterest {
  background: url(../images/pjg_icon_sprite.png) no-repeat -9px -315px;
  height: 42px;
  width: 42px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.pinterest {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li a.pinterest {
    background: url(../images/pjg_icon_sprite.png) no-repeat -61px -311px;
    height: 43px;
    width: 43px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-social ul li a.pinterest {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.youtube {
  background: url(../images/pjg_icon_sprite.png) no-repeat -10px -365px;
  height: 42px;
  width: 42px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.youtube {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li a.youtube {
    background: url(../images/pjg_icon_sprite.png) no-repeat -61px -365px;
    height: 43px;
    width: 44px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-social ul li a.youtube {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .footer-social ul li a.googleplus {
  background: url(../images/pjg_icon_sprite.png) no-repeat -10px -413px;
  height: 42px;
  width: 43px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .footer-social ul li a.googleplus {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .footer-social ul li a.googleplus {
    background: url(../images/pjg_icon_sprite.png) no-repeat -61px -413px;
    height: 43px;
    width: 44px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .footer .footer-social ul li a.googleplus {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.footer .block-subscribe .subscribe-wrapper {
  border-radius: 5px;
  border: 1px;
  border-style: solid;
  border-color: #07489E;
  display: inline-block;
  padding: 2px;
  background-color: #fff;
  width: 100%;
  min-width: 225px;
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .subscribe-wrapper {
    width: 100%;
    min-width: 100px;
  }
}

.footer .block-subscribe .subscribe-wrapper .input-box {
  float: left;
  width: 80%;
  padding-top: 0;
  position: relative;
}

.footer .block-subscribe .subscribe-wrapper .input-text {
  width: 100%;
  background: #FFFFFF;
  box-shadow: none;
  font-size: 12px;
  height: 37px;
}

.footer .block-subscribe .subscribe-wrapper .input-text:-moz-placeholder {
  color: #6B6B6B;
}

.footer .block-subscribe .subscribe-wrapper .input-text::-moz-placeholder {
  color: #6B6B6B;
}

.footer .block-subscribe .subscribe-wrapper .input-text:-ms-input-placeholder {
  color: #6B6B6B;
}

.footer .block-subscribe .subscribe-wrapper .input-text::-webkit-input-placeholder {
  color: #6B6B6B;
}

.footer .block-subscribe .subscribe-wrapper .actions {
  margin: 0;
  width: auto;
  float: right;
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .subscribe-wrapper .actions {
    width: auto;
  }
}

.footer .block-subscribe .subscribe-wrapper .actions button {
  margin-right: 21px;
  margin-top: 10px;
  height: 16px;
  width: 24px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -98px -40px;
  height: 20px;
  width: 24px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .block-subscribe .subscribe-wrapper .actions button {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .subscribe-wrapper .actions button {
    width: 100%;
  }
}

.footer .block-subscribe .block-content {
  margin-top: 0;
  padding-top: 0;
}

.footer .block-subscribe .block-content:after:before, .footer .block-subscribe .block-content:after:after {
  content: " ";
  display: table;
}

.footer .block-subscribe .block-content:after:after {
  clear: both;
}

@media only screen and (max-width: 770px) {
  .footer .block-subscribe .block-content {
    margin: 0 auto;
  }
  .footer .block-subscribe .block-content:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

.footer .bugs,
.footer address {
  clear: both;
}

.footer .bugs {
  display: none;
}

.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}

.footer .form-language,
.footer .currency-switcher {
  display: none;
}

.footer .address-container {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .footer .address-container {
    margin-top: 21px;
  }
}

.footer address {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #ACACAB;
  line-height: 18px;
}

@media only screen and (max-width: 770px) {
  .footer address {
    text-align: center;
  }
}

@media only screen and (max-width: 1199px) {
  .footer .links {
    width: 22.6562%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 0px auto;
  }
}

@media only screen and (max-width: 770px) {
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}

html.ie8 .footer .footer-mid .block ul.first {
  width: 30.7%;
  margin-right: 35px;
}

@media only screen and (max-width: 900px) {
  html.ie8 .footer .footer-mid .block ul.first {
    float: none;
    width: 100%;
  }
}

#top-header:before {
  background: none;
  display: none;
}

#top-header {
  min-height: 108px;
  max-height: 108px;
  background: #fff;
  padding-top: 0px;
  position: relative;
}

@media only screen and (max-width: 770px) {
  #top-header {
    min-height: 50px;
    max-height: 50px;
    padding-top: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
  }
}

#top-header .skip-link.skip-account {
  float: left;
  padding: 7px;
  margin-left: 30px;
  padding-top: 0;
}

@media only screen and (max-width: 1199px) {
  #top-header .skip-link.skip-account {
    margin-left: 10px;
  }
}

#top-header .skip-link.skip-account.skip-active {
  background-color: #F1F1F1;
}

#top-header .top-header-content {
  width: 100%;
  padding: 34px 0 0 0;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content {
    padding: 0;
  }
}

#top-header .top-header-content a:focus, #top-header .top-header-content a:active {
  outline: none;
}

#top-header .top-header-content a:hover {
  text-decoration: none;
}

#top-header .top-header-content a:hover .label {
  color: #698BC7;
}

#top-header .top-header-content a:not(.product-image) {
  line-height: 42px;
  background: none;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

#top-header .top-header-content a:not(.product-image).logo {
  min-height: 0;
  z-index: 100;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content a:not(.product-image) {
    line-height: 40px;
  }
  #top-header .top-header-content a:not(.product-image).skip-search {
    padding: 0 9px;
    float: right;
    white-space: nowrap;
    margin-right: 10px;
  }
  #top-header .top-header-content a:not(.product-image).skip-nav {
    max-width: 44px;
  }
  #top-header .top-header-content a:not(.product-image).skip-nav.skip-active.icon {
    margin-left: 5px;
    top: 9px;
  }
}

#top-header .top-header-content a:not(.product-image).skip-cart {
  width: 100%;
  margin-left: 0;
}

#top-header .top-header-content a:not(.product-image).skip-cart:hover .label {
  color: #698BC7;
}

#top-header .top-header-content a:not(.product-image).skip-cart.skip-active {
  background-color: #F1F1F1;
}

@media only screen and (min-width: 770px) {
  #top-header .top-header-content a:not(.product-image).skip-cart.skip-active:after {
    display: none;
  }
}

#top-header .top-header-content #header-number {
  margin-left: 2.4%;
  float: left;
}

#top-header .top-header-content #header-number:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -34px -3px;
  height: 25px;
  width: 26px;
  display: inline-block;
  margin-top: 6px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-number:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content #header-number:before {
    margin-top: 0px;
  }
}

#top-header .top-header-content #header-number:hover:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -34px -3px;
  height: 25px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-number:hover:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-number:hover a {
  color: #698BC7;
}

#top-header .top-header-content #header-number.mobile {
  display: none;
}

#top-header .top-header-content #header-number a {
  vertical-align: top;
  margin-left: 5px;
  font-size: 14px;
  color: #6B6B6B;
  letter-spacing: 0;
  line-height: 42px;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 1150px) {
  #top-header .top-header-content #header-number a {
    display: none;
  }
}

.ie8 #top-header .top-header-content #header-number a {
  display: inline-block;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content #header-number {
    margin-left: 0;
    padding: 0 9px;
  }
  #top-header .top-header-content #header-number.mobile {
    display: block;
  }
  #top-header .top-header-content #header-number.desktop, #top-header .top-header-content #header-number:before {
    display: none;
  }
  #top-header .top-header-content #header-number a {
    text-indent: -9999px;
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -179px -2px;
    height: 21px;
    width: 22px;
    display: inline-block;
    margin-top: 10px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  #top-header .top-header-content #header-number a {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-chat-link {
  float: right;
  margin-right: 0;
  display: block;
}

.ie8 #top-header .top-header-content #header-chat-link {
  display: block !important;
}

@media only screen and (max-width: 1199px) {
  #top-header .top-header-content #header-chat-link {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1040px) {
  #top-header .top-header-content #header-chat-link {
    display: none;
  }
}

#top-header .top-header-content #header-chat-link:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -63px -7px;
  height: 21px;
  width: 26px;
  display: inline-block;
  margin-top: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-chat-link:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-chat-link:hover:before {
  background: url(../images/pjg_icon_sprite.png) no-repeat -63px -7px;
  height: 21px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  #top-header .top-header-content #header-chat-link:hover:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

#top-header .top-header-content #header-chat-link:hover a {
  color: #698BC7;
}

#top-header .top-header-content #header-chat-link a {
  font-size: 14px;
  color: #6B6B6B;
  vertical-align: top;
  margin-left: 4px;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media only screen and (max-width: 770px) {
  #top-header .top-header-content #header-chat-link {
    display: none;
  }
}

.header-minicart {
  float: right;
  max-width: 204px;
  width: 32%;
  margin-right: 14px;
}

@media only screen and (max-width: 1199px) {
  .header-minicart {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart {
    margin-right: 0px;
    max-width: 44px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart .minicart-wrapper {
    background: #F1F1F1;
  }
}

.header-minicart p.block-title {
  font: 28px/36px "MontserratBold" !important;
  color: #2A2A2A;
  padding-top: 3px;
}

.header-minicart #header-cart .block-subtitle {
  letter-spacing: 0;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 20px;
  color: #6B6B6B;
  line-height: 27px;
  padding: 0 0 16px 0;
  margin-top: 6px;
}

@media only screen and (max-width: 770px) {
  .header-minicart #header-cart .block-subtitle .close {
    display: none;
  }
}

.header-minicart #header-cart.skip-active {
  box-shadow: none;
  right: 14px;
}

@media only screen and (max-width: 1199px) {
  .header-minicart #header-cart.skip-active {
    right: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart #header-cart.skip-active {
    right: 0px;
  }
}

.header-minicart #header-cart .minicart-actions .cart-link {
  background-color: #07489E;
  color: #fff;
  border-radius: 6px;
}

.header-minicart #header-cart .minicart-actions .cart-link:focus {
  color: #fff;
}

.header-minicart #header-cart .minicart-actions .checkout-button {
  color: #2A2A2A;
  background-color: #FBCF27;
  width: auto;
}

@media only screen and (max-width: 770px) {
  .header-minicart .skip-cart.skip-active span.icon {
    margin-right: 0px;
  }
}

.header-minicart #cart-sidebar .product-details .product-name {
  text-align: left;
}

.header-minicart #cart-sidebar .product-details .product-name a {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

.header-minicart #cart-sidebar .product-details a.remove {
  background: url(../images/pjg_icon_sprite.png) no-repeat -43px -188px;
  height: 13px;
  width: 13px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .header-minicart #cart-sidebar .product-details a.remove {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.header-minicart .subtotal .label {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

.header-minicart .subtotal .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #2A2A2A;
  line-height: 21px;
}

.header-minicart p {
  color: #000;
}

.header-minicart .cart-link a {
  color: #fff;
}

@media only screen and (max-width: 770px) {
  #header-cart.block-cart {
    margin-top: 0;
    top: 50px;
    bottom: 0;
    background: #F1F1F1;
    height: 92%;
  }
}

/* -------------------------------------------- *
 * Labels
 */
label {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #4A4A4A;
  line-height: 19px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  color: #6B6B6B;
  letter-spacing: 0px;
  line-height: 21px;
  box-shadow: none;
  height: 43px;
  border: 1px solid #6689CC;
  background-color: #fff;
}

.ie8 .input-text, .ie9 .input-text {
  border: 1px solid #A5A5A5;
}

.input-text:focus {
  border: 1px solid #FBCF27;
  outline: none;
}

.input-text[disabled] {
  opacity: 0.5;
  border-color: #F1F1F1;
}

label.required:after,
span.required:after {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -81px -137px;
  height: 9px;
  width: 7px;
  display: inline-block;
  margin-left: 5px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  label.required:after,
  span.required:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.fieldset p.required {
  float: none;
}

label.radio-label:before, label.checkbox-label:before, span.label.radio-label:before, span.label.checkbox-label:before {
  border: 1px solid #ACACAB;
}

label.radio-label.disabled:before, label.checkbox-label.disabled:before, span.label.radio-label.disabled:before, span.label.checkbox-label.disabled:before {
  border-color: #F1F1F1;
}

label.radio-label.disabled:hover:before, label.checkbox-label.disabled:hover:before, span.label.radio-label.disabled:hover:before, span.label.checkbox-label.disabled:hover:before {
  border-color: #F1F1F1;
}

label.radio-label.checked:before, span.label.radio-label.checked:before {
  background: #6689CC;
  border: 0px;
}

label.checkbox-label.checked:before, span.label.checkbox-label.checked:before {
  background-color: #fff;
  color: #fff;
  border-color: #ACACAB;
}

label.checkbox-label.checked:after, span.label.checkbox-label.checked:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -46px -137px;
  height: 11px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  label.checkbox-label.checked:after, span.label.checkbox-label.checked:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

label.checkbox-label.disabled:before, label.checkbox-label.disabled.checked:before, span.label.checkbox-label.disabled:before, span.label.checkbox-label.disabled.checked:before {
  background: none;
  border: 1px solid #A5A5A5;
}

label.checkbox-label.disabled:hover:after, span.label.checkbox-label.disabled:hover:after {
  display: none;
}

label.checkbox-label.disabled:hover:before, span.label.checkbox-label.disabled:hover:before {
  background: none;
}

.custom-shiv {
  background: #07489E;
}

.custom-shiv span:after {
  position: absolute;
  right: 15px;
  top: 18px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -96px;
  height: 7px;
  width: 12px;
  content: '';
  display: block;
  text-align: center;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .custom-shiv span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.select-container.validation-error .custom-shiv {
  background-color: #D0021B;
}

.select-container.validation-error:hover .custom-shiv {
  background: #D0021B;
}

.select-container.small .select-custom {
  height: 30px;
}

.select-container.small .custom-shiv {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  height: 30px;
  line-height: 21px;
  font-size: 14px;
}

.opc .select-container {
  width: 100%;
  max-width: 490px;
}

.customer-address-form .form-list .select-container {
  width: 100%;
  max-width: 490px;
}

.block-layered-nav .currently .block-subtitle {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: normal;
}

.block-layered-nav .currently ol:first-of-type {
  margin-top: 0;
}

.block-layered-nav .currently ol li {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.block-layered-nav .currently ol li .label {
  font-weight: normal;
}

.block-layered-nav .currently:before {
  content: 'Showing';
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 18px;
  color: #2A2A2A;
  letter-spacing: 0;
  line-height: 27px;
  text-transform: none;
  position: relative;
  left: 50%;
  margin-left: -40px;
}

@media only screen and (min-width: 770px) {
  .block-layered-nav .currently:before {
    content: 'Filtering By';
    font-family: "OpenSans", Verdana, Arial, sans-serif;
    font-size: 22px;
    color: #004276;
    letter-spacing: 0;
    line-height: 30px;
    position: static;
    left: 0;
    margin-left: 0;
  }
}

.mini-products-list .product-name,
.products-grid .product-name,
.products-list .product-name {
  text-align: center;
  text-transform: none;
}

.mini-products-list .product-name a,
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: normal;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

@media only screen and (min-width: 770px) {
  .block-layered-nav .block-content > dl > dt {
    font-family: "OpenSans", Verdana, Arial, sans-serif;
    font-size: 22px;
    line-height: 30px;
    color: #004276;
  }
}

.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  color: #6B6B6B;
}

.category-page h1 {
  font-size: 28px;
  line-height: 36px;
  color: #2A2A2A;
  text-align: center;
}

@media only screen and (min-width: 770px) {
  .category-page h1 {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .category-page h1 {
    margin-bottom: 32px;
  }
}

.category-products .products-grid .product-image img {
  margin: auto;
}

.products-grid {
  clear: both;
  padding-top: 30px;
  margin-left: 6px;
}

.products-grid > li {
  width: 47.5%;
  margin-right: 2.5%;
}

@media only screen and (max-width: 479px) {
  .products-grid > li:nth-child(even) {
    margin-left: 2.5%;
  }
}

@media only screen and (max-width: 770px) {
  .products-grid {
    margin-left: 0;
  }
}

@media only screen and (min-width: 770px) {
  .products-grid {
    padding-top: 40px;
    margin-left: 0px;
  }
}

.products-grid .product-image {
  margin-bottom: 0px;
  border-bottom-style: solid;
  border-bottom-color: #abc2e5;
  border-bottom-width: 1px;
}

.products-grid .product-info {
  background-color: #fff;
}

.products-grid .product-info .actions {
  display: none;
  height: 0;
}

.products-grid .product-name {
  text-align: center;
  text-transform: none;
  padding-top: 19px;
}

.catalog-category-view .products-grid .price-box .price-from .price-label, .catalogsearch-result-index .products-grid .price-box .price-from .price-label {
  display: none;
}

.catalog-category-view .products-grid .price-box .price-to, .catalogsearch-result-index .products-grid .price-box .price-to {
  display: none;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .products-grid .product-info, .catalogsearch-result-index .products-grid .product-info {
    margin-top: 0;
  }
  .catalog-category-view .products-grid .product-info .product-name, .catalogsearch-result-index .products-grid .product-info .product-name {
    padding-top: 11px;
  }
}

@media only screen and (min-width: 480px) {
  /* Config: Three columns + flexible gutter */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  .products-grid > li:nth-child(even) {
    margin-right: 3.3333%;
  }
  .products-grid > li {
    width: 31.1111%;
    margin-right: 3.3333%;
  }
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}

.mini-products-list .product-details table th, .mini-products-list .product-details table td span.price {
  color: #2A2A2A;
}

.mini-products-list .product-name {
  padding-top: 20px;
}

.product-img-box {
  position: relative;
}

@media only screen and (min-width: 771px) {
  .mini-products-list .product-flags {
    font-size: 11px;
  }
}

.product-flags {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "MontserratBold";
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 14px;
  z-index: 95;
  padding: 2px 9% 2px;
  overflow: hidden;
}

.product-flags:after {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -65px -137px;
  height: 29px;
  width: 9px;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-flags:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-flags:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -65px -172px;
  height: 29px;
  width: 9px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-flags:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 770px) {
  .product-flags {
    font-size: 13px;
    line-height: 16px;
    padding: 1px 7% 3px;
  }
  .product-flags:after {
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -65px -137px;
    height: 29px;
    width: 9px;
    position: absolute;
    right: -1px;
  }
}

@media only screen and (min-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 770px) and (min-device-pixel-ratio: 2), only screen and (min-width: 770px) and (min-resolution: 192dpi), only screen and (min-width: 770px) and (min-resolution: 2dppx) {
  .product-flags:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 770px) {
  .product-flags:before {
    content: '';
    background: url(../images/pjg_icon_sprite.png) no-repeat -65px -172px;
    height: 29px;
    width: 9px;
    position: absolute;
    left: 0;
  }
}

@media only screen and (min-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 770px) and (min-device-pixel-ratio: 2), only screen and (min-width: 770px) and (min-resolution: 192dpi), only screen and (min-width: 770px) and (min-resolution: 2dppx) {
  .product-flags:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.category-products {
  padding-left: 15px;
}

@media only screen and (max-width: 770px) {
  .category-products {
    padding-right: 15px;
  }
}

.category-products.landing {
  padding: 30px 0 0;
}

.ie .catalog-category-view .toolbar .sorter .sort-by .select-container.small .custom-shiv,
.ie .catalogsearch-result-index .toolbar .sorter .sort-by .select-container.small .custom-shiv {
  padding: 5px 10px;
}

.ie .catalog-category-view .toolbar .sorter .sort-by .select-container.small .custom-shiv span:after,
.ie .catalogsearch-result-index .toolbar .sorter .sort-by .select-container.small .custom-shiv span:after {
  right: 10px;
}

.catalog-category-view, .catalogsearch-result-index {
  /* ============================================ *
     * Catalog - Layered Navigation
     * ============================================ */
}

.catalog-category-view .main-container, .catalogsearch-result-index .main-container {
  padding: 10px 0;
}

.catalog-category-view .main-container .breadcrumbs, .catalogsearch-result-index .main-container .breadcrumbs {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 27px;
  margin-left: 21px;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .breadcrumbs, .catalogsearch-result-index .main-container .breadcrumbs {
    margin-top: 21px;
  }
}

.catalog-category-view .main-container .breadcrumbs li.mobile a:before, .catalogsearch-result-index .main-container .breadcrumbs li.mobile a:before {
  position: absolute;
  background: url(../images/pjg_icon_sprite.png) no-repeat -172px -68px;
  height: 11px;
  width: 6px;
  content: '';
  display: block;
  left: -15px;
  top: 8px;
  transform: rotate(0deg);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .main-container .breadcrumbs li.mobile a:before, .catalogsearch-result-index .main-container .breadcrumbs li.mobile a:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .breadcrumbs, .catalogsearch-result-index .main-container .breadcrumbs {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .main-container .breadcrumbs, .catalogsearch-result-index .main-container .breadcrumbs {
    margin-left: 22px;
    position: absolute;
    top: 27px;
    z-index: 2;
  }
  .catalog-category-view .main-container .breadcrumbs li.mobile a:before, .catalogsearch-result-index .main-container .breadcrumbs li.mobile a:before {
    display: none;
  }
}

.catalog-category-view .main-container .breadcrumbs span, .catalogsearch-result-index .main-container .breadcrumbs span {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.catalog-category-view .main-container .category-image, .catalogsearch-result-index .main-container .category-image {
  position: relative;
  border-bottom: 2px solid #99B9F7;
  margin-bottom: 60px;
}

.catalog-category-view .main-container .category-image .category-title.page-title, .catalogsearch-result-index .main-container .category-image .category-title.page-title {
  position: absolute;
  top: 45%;
  margin-left: 49px;
}

.catalog-category-view .main-container .category-image .category-title.page-title h1, .catalogsearch-result-index .main-container .category-image .category-title.page-title h1 {
  font-size: 28px;
  font-family: "MontserratBold";
  line-height: 36px;
  color: #2A2A2A !important;
  text-transform: none;
}

@media only screen and (max-width: 599px) {
  .catalog-category-view .main-container .category-image, .catalogsearch-result-index .main-container .category-image {
    display: none;
  }
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .main-container .category-image, .catalogsearch-result-index .main-container .category-image {
    min-height: 125px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .sidebar.col-left-first, .catalogsearch-result-index .main-container .sidebar.col-left-first {
    margin-bottom: 0px;
    margin: 0px 20px;
  }
  .catalog-category-view .main-container .sidebar.col-left-first .block-viewed, .catalogsearch-result-index .main-container .sidebar.col-left-first .block-viewed {
    display: none;
  }
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .main-container .sidebar.col-left-first, .catalogsearch-result-index .main-container .sidebar.col-left-first {
    margin-left: 50px;
    border: 2px solid #99B9F7;
    border-radius: 6px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    padding-right: 0px;
  }
  .catalog-category-view .main-container .sidebar.col-left-first .block-layered-nav, .catalogsearch-result-index .main-container .sidebar.col-left-first .block-layered-nav {
    margin-bottom: 0;
    padding: 38px 16% 15px 16%;
  }
  .catalog-category-view .main-container .sidebar.col-left-first .block-layered-nav .actions a, .catalogsearch-result-index .main-container .sidebar.col-left-first .block-layered-nav .actions a {
    padding-right: 0;
  }
}

.catalog-category-view .main-container .sidebar.col-left-first .block-title strong, .catalogsearch-result-index .main-container .sidebar.col-left-first .block-title strong {
  text-transform: none;
}

.catalog-category-view .main-container .block-compare .block-title, .catalogsearch-result-index .main-container .block-compare .block-title {
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .block-compare .block-title strong, .catalogsearch-result-index .main-container .block-compare .block-title strong {
    font-size: 18px;
  }
  .catalog-category-view .main-container .block-compare .block-title strong span:after, .catalogsearch-result-index .main-container .block-compare .block-title strong span:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    width: 16px;
    height: 8px;
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    height: 8px;
    width: 16px;
    display: inline-block;
    content: '';
    margin-bottom: 2px;
    margin-left: 5px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .catalog-category-view .main-container .block-compare .block-title strong span:after, .catalogsearch-result-index .main-container .block-compare .block-title strong span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .block-compare .block-title.active strong span:after, .catalogsearch-result-index .main-container .block-compare .block-title.active strong span:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -121px -67px;
    width: 16px;
    height: 8px;
    background: url(../images/pjg_icon_sprite.png) no-repeat -121px -67px;
    height: 8px;
    width: 16px;
    display: inline-block;
    content: '';
    margin-bottom: 2px;
    margin-left: 5px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .catalog-category-view .main-container .block-compare .block-title.active strong span:after, .catalogsearch-result-index .main-container .block-compare .block-title.active strong span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-category-view .main-container .block-viewed .block-title, .catalogsearch-result-index .main-container .block-viewed .block-title {
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .block-viewed .block-title strong, .catalogsearch-result-index .main-container .block-viewed .block-title strong {
    font-size: 18px;
  }
  .catalog-category-view .main-container .block-viewed .block-title strong span:after, .catalogsearch-result-index .main-container .block-viewed .block-title strong span:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    width: 16px;
    height: 8px;
    background: url(../images/pjg_icon_sprite.png) no-repeat -97px -67px;
    height: 8px;
    width: 16px;
    display: inline-block;
    content: '';
    margin-bottom: 2px;
    margin-left: 5px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .catalog-category-view .main-container .block-viewed .block-title strong span:after, .catalogsearch-result-index .main-container .block-viewed .block-title strong span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container .block-viewed .block-title.active strong span:after, .catalogsearch-result-index .main-container .block-viewed .block-title.active strong span:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -121px -67px;
    width: 16px;
    height: 8px;
    background: url(../images/pjg_icon_sprite.png) no-repeat -121px -67px;
    height: 8px;
    width: 16px;
    display: inline-block;
    content: '';
    margin-bottom: 2px;
    margin-left: 5px;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .catalog-category-view .main-container .block-viewed .block-title.active strong span:after, .catalogsearch-result-index .main-container .block-viewed .block-title.active strong span:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-category-view .main-container .block-viewed li, .catalogsearch-result-index .main-container .block-viewed li {
  max-width: 210px;
  margin: 10px auto 32px;
  position: relative;
}

.catalog-category-view .main-container .block-viewed li span.product-image, .catalogsearch-result-index .main-container .block-viewed li span.product-image {
  min-width: 100%;
}

.catalog-category-view .main-container .block-viewed .product-details, .catalogsearch-result-index .main-container .block-viewed .product-details {
  clear: both;
  margin: 0px;
  text-align: center;
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .main-container .col-main, .catalogsearch-result-index .main-container .col-main {
    width: 68%;
    padding-right: 50px;
  }
}

.catalog-category-view .main-container.col1-layout, .catalogsearch-result-index .main-container.col1-layout {
  margin: 0px auto;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container.col1-layout, .catalogsearch-result-index .main-container.col1-layout {
    margin: 0px 10px;
  }
}

.catalog-category-view .main-container.col1-layout .col-main, .catalogsearch-result-index .main-container.col1-layout .col-main {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .main-container.col1-layout .col-main, .catalogsearch-result-index .main-container.col1-layout .col-main {
    /* Config: Three columns + flexible gutter */
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid, .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid > li:nth-child(odd), .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid > li:nth-child(odd) {
    clear: none;
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid > li:nth-child(even), .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid > li:nth-child(even) {
    margin-right: 1.8519%;
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid > li, .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid > li {
    width: 32.0988%;
    margin-right: 1.8519%;
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid > li:nth-child(3n+1), .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid > li:nth-child(3n+1), .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
  .catalog-category-view .main-container.col1-layout .col-main .products-grid > li:nth-child(3n), .catalogsearch-result-index .main-container.col1-layout .col-main .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
  .catalog-category-view .main-container.col1-layout .col-main .category-products, .catalogsearch-result-index .main-container.col1-layout .col-main .category-products {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container.col1-layout .col-main .toolbar:after, .catalogsearch-result-index .main-container.col1-layout .col-main .toolbar:after {
    content: "";
    display: inline-block;
    clear: both;
  }
  .catalog-category-view .main-container.col1-layout .col-main .toolbar .sorter, .catalogsearch-result-index .main-container.col1-layout .col-main .toolbar .sorter {
    top: 0 !important;
    float: none;
    margin: 0 auto 10px;
    height: 40px;
  }
  .catalog-category-view .main-container.col1-layout .col-main .toolbar .sorter:after, .catalogsearch-result-index .main-container.col1-layout .col-main .toolbar .sorter:after {
    content: "";
    display: inline-block;
    clear: both;
  }
  .catalog-category-view .main-container.col1-layout .col-main .toolbar .pager, .catalogsearch-result-index .main-container.col1-layout .col-main .toolbar .pager {
    top: 0;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .main-container.col1-layout .category-image, .catalogsearch-result-index .main-container.col1-layout .category-image {
    display: block;
  }
  .catalog-category-view .main-container.col1-layout .category-image img, .catalog-category-view .main-container.col1-layout .category-image .overlay, .catalogsearch-result-index .main-container.col1-layout .category-image img, .catalogsearch-result-index .main-container.col1-layout .category-image .overlay {
    display: none;
  }
  .catalog-category-view .main-container.col1-layout .category-image .page-title, .catalogsearch-result-index .main-container.col1-layout .category-image .page-title {
    position: static;
    margin-left: 0px;
    text-align: center;
  }
  .catalog-category-view .main-container.col1-layout .category-image .page-title h1, .catalogsearch-result-index .main-container.col1-layout .category-image .page-title h1 {
    margin-bottom: 0px;
    padding: 0px;
  }
}

.catalog-category-view .main-container.col1-layout .category-image img, .catalogsearch-result-index .main-container.col1-layout .category-image img {
  max-height: 302px;
}

.catalog-category-view .block-layered-nav, .catalogsearch-result-index .block-layered-nav {
  padding-right: 58px;
  transition: all 1s linear;
  z-index: 50;
}

.catalog-category-view .block-layered-nav .actions a, .catalogsearch-result-index .block-layered-nav .actions a {
  padding-right: 0;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav .actions, .catalogsearch-result-index .block-layered-nav .actions {
    display: none !important;
  }
}

.catalog-category-view .block-layered-nav:before, .catalogsearch-result-index .block-layered-nav:before {
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav:before, .catalogsearch-result-index .block-layered-nav:before {
    display: none;
  }
}

.catalog-category-view .block-layered-nav .block-title, .catalogsearch-result-index .block-layered-nav .block-title {
  margin-bottom: 40px;
}

.catalog-category-view .block-layered-nav .block-title strong, .catalogsearch-result-index .block-layered-nav .block-title strong {
  /* Shop By: */
  font-family: "MontserratBold";
  font-size: 28px;
  color: #2A2A2A;
  letter-spacing: 0px;
  line-height: 36px;
  text-transform: none;
  font-weight: normal;
}

.catalog-category-view .block-layered-nav .block-subtitle, .catalogsearch-result-index .block-layered-nav .block-subtitle {
  display: none;
}

.catalog-category-view .block-layered-nav .block-subtitle[style], .catalogsearch-result-index .block-layered-nav .block-subtitle[style] {
  display: none !important;
}

.catalog-category-view .block-layered-nav .btn-remove, .catalogsearch-result-index .block-layered-nav .btn-remove {
  display: inline-block;
  text-align: center;
  font: 0/0 a;
  text-shadow: none;
  margin-top: 10px;
  color: transparent;
  position: relative;
  border: none;
}

.catalog-category-view .block-layered-nav .btn-remove:hover, .catalogsearch-result-index .block-layered-nav .btn-remove:hover {
  background-color: #f2f2f2;
}

.catalog-category-view .block-layered-nav .btn-remove:after, .catalogsearch-result-index .block-layered-nav .btn-remove:after {
  color: #92918E;
}

.catalog-category-view .block-layered-nav .currently > ol > li, .catalogsearch-result-index .block-layered-nav .currently > ol > li {
  margin-right: 50px;
  transition: all 1s linear;
}

@media only screen and (max-width: 1199px) {
  .catalog-category-view .block-layered-nav .currently > ol > li, .catalogsearch-result-index .block-layered-nav .currently > ol > li {
    margin-right: 0;
  }
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .block-layered-nav .currently > ol > li, .catalogsearch-result-index .block-layered-nav .currently > ol > li {
    color: #6689CC;
    margin-right: 0px;
  }
}

.catalog-category-view .block-layered-nav .currently > ol > li a.btn-remove-inline, .catalogsearch-result-index .block-layered-nav .currently > ol > li a.btn-remove-inline {
  background: none;
}

.catalog-category-view .block-layered-nav .currently > ol > li a:after, .catalogsearch-result-index .block-layered-nav .currently > ol > li a:after {
  content: '';
  display: inline-block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -334px -33px;
  height: 12px;
  width: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .block-layered-nav .currently > ol > li a:after, .catalogsearch-result-index .block-layered-nav .currently > ol > li a:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-category-view .block-layered-nav .multiselect-child, .catalogsearch-result-index .block-layered-nav .multiselect-child {
  width: 100%;
  display: inline-block;
  position: relative;
}

.catalog-category-view .block-layered-nav .multiselect-child a, .catalogsearch-result-index .block-layered-nav .multiselect-child a {
  float: right;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .block-layered-nav .multiselect-child a, .catalogsearch-result-index .block-layered-nav .multiselect-child a {
    float: none;
    position: absolute;
    right: 0;
    top: -30px;
  }
}

.catalog-category-view .block-layered-nav dl dd ol li, .catalogsearch-result-index .block-layered-nav dl dd ol li {
  line-height: 21px;
  margin-bottom: 13px;
}

.catalog-category-view .block-layered-nav dl dd.sizeAttr ol li, .catalogsearch-result-index .block-layered-nav dl dd.sizeAttr ol li {
  display: inline-block;
  width: 50%;
}

.catalog-category-view .block-layered-nav dl dd.sizeAttr .amshopby-clearer, .catalogsearch-result-index .block-layered-nav dl dd.sizeAttr .amshopby-clearer {
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav dl dd ol > li > span, .catalog-category-view .block-layered-nav dl dd ol > li > a, .catalogsearch-result-index .block-layered-nav dl dd ol > li > span, .catalogsearch-result-index .block-layered-nav dl dd ol > li > a {
    margin-top: 0;
    margin-left: 20px;
    margin-bottom: 3px;
  }
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-attr,
.catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr,
.catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected {
  background: none;
  text-decoration: none;
  padding-left: 0;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr,
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr,
  .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected {
    color: #fff;
  }
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr span.count,
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected span.count, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr span.count,
  .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected span.count {
    color: #fff;
  }
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-attr:before,
.catalog-category-view .block-layered-nav dl dd a.amshopby-attr:hover:before, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr:before,
.catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr:hover:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -334px -6px;
  height: 16px;
  width: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr:before,
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr:hover:before, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr:before,
  .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr:hover:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected:before,
.catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected:hover:before, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected:before,
.catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected:hover:before {
  content: '';
  background: url(../images/pjg_icon_sprite.png) no-repeat -356px -6px;
  height: 16px;
  width: 16px;
  display: inline-block;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected:before,
  .catalog-category-view .block-layered-nav dl dd a.amshopby-attr-selected:hover:before, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected:before,
  .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-attr-selected:hover:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-more, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-more {
  color: #6689CC;
  display: inline-block;
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-more:after, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-more:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -108px;
  width: 11px;
  height: 7px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -108px;
  height: 7px;
  width: 11px;
  content: '';
  display: inline-block;
  margin-left: 9px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .block-layered-nav dl dd a.amshopby-more:after, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-more:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-less, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-less {
  color: #6689CC;
  display: inline-block;
}

.catalog-category-view .block-layered-nav dl dd a.amshopby-less:after, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-less:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -65px -109px;
  width: 11px;
  height: 7px;
  background: url(../images/pjg_icon_sprite.png) no-repeat -65px -109px;
  height: 7px;
  width: 11px;
  content: '';
  display: inline-block;
  margin-left: 9px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .block-layered-nav dl dd a.amshopby-less:after, .catalogsearch-result-index .block-layered-nav dl dd a.amshopby-less:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav, .catalogsearch-result-index .block-layered-nav {
    margin-left: 0;
    padding: 0;
    margin-bottom: 0px;
  }
  .catalog-category-view .block-layered-nav .block-title, .catalogsearch-result-index .block-layered-nav .block-title {
    display: none;
  }
  .catalog-category-view .block-layered-nav .block-content, .catalogsearch-result-index .block-layered-nav .block-content {
    margin: 0;
  }
  .catalog-category-view .block-layered-nav .toggle-content, .catalogsearch-result-index .block-layered-nav .toggle-content {
    margin-top: 0px;
    display: inline-block;
    width: 100%;
  }
  .catalog-category-view .block-layered-nav #narrow-by-list, .catalogsearch-result-index .block-layered-nav #narrow-by-list {
    width: 100%;
    background: #99B9F7;
    color: #ffffff;
    margin-top: 15px;
  }
  .catalog-category-view .block-layered-nav #narrow-by-list .amshopby-slider-ui, .catalogsearch-result-index .block-layered-nav #narrow-by-list .amshopby-slider-ui {
    margin: 10px 20px;
  }
  .catalog-category-view .block-layered-nav #narrow-by-list .amshopby-slider-price-from, .catalogsearch-result-index .block-layered-nav #narrow-by-list .amshopby-slider-price-from {
    margin-left: 20px;
  }
  .catalog-category-view .block-layered-nav #narrow-by-list .amshopby-slider-price-to, .catalogsearch-result-index .block-layered-nav #narrow-by-list .amshopby-slider-price-to {
    margin-right: 20px;
  }
  .catalog-category-view .block-layered-nav .block-subtitle--filter, .catalogsearch-result-index .block-layered-nav .block-subtitle--filter {
    background: #6689CC;
    width: 130px;
    height: 40px;
    padding: 10px;
    border: 0;
    margin-bottom: 0;
    display: inline-block;
    text-transform: none;
    font-family: "OpenSans", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 17px;
    border-radius: 6px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
  }
  .catalog-category-view .block-layered-nav .block-subtitle--filter:after, .catalogsearch-result-index .block-layered-nav .block-subtitle--filter:after {
    left: 100px;
    position: absolute;
    background: url(../images/pjg_icon_sprite.png) no-repeat -44px -96px;
    height: 7px;
    width: 12px;
    content: '';
    display: block;
    text-align: center;
  }
  .catalog-category-view .block-layered-nav .block-subtitle--filter.active:after, .catalogsearch-result-index .block-layered-nav .block-subtitle--filter.active:after {
    left: 100px;
    position: absolute;
    background: url(../images/pjg_icon_sprite.png) no-repeat -65px -96px;
    height: 7px;
    width: 12px;
    content: '';
    display: block;
    text-align: center;
  }
  .catalog-category-view .block-layered-nav .block-subtitle--filter.active, .catalogsearch-result-index .block-layered-nav .block-subtitle--filter.active {
    background-color: #6689CC;
  }
  .catalog-category-view .block-layered-nav .block-subtitle--filter.active:before, .catalogsearch-result-index .block-layered-nav .block-subtitle--filter.active:before {
    content: '';
    height: 26px;
    width: 100%;
    background: #99B9F7;
    position: absolute;
    bottom: -21px;
    left: 0px;
    border-top: 6px solid #6689CC;
  }
  .catalog-category-view .block-layered-nav .currently, .catalogsearch-result-index .block-layered-nav .currently {
    background: #F1F1F1;
    padding: 20px 20px 2px 20px;
    margin-bottom: 28px;
  }
}

@media only screen and (max-width: 770px) and (min-width: 770px) {
  .catalog-category-view .block-layered-nav .currently, .catalogsearch-result-index .block-layered-nav .currently {
    background-color: white;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav .currently > ol > li, .catalogsearch-result-index .block-layered-nav .currently > ol > li {
    line-height: 30px;
    color: #6B6B6B;
    font-family: "OpenSans", Verdana, Arial, sans-serif;
  }
  .catalog-category-view .block-layered-nav .currently > ol > li a.btn-remove-inline, .catalogsearch-result-index .block-layered-nav .currently > ol > li a.btn-remove-inline {
    background: none;
  }
  .catalog-category-view .block-layered-nav .currently > ol > li a.btn-remove-inline:after, .catalogsearch-result-index .block-layered-nav .currently > ol > li a.btn-remove-inline:after {
    background: url(../images/pjg_icon_sprite.png) no-repeat -43px -188px;
    width: 13px;
    height: 13px;
    background: url(../images/pjg_icon_sprite.png) no-repeat -43px -188px;
    height: 13px;
    width: 13px;
    content: '';
    display: block;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .catalog-category-view .block-layered-nav .currently > ol > li a.btn-remove-inline:after, .catalogsearch-result-index .block-layered-nav .currently > ol > li a.btn-remove-inline:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .block-layered-nav .currently > ol > li a.btn-remove-inline img, .catalogsearch-result-index .block-layered-nav .currently > ol > li a.btn-remove-inline img {
    display: none;
  }
  .catalog-category-view .block-layered-nav dl dt, .catalogsearch-result-index .block-layered-nav dl dt {
    padding: 15px 20px 0px 20px;
    font-family: "OpenSans", Verdana, Arial, sans-serif;
    font-size: 18px;
    color: white;
    letter-spacing: 0px;
    line-height: 27px;
    text-transform: none;
    position: relative;
  }
  .catalog-category-view .block-layered-nav dl dt:after, .catalogsearch-result-index .block-layered-nav dl dt:after {
    position: absolute;
    background: url(../images/pjg_icon_sprite.png) no-repeat -44px -96px;
    height: 7px;
    width: 12px;
    content: '';
    display: block;
    right: 30px;
    top: 25px;
  }
  .catalog-category-view .block-layered-nav dl dt:hover, .catalogsearch-result-index .block-layered-nav dl dt:hover {
    color: white;
  }
  .catalog-category-view .block-layered-nav .block-content.accordion-open > dl > dt.current:after, .catalogsearch-result-index .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    position: absolute;
    background: url(../images/pjg_icon_sprite.png) no-repeat -65px -96px;
    height: 7px;
    width: 12px;
    content: '';
    display: block;
  }
  .catalog-category-view .block-layered-nav dl dt:last-of-type, .catalogsearch-result-index .block-layered-nav dl dt:last-of-type {
    padding-bottom: 15px;
  }
  .catalog-category-view .block-layered-nav .pages .current, .catalogsearch-result-index .block-layered-nav .pages .current {
    color: #F38230;
  }
}

@media only screen and (max-width: 380px) {
  .catalog-category-view .block-layered-nav .block-subtitle--filter, .catalogsearch-result-index .block-layered-nav .block-subtitle--filter {
    width: 47%;
    max-width: 130px;
  }
}

.catalog-category-view .pager .limiter a, .catalogsearch-result-index .pager .limiter a {
  margin-top: 0px;
  height: 28px;
  width: 28px;
  padding-top: 5px;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .col-main .category-products .pager .pages, .catalogsearch-result-index .col-main .category-products .pager .pages {
    float: none;
    clear: both;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

.catalog-category-view .toolbar-bottom .toolbar, .catalogsearch-result-index .toolbar-bottom .toolbar {
  padding-top: 46px;
  padding-bottom: 19px;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar-bottom .toolbar, .catalogsearch-result-index .toolbar-bottom .toolbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.catalog-category-view .toolbar-bottom .toolbar .sort-by, .catalogsearch-result-index .toolbar-bottom .toolbar .sort-by {
  display: none;
}

@media only screen and (min-width: 599px) {
  .catalog-category-view .toolbar-bottom .toolbar .sort-by, .catalogsearch-result-index .toolbar-bottom .toolbar .sort-by {
    display: block;
  }
}

.catalog-category-view .toolbar-bottom .toolbar .sort-by label:after, .catalogsearch-result-index .toolbar-bottom .toolbar .sort-by label:after {
  display: none;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar-bottom .toolbar .sorter, .catalogsearch-result-index .toolbar-bottom .toolbar .sorter {
    display: none;
  }
}

.catalog-category-view .toolbar:last-of-type, .catalogsearch-result-index .toolbar:last-of-type {
  clear: both;
}

.catalog-category-view .toolbar:last-of-type:before, .catalog-category-view .toolbar:last-of-type:after, .catalogsearch-result-index .toolbar:last-of-type:before, .catalogsearch-result-index .toolbar:last-of-type:after {
  content: " ";
  display: table;
}

.catalog-category-view .toolbar:last-of-type:after, .catalogsearch-result-index .toolbar:last-of-type:after {
  clear: both;
}

.catalog-category-view .toolbar .sorter, .catalogsearch-result-index .toolbar .sorter {
  width: 47%;
  max-width: 187px;
  float: right;
  margin-top: 0;
  position: static;
  z-index: 99;
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar .sorter, .catalogsearch-result-index .toolbar .sorter {
    top: -40px;
    right: 5px;
    max-width: 130px;
    position: relative;
  }
}

.catalog-category-view .toolbar .sorter .sort-by, .catalogsearch-result-index .toolbar .sorter .sort-by {
  white-space: nowrap;
  margin-right: 0;
  height: 40px;
}

.catalog-category-view .toolbar .sorter .sort-by label, .catalogsearch-result-index .toolbar .sorter .sort-by label {
  line-height: 30px;
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by label, .catalogsearch-result-index .toolbar .sorter .sort-by label {
    text-transform: lowercase;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by label, .catalogsearch-result-index .toolbar .sorter .sort-by label {
    display: none;
    position: absolute;
    top: 15px;
    right: 24px;
    width: 90px;
    padding-left: 10px;
    background: #6689CC;
    z-index: 10;
    font-family: "OpenSans", Verdana, Arial, sans-serif;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 1px;
    text-transform: none;
    color: white;
  }
}

.catalog-category-view .toolbar .sorter .sort-by label.mobile-active, .catalogsearch-result-index .toolbar .sorter .sort-by label.mobile-active {
  display: block;
  top: 10px;
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by label.mobile-active, .catalogsearch-result-index .toolbar .sorter .sort-by label.mobile-active {
    margin-bottom: 0;
    padding-top: 5px;
    line-height: 20px;
  }
}

.catalog-category-view .toolbar .sorter .sort-by label:after, .catalogsearch-result-index .toolbar .sorter .sort-by label:after {
  display: none;
}

.catalog-category-view .toolbar .sorter .sort-by .select-container .custom-shiv, .catalogsearch-result-index .toolbar .sorter .sort-by .select-container .custom-shiv {
  background: #6689CC;
  width: 130px;
  height: 40px;
  padding: 10px;
  border: 0;
  margin-bottom: 0;
  display: inline-block;
  text-transform: none;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 17px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by .select-container .custom-shiv, .catalogsearch-result-index .toolbar .sorter .sort-by .select-container .custom-shiv {
    height: 30px;
    padding: 5px 15px;
  }
}

.catalog-category-view .toolbar .sorter .sort-by .select-container.small, .catalogsearch-result-index .toolbar .sorter .sort-by .select-container.small {
  top: 0px;
  padding-top: 0px;
}

.catalog-category-view .toolbar .sorter .sort-by .select-container.small span:after, .catalogsearch-result-index .toolbar .sorter .sort-by .select-container.small span:after {
  top: 17px;
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by .select-container.small span:after, .catalogsearch-result-index .toolbar .sorter .sort-by .select-container.small span:after {
    top: 12px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by .select-container.small select.select-custom, .catalogsearch-result-index .toolbar .sorter .sort-by .select-container.small select.select-custom {
    height: 40px;
    z-index: 90;
  }
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .toolbar .sorter .sort-by, .catalogsearch-result-index .toolbar .sorter .sort-by {
    height: 30px;
  }
}

.catalog-category-view .toolbar .sorter .view-mode, .catalogsearch-result-index .toolbar .sorter .view-mode {
  display: none;
}

.catalog-category-view .toolbar .sorter > .sort-by .sort-by-switcher, .catalogsearch-result-index .toolbar .sorter > .sort-by .sort-by-switcher {
  display: none;
}

.catalog-category-view .toolbar .pager, .catalogsearch-result-index .toolbar .pager {
  float: left;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager, .catalogsearch-result-index .toolbar .pager {
    width: 65%;
    clear: none;
  }
}

@media only screen and (max-width: 979px) {
  .catalog-category-view .toolbar .pager, .catalogsearch-result-index .toolbar .pager {
    width: 55%;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar .pager, .catalogsearch-result-index .toolbar .pager {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar .pager, .catalogsearch-result-index .toolbar .pager {
    top: -23px;
    position: relative;
  }
}

.catalog-category-view .toolbar .pager .count-container, .catalogsearch-result-index .toolbar .pager .count-container {
  display: none;
}

@media only screen and (min-width: 979px) {
  .catalog-category-view .toolbar .pager .count-container, .catalogsearch-result-index .toolbar .pager .count-container {
    display: inline-block;
  }
}

.catalog-category-view .toolbar .pager .count-container .amount, .catalogsearch-result-index .toolbar .pager .count-container .amount {
  display: none;
}

.catalog-category-view .toolbar .pager .pages, .catalogsearch-result-index .toolbar .pager .pages {
  text-align: center;
  white-space: nowrap;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager .pages, .catalogsearch-result-index .toolbar .pager .pages {
    margin-left: 0;
    width: 52%;
    position: relative;
  }
}

@media only screen and (max-width: 979px) {
  .catalog-category-view .toolbar .pager .pages, .catalogsearch-result-index .toolbar .pager .pages {
    width: 100%;
    text-align: left;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-category-view .toolbar .pager .pages, .catalogsearch-result-index .toolbar .pager .pages {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager .pages, .catalogsearch-result-index .toolbar .pager .pages {
    top: -10px;
    white-space: nowrap;
  }
}

.catalog-category-view .toolbar .pager .pages li, .catalogsearch-result-index .toolbar .pager .pages li {
  height: 28px;
  width: 28px;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #6B6B6B;
  padding-top: 5px;
  margin-right: 2%;
  margin-left: 2%;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager .pages li, .catalogsearch-result-index .toolbar .pager .pages li {
    margin-right: 1%;
    margin-left: 1%;
  }
}

.catalog-category-view .toolbar .pager .pages li.page-prev, .catalogsearch-result-index .toolbar .pager .pages li.page-prev {
  margin-right: 1%;
  margin-left: 0;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager .pages li.page-prev, .catalogsearch-result-index .toolbar .pager .pages li.page-prev {
    width: 6px;
    padding-top: 0;
    margin-top: 5px;
  }
}

.catalog-category-view .toolbar .pager .pages li.page-next, .catalogsearch-result-index .toolbar .pager .pages li.page-next {
  margin-right: 0;
  margin-left: 1%;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager .pages li.page-next, .catalogsearch-result-index .toolbar .pager .pages li.page-next {
    width: 6px;
    padding-top: 0;
    margin-top: 5px;
  }
}

.catalog-category-view .toolbar .pager .pages li.current, .catalogsearch-result-index .toolbar .pager .pages li.current {
  background: #6689CC;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #fff;
}

.catalog-category-view .toolbar .pager .pages li a, .catalogsearch-result-index .toolbar .pager .pages li a {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  color: #6B6B6B;
}

@media only screen and (min-width: 771px) {
  .catalog-category-view .toolbar .pager .pages li a.next, .catalogsearch-result-index .toolbar .pager .pages li a.next {
    width: 6px;
  }
}

.catalog-category-view .toolbar .pager .pages li a.next:before, .catalogsearch-result-index .toolbar .pager .pages li a.next:before {
  position: absolute;
  background: url(../images/pjg_icon_sprite.png) no-repeat -185px -68px;
  height: 11px;
  width: 6px;
  content: '';
  display: block;
  right: 0px;
  top: -10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-category-view .toolbar .pager .pages li a.next:before, .catalogsearch-result-index .toolbar .pager .pages li a.next:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 770px) {
  .catalog-category-view .toolbar .pager .pages li a.previous, .catalogsearch-result-index .toolbar .pager .pages li a.previous {
    width: 6px;
  }
}

.catalog-category-view .toolbar .pager .pages li a.previous:before, .catalogsearch-result-index .toolbar .pager .pages li a.previous:before {
  position: absolute;
  background: url(../images/pjg_icon_sprite.png) no-repeat -172px -68px;
  height: 11px;
  width: 6px;
  content: '';
  display: block;
  left: 0px;
  top: -10px;
}

.catalog-category-view .toolbar .pager .pages li:hover a, .catalogsearch-result-index .toolbar .pager .pages li:hover a {
  color: #6689CC;
}

.block-layered-nav dl dd ol > li > span:hover, .block-layered-nav dl dd ol > li > a:hover {
  color: #6689CC;
}

.jumppage-display-index .products-grid .product-info {
  height: auto;
}

@media only screen and (max-width: 770px) {
  .jumppage-display-index .breadcrumbs span, .jumppage-display-index .breadcrumbs strong {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  .jumppage-display-index .jumppage-bottom {
    display: none;
  }
}

.header-minicart {
  float: right;
  max-width: 204px;
  width: 32%;
  margin-right: 14px;
}

@media only screen and (max-width: 1199px) {
  .header-minicart {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart {
    margin-right: 0px;
    max-width: 44px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart .minicart-wrapper {
    background: #F1F1F1;
  }
}

.header-minicart p.block-title {
  font: 28px/36px "MontserratBold" !important;
  color: #2A2A2A;
  padding-top: 3px;
}

.header-minicart #header-cart .block-subtitle {
  letter-spacing: 0;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 20px;
  color: #6B6B6B;
  line-height: 27px;
  padding: 0 0 16px 0;
  margin-top: 6px;
}

@media only screen and (max-width: 770px) {
  .header-minicart #header-cart .block-subtitle .close {
    display: none;
  }
}

.header-minicart #header-cart.skip-active {
  box-shadow: none;
  right: 14px;
}

@media only screen and (max-width: 1199px) {
  .header-minicart #header-cart.skip-active {
    right: 10px;
  }
}

@media only screen and (max-width: 770px) {
  .header-minicart #header-cart.skip-active {
    right: 0px;
  }
}

.header-minicart #header-cart .minicart-actions .cart-link {
  background-color: #07489E;
  color: #fff;
  border-radius: 6px;
}

.header-minicart #header-cart .minicart-actions .cart-link:focus {
  color: #fff;
}

.header-minicart #header-cart .minicart-actions .checkout-button {
  color: #2A2A2A;
  background-color: #FBCF27;
  width: auto;
}

@media only screen and (max-width: 770px) {
  .header-minicart .skip-cart.skip-active span.icon {
    margin-right: 0px;
  }
}

.header-minicart #cart-sidebar .product-details .product-name {
  text-align: left;
}

.header-minicart #cart-sidebar .product-details .product-name a {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

.header-minicart #cart-sidebar .product-details a.remove {
  background: url(../images/pjg_icon_sprite.png) no-repeat -43px -188px;
  height: 13px;
  width: 13px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .header-minicart #cart-sidebar .product-details a.remove {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.header-minicart .subtotal .label {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 21px;
}

.header-minicart .subtotal .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #2A2A2A;
  line-height: 21px;
}

.header-minicart p {
  color: #000;
}

.header-minicart .cart-link a {
  color: #fff;
}

@media only screen and (max-width: 770px) {
  #header-cart.block-cart {
    margin-top: 0;
    top: 50px;
    bottom: 0;
    background: #F1F1F1;
    height: 92%;
  }
}

.gift-experience-pdp .product-view .product-shop .price-info-top {
  display: block;
  text-align: left;
  padding: 5px 0;
}

.gift-experience-pdp .product-view .product-shop .price-info-top .price-label {
  display: none;
}

.gift-experience-pdp .product-view .product-shop .price-info-top .price {
  font-size: 22px;
  color: #2A2A2A;
}

.gift-experience-pdp .product-view .product-shop .price-info-top .special-price .price {
  color: #D0021B;
}

.price-info-top {
  display: none;
}

.product-view div.product-shop {
  width: 50% !important;
  padding-left: 0 !important;
}

.product-view div.product-shop .giftcard-form .fieldset.giftcard-amount-form {
  clear: both;
  padding-top: 5px;
}

.product-view div.product-shop #select_label_color {
  display: none;
}

@media only screen and (max-width: 770px) {
  .product-view div.product-shop {
    width: 100% !important;
    padding: 3% 3% 0 3% !important;
    margin-bottom: 13px;
  }
}

.product-view div.product-shop .size-chart {
  position: relative;
  bottom: 2px;
  left: 15px;
  display: inline-block;
}

.product-view div.product-shop .size-chart .title {
  color: #6B6B6B;
}

.product-view div.product-shop .size-chart .title:hover {
  cursor: pointer;
}

.product-view div.product-shop .size-chart .title:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -356px -30px;
  height: 11px;
  width: 11px;
  content: '';
  display: inline-block;
  margin-left: 5px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view div.product-shop .size-chart .title:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view div.product-shop .size-chart .chart {
  display: none;
}

@media only screen and (min-width: 771px) {
  .product-view div.product-shop > .oversize-shipping-wrapper,
  .product-view div.product-shop > .available-shipping-wrapper {
    margin-left: 5%;
  }
}

.product-view .add-to-cart {
  margin-bottom: 17px;
}

.product-view .add-to-cart:before, .product-view .add-to-cart:after {
  content: " ";
  display: table;
}

.product-view .add-to-cart:after {
  clear: both;
}

.product-view .oversize-shipping-wrapper .oversize-icon {
  background: url(../images/lead_messages.png) no-repeat -133px -18px;
  height: 28px;
  width: 30px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .oversize-shipping-wrapper .oversize-icon {
    background-image: url(../images/lead_messages@2x.png);
    background-size: 188px 136px;
  }
}

.product-view .available-shipping-wrapper .available-icon {
  background: url(../images/lead_messages.png) no-repeat -16px -18px;
  height: 22px;
  width: 30px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .available-shipping-wrapper .available-icon {
    background-image: url(../images/lead_messages@2x.png);
    background-size: 188px 136px;
  }
}

.product-view .product-name {
  padding-left: 0;
  width: 50%;
  text-align: left;
}

.product-view .product-name h1, .product-view .product-name .h1 {
  color: #07489E;
  font-size: 47px;
  line-height: 55px;
  text-transform: none;
}

.product-view .custom-shiv {
  background: #fff;
  color: #4B4B4B;
  border: 1px solid #698BC7;
  border-radius: 5px;
  height: 30px;
  line-height: 29px;
  text-align: left;
}

.product-view .custom-shiv span:after {
  background-position: -44px -109px;
  top: 11px;
}

.product-view .validation-passed .custom-shiv {
  background: #698BC7;
  color: #fff;
}

.product-view .validation-passed .custom-shiv span:after {
  background-position: -44px -96px;
}

.product-view .validation-error .custom-shiv {
  border: 1px solid #D0021B;
  color: #fff;
}

.product-view .validation-error .custom-shiv span:after {
  background-position: -44px -96px;
}

.product-view .product-options dd {
  border-bottom: none;
  text-align: center;
}

.product-view .product-options dd .input-box {
  width: 227px;
}

.product-view .product-shop {
  width: 50%;
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop {
    width: 100%;
  }
}

.product-view .product-shop .truncate-ctrl-btn:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -44px -109px;
  height: 7px;
  width: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .product-shop .truncate-ctrl-btn:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .product-shop .extra-info {
  max-width: 100%;
  width: 100%;
  padding: 0;
  text-align: center;
}

.product-view .product-shop .extra-info .availability-wrapper {
  display: block;
  width: 100%;
  text-align: left;
}

.product-view .product-shop .extra-info .availability, .product-view .product-shop .extra-info .available-shipment-date, .product-view .product-shop .extra-info .availability-only {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 20px;
  margin-right: 2px;
  width: auto;
  text-align: center;
  display: inline-block;
  float: none;
}

.product-view .product-shop .extra-info .backorder-details {
  color: #6B6B6B;
  float: none;
  display: inline-block;
}

.product-view .product-shop .extra-info .backorder-details div {
  display: none;
}

.product-view .product-shop .extra-info .price-info {
  display: inline-block;
}

.product-view .product-shop .extra-info .price-info .price-box {
  display: none;
}

.product-view .product-shop .extra-info .price-info .price-box .regular-price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #2A2A2A;
  line-height: 30px;
}

.product-view .product-shop .extra-info .price-info .price-box .regular-price .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #2A2A2A;
  line-height: 30px;
}

.product-view .product-shop .extra-info .price-info .price-box .special-price .price {
  color: #D0021B;
}

.product-view .product-shop .extra-info .availability, .product-view .product-shop .extra-info .short-description {
  text-align: left;
}

.product-view .product-shop .extra-info .short-description {
  margin-bottom: 25px;
}

.product-view .product-shop .product-options {
  border: 2px solid #99B9F7;
  border-radius: 5px;
}

.product-view .product-shop .product-options p.required {
  display: none;
}

.product-view .product-shop .product-options label.required::after {
  display: none;
}

.product-view .product-shop .product-options dt:first-child {
  margin-top: 12px;
}

.product-view .product-shop .product-options-bottom {
  padding-top: 37px !important;
}

@media only screen and (max-width: 479px) {
  .product-view .product-shop .product-options-bottom .price-box .price-as-configured {
    text-align: center;
  }
}

.product-view .block-related .price-box, .product-view .box-up-sell .price-box {
  margin-top: 8px;
}

.product-view .block-related .product-details h3.product-name, .product-view .box-up-sell .product-details h3.product-name {
  width: 100% !important;
}

.product-view .block-related .block-title h2, .product-view .block-related .box-title h2, .product-view .box-up-sell .block-title h2, .product-view .box-up-sell .box-title h2 {
  font-family: "MontserratBold";
  font-size: 40px;
  color: #6B6B6B;
  letter-spacing: 1px;
  line-height: 36px;
  text-align: center;
}

@media only screen and (max-width: 770px) {
  .product-view .block-related .block-title h2, .product-view .block-related .box-title h2, .product-view .box-up-sell .block-title h2, .product-view .box-up-sell .box-title h2 {
    font-size: 18px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 1031px) {
  .product-view .block-related, .product-view .box-up-sell {
    width: 100% !important;
    padding-left: 8% !important;
  }
}

.product-view .mini-products-list .product-name {
  text-align: center;
}

.product-img-box {
  width: 38%;
  margin-left: auto;
}

.block-related .product-details, .box-up-sell .product-details {
  margin-top: 15px;
}

.block-related .product-details .product-name, .box-up-sell .product-details .product-name {
  width: 100%;
}

.short-description {
  margin: 5px 0 10px;
  margin-bottom: 18px !important;
  text-align: left;
}

.short-description .truncate {
  color: #6B6B6B;
  padding-bottom: 10px;
  margin-bottom: 10px;
  max-width: 430px;
  width: 100%;
  display: block;
  transition: all 300ms ease;
}

.catalog-product-view .breadcrumbs {
  padding: 2.2% 30px;
  max-height: 100px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .breadcrumbs {
    padding: 41px 0px 0 10px;
  }
}

.product-image .product-image-gallery {
  border-bottom-style: solid;
  border-bottom-color: #9CBCF3;
  border-bottom-width: 1px;
}

.product-image .iwd-pv-video {
  background-color: #fff;
}

.product-image .iwd-pv-video .iwd-pv-video-block > div {
  margin: 0 auto;
}

@media only screen and (max-width: 770px) {
  .product-image {
    border: none;
  }
}

@media only screen and (max-width: 479px) {
  .product-img-box .product-image img {
    max-height: none;
    max-width: 400px;
  }
}

@media only screen and (max-width: 770px) {
  .product-img-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .product-img-box {
    margin-bottom: 50px;
  }
}

.catalog-product-view .product-view .product-img-box .product-image:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -228px -36px;
  height: 33px;
  width: 34px;
  content: "";
  position: absolute;
  display: block;
  bottom: 10px;
  right: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .catalog-product-view .product-view .product-img-box .product-image:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .product-view .product-img-box .product-image:after {
    display: none;
  }
}

.product-image-thumbs .owl-item {
  z-index: 21;
}

.product-image-thumbs li:hover:before {
  content: "";
  border: none;
  border-bottom-style: solid;
  border-bottom-color: #9CBCF3;
  border-bottom-width: 1px;
  position: absolute;
  top: 0;
  top: calc(1px);
  left: 0;
  left: calc(1px);
  width: 100%;
  width: calc(100% - 2px);
  height: 100%;
  height: calc(100% - 2px);
}

.product-image-thumbs li:after {
  display: none;
}

.product-image-thumbs div.owl-item.active.active-item:before {
  display: none !important;
}

.product-image-thumbs div.owl-item.active.active-item li:before {
  display: none !important;
}

.product-image-thumbs div.owl-item.active.active-item li:after {
  display: none !important;
}

.product-image-thumbs div.owl-item.active.active-item li a.thumb-link:after {
  display: none !important;
}

.product-image-thumbs .owl-item.active-item li {
  z-index: 1;
}

.product-image-thumbs .owl-item.active-item li:before {
  content: "";
  border: none;
  border-bottom-style: solid;
  border-bottom-color: #99B9F7;
  border-bottom-width: 1px;
  position: absolute;
  top: 0;
  top: calc(1px);
  left: 0;
  left: calc(1px);
  width: 100%;
  width: calc(100% - 2px);
  height: 100%;
  height: calc(100% - 2px);
}

.ie8 .product-image-thumbs .owl-item.active-item li:before {
  display: none;
}

.product-view .sharing-links li a {
  text-indent: -2000px;
}

.product-view .sharing-links li a.link-facebook {
  background: url(../images/pjg_icon_sprite.png) no-repeat -272px -6px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links li a.link-facebook {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .sharing-links li a.link-facebook:hover {
  background: url(../images/pjg_icon_sprite.png) no-repeat -301px -6px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links li a.link-facebook:hover {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .sharing-links li a.link-twitter {
  background: url(../images/pjg_icon_sprite.png) no-repeat -272px -39px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links li a.link-twitter {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .sharing-links li a.link-twitter:hover {
  background: url(../images/pjg_icon_sprite.png) no-repeat -301px -39px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links li a.link-twitter:hover {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .sharing-links li a.link-pinterest {
  background: url(../images/pjg_icon_sprite.png) no-repeat -272px -72px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links li a.link-pinterest {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .sharing-links li a.link-pinterest:hover {
  background: url(../images/pjg_icon_sprite.png) no-repeat -301px -72px;
  height: 22px;
  width: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-view .sharing-links li a.link-pinterest:hover {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-view .add-to-cart .price-box .price {
  font-size: 22px;
  color: #2A2A2A;
  line-height: 30px;
}

.product-view .add-to-cart .price-box:before {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 15px;
  color: #656963;
  line-height: 20px;
  margin-bottom: 6px;
}

.product-view .add-to-cart .price-box .special-price .price {
  color: #D0021B;
}

.product-view .add-to-cart .add-to-cart-buttons .button {
  padding: 0;
  font: 17px/19px "Montserrat", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  color: #2A2A2A;
}

@media only screen and (max-width: 770px) {
  .product-view .add-to-cart .add-to-cart-buttons .button {
    margin: 0;
  }
}

.product-view .product-essential {
  padding-top: 2%;
}

.lower-product-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4.1667%;
}

.lower-product-wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.callout-collateral {
  text-align: center;
}

.callout-collateral:before, .callout-collateral:after {
  content: " ";
  display: table;
}

.callout-collateral:after {
  clear: both;
}

@media only screen and (max-width: 770px) {
  .callout-collateral {
    display: none;
  }
}

@media only screen and (min-width: 771px) {
  .callout-collateral-mobile {
    display: none;
  }
}

.gift-packaging-callout {
  position: relative;
  display: inline-block;
  max-width: 320px;
  clear: left;
  float: none;
}

@media only screen and (max-width: 770px) {
  .gift-packaging-callout {
    display: none !important;
  }
}

.gift-packaging-callout .gift-packaging-copy {
  max-width: 200px;
  margin-left: 100px;
  position: relative;
  top: -82px;
  text-align: center;
}

.gift-packaging-callout .gift-packaging-copy .bold {
  font-family: "MontserratBold";
}

.product-collateral {
  position: relative;
  clear: both;
  margin-bottom: 4.1667%;
  padding-top: 30px;
  min-width: 320px;
}

.product-collateral .toggle-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 0 12.5%;
}

.product-collateral .tab-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: 15px;
  line-height: 24px;
}

.product-collateral .tab-content .std {
  padding-left: 15px;
  padding-bottom: 24px;
}

.product-collateral .tab-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.product-collateral .tab-content .desc-image {
  width: 28.9167%;
  max-width: 260px;
  float: right;
}

@media only screen and (min-width: 770px) {
  .product-collateral .tab-content .desc-image {
    width: 100%;
    max-width: 100%;
  }
}

.product-collateral .tab-content .desc-image img {
  width: 100%;
}

.product-collateral .tab-content .desc-image ~ .std {
  float: left;
  width: 71.0833%;
  max-width: 640px;
  padding-right: 5%;
}

@media only screen and (min-width: 770px) {
  .product-collateral .tab-content .desc-image ~ .std {
    width: 100%;
    clear: both;
    padding: 0px;
    font-size: 15px;
    line-height: 24px;
  }
}

.product-collateral .tab-content .hazard-info {
  font-size: 13px;
  line-height: 21px;
  padding: 0 0 0 30px;
  margin-top: 6%;
  position: relative;
}

.product-collateral .tab-content .hazard-info:before {
  content: "";
  background: url(../images/pjg_icon_sprite.png) no-repeat -182px -266px;
  height: 20px;
  width: 22px;
  position: absolute;
  top: 0;
  left: 0px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-collateral .tab-content .hazard-info:before {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (min-width: 1200px) {
  .product-collateral .tab-content {
    padding: 0px;
  }
}

.product-collateral .tab-container {
  transition: all 300ms ease;
  display: block !important;
  max-height: 0px;
  overflow: hidden;
}

.product-collateral .tab-container.current {
  max-height: 2000px;
  max-height: 0;
}

.product-collateral .tab-container .tab-content {
  transition: all 600ms ease;
  transform: translateX(-100%);
  opacity: 0;
  transform: translateX(0%);
}

.product-collateral .tab-container.current .tab-content {
  transform: translateX(0%);
  opacity: 1;
}

.product-collateral .tab-container.current ~ .tab-container .tab-content {
  transform: translateX(100%);
  transform: translateX(0%);
}

@media only screen and (min-width: 771px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #CCCCCC;
    background-color: #F4F4F4;
  }
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  .product-collateral .toggle-tabs li > span {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 0px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    bottom: -1px;
  }
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
  }
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }
  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #698BC7;
  }
  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  .product-collateral .toggle-tabs:after:before, .product-collateral .toggle-tabs:after:after {
    content: " ";
    display: table;
  }
  .product-collateral .toggle-tabs:after:after {
    clear: both;
  }
  .product-collateral > dl {
    width: 100%;
  }
  .product-collateral > dl > dt {
    display: block;
  }
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    border-style: solid;
    border-width: 2px;
    border-color: #99B9F7;
    border-top: none;
  }
  .product-collateral > dl > dd.current {
    display: block;
    padding: 15px;
  }
  .catalog-product-view .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    background: none;
    border: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .catalog-product-view .product-collateral .toggle-tabs li {
    float: left;
    background: white;
    margin-left: 10px;
    margin-bottom: 0;
  }
  .catalog-product-view .product-collateral .toggle-tabs li:first-of-type {
    margin-left: 0;
  }
  .catalog-product-view .product-collateral .toggle-tabs li > span {
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 0px;
    color: #07489E;
    cursor: pointer;
    text-transform: capitalize;
    font: 22px/50px "Montserrat", Verdana, Arial, sans-serif;
    letter-spacing: 1px;
    position: relative;
    bottom: -1px;
    height: 50px;
  }
  .catalog-product-view .product-collateral .toggle-tabs li.current {
    border: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs li.current > span {
    z-index: 5;
  }
  .catalog-product-view .product-collateral .toggle-tabs li.current span,
  .catalog-product-view .product-collateral .toggle-tabs li:hover span {
    color: #698BC7;
  }
  .catalog-product-view .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  .catalog-product-view .product-collateral .toggle-tabs:after:before, .catalog-product-view .product-collateral .toggle-tabs:after:after {
    content: " ";
    display: table;
  }
  .catalog-product-view .product-collateral .toggle-tabs:after:after {
    clear: both;
  }
  .catalog-product-view .product-collateral > dl {
    width: 100%;
  }
  .catalog-product-view .product-collateral > dl > dt {
    display: none;
  }
  .catalog-product-view .product-collateral > dl > dd {
    width: 100%;
    display: none;
    border: none;
  }
  .catalog-product-view .product-collateral > dl > dd.current {
    display: block;
  }
}

.product-collateral .toggle-tabs {
  display: none;
}

.product-collateral > dl.collateral-tabs > dt {
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #4B4B4B;
  letter-spacing: 1px;
  line-height: 20px;
  display: block;
}

.product-collateral > dl.collateral-tabs > dt:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

.product-collateral > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

@media only screen and (max-width: 770px) {
  .product-collateral > dl.collateral-tabs > dt {
    font-family: "Montserrat", Verdana, Arial, sans-serif;
    font-size: 14px;
    color: #4B4B4B;
    letter-spacing: 1px;
    line-height: 20px;
  }
  .product-collateral > dl.collateral-tabs > dt:after {
    content: '';
    position: absolute;
    left: initial;
    right: 30px;
    display: block;
    background: url(../images/pjg_icon_sprite.png) no-repeat -177px -66px;
    height: 11px;
    width: 8px;
    height: 11px;
    width: 12px;
    border: none;
  }
}

@media only screen and (max-width: 770px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-device-pixel-ratio: 2), only screen and (max-width: 770px) and (min-resolution: 192dpi), only screen and (max-width: 770px) and (min-resolution: 2dppx) {
  .product-collateral > dl.collateral-tabs > dt:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-collateral > dl.collateral-tabs > dd {
  margin: 14px 0 0 0;
}

.product-collateral > dl.collateral-tabs > dd > ol > li {
  margin-top: 11px;
  margin-bottom: 11px;
}

@media only screen and (max-width: 770px) {
  .product-collateral > dl.collateral-tabs > dd > ol {
    margin-bottom: 0;
  }
}

.product-collateral > dl.collateral-tabs > dd .count {
  display: none;
}

.catalog-product-view .product-collateral .toggle-tabs {
  display: none;
  background: none;
  border: none;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt {
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  display: block;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt:after {
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #07489E;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-rendering: optimizeSpeed;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 19px;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  position: relative;
  line-height: 30px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt {
    font-size: 26px;
  }
}

.catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 13px !important;
  width: 3px !important;
  border: none;
  background: none !important;
  background-color: #4B4B4B !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 19px !important;
  margin-top: -6px;
}

.catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 3px;
  width: 13px;
  background: none;
  background-color: #4B4B4B;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
  background-color: #ededed;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dd {
  padding: 10px;
  margin: 0;
}

.product-collateral > dl > dt {
  cursor: pointer;
  border-bottom-width: 0;
}

.product-collateral > dl > dt:hover {
  color: #698BC7;
}

.product-collateral > dl > dt.last {
  border-bottom-width: 1px;
}

.product-collateral > dl > dd {
  display: none;
}

.product-collateral.accordion-open > dl > dt.current {
  border-bottom-width: 1px;
}

.product-collateral.accordion-open > dl > dt.current:after {
  content: '';
  position: absolute;
  left: initial;
  right: 30px;
  display: block;
  background: url(../images/pjg_icon_sprite.png) no-repeat -155px -66px;
  height: 11px;
  width: 8px;
  height: 11px;
  width: 12px;
  border: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .product-collateral.accordion-open > dl > dt.current:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.product-collateral.accordion-open > dl > dd.current {
  display: block;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt {
  cursor: pointer;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dt:hover {
  color: #698BC7;
}

.catalog-product-view .product-collateral > dl.collateral-tabs > dd {
  transition: none;
  display: block;
  max-height: 0px;
  padding: 0 10px;
  overflow: hidden;
}

.catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current {
  border-bottom-width: 0px;
  margin-bottom: 0px;
}

.catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current:after {
  transform: rotate(90deg);
}

.catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dt.current:before {
  transform: rotate(180deg);
}

.catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dd.current {
  display: block;
  max-height: 9000px;
  padding: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #99B9F7;
  border-top: none;
  margin-bottom: 10px;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .product-collateral.accordion-open > dl.collateral-tabs > dd.current {
    border: none;
  }
}

@media only screen and (min-width: 771px) {
  .catalog-product-view.configurable .product-view .available-shipping-wrapper,
  .catalog-product-view.configurable .product-view .oversize-shipping-wrapper {
    margin-left: 11.5%;
  }
}

@media only screen and (min-width: 771px) {
  .catalog-product-view .product-collateral.toggle-content {
    max-width: 320px;
    margin: 0 auto;
    clear: left;
  }
}

.catalog-product-view .product-collateral.toggle-content > dl > dd.tab-container {
  padding-right: 20px;
  padding-left: 20px;
  text-align: left;
}

.catalog-product-view .product-collateral.toggle-content > dl > dt {
  padding-top: 13px;
  padding-bottom: 13px;
  margin-bottom: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #99B9F7;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #004276;
  line-height: 30px;
  text-align: left;
}

@media only screen and (max-width: 770px) {
  .catalog-product-view .product-collateral.toggle-content > dl > dt {
    border: none;
    margin-bottom: 0;
  }
}

.catalog-product-view .product-collateral.toggle-content > dl > dt:after {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 15px !important;
  width: 1px !important;
  border: none;
  background: none !important;
  background-color: #7EAEDD !important;
  position: absolute;
  right: 26px;
  left: auto !important;
  top: 25px !important;
  margin-top: -5px;
}

.catalog-product-view .product-collateral.toggle-content > dl > dt:before {
  transition: all 300ms ease;
  content: "";
  display: block;
  height: 1px;
  width: 15px;
  background: none;
  background-color: #7EAEDD;
  position: absolute;
  right: 19px;
  top: 50%;
  margin-top: -1px;
}

.catalog-product-view .product-collateral.toggle-content > dl > dt .current {
  border-bottom: none;
}

.mobile .yotpo {
  display: none;
}

@media only screen and (max-width: 770px) {
  .product-view .product-shop .extra-info,
  .product-view .product-shop .price-info {
    text-align: left;
  }
}

.catalog-product-view .wrapper .product-name.mobile {
  width: 100% !important;
}

.catalog-product-view .wrapper .product-name.mobile .h1 {
  font-size: 28px;
  line-height: 36px;
}

.product-collateral {
  display: block;
  padding-top: 0;
}

.product-view .box-collateral {
  display: inline-block;
  width: 60%;
  padding-left: 14%;
}

@media only screen and (max-width: 770px) {
  .product-view .box-collateral {
    width: 100% !important;
  }
}

.impulse-buys-modal .product-name {
  width: 100% !important;
}

.impulse-buys-modal .product-options-bottom .old-price .price {
  color: #2A2A2A;
  font-size: 22px;
  line-height: 30px;
}

.impulse-buys-modal .product-options-bottom .special-price .price {
  color: #D0021B !important;
}

.ie8 .product-view .product-name {
  padding-left: 0;
}

.ie8 .product-view .product-img-box {
  max-width: 38%;
}

.ie8 .product-view .product-shop .product-options {
  border: 2px solid #99B9F7;
  border-radius: 5px;
}

.ie8 .product-view .product-shop .product-options em {
  display: none;
}

.ie8 .product-view .product-shop .extra-info {
  max-width: 100%;
  width: 100%;
}

.ie8 .product-view .product-shop .extra-info .availability-wrapper .value {
  color: #6B6B6B;
}

.ie8 .product-view .product-shop .extra-info .short-description a {
  color: #6689CC;
}

.ie8 .product-view .product-options-bottom .add-to-cart .price-box {
  padding-right: 4px;
}

.ie8 .product-view .product-options-bottom .add-to-cart .price-box .price {
  font-size: 22px;
  line-height: 30px;
}

.ie8 .product-view .product-options-bottom .add-to-cart .price-box .special-price .price {
  color: #D0021B;
  font-size: 24px;
}

.ie8 .product-view .box-collateral {
  width: 62% !important;
  max-width: 62% !important;
  padding-left: 14% !important;
}

.ie8 .product-view .box-collateral ul.mini-products-list li {
  width: 30%;
}

.cms-page-view .std p,
.cms-no-route .std p {
  font-style: normal;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

.cms-page-view .std li,
.cms-no-route .std li {
  font-style: normal;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after:before, .clearfix:after:after,
.configurable-swatch-list:after:before,
.configurable-swatch-list:after:after,
.product-view .product-options .swatch-attr:after:before,
.product-view .product-options .swatch-attr:after:after {
  content: " ";
  display: table;
}

.clearfix:after:after,
.configurable-swatch-list:after:after,
.product-view .product-options .swatch-attr:after:after {
  clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  color: #07489E;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 2px solid #fff;
  margin: 0 0 3px;
}

.swatch-link img {
  border-radius: 5px;
}

.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}

.swatch-link .swatch-color-name {
  color: #6B6B6B;
  font-size: 12px;
}

.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}

.swatch-link.has-image .swatch-label {
  position: relative;
}

.swatch-link.has-image img {
  position: static;
  top: 0;
  left: 0;
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
}

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}

.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 33px 42px 0;
}

.configurable-swatch-list li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 599px) {
  .configurable-swatch-list li {
    margin: 0 10px 42px 10px;
  }
}

.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}

.configurable-swatch-list .not-available .x {
  display: block;
}

.configurable-swatch-list .not-available .swatch-link {
  border-color: #99B9F7;
  position: relative;
}

.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}

.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}

.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}

#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}

#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}

#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #99B9F7;
}

#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #99B9F7;
  border-radius: 5px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}

#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 5px;
  box-sizing: content-box;
}

#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 770px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}

.currently .swatch-current {
  position: relative;
}

.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}

.currently .swatch-current span {
  display: block;
  float: left;
}

.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}

.currently .swatch-link:hover {
  border-color: #99B9F7;
  cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #99B9F7;
}

.configurable-swatch-box {
  background: none !important;
}

.configurable-swatch-box select.swatch-select {
  display: none;
}

.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #D65E56;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
.availability.out-of-stock span {
  color: gray;
}

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}

.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 12px;
}

.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}

.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #F38230;
  padding-left: 5px;
}

.product-view .product-options .swatch-attr .validation-advice {
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding-bottom: 15px;
  padding-right: 35px;
}

.product-view .product-options .swatch-attr .input-box {
  width: 305px;
  margin-left: 25px;
}

@media only screen and (max-width: 599px) {
  .product-view .product-options .swatch-attr .input-box {
    width: 268px;
    margin-left: 0;
  }
}

.product-view .product-options dt {
  text-align: center;
}

.product-view .product-options dt label,
.product-view .product-options dt label#color_label {
  font-family: "MontserratBold";
  color: #07489E;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0;
}

.product-view .product-options dd .input-box {
  height: auto;
  margin-top: 21px;
  margin-bottom: 10px;
}

.product-view .product-options .validation-advice {
  text-align: center;
  width: 100%;
}

.product-view .product-options .select-label {
  display: none;
}

.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

.featured-categories-container {
  max-width: 1120px;
  margin: auto;
}

.featured-categories-container:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.featured-categories-container .grid-one:after,
.featured-categories-container .grid-two:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.featured-categories-container .grid-one .col,
.featured-categories-container .grid-two .col {
  float: left;
}

.featured-categories-container .grid-one .col.col-1-1:nth-child(even),
.featured-categories-container .grid-two .col.col-1-1:nth-child(even) {
  float: right;
}

.featured-categories-container .grid-one .col.col-1-2,
.featured-categories-container .grid-two .col.col-1-2 {
  max-width: 360px;
}

@media only screen and (max-width: 770px) {
  .featured-categories-container .grid-one .col.col-1-2,
  .featured-categories-container .grid-two .col.col-1-2 {
    float: none;
    margin: 2.7% auto 0 auto;
  }
}

@media only screen and (max-width: 599px) {
  .featured-categories-container .grid-one .col.col-1-2,
  .featured-categories-container .grid-two .col.col-1-2 {
    max-width: none;
    margin: 0 auto;
  }
}

.featured-categories-container .grid-one .grid > div.row:first-child,
.featured-categories-container .grid-two .grid > div.row:first-child {
  margin-bottom: 2.7%;
}

@media only screen and (max-width: 599px) {
  .featured-categories-container .grid-one .grid > div.row:first-child,
  .featured-categories-container .grid-two .grid > div.row:first-child {
    margin-bottom: 0;
  }
}

.featured-categories-container .slide {
  position: relative;
}

.featured-categories-container .slide img {
  width: 100%;
}

.featured-categories-container .slide .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.grid-one {
  display: block;
  float: left;
  width: 66.0714%;
  vertical-align: top;
}

@media only screen and (max-width: 770px) {
  .grid-one {
    width: 100%;
  }
}

.grid-one .grid {
  /* padding-right removal styles for last item on right side of the grid */
  overflow: hidden;
  /* spacing for top row */
}

.grid-one .grid:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid {
    padding: 0;
  }
}

.grid-one .grid .grid-content {
  width: calc(100% + 5px);
}

.grid-one .grid .col-1-1 {
  width: 48.6486%;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .col-1-1 {
    max-height: none;
  }
}

.grid-one .grid .col-2-1 {
  float: left;
  width: 100%;
  position: relative;
}

.grid-one .grid .col-2-1:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .col-2-1 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .col-2-1 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .col-2-1 .grid-item-content {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .col-2-1 {
    float: left;
    width: 100%;
    position: relative;
  }
  .grid-one .grid .col-2-1:after:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
  .grid-one .grid .col-2-1 .grid-item-content {
    overflow: hidden;
    width: 100%;
  }
  .grid-one .grid .col-2-1 .grid-item-content:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

@media only screen and (max-width: 770px) and (max-width: 770px) {
  .grid-one .grid .col-2-1 .grid-item-content {
    width: 100%;
  }
}

.grid-one .grid .col-1-2 {
  float: left;
  width: 50%;
  position: relative;
}

.grid-one .grid .col-1-2:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .col-1-2 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .col-1-2 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .col-1-2 .grid-item-content {
    width: 100%;
  }
}

.grid-one .grid .row {
  /* spacing for bottom left and bottom right sections */
}

.grid-one .grid .row:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .row > .col-2-2 {
  float: left;
  width: 50%;
  position: relative;
}

.grid-one .grid .row > .col-2-2:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .row > .col-2-2 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .row > .col-2-2 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .row > .col-2-2 .grid-item-content {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .row > .col-2-2 {
    width: 100%;
  }
  .grid-one .grid .row > .col-2-2 .col {
    width: 100%;
  }
}

.grid-one .grid .row > .col-2-2 .col-1-1 {
  float: left;
  width: 50%;
  position: relative;
}

.grid-one .grid .row > .col-2-2 .col-1-1:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .row > .col-2-2 .col-1-1 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .row > .col-2-2 .col-1-1 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .row > .col-2-2 .col-1-1 .grid-item-content {
    width: 100%;
  }
}

.grid-one .grid .row > .col-2-2 .col-2-1 {
  float: left;
  width: 100%;
  position: relative;
}

.grid-one .grid .row > .col-2-2 .col-2-1:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .row > .col-2-2 .col-2-1 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .row > .col-2-2 .col-2-1 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .row > .col-2-2 .col-2-1 .grid-item-content {
    width: 100%;
  }
}

.grid-one .grid .row > .col-2-2 .col-2-2 {
  float: left;
  width: 100%;
  position: relative;
}

.grid-one .grid .row > .col-2-2 .col-2-2:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .row > .col-2-2 .col-2-2 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .row > .col-2-2 .col-2-2 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .row > .col-2-2 .col-2-2 .grid-item-content {
    width: 100%;
  }
}

.grid-one .grid .row > .col-2-2 .col-1-2 {
  float: left;
  width: 50%;
  position: relative;
}

.grid-one .grid .row > .col-2-2 .col-1-2:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-one .grid .row > .col-2-2 .col-1-2 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-one .grid .row > .col-2-2 .col-1-2 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-one .grid .row > .col-2-2 .col-1-2 .grid-item-content {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .grid-one .grid .row:first-of-type .col {
    width: 100%;
  }
}

.grid-one .grid .col:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 599px) {
  .grid-one .grid .col {
    width: 100%;
  }
}

@media only screen and (max-width: 770px) {
  .grid-one .slide {
    margin: 0;
  }
}

.grid-one .slide img {
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .grid-one .slide img {
    max-height: none;
  }
}

.grid-two {
  display: inline-block;
  width: 32.1429%;
  margin-left: 0;
  float: right;
}

@media only screen and (max-width: 770px) {
  .grid-two {
    width: 100%;
    margin-left: 0;
  }
}

.grid-two .grid {
  /* padding-right removal styles for last item on right side of the grid */
  overflow: hidden;
  /* spacing for top row */
}

.grid-two .grid:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-two .grid {
    padding: 0;
  }
}

.grid-two .grid .grid-content {
  width: calc(100% + 5px);
}

.grid-two .grid .col-1-1 {
  float: left;
  width: 100%;
  position: relative;
}

.grid-two .grid .col-1-1:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-two .grid .col-1-1 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-two .grid .col-1-1 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-two .grid .col-1-1 .grid-item-content {
    width: 100%;
  }
}

.grid-two .grid .col-1-2 {
  float: left;
  width: 100%;
  position: relative;
}

.grid-two .grid .col-1-2:after:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.grid-two .grid .col-1-2 .grid-item-content {
  overflow: hidden;
  width: 100%;
}

.grid-two .grid .col-1-2 .grid-item-content:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-two .grid .col-1-2 .grid-item-content {
    width: 100%;
  }
}

.grid-two .grid .row:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

@media only screen and (max-width: 770px) {
  .grid-two .grid .row:first-of-type .col {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .grid-two .grid .col {
    width: 100%;
  }
}

#top-header .top-header-content .mini-products-list .product-details .truncated .item-options {
  top: 31px;
  left: -80px;
  color: #4B4B4B;
}

@media only screen and (max-width: 479px) {
  #top-header .top-header-content .mini-products-list .product-details .truncated .item-options {
    color: #6B6B6B;
  }
  #top-header .top-header-content .mini-products-list .product-details .truncated .item-options dt {
    clear: none;
  }
}

#top-header .top-header-content .mini-products-list .product-details .details {
  line-height: 21px;
  color: #6B6B6B;
}

#newsletter-validate-detail #loading-block {
  background-color: #fff;
  z-index: 1000;
  position: absolute;
  text-align: center;
  display: table;
  opacity: 0.7;
}

#newsletter-validate-detail #loading-block div {
  display: table-cell;
  vertical-align: middle;
}

#newsletter-validate-detail .validation-advice {
  animation: tooltip-fade-in;
  background: #00831C;
  border: 1px solid #887c4f;
  display: none;
  position: absolute;
  padding: 10px 39px;
  width: 240px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 25px;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
  top: 100%;
  top: calc(260% - 10px);
  left: 30px;
  z-index: 999;
  background: #D65E56;
  color: white;
  display: block;
  top: auto;
  bottom: 50px !important;
  text-align: center;
}

#newsletter-validate-detail .validation-advice:before {
  top: -10px;
  box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.05);
  border-left: 1px solid #887c4f;
  border-top: 1px solid #887c4f;
  left: 50%;
  z-index: 998;
  background: #00831C;
  content: " ";
  transform: rotate(45deg);
  width: 17px;
  height: 17px;
  position: absolute;
  pointer-events: none;
  margin-left: -14px;
}

#newsletter-validate-detail .validation-advice:before {
  background: #D65E56;
  top: auto;
  bottom: -8px;
  transform: rotate(225deg);
}

#newsletter-validate-detail ul.messages {
  animation: bounce 800ms ease forwards;
  background: #00831C;
  border: 1px solid #887c4f;
  display: none;
  position: absolute;
  padding: 10px 39px;
  width: 240px;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 25px;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
  bottom: 100%;
  bottom: calc(260% - 10px);
  left: top;
  z-index: 999;
  float: none;
  display: inherit;
  margin: 10px 0 0;
  bottom: 50px !important;
}

#newsletter-validate-detail ul.messages:before {
  bottom: -9px;
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.05);
  border-right: 1px solid #887c4f;
  border-bottom: 1px solid #887c4f;
  left: 50%;
  z-index: 998;
  background: #00831C;
  content: " ";
  transform: rotate(45deg);
  width: 17px;
  height: 17px;
  position: absolute;
  pointer-events: none;
  margin-left: -14px;
}

#newsletter-validate-detail ul.messages .error-msg {
  margin: 0 !important;
}

#newsletter-validate-detail ul.messages .error-msg li {
  background: none;
  margin: 0;
}

#newsletter-validate-detail ul.messages li {
  background: none;
  margin: 0;
  padding: 0;
  vertical-align: inherit;
  display: inline-block;
}

#newsletter-validate-detail ul.messages li ul {
  display: inherit;
  background-position: 35px 100%;
  background-repeat: no-repeat;
  margin: 0 0 -11px;
  padding: 0;
  position: relative;
  float: none;
  width: auto;
}

body.checkout-onepage-index .opc #checkout-review-table td .inline:first-of-type {
  display: table-cell;
}

body.checkout-onepage-index .opc #checkout-review-table h3.product-name {
  font-size: 14px;
  color: #4B4B4B;
  letter-spacing: initial;
  margin-left: 0;
}

body.checkout-onepage-index .opc .section .buttons-set button.button.continue:before {
  height: auto;
}

body.checkout-onepage-index .opc .section.active .step-title h2 {
  color: #07489E;
}

body.checkout-onepage-index label[for="billing:save_in_address_book"] {
  margin-left: 15px;
}

body.checkout-onepage-index label[for="shipping:save_in_address_book"] {
  margin-left: 20px;
}

@media only screen and (max-width: 599px) {
  body.checkout-onepage-index label[for="shipping:save_in_address_book"] {
    margin-left: 0;
  }
}

body.checkout-onepage-index .footer-top, body.checkout-onepage-index .footer-mid {
  display: block;
}

body.checkout-onepage-index .block-progress dd,
body.checkout-onepage-index .block-progress dd p {
  font-style: normal;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

body.checkout-onepage-index .block-progress dd address,
body.checkout-onepage-index .block-progress dd p address {
  font-style: normal;
  font-family: "Montserrat", Verdana, Arial, sans-serif;
}

body.checkout-onepage-index #checkout-onepage-progress-totals-tbody {
  font-style: normal;
  font-family: "MontserratBold";
  line-height: 21px;
}

body.checkout-onepage-index #checkout-onepage-progress-totals-tbody strong {
  font-style: normal;
  font-family: "MontserratBold";
  line-height: 21px;
}

body.checkout-onepage-index #checkout-onepage-progress-totals-tbody span.price {
  display: inline-block;
  white-space: nowrap;
}

body.checkout-onepage-index #checkout-shipping-method-load .sp-methods .calendar_table {
  margin-left: 15px;
}

body.checkout-onepage-index #checkout-shipping-method-load .sp-methods input[type="radio"] {
  vertical-align: top;
  margin-top: 4px;
}

body.checkout-onepage-index #checkout-shipping-method-load .sp-methods dd label {
  padding: 0 0 6px 10px;
  min-width: 0;
}

body.checkout-onepage-index #checkout-shipping-method-load .sp-methods dd label .method-title {
  font-weight: normal;
}

@media only screen and (max-width: 599px) {
  body.checkout-onepage-index #checkout-shipping-method-load .sp-methods dd label {
    display: inline-block;
    width: auto;
    max-width: 300px;
  }
}

@media only screen and (max-width: 479px) {
  body.checkout-onepage-index #checkout-shipping-method-load .sp-methods dd label {
    max-width: 240px;
  }
}

.impulse-buys-modal .product-options.bundle-customizer dt {
  display: block;
}

.impulse-buys-modal .add-to-cart .qty-plus, .impulse-buys-modal .add-to-cart .qty-minus {
  background-color: #07489E;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  margin: 0 5px;
}

.impulse-buys-modal .add-to-cart .qty {
  border: 1px solid #07489E;
}

.impulse-buys-modal .add-to-cart .qty:focus, .impulse-buys-modal .add-to-cart .qty:active {
  border-color: #698BC7;
}

.impulse-buys-modal .products-grid .product-info {
  padding-bottom: 5px;
  height: auto;
}

.impulse-buys-modal .products-grid .product-info {
  margin-top: 0;
}

.impulse-buys-modal .products-grid .actions {
  position: static;
}

.impulse-buys-modal .products-grid .product-image {
  background-color: #fff;
  border-bottom: none;
}

.impulse-buys-modal .products-grid .product-image img {
  max-width: none;
}

.impulse-buys-modal .fancybox-close {
  background: url(../images/pjg_icon_sprite.png) no-repeat -172px -91px;
  height: 26px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .impulse-buys-modal .fancybox-close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

.impulse-buys-modal .product-view .product-shop .product-essential .product-name .h1 {
  color: #07489E;
}

.fancybox-overlay .fancybox-close {
  background: url(../images/pjg_icon_sprite.png) no-repeat -172px -91px;
  height: 26px;
  width: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .fancybox-overlay .fancybox-close {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .impulse-buys-modal .product-view .product-shop .add-to-cart-buttons button {
    min-width: 0;
  }
  .impulse-buys-modal .product-view .product-shop div.price-box {
    text-align: center;
  }
  .impulse-buys-modal .product-view .product-shop div.price-box:before {
    text-align: center;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper:before, .impulse-buys-modal .product-view .product-shop .qty-wrapper:after {
    content: " ";
    display: table;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper:after {
    clear: both;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper .qty-inner {
    white-space: nowrap;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper .qty-inner:before, .impulse-buys-modal .product-view .product-shop .qty-wrapper .qty-inner:after {
    content: " ";
    display: table;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper .qty-inner:after {
    clear: both;
  }
  .impulse-buys-modal .product-view .product-shop .qty-wrapper .qty-inner .qty-minus,
  .impulse-buys-modal .product-view .product-shop .qty-wrapper .qty-inner .qty-plus {
    width: 50px;
  }
}

.impulse-buys-modal .product-view .product-options dd .input-box {
  margin: auto;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom {
  padding: 37px 20px 15px 20px;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom > .price-box .price-label {
  display: none;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart {
  padding-top: 20px;
  float: none;
  width: auto;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart:before, .impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart:after {
  content: " ";
  display: table;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom .add-to-cart:after {
  clear: both;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom .price-box {
  float: none;
}

.impulse-buys-modal .product-options.bundle-customizer ~ .product-options-bottom .price-box .price {
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.global-notice {
  text-transform: none;
  font-family: "OpenSans", Verdana, Arial, sans-serif;
}

.global-notice .close {
  padding: 7px;
}

.global-notice .close:after {
  background: url(../images/pjg_icon_sprite.png) no-repeat -125px -40px;
  height: 24px;
  width: 25px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .global-notice .close:after {
    background-image: url(../images/pjg_icon_sprite@2x.png);
    background-size: 400px 490px;
  }
}

@media only screen and (max-width: 770px) {
  .global-notice .close {
    top: -12%;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

@media only screen and (max-width: 700px) {
  .global-notice .close {
    top: 5%;
  }
}

@media only screen and (max-width: 800px) {
  .global-notice {
    font-size: 15px;
  }
}

@media only screen and (max-width: 770px) {
  .global-notice {
    top: 20px;
  }
}
/*# sourceMappingURL=styles.css.map */