/** Shopify CDN: Minification failed

Line 25:0 Unexpected "{"
Line 25:1 Expected identifier but found "%"
Line 25:27 Expected identifier but found "%"
Line 72:0 Unexpected "{"
Line 72:1 Expected identifier but found "%"
Line 72:25 Expected identifier but found "%"

**/
/* Custom heaer styles */
.hd_link {
  display: none;
}

@media screen and (min-width: 990px) {
  header-drawer {
    display: none;
  }
  .hd_link {
    display: block;
  }
}

{% comment %} search icon {% endcomment %}

.hd_link a {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 22px;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-left: 1px solid #1c1c1c;
  text-decoration: none;
  font-size: 15px;
}

.hd_link a.search img {
  max-width: 25px;
  padding: 0 2px 0 0;
}

.hd_link .list_links a:last-child {
  border-right: 1px solid #1c1c1c;
}

@media screen and (max-width: 767px) {
  .hd_link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 35px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    border-left: 1px solid #1c1c1c;
    margin: 10px 0;
  }

  .hd_link a span {
    display: block;
    margin: 5px 0 0;
  }
}

{% comment %} cart icon {% endcomment %}

.cart_btn {
  position: relative;
  width: 120px;
  padding: 3px 0;
}

.cart_btn a {
  height: 100%;
  border-left: 0;
  color: #FFF;
}

.cart_btn a span {
  display: inline-block;
  padding: 5px 5px 5px 43px;
  background: url(icon_cart_w.svg) no-repeat left center;
  position: relative;
}

.cart_btn a span i {
  font-style: normal;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  border-radius: 100%;
  font-size: 11px;
  position: absolute;
  left: 20px;
  top: -7px;
  font-family: Roboto, sans-serif !important;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .cart_btn {
    position: relative;
    width: 50px;
    font-size: 12px;
    padding: 10px 0 0 5px;
  }
  .cart_btn a span {
    display: inline-block;
    padding: 27px 0px 0px 0px;
    background: url(icon_cart_w.svg) no-repeat top center;
  }
}
