/* 
* 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 #dedede;
  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%;
  /* code out side filter
  max-height: 260px;
  end code out */
  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: #000000;
    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: #000000;
    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;*/
  	bottom: -25px;
}

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

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

/* FIX MEGA MENU NOT SHOWING - BEHIND HOMEPAGE SLIDER */

.flexslider, #content { position: relative; z-index: 0; }

/* IMAGE LINK FADE ON HOVER */



/* CLASS FOR ALTERING H2 */

.dinh2 {
	font-family: 'osp-dindin';
	font-size:32px;
	line-height:32px;
    color:#333;
    letter-spacing: 1px; }

.dinh3 {
	font-family: 'osp-dindin';
	font-size:32px;
	line-height:32px;
    color:#fff;
    letter-spacing: 1px; }

/* Grid Inside Accordion
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container-accordion {
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container-accordion {
    width: 85%; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container-accordion {
    width: 100%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }
	
	.one-half.column                { width: 48%; }
	
}	
	
	/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 100%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}

.example-grid .column,
.example-grid .columns {
  background: #EEE;
  text-align: center;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  height: 30px;
  line-height: 30px;
  margin-bottom: .75rem;
  font-weight: 600;
  letter-spacing: .1rem; }




/* Grid - Homepage 4 Boxes
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* For devices at 360px */
@media (min-width: 359px) {

#home-4-boxes .container .row .column, .columns  {
	margin-top: 10px;
	margin-bottom: 10px;
}

}

/* For devices at 768px */
@media (min-width: 767px) {

#home-4-boxes {
	margin-top: 10px;
	margin-bottom: 20px;
}		

}

/* For devices at 980px */
@media (min-width: 979px) {

#home-4-boxes {
	margin-top: 10px;
	margin-bottom: 20px;
}	
	
#home-4-boxes .column,
  .columns {
    margin-left: 10px; }
	
#home-4-boxes .three.columns  { width: 24%; }

}	
	

/* For devices larger than 980px */
@media (min-width: 981px) {

#home-4-boxes {
	margin-top: 10px;
	margin-bottom: 20px;
}

#home-4-boxes .column,
  .columns {
    margin-left: 33px; }
	
#home-4-boxes .three.columns  { width: 24%; }

}




/* Targeting Product & Recipe Descriptions
–––––––––––––––––––––––––––––––––––––––––––––––––– */


.rte p { text-align:left; }

.rte ul { text-align:left; }

ul .pack-size-desktop-list { width: 100px; float: right; background-color: #ccc; }

p #product-price {
    font-size: 16px;
    margin-bottom: 10px;
	text-align: center;
}

/* Responsive YouTube Embed & Image
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.responsive-img { max-width: 100%; height: auto; }


/* 3 Flags Header Promo Banner Text Field */


.header-flags { width: 132px; height: 24px; margin: 8px 65% 0 35%; }
.header-canada { width: 24px; height: 24px; float: left; margin: 0 10px; }
.header-uk { width: 24px; height: 24px; float: left; margin: 0 10px; }
.header-eu { width: 24px; height: 24px; float: left; margin: 0 10px; }

/* 3 Flags Footer */

#footer-flags { width: 156px; height: 32px; margin: -10px auto 20px auto; }
#footer-canada { width: 32px; height: 32px; float: left; margin: 0 10px 0 10px; }
#footer-uk { width: 32px; height: 32px; float: left; margin: 0 10px; }
#footer-eu { width: 32px; height: 32px; float: left; margin: 0 10px; }



/* 3 Flags About Us Page */

#about-page-flags { width: 156px; height: 32px; margin: 24px auto 10px auto; }


/* Footer Icons */


ul#footer-icons {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    text-align: left;
}

ul#footer-icons li {
    display: inline-block;
	width: 20px;
    height: 30px;
    margin: 0 25px 0 0;
    padding: 0 25px 0 0;
}




/* Yotpo customizations
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* hide yotpo logo on detail page - move stars to left */

.yotpo .yotpo-small-box {display:none!important; margin: 0!important; padding:0!important;}

/* detail page badge - center stars - reduce # of reviews text */

#cust-reviews-top { width: 160px; margin: 0 auto 20px auto; }

#cust-reviews-top .yotpo .text-m  { font-size:9px; }

/* category page badge - center stars - hide # of reviews text */

#yotpo-stars-cat-pg { width: 90px; margin: 0 auto 0 auto; }

#yotpo-stars-cat-pg .yotpo .text-m  { display:none; }


/* Product titles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#product-description h1 { text-transform: none; letter-spacing: normal; }



/* Social Photos
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#social-photos-detail-page { display:block; margin-top: 0; }




/* Talon Recently Viewed
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#insert-talon { width: 100%; }

#insert-talon #talon-section-title { font-size:16px; letter-spacing: 2px; text-transform:uppercase; border-bottom: 1px solid #f0f0f0; }

#insert-talon .talon-product-title {
    color: #444444;
    font-family: "Montserrat",sans-serif;
    font-size:9px;
    font-weight: bold;
    text-transform:uppercase;
    line-height: normal;
    margin-top: 0;
}

#insert-talon .talon-product-price {
	color: #949494;
	font-family: "Montserrat",sans-serif;
	font-size:9px;
}


/* Font Tweaks Sept 2016
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* hide dropdown arrow top nav main menu items */


  
/* set sub nav menu items to helvetica */
  
ul.megamenu li > ul.mega-stack li a {
    background: transparent none repeat scroll 0 0 !important;
    color: #2e2e2e !important;
	font-family:Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 200% !important;
    padding: 0 !important;
    text-transform: none !important;
}

ul#main-nav li ul.submenu li a{
  font-family:Arial, Helvetica, sans-serif !important;
}


/* footer */

#atk-footer-logo { background-color: #fafafa;
    display: inline-block;
    margin: 0 10px 0 10px;
	padding: 0 10px 0 10px;
    position: relative;
    z-index: 1; }
#atk-footer-line {  border-bottom: 1px solid #d4d2d2;
    display: inline-block;
    left: 0;
    position: absolute;
    width: 100%;
	height: 55px;
    z-index: 0 }


.footer-tagline-desktop {
    font-family: "Montserrat",sans-serif;
	font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 0 10px 0;
    text-transform: uppercase;
	border-bottom: none!important;
}

.header-tagline-desktop {
    font-family: "Montserrat",sans-serif;
	font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: -10px 0 0 0;
    padding: 0 0 10px 0;
    text-transform: uppercase;
	border-bottom: none!important;
}

.footer-tagline-mobile {
    font-family: "Montserrat",sans-serif;
	font-size: 11px;
    font-weight: 700;
    padding: 10px 0 20px 0;
    border-bottom: none!important;
}

.header-tagline-mobile {
    font-family: "Montserrat",sans-serif;
	font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: -15px 0 0 0;
    padding: 0;
  	text-transform: uppercase;
    border-bottom: none!important;
}


.footer-phone h4 {
	font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 0 5px 0;
    text-transform: uppercase;
	border-bottom: none!important;
}

#footer-btm-links p {
    font-size: 14px;
    letter-spacing: 0px;
	text-transform:capitalize;
}


#footer-btm-links p a:link {
   color: #878787;
}

#footer-btm-links p a:hover { 
    color: #e20101;
}

h4.newslettersignuph4 { text-transform: uppercase;
  letter-spacing: 2px; }
  
  
  .credit p.powered { 
  color: #bababa;
  margin-top: 60px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
}

/* Craft Brew */


.firstcharacter {
  color: #a54e18;
  float: left;
  font-family: "montserratthin", Helvetica, Arial, sans-serif;
  font-size: 72px;
  line-height: 60px;
  padding-top: 0;
  padding-right: 8px;
  padding-left: 0;
}



/* Shopify Blog 
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Blog posts hidden pinn-able image */

.hidden-pinterest {
opacity: 0;
position: absolute;
top: 0;
left: 0;
height: 0px;
width: 0px;
}

/* For blog image above masonry gallery - center above gallery for desktop view */

@media (min-width: 1219px) {

#blog-home-page-header {
	width: 780px;
	margin: 0 auto 0 auto;
	padding-right: 20px
}
  
}

#new-blog-body {
  margin-left: 10px;
  padding-right: 20px;
}

#new-blog-body-2 {
  margin-left: 10px;
}

p.blog-home-title {
	color:#999;
	font-family: "montserratthin", Helvetica, Arial, sans-serif;
	font-size: 24px;
	text-transform:uppercase;
	letter-spacing: 1px;
    border-bottom: 0 solid #f0f0f0;
    text-align: center;
	margin: 20px 0 20px 0;
}

p.blog-intro {
	line-height: 32px;
	margin-bottom: 40px;
}

.blog-intro-type {
    color:#999;
	font-family: "montserratthin", Helvetica, Arial, sans-serif;
	font-size: 24px;
	text-transform:uppercase;
	letter-spacing: 1px;
}


#blog-sidebar h4 {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

#blog-sidebar h4.about-subhead {
    border-bottom: none;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

#blog-sidebar h4.sidebar-twitter {
    margin-bottom: 20px;
    padding-bottom: 5px;
}

#blog-body-intro {
	margin: 20px 0 20px 0;
	font-size: 24px;
	line-height: 32px;
}

#new-blog-body .two-thirds.column {
  padding-right:20px;
}


h4.blog-homepage {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
}


h2.blog-subhead { text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #f0f0f0;
}

.custom-css-link-test {
  color: #e20101;
}

h2.remove-space {
 letter-spacing: 0px!important;
}

#blog-nav #pagination {
  margin-top:0!important;
}


ul.sidebar {
    list-style-type: none;
    margin: 0  0 20px 0;
    padding: 0;
}



/* Shopify Blog Styled Tags */

.tags {
  list-style: none;
  margin: 0;
  overflow: hidden; 
  padding: 0;
}

.tags li {
  float: left; 
}

.tag {
  font-family: "Montserrat",sans-serif;
  background: #eee;
  border-radius: 3px 0 0 3px;
  color: #999;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 20px 0 23px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
}

.tag::before {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  content: '';
  height: 6px;
  left: 10px;
  position: absolute;
  width: 6px;
  top: 10px;
}

.tag::after {
  background: #fff;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #eee;
  border-top: 13px solid transparent;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}

.tag:hover {
  background-color: #e20101;
  color: white;
}

.tag:hover::after {
   border-left-color: #e20101; 
}

.post-tags-2 {
    clear: left;
    display: block;
    text-align: left;
}


li.recent-posts { 
       list-style-type: none;
       font-family: "Montserrat",sans-serif;
       font-size: 14px;
       font-weight: bold
}


/* relatable app */

.relatable-article-title {
 color: #444444;
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 2px;
    margin-top: 2px;
}


.readmore2 {
    clear: left;
    margin: 10px 0 40px 0;
    text-align: left;
}
.readmore2 a {
    background: #eeeeee none repeat scroll 0 0 !important;
    color: #999999 !important;
    padding: 10px 20px;
    transition: background 0.5s ease 0s, color 0.5s ease 0s;
}
.readmore2 a:hover {
    background: #e20101 none repeat scroll 0 0 !important;
    color: #ffffff !important;
    text-decoration: none;
}

.readmore3 {
    float: left;
    margin: 10px 20px 20px 0;
    text-align: left;
}
.readmore3 a {
    background: #eeeeee none repeat scroll 0 0 !important;
    color: #999999 !important;
    padding: 10px 40px;
    transition: background 0.5s ease 0s, color 0.5s ease 0s;
}
.readmore3 a:hover {
    background: #e20101 none repeat scroll 0 0 !important;
    color: #ffffff !important;
    text-decoration: none;
}


.readmore-centered { clear: left; text-align: center; margin: 20px auto; }
.readmore-centered a { color: #000! important; background: #eeeeee! important; padding: 10px 20px; -webkit-transition: background .5s ease,color .5s ease; -moz-transition: background .5s ease,color .5s ease; -o-transition: background .5s ease,color .5s ease; transition: background .5s ease,color .5s ease; }
.readmore-centered a:hover { color: #ffffff! important; background: #e20101! important; text-decoration: none; }

.readmore4 { clear: left; text-align: center; margin: 20px auto 20px auto; }
.readmore4 a { color: #fff! important; background: #cc0202! important; padding: 10px 20px; -webkit-transition: background .5s ease,color .5s ease; -moz-transition: background .5s ease,color .5s ease; -o-transition: background .5s ease,color .5s ease; transition: background .5s ease,color .5s ease; }
.readmore4 a:hover { color: #ffffff! important; background: #ff0000! important; text-decoration: none; }

.blog-add-to-cart-button {
    margin: 10px auto 20px auto;
    text-align: center;
}
.blog-add-to-cart-button a {
    background: #ff0000 none repeat scroll 0 0 !important;
    color: #ffffff !important;
    padding: 10px 40px;
    transition: background 0.5s ease 0s, color 0.5s ease 0s;
}
.blog-add-to-cart-button a:hover {
    background: #a30000 none repeat scroll 0 0 !important;
    color: #ffffff !important;
    text-decoration: none;
}

.blog-add-to-cart-title {
  color: #444444;
  font-family:'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 14px;
}

/* blog homepage */

/* move to responsive titles area
.blog-homepage-features {
    color: #999;
    font-family: "montserratthin",Helvetica,Arial,sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
	text-align:center;
	display:block;
	margin: 0 auto 20px auto;
	width:500px;
}
end hide */

/* category page header */

/* test hide

body.collection #breadcrumb {width: 100%; float: left!important; text-align: center; margin-top: 10px; margin-left:auto!important; margin-right:auto!important;}

end hide */

#collection-header-banner { width: 98%; margin: 0 auto 0 auto; padding-right: 8px; }

#collection-header-banner-2019 { width: 98%; margin: 0 auto 0 auto; padding-right: 8px; }

#collection-header-mobile-banner-2019 { width: 425px; margin: 0 auto 0 -20px; }

#collection-header-mobile-2019 { width: 98%; margin: 0 auto 20px auto; padding-right: 8px; text-align: center; }

.collection-mobile-title {
  width: 100%;
  margin: 0 auto 0 auto;
  color: #444;
  font-family:'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

/*     Mobile Collection Header Descriptions 8-27-21  */

.collection-mobile-title2 {
  width: 250px;
  margin-left: -2px !important;
  color: #fff;
  font-family:'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

#collection-header-mobile-banner-2021 p {width: 250px; color: #dedede; margin-bottom: 0; }


#show { display: inline-block; cursor: pointer; color: #fff; text-decoration: underline;}
#hide { display: inline-block; cursor: pointer; color: #fff; text-decoration: underline;}


#col-mobile-description {background-color: #3e3d40;}

#col-mobile-description p {width: 100%; padding-right: 40px; }



#header-mobile-productphoto {float: right; margin: -25px 50px 0 0; position: relative;}

#header-mobile-productphoto-hirez {float: right; margin: -30px 20px 0 0; position: relative;}

#header-mobile-productphoto-hirez-20px {float: right; margin: -20px 20px 0 0; position: relative;}

#header-mobile-productphoto-hirez-logo {float: right; margin: -20px 20px 0 0; position: relative;}

#header-mobile-productphoto-hirez-spreads {float: right; margin: -10px 20px 0 0; position: relative;}

#header-mobile-productphoto-hirez img {
  width: 80px;
  height: 140px;
  object-fit: contain;
}

#header-mobile-productphoto-hirez-20px img {
  width: 80px;
  height: 140px;
  object-fit: contain;
}

#header-mobile-productphoto-hirez-spreads img {
  width: 110px;
  height: 120px;
  object-fit: contain;
}

#header-mobile-productphoto-hirez-logo img {
  width: 110px;
  height: 120px;
  object-fit: contain;
}


#close-x {float: right; margin: 0 5px 0 0; position: relative; display: block; cursor: pointer;}

#collection-header-mobile-banner-2021 {
width: 425px; margin: 30px 0 20px -20px; padding: 10px 20px 10px 20px;
background-color: #3e3d40;
}

#collection-header-banner-craftbrew { width: 88%; margin: 0 auto 0 auto; padding-right: 20px; }

#cat-header-left { margin-top: 20px; margin-left: -1px; }
#cat-header-right{ margin-top: 20px; margin-left: 20px; }

#cat-header-left h4 {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

#cat-header-right h4 { letter-spacing:0px; margin-bottom:10px; padding-bottom:5px; } 


#cat-header-right h4.about-subhead {
    text-transform: uppercase;
    letter-spacing: 2px;
}

#cat-header-right p { line-height: 26px; } 

#cat-header-right iframe { margin-top: 24px; margin-bottom: 10px; } 

#headquarters-400px { width: 400px; height: 141px; margin: 24px auto 10px auto;  }

.download-link { margin-top: 10px; }


#cat-footer-right{ margin-top: 20px; margin-left: 20px; }


#cat-description-sidebar p { line-height: 26px; } 



/* PDF image transparency hover */

.pdf-link img
{
opacity:0.6;
filter:alpha(opacity=60); /* For IE8 and earlier */
}
.pdf-link img:hover
{
opacity:1.0;
filter:alpha(opacity=100); /* For IE8 and earlier */
}


/* PDF image transparency color hover 2 */

.pdf-link2 i
{
opacity:0.6;
filter:alpha(opacity=60); color:#333; /* For IE8 and earlier */
}
.pdf-link2 i:hover
{
opacity:1.0;
filter:alpha(opacity=100); color:#e20101; /* For IE8 and earlier */
}

/* PDF image transparency color hover 3 */

.pdf-link3 img
{
opacity:1.0;
filter:alpha(opacity=100); color:#000; /* For IE8 and earlier */
}
.pdf-link3 img:hover
{
opacity:0.6;
filter:alpha(opacity=60); color:#e20101; /* For IE8 and earlier */
}


.pdf-link4 { border: 1px; border-color: #CCC; }

.pdf-link4 img
{
opacity:1.0;
filter:alpha(opacity=100); color:#000; /* For IE8 and earlier */
}
.pdf-link4 img:hover
{
opacity:0.6;
filter:alpha(opacity=60); color:#e20101; /* For IE8 and earlier */
}






#pagination {
font-size: 14px;
letter-spacing: 2px;
margin-bottom: 30px;
margin-top: 25px!important;
text-align: center;
text-transform: uppercase;
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(left,  #ffffff 10%, #f5f5f5 30%, #f5f5f5 70%, #ffffff 90%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #ffffff 10%,#f5f5f5 30%,#f5f5f5 70%,#ffffff 90%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #ffffff 10%,#f5f5f5 30%,#f5f5f5 70%,#ffffff 90%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}


/* Shopify Reviews */

#cust-reviews-cat .spr-badge-caption { font-size:9px; }



#shopify-product-reviews .spr-header-title {
    margin: 0 auto 0 auto;
    font-size: 16px;
    text-transform: uppercase;
	text-align:center;

}



#shopify-product-reviews .spr-review-header-title { letter-spacing: 0px; }

#shopify-product-reviews .spr-form-title { letter-spacing: 0px; }


/* Content Pages */

/* For devices at or bigger than 414px - iphone 6-7 */

@media (min-width: 415px) {
#page h1.page-title {
	color:#999;
	font-family: "Prata", serif;
	font-size: 32px;
	font-weight:400;
	letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
  
  h1.page-title {
	color:#999;
	font-family: "Prata", serif;
	font-size: 32px;
    font-weight:400;
	letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
  

  /* blog homepage */

.blog-homepage-features {
    color: #999;
    font-family: "montserratthin",Helvetica,Arial,sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
	text-align:center;
	display:block;
	margin: 0 auto 20px auto;
	width:780px;
}

}


/* For devices at or smaller than 414px - iphone 6-7 */
@media (max-width: 801px) {

#page h1.page-title {
	color:#999;
	font-family: "Prata", serif;
	font-size: 24px;
    font-weight:400;
	letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
  
   h1.page-title {
	color:#999;
	font-family: "Prata", serif;
	font-size: 24px;
	font-weight:400;
	letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
  
  /* blog homepage */

.blog-homepage-features {
    color: #999;
    font-family: "Prata", serif;
    font-size: 16px;
    font-weight:400;
    letter-spacing: 0;
	text-align:center;
	display:block;
	margin: 0 auto 20px auto;
	width:300px;
}
  
  /* social photos */
  
  #social-photos-detail-page-mobile { display:block; margin-top: -20px; }
  
}  
  


#page h1 {
    letter-spacing: 0;
}

#contact-body { margin-bottom: 40px; }

.contact-phone {
  	color:#999;
	font-family: "montserratthin", Helvetica, Arial, sans-serif;
	font-size: 24px;
	text-transform:uppercase;
	letter-spacing: 2px;
    padding-bottom: 8px;
}

.quick-contact-form-title {
   width: 100%;
   padding-bottom: 40px;
}

.quick-contact-form-title p.contitle {
   margin: 0 auto 0 auto;
   text-align: center;
   color: #444444;
    font-family: "Montserrat",sans-serif;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 16px;
    margin-top: 0;
  border-bottom: 1px solid #f0f0f0;
}

.quick-contact-form-title p {
   margin: 0 auto 0 auto;
   text-align: center;
    line-height: normal;
    margin-bottom: 10px;
    margin-top: 0;
}

.page-centered-header {
  width: 100%;
  text-align: center;
}

.page-centered-header p {
  text-align: center;
}



img.info-graphic {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}


/* Search popup */

#search_popup p {
    font-family: "montserratthin", Helvetica, Arial, sans-serif;
	font-size: 24px;
	text-transform:uppercase;
	letter-spacing:1px;
}

#q {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #9c9c9c;
}

/* Search right of logo*/


#search-in-header {
	float:right;
	margin-top: -100px;
	margin-right: 12px;
}

/* MOVED TO MEDIA QUERIES 

@media (max-width: 979px) {
	#search-in-header {
		display:none;
}
}
END HIDE */

/* Search page header */
  
#search-bar-2 {
    width: 300px;  
    margin-left: auto;
    margin-right: auto;
}

#search-bar-2 p {
	text-align:center;
}


/* promo banner left side of logo header */

 #promo-in-header {
      float: left;
      margin-top: -110px;
      margin-bottom: 20px;
	  background-image: url("//cdn.shopify.com/s/files/1/1143/3886/files/330x100-YearEnd-2020.png?v=1608647902");
	  display:block;
      width: 330px;
	  height: 100px;
      text-indent:-9999px;
      position:relative; 
      z-index: 4;
      }

/* promo banner mobile has been covered by new mobile top menu */

  #promo-in-header-mobile {
      margin: 10px auto 0 auto;
      width: 330px; 
      height: 100px;  
      background-image: url("//cdn.shopify.com/s/files/1/1143/3886/files/330x100-AlmondPaste2019-2.jpg?4766");
	  display:block;
	  text-indent:-9999px;  
	  }


#promo-header-mobile-2019 { margin: -20px auto 10px auto; font-size: 14px; color: #000; }
#promo-header-mobile-2019 a { color: #000; } /* CSS link color (black) */
#promo-header-mobile-2019 a:hover { color: #FF0000; } /* CSS link color (red) */

#promo-header-desktop-2019-link { color: #000; } /* CSS link color (black) */
#promo-header-desktop-2019-link:hover { color: #FF0000; } /* CSS link color (red) */







  
/* Product SKU detail page */

#product-sku { margin-top: -10px; color:#cfcfcf; font-size:9x; letter-spacing: 1px; }

/* Amazon payments button checkout */

#OffAmazonPaymentsWidgets0 { width:148px !important; height: 30px; }




/* mailchimp signup page */

#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
  

h4.about-subhead {
    text-transform: uppercase;
    letter-spacing: 2px;
} 


/* Drums and Totes banner product descriptions - product page accordion tweaks */

#pack-size-desktop { display: inline-block; width: 174px; float: left; margin: 0 20px 40px 0; }

#pack-size-desktop-20px { float: left; margin: 0 20px 20px 0; }

#pack-size-desktop-40px { float: left; margin: 0 20px 40px 0; }

#pack-size-desktop-60px { float: left; margin: 0 20px 60px 0; }

#pack-size-desktop-10px { float: left; margin: 0 20px 10px 0; }

#pack-size-desktop-5px { float: left; margin: 0 20px 5px 0; }

#pack-size-desktop-0px { float: left; margin: 0 20px 0 0; }

#accordion img { border:none !important;}

#accordion2 { margin-top: -21px; }

#accordion2 .accordion-header { text-align: center; }




ul #pack-size-desktop-list { display: block; width: 200px; float: right; padding: 0; margin: 0;}

ul #product-list-desktop { list-style-type: square; column-count: 2; padding: 0px; margin: 0px 0px 0px 35px; }

ul #product-list-mobile { list-style-type: square; column-count: 1; padding: 0px; margin: 0px 0px 0px 35px; }





/*--------------------------------------------------
-=SelectBox
-------------------------------------------------- */

.sbHolder {
  background-color: #fff;
  clear: both;
  display: inline-block;
  float: none;
  margin: 5px 0 65px;
  max-width: 390px;
  position: relative;
  text-indent: 10px;
  width: 100%;
}
.sbHolder:focus .sbSelector{
	
}
.sbSelector {
  border: 2px solid #ddd;
  display: block;
  font-weight: bold;
  height: 44px;
  left: 0;
  line-height: 40px;
  outline: medium none;
  overflow: hidden;
  position: absolute;
/*   text-transform: uppercase; */
  top: 0;
  width: 100%;
  letter-spacing: 0px;
  font-size: 13px;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
	color: #000;
	outline: none;
	text-decoration: none;
}
.sbToggle {
  display: block;
  font-size: 11px;
  outline: medium none;
  padding: 12px;
  position: absolute;
  right: 10px;
  text-decoration: none;
  text-indent: 10px;
}

.sbToggle:after{
    font-family: "FontAwesome";
    content: "\f078";
     color:#000;
}
.sbToggleOpen:after{
    font-family: "FontAwesome";
    content: "\f077";
     color:#000;
}
.sbHolderDisabled{
	background-color: #3C3C3C;
	border: solid 1px #515151;
}
.sbHolderDisabled .sbHolder{
	
}
.sbHolderDisabled .sbToggle{
	
}
.sbOptions{
	background-color: #fff;
	border: solid 1px #f0f0f0;
	list-style: none;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 29px;
	width: 100%;
	z-index: 1;
 	overflow-y: auto;
/*    overflow-y: none; */
}
.sbOptions li{
	padding: 0;
    margin: 0;
}
.sbOptions a{
/* 	border-bottom: sold 1px #000; */
	display: block;
	outline: none;
	padding: 2px 0;
  height: 40px;
    line-height: 40px;
  text-indent: 10px;
  font-size: 13px;
}
.sbOptions a:link, .sbOptions a:visited{
	color: #000;
	text-decoration: none;
}
.sbOptions li:hover {
  background-color: #000;
}
.sbOptions a:hover,
.sbOptions a.focus{
	color: #fff;
    transition:none;
}

.sbOptions a:sbFocus
 {
  color: #000;
       transition:none;
}

.sbOptions li:last-child a{
	border-bottom: none;
}
.sbOptions .sbDisabled{
	border-bottom: dotted 1px #515151;
	color: #999;
	display: block;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbGroup{
	border-bottom: dotted 1px #515151;
	color: #EBB52D;
	display: block;
	font-weight: bold;
	padding: 7px 0 7px 3px;
}
.sbOptions .sbSub{
	padding-left: 17px;
}
#back-forth {
  display: inline-block;
  margin: 5px 0 25px;
  width: 100%;
}
.prev-prod, .next-prod {
	color: #000;
    font-weight: bold;
    margin-top: 5px;
}
.prev-prod a {
	margin-left: 3px;
}
.next-prod a {
	margin-right: 3px;
}
.prev-prod {
	float: left;
}
.next-prod {
  float: right;
}
#products-used {
	width: 90%;
    margin: 0 auto;
}
#products-used .owl-next {
/*   right: -5px; */
}
#products-used .owl-prev {
/*   left: -15px; */
}
#products-used .owl-carousel .owl-item {
  padding: 20px;
}
#products-used .title h3 {
  font-size: 12px;
  letter-spacing: initial;
  text-transform: uppercase;
  text-align: center;
}
#products-used .price {
	text-align:center;
    color: #949494;
}
#products-used .owl-controls.clickable {
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}

/* 	TEST TWEAKING SOCIAL PHOTOS STYLING */

#blog-home-page-header .socialphotos-widget-root #socialphotos-gallery-2831726 .spw-thumbnail:hover .spw-call-to-action-wrap .spw-call-to-action {
 z-index:22;
 display:block;
 position:absolute;
 top:50%;
 left:50%;
 transform:translate(-50%, -50%);
 max-width:90% !important;
 border:2px solid #fff;!important;
 line-height:30px;
 padding-left:12px;
 padding-right:12px
}

/* 
  Remove zero based ratings for Shopify App 
  Relates to blog post:
  http://freakdesign.com.au/blogs/news/41175105-remove-zero-rating-reviews-from-the-shopify-review-app
*/

.spr-badge[data-rating="0.0"] {
    visibility:hidden; display: none;
}

/* 	ChatKit Messenger widget adjustment */

#fb-root { display: block; }
 .fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
  width: auto !important;
  min-width: 288pt;
}
  
 .spr-container {
  display: none !important;
}


/* 	Mobile top left user icons, home, account, search */


.mobile-header-icon { padding-right: 15px; }

/* Cart Customizations */
.button#update-cart {
background: transparent;
    color: #949494;
    border: 1px solid #949494;
}
.button#update-cart:hover {
  color: #ffffff;
  background: #ff0000;
}

.subtotal-little {
  display:none;
}

@media screen and (max-width: 980px) {
  #shopping-cart > h2 {
    margin-top: 10px;
  }
  .subtotal-little {
  display:block;
    text-align: center;
}
  
  
}

/* Feb 2020 Honepage Customizations */

#homepage-featured-section-right > .row {
  padding-top: 10px;
}

#homepage-featured-section-right > .row, #homepage-featured-section-left > .row {
	 display: flex;
	 align-items: center;
	 flex-wrap: wrap;
}
 #homepage-featured-section-right.featured-section .title, #homepage-featured-section-left.featured-section .title {
	 font-size: 85px;
	 max-width: 80%;
	 margin-left: auto;
	 margin-right: auto;
	 font-family: 'Prata', serif;
	 color: #8b8b8b;
	 font-weight: 400;
	 letter-spacing: 0px;
}
 #homepage-featured-section-right.featured-section button, #homepage-featured-section-left.featured-section button {
	 background-color: #ff0901;
	 font-size: 24px;
	 width: 80%;
	 margin-left: auto;
	 margin-right: auto;
	 display: block;
}
 #homepage-featured-section-right button, #homepage-featured-section-left button {
	 background-color: #ff0901;
	 font-family: 'Montserrat';
}
 #homepage-featured-section-right .index-content-right h2{
	 text-align: left;
}
#homepage-featured-section-left .index-content-right h2 {
	 text-align: right;
}

/* Blogs */

.blog-row .cbp-l-grid-blog-title {
   margin-top: 0px; 
}

.blog-row h4 {
   white-space: pre-wrap; 
}


/* Homepage Slider */

.flex-caption.slide1 {
  bottom: 50px;
  top: auto;
}

 .slideshow-custom .play {
 	width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
   }

 .slideshow-custom .play:hover {
 	opacity: .5;
   }

   .slideshow-custom .cta {
     display: flex;
    justify-content: center;
   }

  
  a.custom-slider-button {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
    line-height: normal;
    background-color: #dc0101;
    padding: 20px;
    margin: 0 25px;
    width: 300px;
    font-family: 'Montserrat';
    text-align: center;
  }
  
  a.custom-slider-button:hover {
   color: #ffffff;
    background: #ff0000; 
  }

 @media only screen and (max-width: 1200px) {
.slideshow-custom .play {
    max-width: 150px;
}
 }
  


 @media only screen and (max-width: 1023px) {
 #homepage-featured-section-right.featured-section .title, #homepage-featured-section-left.featured-section .title {
		 max-width: 100%;
		 text-align: center;
		 font-size: 2em;
	}
	 #homepage-featured-section-right img, #homepage-featured-section-left img {
		 max-height: 200px;
		 width: auto;
	}
   
  #homepage-featured-section-right > div, #homepage-featured-section-left > div {
     text-align: center;
   }
   #homepage-featured-section-right #index-content-left {
     order: 1;
   }
   
   #quote-container .page-title, .homepage-value-prop .page-title {
     font-size: 2em;
   }
      #quote-container #quotee {
     font-size: 1em;
   }
  
   .slideshow-custom .play {
  max-width: 60px;
}
   .slideshow-custom .cta {
     display: none;
   }
   
   .flex-caption.slide1 {
     display: block;
     top: 40%
       
   }
   
   .slideshow-custom .cta {
     margin-top: 20px;
   }
   
      .slideshow-custom .flex-cta {
     display: flex;
        flex-wrap: wrap;
        maring-top: 20px;
   }
   
   a.custom-slider-button {
    margin: 10px;
/*     text-align: center; */
/*     width: 250px; */
   } 
     
     .modal-video-close-btn {
       right: 0px !important;
     }
   
   .hidden-mobile {
    display: none; 
   }
   
}

 @media only screen and (min-width: 1024px) {
.hidden-mobile-up {
 display: none !important; 
}
  
}
   

   
  
	 
/* Marzipans Collection Custom CSS */
.colorWhite h2 {
	font-size: 2.1vmax;
    padding-left: 20px;
    padding-right: 20px;   
}

@media (max-width: 979px) {
.section-ai {
	display: flex;
  	flex-direction: column;
    align-items: stretch;
    text-align: center;
}
.clearBoth {
	clear: both; 
}
.bg-primary-ai {
    background: #cb1102;
    display: flex;
    align-items: center;
    min-width: 30%;
    justify-content: space-evenly;
  	padding-top: 3vh;
    padding-bottom: 3vh;
}
.colorWhite, .colorWhite h2 {
 color:white;
}
.inner-ai {
  display: flex;
  align-self: center;	
}
}
@media (min-width: 980px) {
.section-ai {
	display: flex;
    align-items: stretch;
    text-align: center;
}

.fdc {
	flex-direction: column;
}
.clearBoth {
	clear: both; 
}
.bg-primary-ai {
    background: #cb1102;
    display: flex;
    align-items: center;
    min-width: 30%;
    justify-content: space-evenly;
}
.colorWhite, .colorWhite h2 {
 color:white 
}
.inner-ai {
  display: flex;
  align-self: center;	
}
}
h2.wholesaleOrders {
  color: #dd3939;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
  font-size: 2.1vmax;
}
.wrapWholesale p {
  font-size: 18px;
  line-height: 26px;
  margin-top: 22px;
  margin-bottom: 22px;
  text-align: center;
  color: #434;
  font-family: 'Montserrat', sans-serif;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;  
}
.pasteContainers {
	display: flex;
	flex-direction: column;
 	margin: 20px auto;
    margin: 20px auto 0 auto;
	max-width: 60%;
}
.tablesAndDescriptions h3 {
  margin: 0 auto;
  color: darkgray;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
  font-size: 26px; 	
}

/* CSS ACCORDION */
#ai-accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#ai-accordion .row {
  display: flex;
}
#ai-accordion .row .col {
  flex: 1;
}
#ai-accordion .row .col:last-child {
  margin-left: 1em;
}

/* Accordion styles */
#ai-accordion .tabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

#ai-accordion .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
#ai-accordion .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #f9f9f9;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
  
  margin: 0 auto;
  color: darkgray;
  color: #cb1102;
  color: #d69637;
  text-align: center;
  padding: 12px;
  
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;  
}
#ai-accordion .tab-label:hover {
    background: #f3f3f3;
}
#ai-accordion .tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);  
}
#ai-accordion .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all .35s;
}
#ai-accordion .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
#ai-accordion .tab-close:hover {
  background: #1a252f;
}

#ai-accordion input:checked + .tab-label {
  background: #1a252f;
  background: #f3f3f3;
}
/*
#ai-accordion input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
*/
#ai-accordion input:checked ~ .tab-content {
  max-height: 150vh;
  padding: 1em;
  
  overflow-y: auto;
}

/* RESPONSIVE TABLE IN #ai-accordion */
#ai-accordion .table-responsive {
	display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
#ai-accordion table {
    width: 100%;		 
}
/*
@media (max-wdith:751px) {
  .viewImages {
      display: block;
      margin: 0 auto;
  }
  .innerWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    max-width: 751px;
    margin: 0 auto;
    padding: 20px;    
  }
  .innerWrap img {
      max-width: 98.5%;
  }
}
@media (min-wdith:752px) {
  .viewImages {
      display: block;
      margin: 0 auto;
  }
  .innerWrap {
      display: flex;
      justify-content: space-evenly;
  }
  .innerWrap img {
      max-width: 98.5%;
  }
}
*/
.aHeader img {
	max-height: 200px;
    object-fit: cover;
  	width: 100%;
}
.px10 {
  	padding-right: 10px;
  	padding-left: 10px;
  	text-align: center;
}


.jdgm-widget.jdgm-carousel {  width: calc(100% - 81px) !important;  margin: 0 auto !important; }
 .jdgm-carousel__left-arrow {  float: left;  margin-left: -20px !important;  margin-top: -250px !important; 
   								position: absolute; left: 0; top: 90px; }
 
.jdgm-carousel__right-arrow {  float: right;  margin-right: -20px !important;  margin-top: -250px !important; 
  								position: absolute; right: 0; top: 90px }
.jdgm-carousel__arrows {  margin: 0 !important; 
  							position: relative; }

.jdgm-all-reviews-rating-wrapper {
	display: none; /* done in JS */
}



@media (max-width: 575px) {
  .viewImages {
    display: block;
    margin: 0 auto;
  }
  .innerWrap {
    display: grid;
  }
  .innerWrap img {
    max-width: 100%;
  } 
}
.viewImages {
  display: block;
  margin: 0 auto;
}
.innerWrap {
  display: flex;
  justify-content: space-evenly;
}
.innerWrap img {
  max-width: 98.5%;
}
	 
   
 /* Sanitizer Page Story */  
   
    h1.story {
	color:#999;
	font-family: "Prata", serif;
	font-size: 24px;
    font-weight:400;
	letter-spacing: 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    margin-top: 30px;
}  
  
   

 
/*     sanitizer contact form  */


.hide { visibility: hidden;}

/*     media object product images variant button fix 11-11-20  */
   
#variant_selected_image_container{
position: absolute;
top: 0px;
width: 100%;
}
/* Makes the static variant image align to this */
@media screen and (min-width: 980px){
.gridlock .row .desktop-10, .gridlock .row .mobile-3, .gridlock .row .tablet-5 {
position: relative;
}
}
.slider-media .slick-prev:before, .slider-media .slick-next:before{
color:black;
}

/*     boost commerce filter collection pages - place code is boost-pfs-custom.css.liquid  */





