/** Shopify CDN: Minification failed

Line 65:19 Expected identifier but found whitespace
Line 65:21 Unexpected "{"
Line 65:31 Expected ":"
Line 112:0 Unexpected "{"
Line 112:1 Expected identifier but found "%"
Line 113:0 Unexpected "{"
Line 113:1 Expected identifier but found "%"
Line 133:12 Expected identifier but found "{"
Line 133:13 Unexpected "{"
Line 133:20 Expected ":"
... and 12 more hidden warnings

**/
.slider.slick-slider .slick-slide {
    clear: none !important;
    padding-left: 0;
}
.slider.slick-slider {
    margin: 0;
    overflow: visible;
}
.slider.slick-slider .grid-view-item {
    margin: 0;
  padding: 0 10px;
}
.slider.slick-slider .slick-dots li button::before {
    color: #3d4246;
    opacity: 0.2;
}
.slider.slick-slider .slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 55px;
}
.slider.slick-slider .slick-dots li.slick-active button::before {
    opacity: 1;
}
:focus {
    outline: none;
}
div#owl-example .slick-track {
    display: flex;
    align-items: center;
}
div#owl-example .btn--secondary {
    border-color: transparent;
}

#SearchDrawer {
  z-index:1001;
}

div#shopify-section-header {
  position: fixed;
  z-index:1000;
  left:0;
  right:0;
  -webkit-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
  -moz-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
  -ms-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
  -o-box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
  box-shadow:0px 2px 4px 0px rgba(0,0,0,.1);
  background-color: {{ settings.color_body_bg }};
}

div.featured-video-section .page-width {
text-align: center;
}
.page-container {
  padding-top: 163px;
}
form[action^="/cart/add"] [type=submit] {
    visibility: visible !important;
}
button.mut-eun {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    border: 0px solid;
    background: rgba(255, 255, 255, 0.61);
    padding: 10px 10px 3px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
button.mut-eun > img {
    width: 35px;
}
/*div#rc_radio_options .rc_block.rc_block__type.rc_block__type__onetime {
    display: none !important;
}*/
form[data-productid="4529156096115"] .rc_block.rc_block__type.rc_block__type__onetime {
    display: none !important;
}










/* 
   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:{{ 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:#ddd;
  /* Styling text */
  font-size:13px;
  text-align:center;
  line-height:{{ height }};
  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;
}


@media screen and (max-width: 749px) {
  a.site-header__cart {
    display: inline-block !important;
}
  .site-header__icons-wrapper a img {
    position: relative;
    top: 6px;
}
  button.mut-eun {
    padding: 8px 10px 3px;
    width: 35px;
    height: 35px;
}
.page-container {
  padding-top: 134px;
}
}