/** 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 48:12 Expected identifier but found "{"
Line 48:13 Unexpected "{"
Line 48:20 Expected ":"
Line 48:24 Expected identifier but found "!"
Line 49:9 Expected identifier but found "{"
Line 49:10 Unexpected "{"
... and 10 more hidden warnings

**/
/* 
   Swatches Styles
*/

{% assign width = '50px' %}
{% assign height = '35px' %}
.swatch { 
  /*margin:1em 0; */
  float: left;
  width: 100%;
}
/* Label */
.swatch .header {
  color: #000;
  font-family: "Roboto Condensed",sans-serif;
  font-weight: 600;
  margin: 10px 0 16px;
  text-transform: uppercase;
}
/* Hide radio buttons.*/
.swatch input { 
  display:none;
}
.swatch label {
  font-family: "Roboto Condensed",sans-serif;
  /* Rounded corners */
 /* -webkit-border-radius:2px;
  -moz-border-radius:2px;
  border-radius:2px;*/
  /* 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:#f4f4f4;*/
  /* Styling text */
  font-size: 13px;
  text-align:center;
  line-height:{{ height }};
  white-space:nowrap;
  text-transform:uppercase;
}
.swatch-element label {
  border: 1px solid #e5e5e5;
  float: left;
  padding: 4px;
}
.color.swatch-element label {
  border-radius: 50%;
  padding: 15px;
  border: 1px solid transparent;
}
/* 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:transparent; */
  border: 1px solid #000;
  padding: 4px;
} 
.swatch .color input:checked + label {
  border: 1px solid #000;
  border-radius: 50%;
  padding: 15px;
}
.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:100%; 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;
}
.swatch-element span {
  color: #000;
  float: left;
  height: 30px;
  line-height: 30px;
  width: 30px;
}
.Color label img {
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.product_icons img {
    height: 15px;
}
.grid-view-item .overlap {
	/*top:-50px;*/
}
.grid-view-item:hover .overlap {
	top:50%;
}
.product-single .social-new {
    border-top: 1px solid #ccc; 
    border-bottom: 1px solid #ccc; 
}
.product-single .social-new {
    font-size: 20px;
}
.social-new li {
    margin: 0 3px;
}
h1, .h1 {
    font-size: 3.1875em;
}
.template-index .about_us_icons {
	font-size: 12px;
	letter-spacing: -1px;
}
@media only screen and (max-width: 749px){

	#shopify-section-footer .grid.medium-up--one-quarter {
		text-align: center;
	}
	#footer_four li {
		background-position: top center;
		padding-left: 0px;
		padding-top: 25px;
	}
	.site-footer__linklist-item {
	    padding: 0px;
	}
  	.grid-view-item__title {
		margin-top: 10px;
	}
}
@media only screen and (max-width: 450px){
	.image_size {
		height: auto;
	}
}
@media only screen and (max-width: 444px){
	.list .image_size {
    	float: none;
    }
}
@media only screen and (max-width: 749px){
	#Collection .list .grid-view-item__image {
    	width: auto;
    	height: 70%;
}
    
