/** Shopify CDN: Minification failed

Line 17:0 Unexpected "{"
Line 17:1 Expected identifier but found "%"
Line 18:0 Unexpected "{"
Line 18:1 Expected identifier but found "%"
Line 92:7 Expected identifier but found "{"
Line 92:8 Unexpected "{"
Line 92:15 Expected ":"
Line 92:85 Expected ":"

**/
/* 
   Swatches Styles
*/

{% assign width = '50px' %}
{% assign height = '35px' %}
.swatch { 
  margin:1em 0; 
}
/* Label */
.swatch .header {
  margin: 0.5em 0;
}
/* Hide radio buttons.*/
.swatch input { 
  display:none;
}
.swatch label {
  /* 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:50px !important; 
  height:35px !important;
  /* No extra spacing between them */
  margin:0;
  /* The border when the button is not selected */
  border:#ccc 1px solid;
  /* Background color */
  background-color:#ddd;
  /* Styling text */
  font-size:13px;
  text-align:center;
  line-height:35px;
  white-space:nowrap;
  text-transform:uppercase;
}
.swatch-element label { padding:0 10px; }
.color.swatch-element label { padding:0; }
/* 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;
} 
.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;
}
/*
.col-product-media .product-thumbs .product-thumbs__thumb.active {
display : block !important;
}
.col-product-media .product-thumbs .product-thumbs__thumb {
display : none;
}
*/
.demo ul li {
    display: inline-block;
    width: 50%;

}
.demo ul li img {
width:70px;
}
.demo ul li img:nth-child(2){
  display : none;
}
.demo ul li img:nth-child(3){
  display : none;
}


/* styles for swatches */

.swatches {
  padding: 2px 0 4px;
  margin: 0;
  list-style: none;
}

.swatches li {
	display: inline-block; 
  	vertical-align: top;
   margin: 0 8px 5px 0;
}

.swatches li a {
	display: block;
  	margin: 0;
}

.swatches li a>div {
	display: block;
  border: 1px solid #d7d7d7;
  width: 60px;
  height: 60px;
}

.swatches li a>div.color_swatch_active,
.swatches li a:hover>div {
	border-color: #ebc7c7;
}

.swatches li img {
	display: block;
  max-width: 100%;
  height: auto;
}

.popup-swatches {
	font-family: "Avenir","Helvetica Neue",Verdana,Arial,sans-serif;
  position: relative;
  margin-bottom: 21px;
}

.popup-swatches .title {
	display: block;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
}

.open-swatches {
  max-width: 400px;
  width: 76%;
  position: relative;
  text-transform: capitalize;
  font-size: 12px !important;
  padding-right: 22px;
  color: black;
}

.open-swatches i {
	position: absolute;
  top: 9px;
  right: 7px;
  font-size: 16px;
}

.drop-swatches {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 8px 10px 3px;
  margin: -1px 0 0;
  list-style: none;
  max-width: 400px;
  border-color: rgb(224, 180, 177);
  z-index: 1;
  max-height: 50vh;
  overflow: auto;
  color: black;
}

@media (max-width: 768px) {
  .open-swatches { width: 100%; }
}

.popup-swatches:has(.drop-swatches:empty) { display: none; }

.drop-swatches a {
	color: inherit;
  display: block;
  font-weight: normal;
}

.drop-swatches a:hover {
	color: rgb(224, 180, 177);
}

/* custom select styles for sort */

.jcf-select {
    display: inline-block;
    vertical-align: top;
    position: relative;
    background: #fff;
    margin: -7px 0 0;
    min-width: 100px;
    height: 35px;
    border: 1px solid #d7d7d7;
    border-radius: 0;
    -webkit-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
}

.jcf-select.jcf-drop-active {
	border-color: rgb(224, 180, 177);
}

.jcf-select:hover .jcf-select-text {
	color: rgb(224, 180, 177);
}

.jcf-select:hover .jcf-select-opener:before {
	color: rgb(224, 180, 177);
}

.jcf-select select {
    z-index: 1;
    left: 0;
    top: 0;
}

.jcf-select .jcf-select-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
    display: block;
    font-size: 13px;
    line-height: 35px;
    margin: 0 22px 0 10px;
    text-transform: capitalize;
    font-size: 12px;
    font-family: "Avenir","Helvetica Neue",Verdana,Arial,sans-serif;
    color: #999;
  	-webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
}

.jcf-select .jcf-select-opener:before {
    position: absolute;
  	top: 9px;
    right: 7px;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    font-size: inherit;
    text-rendering: auto;
    font-size: 16px;
  	content: "\f107";
  	-webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
}

body>.jcf-select-drop {
    position: absolute;
    margin: -1px 0 0;
    z-index: 9999;
}

body>.jcf-select-drop.jcf-drop-flipped {
    margin: 1px 0 0;
}

.jcf-select .jcf-select-drop {
    position: absolute;
    margin-top: 0px;
    z-index: 9999;
    top: 100%;
    left: -1px;
    right: -1px;
}

.jcf-select .jcf-drop-flipped {
    bottom: 100%;
    top: auto;
}

.jcf-select-drop .jcf-select-drop-content {
    border: 1px solid rgb(224, 180, 177);
}


/* multiple select styles */

.jcf-list-box {
    overflow: hidden;
    display: inline-block;
    border: 1px solid #b8c3c9;
    min-width: 200px;
    margin: 0 15px;
}


/* select options styles */

.jcf-list {
    display: inline-block;
    vertical-align: top;
    position: relative;
    background: #fff;
    line-height: 15px;
    font-size: 10px;
    width: 100%;
  	padding: 8px 0 3px;
}

.jcf-list .jcf-list-content {
    vertical-align: top;
    display: inline-block;
    overflow: auto;
    width: 100%;
}

.jcf-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jcf-list ul li {
    overflow: hidden;
    display: block;
}

.jcf-list .jcf-overflow {
    overflow: auto;
}

.jcf-list .jcf-option {
    overflow: hidden;
    cursor: default;
    display: block;
    margin: 1em 10px;
    color: #656565;
    height: 1%;
  	cursor: pointer;
  	font-family: "Avenir","Helvetica Neue",Verdana,Arial,sans-serif;
  	text-transform: uppercase;
}

.jcf-list .jcf-disabled {
    background: #fff !important;
    color: #aaa !important;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
    color: rgb(224, 180, 177);
}

.jcf-list .jcf-optgroup-caption {
    white-space: nowrap;
    font-weight: bold;
    display: block;
    padding: 5px 9px;
    cursor: default;
    color: #000;
}

.jcf-list .jcf-optgroup .jcf-option {
    padding-left: 30px;
}


.more-options {
	display: block;
}

/* Adjust Swatch heading */
.popup-swatches .form-control.open-swatches{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 4rem;
}
