/* 
* Selecter v3.2.4 - 2015-01-07 
 * A jQuery plugin for replacing default select elements. Part of the Formstone Library. 
 * http://formstone.it/selecter/ 
 * 
 * Copyright 2015 Ben Plum; MIT Licensed 
 */


.selecter {
  position: relative;
  display: block;
  margin: 10px 0;
  z-index: 1;
  text-align: center;
}
.selecter:focus {
  box-shadow: none;
  outline: none;
}
.selecter,
.selecter * {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
.selecter,
.selecter *,
.selecter *:before,
.selecter *:after {
  box-sizing: border-box;
}
.selecter-element {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.selecter-element,
.selecter-element:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
.no-opacity .selecter-element {
  left: -999999px;
}
.selecter-selected {
  position: relative;
  background: #ffffff;
  border: 2px solid #000000;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  overflow: hidden;
  padding: 10px 15px;
  text-overflow: clip;
  z-index: 2;
}
.selecter-selected:after {
  height: 0;
  width: 0;
  position: absolute;
  top: -15px;
  right: 20px;
  bottom: 0;
  content: '\f107';
  display: block;
  margin: auto 0;
  font-family: fontAwesome;
  font-size: 16px;
}
.no-touch .selecter-selected:hover {
  color: #333333;
}
.no-touch .selecter.disabled .selecter-selected:hover {
  color: #cccccc;
}
.selecter-options {
  width: 100%;
  max-height: 260px;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #d4d4d4;
  border-top: 0;
  background-color: #ffffff;
  display: none;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  z-index: 50;
}
.selecter-options.scroller {
  position: absolute;
}
.no-opacity .selecter-options {
  width: auto;
}
.selecter-group {
  border-bottom: 1px solid #eee;
  color: #999999;
  display: block;
  font-size: 11px;
  padding: 10px 15px;
  text-transform: uppercase;
}
.selecter-item {
  width: 100%;
  background: #ffffff;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 13px;
  margin: 0;
  overflow: hidden;
  padding: 10px 15px;
  text-decoration: none;
  text-overflow: ellipsis;
}
.selecter-item.placeholder {
  display: none;
}
.selecter-item.selected {
  background: #fcfcfc;
}
.selecter-item.disabled {
  color: #999999;
  cursor: default;
}
.selecter-item:first-child {
  border-radius: 0;
}
.selecter-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 2px 2px;
}
.no-touch .selecter-item:hover,
.no-touch .selecter-item.selected:hover {
  color: #333333;
  background-color: #fcfcfc;
}
.selecter-item.disabled,
.no-touch .selecter-item.disabled:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter.open {
  z-index: 3;
}
.selecter.open .selecter-selected {
  z-index: 51;
  border-radius: 3px 3px 0 0;
}
.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
  background-color: #ffffff;
  box-shadow: 0;
}
.selecter.cover .selecter-options {
  border-width: 1px;
  top: 0;
  border-radius: 3px;
}
.selecter.cover .selecter-options .selecter-item.first {
  border-radius: 3px 3px 0 0;
}
.selecter.cover.open .selecter-selected {
  z-index: 49;
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .selecter-options {
  top: auto;
  bottom: 100%;
  border-width: 1px 1px 0;
}
.selecter.bottom .selecter-item:last-child {
  border: none;
}
.selecter.bottom.open .selecter-selected {
  border-radius: 0 0 3px 3px;
}
.selecter.bottom.open .selecter-options {
  border-radius: 3px 3px 0 0;
}
.selecter.bottom .cover .selecter-options {
  top: auto;
  bottom: 0;
}
.selecter.bottom .cover.open .selecter-selected {
  border-radius: 3px;
}
.selecter.bottom .cover.open .selecter-options {
  border-radius: 3px;
}
.selecter.multiple .selecter-options {
  width: 100%;
  position: static;
  border-width: 1px;
  display: block;
  border-radius: 3px;
  box-shadow: none;
}
.selecter.disabled .selecter-selected {
  background: #ffffff;
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-options {
  background: #ffffff;
  border-color: #cccccc;
}
.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}
.selecter.disabled .selecter-item.selected,
.no-touch .selecter.disabled .selecter-item.selected:hover {
  background: #fafafa;
}
.selecter.disabled .selecter-item,
.no-touch .selecter.disabled .selecter-item:hover {
  color: #cccccc;
  background-color: #ffffff;
}
.selecter-options.scroller {
  overflow: hidden;
}
.selecter-options.scroller .scroller-content {
  max-height: 260px;
  padding: 0;
}
@media screen and (max-width: 740px) {
  .selecter {
    max-width: 40%;
  }
}
@media screen and (max-width: 500px) {
  .selecter {
    max-width: 100%;
  }
}


/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


.bx-wrapper {
  position: relative;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  display: block;
}

.bx-wrapper .bx-viewport {
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
  margin-top: 30px;
}



/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
    left: 50%;
    margin-left: -16px;
    background: transparent;
    top: -42px;
}

a.bx-prev:after {
    font-family: FontAwesome;
    font-size: 22px;
    color: #626262;
    content: "\f106";
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
}

.bx-wrapper .bx-next {
	left: 50%;
    background: transparent;
	margin-left: -16px;
  	bottom: -42px;
}

a.bx-next:after {
    font-family: FontAwesome;
    font-size: 22px;
    color: #626262;
    content: "\f107";
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	outline: 0;
	width: 32px;
	height: 32px;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(images/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

#mobile-product .bx-controls.bx-has-controls-direction {
    display: none;
}

ol.flex-control-nav {
    display: none;
}

.mobile-gallery { text-align: center; position: relative; }

.collection-banner {
    text-align: center;
  margin-bottom: 0px;
}

nav { position:relative !important;}

ul.col-main {
  	left:0px;
  	width:100%;
  	columns: 7;
  -webkit-columns: 7;
  -moz-columns: 7;
  padding:30px;
}


.homepage-promo .promo-inner {width:100%;}

.homepage-promo .promo-inner img {
    width: 100%;
}

nav {
    width: 100%;
    background: white;
    margin-bottom: 0px;
    border-top: none;
    border-bottom: none;
    z-index: 2;
    padding-bottom: 20px;
  
}

ul#main-nav {
    border-bottom: 2px solid black;
}

.active img {
    border: none !important;
}

header {
    background: transparent;
}

#logo {margin-bottom:0px;}

#logo a {
    font-size: 25px;
  	    margin-top: 10px;
}

h1, h2, h3, h4, h5, h6 {
 	text-transform:lowercase !important; 
}

ul#cart {padding-top:20px;}

.mobile-whole {
    width: 100%;
}

@media screen and (max-width: 980px) and (min-width: 740px) {
ul#cart, ul#cart li {
    text-align: center !important;
}
  #cart li.seeks button {
     
    background-color: transparent;
    width: 35px;
    top: 50px !important;
    margin-bottom: 0px;
    height: 30px;
	margin-left:248px;
}
  p.free-shipping {
  margin-top: -5px;
    border-top: 1px solid #ddd;
    width: 200px;
    float: none !important;
    line-height: 32px;
    text-align: center;
    margin: 0 auto;
}
}

@media screen and (max-width: 740px) {
.search-top, .free-shipping {
  display:none;
}
  .gridlock .row {
    width: 92%;
}
  
  #logo {display: inline-block;
    width: auto;    margin-left: 40px;}
  
  #logo img {width:110px !important;}
  .dl-menuwrapper {
    display: none;
    z-index: 5;
    float: left;
    top: 15px !important;
    left: 0px !important;
  }
  
  ul#cart {float:right !important;    width: 200px;
    padding-top: 0px;
    margin-top: 10px;width:auto !important;}
  
  ul#cart, ul#cart li {
    text-align: center;
    float: none;
}
  
  header {
    line-height: 48px;
    position: fixed;
    z-index: 3;
    color: #444444;
    width: 100%;
    background-color: white !important;
    border-bottom: 1px solid #51f47a;
}
  .dl-menuwrapper .dl-menu {
    margin: 7px 0 0 0;
  }
  
  .fixed-spacing {padding-top:100px;}
  
  #cart .cust {display:none;}
  
  .filter-show {
   	    position: fixed;
    top: 67px;
    width: 100% !important;
    background-color: #fff;
    left: 0;
    padding: 7px 0;
    z-index: 2;
    margin: 0 !important;
        z-index: 3;
    border-bottom:1px solid #ddd
  }
  
  #sidebar.open {
    display: block;
    position: absolute;
    top: -37px;
    background-color: white;
    width: 100% !important;
    margin: 0 !important;
    left: 0;
    padding: 10px 0;
    z-index: 2;
}
  
  ul.fd-product-tabs li a {
    font-size: 9px !important;
  }
  
}

@media screen and (max-width: 500px) {
ul#cart {float:right !important;    width: 200px;
    padding-top: 0px;
    margin-top: -50px;width:auto !important;}
  ul.deeper-list {
    display:none !important;
}
}

.swatch {
    margin: 0;
    border: 1px solid #000;
    overflow: scroll;
  	max-height:300px;
  	padding: 20px;
  	text-align:left;
  	margin-bottom:10px;
}

.swatch .swatch-element {
    display: inline-block;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    position: relative;
    margin-bottom: 15px;
  text-align:center;
  float: left;
}
.swatch .swatch-element:nth-child(3n+2) {
    clear:both;
}

#product-description .select {
    display: block;
}

.selector-wrapper {display:block !important;margin-bottom:20px;}

.swatch h5 {text-align:center;}

.selecter-selected {border:1px solid #000}

ul.deeper-list {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.deeper-list li {
        width: 22%;
    display: inline-block;
    border: 1px solid #000;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 10px;
}

.deeper-list li a {
    padding: 14px;
    display: block;
    text-transform: uppercase;
    font-size: 11px;
}

#product-description h1 {text-transform:none !important;}

#product-price, .product-price {
    font-size: 24px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
  	color:black
}

#product-price .was {
 	font-size:14px; 
}

.was, .product-compare-price, .compare-price, .was-related {
    color: black;
    text-decoration: line-through;
}

.you-save {color:#51f47a;font-size:14px;}

.splash-group-grid {display:none;}


.dl-menuwrapper button {background-color:transparent;}
.dl-menuwrapper button:hover, .dl-menuwrapper button.dl-active {background-color:transparent;}

a.checkout-link {
    color: #fff! important;
    float: left;
    line-height: 40px;
    width: 100%;
    clear: left;
    text-align: center;
    display: block;
    font-weight: bold;
    background-color: #000;
    text-transform: uppercase;
}

a.checkout-link:hover {
 	background-color: #51f47a;
  	color:white !important;
}

ul.tabs {
  border-bottom: 1px solid #222;
  display: block;
  margin: 0 0 20px;
  padding: 0;
}
ul.tabs li {
      display: inline-block;
    float: none;
  height: 30px;
  margin-bottom: 0;
  padding: 0;
  width: auto;
}
ul.tabs li a {
  -moz-border-bottom-colors: none;
  -moz-border-image: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 #222;
  border-color: #222 !important;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  display: block;
  font-size: 13px;
  height: 29px;
  line-height: 30px;
  margin: 0;
  padding: 0 20px;
  text-decoration: none;
  width: auto;
  color: #fff;
  border-bottom:none !important;
}
ul.tabs li a.active {
  background: none repeat scroll 0 0 #FFFFFF;
  border-left-width: 1px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  color: #111111;
  height: 32px;
  margin: 0 0 0 -1px;
  padding-top: 4px;
  position: relative;
  top: 3px;
}
ul.tabs li:first-child a.active {
  margin-left: 0;
}
ul.tabs li:first-child a {
  border-top-left-radius: 2px;
  border-width: 1px 1px 0;
}
ul.tabs li:last-child a {
  border-top-right-radius: 2px;
}
ul.tabs:before, ul.tabs:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}
ul.tabs:after {
  clear: both;
}

#tab-1, #tab-2, #tab-3 {font-size:16px;text-align:left;line-height:1.6em;}

.free-confirm {
 	    background-color: black;
    color: white !important;
    display: inline-block;
    text-align: center;
    padding: 15px 0;
    font-size: 14px; 
}

.#shopping-cart td, #shopping-cart th {line-height:1.3}
@media (max-width:768px) {
  .cart-quantity img {    padding-right: 0 !Important;    margin-top: -0px !important;}
  
}
@media (max-width:600px) {
	.free-sample-btn {
    margin-top: 0;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    width: 48% !important;
}
  td.cart-price, td.cart-remove, td.cart-quantity, .cart-total {
    clear: none! important;
    float: left;
    width: 18% !important;
    margin: 1%;
    display: inline-block! important;
    line-height: 1.2 !important;
    border-bottom: 0! important;
}
  .cart-quantity img {    padding-right: 0 !Important;    margin-top: -20px !important;}
  .free-sample-product {
    width: 47% !important;
    display:inline-block !important;
    float:none !important;
    vertical-align:top;
    margin-bottom:20px !Important;
}
  ul.tabs li a {padding:0 12px !important;}
  
  ul.tabs li a.active {top:-1px;}
  
  .image {text-align:center}
}

#update-cart { background: #545250; }

@media (max-width:480px){
    .fixed-spacing {padding-top:100px !important;}
}

.fixed-spacing {
    padding-top: 55px;
}

@media screen and (max-width: 739px) {
  .content-wrapper {
  padding-top: 48px;
  }
  
  .desktop-border {
  display: none;
  }
}

#pagination {
    text-align: right;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}
.col-main{
 	overflow-x:hidden !important; 
}