/** Shopify CDN: Minification failed

Line 20:0 Unexpected "{"
Line 20:1 Expected identifier but found "%"
Line 21:0 Unexpected "{"
Line 21:1 Expected identifier but found "%"
Line 46:12 Expected identifier but found "{"
Line 46:13 Unexpected "{"
Line 46:20 Expected ":"
Line 46:24 Expected identifier but found "!"
Line 47:9 Expected identifier but found "{"
Line 47:10 Unexpected "{"
... and 16 more hidden warnings

**/
/* 
   BEGIN-Swatches on Product Detail Page Styles
*/

{% assign width = '50px' %}
{% assign height = '50px' %}
.swatch { 
  margin:1em 0; 
}
/* Label */
.swatch .header {
  margin: 0.5em 0;
  font-weight: bold;
font-size: 13px;
}
/* Hide radio buttons.*/
.swatch input { 
  display:none;
}

.swatch label {
  /* Rounded corners */
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
  border-radius:2px;
  border:#ccc 1px solid;
  text-align:center;
  /* To give width and height */
  float:left;
  /* Color swatches contain no text so they need to have a width. */
  min-width:{{ width }} !important; 
  height:{{ height }} !important;
  /* No extra spacing between them */
  margin:0;
  /* The border when the button is not selected */
  border:#ccc 1px solid;
  /* Background color */
  background-color:#ffffff;
  /* Styling text */
  font-size:11px;
  text-align:center;
  line-height:{{ height }};
  white-space:nowrap;
  text-transform:uppercase;
  background-repeat:no-repeat;
}
.swatch-element label { padding:0 10px; }
.color.swatch-element label { padding:0 10px; }
/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
  -moz-box-shadow:0px 1px 2px rgba(0,0,0,0.8);
  box-shadow:0px 1px 2px rgba(0,0,0,0.8);
  border-color:rgb(173, 18, 54);
  border: rgb(173, 18, 54) 1px solid;
} 
.swatch .swatch-element {
  float:left;
  -webkit-transform:translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing:antialiased; /* webkit text rendering fix */
  /* Spacing between buttons */
  margin:0px 10px 10px 0;
  /* To position the sold out graphic and tooltip */
  position:relative;
 
}
/* Image with the cross in it */
.crossed-out { position:absolute; width:80%; height:100%; left:0; top:0; }
.swatch .swatch-element .crossed-out { display:none; }
.swatch .swatch-element.soldout .crossed-out { display:block; }
.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60); /* internet explorer */
  -khtml-opacity: 0.6;      /* khtml, old safari */
  -moz-opacity: 0.6;       /* mozilla, netscape */
  opacity: 0.6;           /* fx, safari, opera */
}
/* Tooltips */
.swatch .tooltip {
  text-align:center;
  background:gray;
  color:#fff;
  bottom:100%;
  padding: 10px;
  display:block;
  position:absolute;
  width:100px;
  left:{{ width | remove: 'px' | to_number | divided_by: 2 | minus: 50 | plus: 2 }}px;
  margin-bottom:15px;
  /* Make it invisible by default */
  filter:alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity:0;
  visibility:hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing:border-box; 
  -webkit-box-sizing:border-box; 
  box-sizing:border-box;
}
.swatch .tooltip:before {
  bottom:-20px;
  content:" ";
  display:block;
  height:20px;
  left:0;
  position:absolute;
  width:100%;
}
/* CSS triangle */
.swatch .tooltip:after {
  border-left:solid transparent 10px;
  border-right:solid transparent 10px;
  border-top:solid gray 10px;
  bottom:-10px;
  content:" ";
  height:0;
  left:50%;
  margin-left:-13px;
  position:absolute;
  width:0;
}
.swatch .swatch-element:hover .tooltip {
  filter:alpha(opacity=100);
  -khtml-opacity:1;
  -moz-opacity:1;
  opacity:1;
  visibility:visible;
  -webkit-transform:translateY(0px);
     -moz-transform:translateY(0px);
      -ms-transform:translateY(0px);
       -o-transform:translateY(0px);
          transform:translateY(0px);
}
.swatch.error {
  background-color:#E8D2D2!important;
  color:#333!important;
  padding:1em;
  border-radius:5px;
}
.swatch.error p {
  margin:0.7em 0;
}
.swatch.error p:first-child {
  margin-top:0;
}
.swatch.error p:last-child {
  margin-bottom:0;
}
.swatch.error code {
  font-family:monospace;
}
/* Over-ride rules for this element from stylesheet.css to vertically align the text within the Size Swatch box*/
  #product-description form .swatch-element label, .product-description form .swatch-element label {    
    line-height: {{ height }};
    margin-right: 0px; /* Bring the swatch boxes closer together so more displayed in one row*/
    min-width: {{width}};

  }

/* 
   END-Swatches on Product Detail Page Styles
*/

/* 
   BEGIN-Size swatch on Product Collection Page
*/


.product-info .swatch .swatch-element{
margin: 0px 5px 5px 0;
}

.product-info .swatch-element label{
  border:#ccc 1px solid;
  border-radius: 2px;
  /* Background color */
  background-color:#cccccc;
  /* Styling text */
  font-size:10px;
  text-align:center;
  font-weight:normal;
  white-space:nowrap;
  text-transform:uppercase;
  background-repeat:no-repeat;
  padding:0 8px;
}

/* 
   END-Size swatch on Product Collection Page
*/
/* 
   Fix to overlay the megamenu over the image nav buttons on product detail page
*/
ul.megamenu
{
  z-index:100;
}
/*Underline the list headers in Mega Menu*/
ul.megamenu h4
{
  text-decoration:underline;
  font-weight:bold;
}

/*Begin - Shipping Policy Page*/
table.shippingTable 
{
	border:2px solid #ababab;   
}

.shippingTable th
{
	border-bottom:7px solid #ababab; 
    padding-top:10px;
    padding-bottom:10px;
    border-right:2px solid #ababab; 
 
}

.shippingTable td
{
    border:2px solid #ababab;   
    padding-top:10px;
    padding-bottom:10px;
    text-align:center;
  
}

.leftCell
{
  background-color: #dfdfdf;
  text-align:left;
}
/*End - Shipping Policy Page*/

#popups a
{
text-decoration: underline;
}
/* BEGIN DISPLAY RULES FOR TCG SLIDES FOR DIFFERENT MEDIA */
@media screen and (min-width:980px){
.nmt-promo-section .desktop-hide{display:none!important} .nmt-tcg-display .desktop-hide{display:none!important}
}
@media screen and (min-width:740px) and (max-width:979px){
.nmt-promo-section .tablet-hide{display:none!important} .nmt-tcg-display .tablet-hide{display:none!important}
}
@media screen and (max-width:739px){
.nmt-promo-section .mobile-hide{display:none!important} .nmt-promo-section .mobile-3{display:block!important} .nmt-tcg-display .mobile-hide{display:none!important}
  .nmt-tcg-display .mobile-3{display:block!important}
  	/*Adjust Product Detail Page Brand and Title Fonts*/
	.product #content h1
    {
      font-size: 14px;
      margin-bottom:10px;
   }
	.product #content h2
    {
      font-size: 10px;
      margin-bottom:0px;
   }
    .product p
    {
      margin-bottom:0px;
      
    }    
    #breadcrumb/*Hide Breadcrombs in Mobile*/
    {
      display:none;
    }
    div #shappify_count_down /*Adjust Sale Timer*/
    {
      font-size: 14px;
      font-weight:bold;
      margin:0px;
      padding-bottom:0px;
    }
  div.nmt_top_bar_message
  {
    font-size:11px;
    line-height:1.6em;
   
  }
}
/* END DISPLAY RULES FOR TCG SLIDES FOR DIFFERENT MEDIA */


/* Begin Promo Bar Below Nav Bar  */
.nmt-promo-section{
  margin-bottom:10px;
}
.home-page-banner-promo { 
  background-image:url({{ 'promo-banner-background-red.jpg' | asset_url }});
  background-image:url('/cdn/shop/t/3/assets/promo-banner-background-red.jpg');
  height:50%;
  background-repeat:repeat-x;

}

/* Begin Block Sample-Sale */
editorial-wrapper {
   
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    
    
}
.editorial-wrapper .editorial {
   
    border: 5px solid #f4f4f4;
  	margin-bottom:3%;
}
.editorial-wrapper .editorial .editorial-text {
   
    width: 100%;
  	text-align: center;
}
.editorial-wrapper .editorial .editorial-text a {
    text-decoration:underline;
}
.editorial-wrapper .editorial .editorial-text .editorial-title {
    margin-bottom: 10px;
    color: #232323;
}
.editorial-wrapper .editorial .editorial-text .editorial-secondary-description {
    color: #4c4c4c;
    margin-top: 5px;
}
/*End Block Sample-Sale */



/* Begin Block Sample-Sale */
editorial-block {
   
    padding-left: 1%;
    padding-right: 1%;
    float: left;
    border: 10px solid #f4f4f4;
  	margin-bottom:3%;
  	width: 100%;
  	text-align: center;    
}

/*End Block Sample-Sale */