/** Shopify CDN: Minification failed

Line 16783:0 Comments in CSS use "/* ... */" instead of "//"
Line 16788:3 "font-famiy" is not a known CSS property
Line 16790:9 Expected identifier but found "url("
Line 16791:9 Expected identifier but found "url("
Line 16795:267 Unexpected "/"
Line 16798:3 "font-famiy" is not a known CSS property
Line 16800:8 Expected identifier but found "url("
Line 16801:9 Expected identifier but found "url("
Line 16807:0 Comments in CSS use "/* ... */" instead of "//"

**/
div.cart-popup .pop-btn {
  background: #dadada;
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #3c3c3c;
  border-radius: 5px;
  border: 1px solid #3c3c3c;
  cursor: pointer
}

div.cart-popup .pop-btn:hover {
  color: #064b58
}

div.cart-popup .pop-up {
  display: none;
  height: auto;
  width: 50%;
  margin: 40px auto;
  background: #fff;
  position: absolute;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0 0 20px #232323;
  top: 20%;
  left: 25%
}

div.cart-popup span {
  border-radius: 0 0 30px 30px;
  margin-left: 90%;
  background: #232323;
  color: #fff;
  font-size: 20px;
  height: 10px;
  padding: 0 5px;
  cursor: pointer
}

div.cart-popup .pop-content {
  box-sizing: border-box;
  padding: 5px 20px 20px 20px
}

div.cart-popup .pop-content p {
  font-size: 1em;
  margin-bottom: 10px
}


/*================ GLOBAL ================*/
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*,
::after,
::before {
  box-sizing: border-box
}

body {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%
}

a {
  background-color: transparent
}

a:focus,
a:hover {
  text-decoration: none;
  outline: 0
}

b,
strong {
  font-weight: 700
}

em {
  font-style: italic
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  max-width: 100%;
  border: 0
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button[disabled],
html input[disabled] {
  cursor: default
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 0
}

input[type=email],
input[type=number],
input[type=password],
input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff
}

td,
th {
  padding: 0
}

textarea {
  overflow: auto;
  -webkit-appearance: none;
  -moz-appearance: none
}

@media (max-width:991px) {
  .hidden-lg-down {
    display: none!important
  }
}

@media (min-width:992px) {
  .hidden-lg-up {
    display: none!important
  }
}

@media (max-width:767px) {
  .hidden-sm-down {
    display: none!important
  }
}

@media (min-width:768px) {
  .hidden-sm-up {
    display: none!important
  }
}

@media (max-width:1199px) {
  .hidden-xl-down {
    display: none!important
  }
}

@media (min-width:1200px) {
  .hidden-xl-up {
    display: none!important
  }
}

@media (max-width:543px) {
  .hidden-xs-down {
    display: none!important
  }
}

@media (min-width:544px) {
  .hidden-xs-up {
    display: none!important
  }
}

[tabindex='-1']:focus {
  outline: 0
}
/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
[role=button],
a,
button,
input,
label,
select,
textarea {
  touch-action: manipulation
}

/*============================================================================
  #Grid
==============================================================================*/


/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid {
  list-style: none;
  margin: 0;
  padding: 0
}

.grid::after {
  content: '';
  display: table;
  clear: both
}

.grid__item {
  float: left
}

.grid__item[class*="--push"] {
  position: relative
}

.grid--rev {
  direction: rtl;
  text-align: left
}

.grid--rev>.grid__item {
  direction: ltr;
  text-align: left;
  float: right
}

.one-whole {
  width: 100%
}

.one-half {
  width: 50%
}

.one-third {
  width: 33.33333%
}

.two-thirds {
  width: 66.66667%
}

.one-quarter {
  width: 25%
}

.two-quarters {
  width: 50%
}

.three-quarters {
  width: 75%
}

.one-fifth {
  width: 20%
}

.two-fifths {
  width: 40%
}

.three-fifths {
  width: 60%
}

.four-fifths {
  width: 80%
}

.one-sixth {
  width: 16.66667%
}

.two-sixths {
  width: 33.33333%
}

.three-sixths {
  width: 50%
}

.four-sixths {
  width: 66.66667%
}

.five-sixths {
  width: 83.33333%
}

.one-eighth {
  width: 12.5%
}

.two-eighths {
  width: 25%
}

.three-eighths {
  width: 37.5%
}

.four-eighths {
  width: 50%
}

.five-eighths {
  width: 62.5%
}

.six-eighths {
  width: 75%
}

.seven-eighths {
  width: 87.5%
}

.one-tenth {
  width: 10%
}

.two-tenths {
  width: 20%
}

.three-tenths {
  width: 30%
}

.four-tenths {
  width: 40%
}

.five-tenths {
  width: 50%
}

.six-tenths {
  width: 60%
}

.seven-tenths {
  width: 70%
}

.eight-tenths {
  width: 80%
}

.nine-tenths {
  width: 90%
}

.one-twelfth {
  width: 8.33333%
}

.two-twelfths {
  width: 16.66667%
}

.three-twelfths {
  width: 25%
}

.four-twelfths {
  width: 33.33333%
}

.five-twelfths {
  width: 41.66667%
}

.six-twelfths {
  width: 50%
}

.seven-twelfths {
  width: 58.33333%
}

.eight-twelfths {
  width: 66.66667%
}

.nine-twelfths {
  width: 75%
}

.ten-twelfths {
  width: 83.33333%
}

.eleven-twelfths {
  width: 91.66667%
}

.show {
  display: block!important
}

.hide {
  display: none!important
}

.text-left {
  text-align: left!important
}

.text-right {
  text-align: right!important
}

.text-center {
  text-align: center!important
}

@media only screen and (max-width:749px) {
  .small--one-whole {
    width: 100%
  }
  .small--one-half {
    width: 50%
  }
  .small--one-third {
    width: 33.33333%
  }
  .small--two-thirds {
    width: 66.66667%
  }
  .small--one-quarter {
    width: 25%
  }
  .small--two-quarters {
    width: 50%
  }
  .small--three-quarters {
    width: 75%
  }
  .small--one-fifth {
    width: 20%
  }
  .small--two-fifths {
    width: 40%
  }
  .small--three-fifths {
    width: 60%
  }
  .small--four-fifths {
    width: 80%
  }
  .small--one-sixth {
    width: 16.66667%
  }
  .small--two-sixths {
    width: 33.33333%
  }
  .small--three-sixths {
    width: 50%
  }
  .small--four-sixths {
    width: 66.66667%
  }
  .small--five-sixths {
    width: 83.33333%
  }
  .small--one-eighth {
    width: 12.5%
  }
  .small--two-eighths {
    width: 25%
  }
  .small--three-eighths {
    width: 37.5%
  }
  .small--four-eighths {
    width: 50%
  }
  .small--five-eighths {
    width: 62.5%
  }
  .small--six-eighths {
    width: 75%
  }
  .small--seven-eighths {
    width: 87.5%
  }
  .small--one-tenth {
    width: 10%
  }
  .small--two-tenths {
    width: 20%
  }
  .small--three-tenths {
    width: 30%
  }
  .small--four-tenths {
    width: 40%
  }
  .small--five-tenths {
    width: 50%
  }
  .small--six-tenths {
    width: 60%
  }
  .small--seven-tenths {
    width: 70%
  }
  .small--eight-tenths {
    width: 80%
  }
  .small--nine-tenths {
    width: 90%
  }
  .small--one-twelfth {
    width: 8.33333%
  }
  .small--two-twelfths {
    width: 16.66667%
  }
  .small--three-twelfths {
    width: 25%
  }
  .small--four-twelfths {
    width: 33.33333%
  }
  .small--five-twelfths {
    width: 41.66667%
  }
  .small--six-twelfths {
    width: 50%
  }
  .small--seven-twelfths {
    width: 58.33333%
  }
  .small--eight-twelfths {
    width: 66.66667%
  }
  .small--nine-twelfths {
    width: 75%
  }
  .small--ten-twelfths {
    width: 83.33333%
  }
  .small--eleven-twelfths {
    width: 91.66667%
  }
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--one-eighth:nth-child(8n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1) {
    clear: both
  }
  .small--show {
    display: block!important
  }
  .small--hide {
    display: none!important
  }
  .small--text-left {
    text-align: left!important
  }
  .small--text-right {
    text-align: right!important
  }
  .small--text-center {
    text-align: center!important
  }
}

@media only screen and (min-width:750px) {
  .medium-up--one-whole {
    width: 100%
  }
  .medium-up--one-half {
    width: 50%
  }
  .medium-up--one-third {
    width: 33.33333%
  }
  .medium-up--two-thirds {
    width: 66.66667%
  }
  .medium-up--one-quarter {
    width: 25%
  }
  .medium-up--two-quarters {
    width: 50%
  }
  .medium-up--three-quarters {
    width: 75%
  }
  .medium-up--one-fifth {
    width: 20%
  }
  .medium-up--two-fifths {
    width: 40%
  }
  .medium-up--three-fifths {
    width: 60%
  }
  .medium-up--four-fifths {
    width: 80%
  }
  .medium-up--one-sixth {
    width: 16.66667%
  }
  .medium-up--two-sixths {
    width: 33.33333%
  }
  .medium-up--three-sixths {
    width: 50%
  }
  .medium-up--four-sixths {
    width: 66.66667%
  }
  .medium-up--five-sixths {
    width: 83.33333%
  }
  .medium-up--one-eighth {
    width: 12.5%
  }
  .medium-up--two-eighths {
    width: 25%
  }
  .medium-up--three-eighths {
    width: 37.5%
  }
  .medium-up--four-eighths {
    width: 50%
  }
  .medium-up--five-eighths {
    width: 62.5%
  }
  .medium-up--six-eighths {
    width: 75%
  }
  .medium-up--seven-eighths {
    width: 87.5%
  }
  .medium-up--one-tenth {
    width: 10%
  }
  .medium-up--two-tenths {
    width: 20%
  }
  .medium-up--three-tenths {
    width: 30%
  }
  .medium-up--four-tenths {
    width: 40%
  }
  .medium-up--five-tenths {
    width: 50%
  }
  .medium-up--six-tenths {
    width: 60%
  }
  .medium-up--seven-tenths {
    width: 70%
  }
  .medium-up--eight-tenths {
    width: 80%
  }
  .medium-up--nine-tenths {
    width: 90%
  }
  .medium-up--one-twelfth {
    width: 8.33333%
  }
  .medium-up--two-twelfths {
    width: 16.66667%
  }
  .medium-up--three-twelfths {
    width: 25%
  }
  .medium-up--four-twelfths {
    width: 33.33333%
  }
  .medium-up--five-twelfths {
    width: 41.66667%
  }
  .medium-up--six-twelfths {
    width: 50%
  }
  .medium-up--seven-twelfths {
    width: 58.33333%
  }
  .medium-up--eight-twelfths {
    width: 66.66667%
  }
  .medium-up--nine-twelfths {
    width: 75%
  }
  .medium-up--ten-twelfths {
    width: 83.33333%
  }
  .medium-up--eleven-twelfths {
    width: 91.66667%
  }
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1) {
    clear: both
  }
  .medium-up--show {
    display: block!important
  }
  .medium-up--hide {
    display: none!important
  }
  .medium-up--text-left {
    text-align: left!important
  }
  .medium-up--text-right {
    text-align: right!important
  }
  .medium-up--text-center {
    text-align: center!important
  }
}

@media only screen and (min-width:990px) {
  .large-up--one-whole {
    width: 100%
  }
  .large-up--one-half {
    width: 50%
  }
  .large-up--one-third {
    width: 33.33333%
  }
  .large-up--two-thirds {
    width: 66.66667%
  }
  .large-up--one-quarter {
    width: 25%
  }
  .large-up--two-quarters {
    width: 50%
  }
  .large-up--three-quarters {
    width: 75%
  }
  .large-up--one-fifth {
    width: 20%
  }
  .large-up--two-fifths {
    width: 40%
  }
  .large-up--three-fifths {
    width: 60%
  }
  .large-up--four-fifths {
    width: 80%
  }
  .large-up--one-sixth {
    width: 16.66667%
  }
  .large-up--two-sixths {
    width: 33.33333%
  }
  .large-up--three-sixths {
    width: 50%
  }
  .large-up--four-sixths {
    width: 66.66667%
  }
  .large-up--five-sixths {
    width: 83.33333%
  }
  .large-up--one-eighth {
    width: 12.5%
  }
  .large-up--two-eighths {
    width: 25%
  }
  .large-up--three-eighths {
    width: 37.5%
  }
  .large-up--four-eighths {
    width: 50%
  }
  .large-up--five-eighths {
    width: 62.5%
  }
  .large-up--six-eighths {
    width: 75%
  }
  .large-up--seven-eighths {
    width: 87.5%
  }
  .large-up--one-tenth {
    width: 10%
  }
  .large-up--two-tenths {
    width: 20%
  }
  .large-up--three-tenths {
    width: 30%
  }
  .large-up--four-tenths {
    width: 40%
  }
  .large-up--five-tenths {
    width: 50%
  }
  .large-up--six-tenths {
    width: 60%
  }
  .large-up--seven-tenths {
    width: 70%
  }
  .large-up--eight-tenths {
    width: 80%
  }
  .large-up--nine-tenths {
    width: 90%
  }
  .large-up--one-twelfth {
    width: 8.33333%
  }
  .large-up--two-twelfths {
    width: 16.66667%
  }
  .large-up--three-twelfths {
    width: 25%
  }
  .large-up--four-twelfths {
    width: 33.33333%
  }
  .large-up--five-twelfths {
    width: 41.66667%
  }
  .large-up--six-twelfths {
    width: 50%
  }
  .large-up--seven-twelfths {
    width: 58.33333%
  }
  .large-up--eight-twelfths {
    width: 66.66667%
  }
  .large-up--nine-twelfths {
    width: 75%
  }
  .large-up--ten-twelfths {
    width: 83.33333%
  }
  .large-up--eleven-twelfths {
    width: 91.66667%
  }
  .grid--uniform .large-up--five-tenths:nth-child(2n+1),
  .grid--uniform .large-up--four-eighths:nth-child(2n+1),
  .grid--uniform .large-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .large-up--one-eighth:nth-child(8n+1),
  .grid--uniform .large-up--one-fifth:nth-child(5n+1),
  .grid--uniform .large-up--one-half:nth-child(2n+1),
  .grid--uniform .large-up--one-quarter:nth-child(4n+1),
  .grid--uniform .large-up--one-sixth:nth-child(6n+1),
  .grid--uniform .large-up--one-third:nth-child(3n+1),
  .grid--uniform .large-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .large-up--six-twelfths:nth-child(2n+1),
  .grid--uniform .large-up--three-sixths:nth-child(2n+1),
  .grid--uniform .large-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .large-up--two-eighths:nth-child(4n+1),
  .grid--uniform .large-up--two-sixths:nth-child(3n+1),
  .grid--uniform .large-up--two-twelfths:nth-child(6n+1) {
    clear: both
  }
  .large-up--show {
    display: block!important
  }
  .large-up--hide {
    display: none!important
  }
  .large-up--text-left {
    text-align: left!important
  }
  .large-up--text-right {
    text-align: right!important
  }
  .large-up--text-center {
    text-align: center!important
  }
}

@media only screen and (max-width:749px) {
  .small--push-one-half {
    left: 50%
  }
  .small--push-one-third {
    left: 33.33333%
  }
  .small--push-two-thirds {
    left: 66.66667%
  }
  .small--push-one-quarter {
    left: 25%
  }
  .small--push-two-quarters {
    left: 50%
  }
  .small--push-three-quarters {
    left: 75%
  }
  .small--push-one-fifth {
    left: 20%
  }
  .small--push-two-fifths {
    left: 40%
  }
  .small--push-three-fifths {
    left: 60%
  }
  .small--push-four-fifths {
    left: 80%
  }
  .small--push-one-sixth {
    left: 16.66667%
  }
  .small--push-two-sixths {
    left: 33.33333%
  }
  .small--push-three-sixths {
    left: 50%
  }
  .small--push-four-sixths {
    left: 66.66667%
  }
  .small--push-five-sixths {
    left: 83.33333%
  }
  .small--push-one-eighth {
    left: 12.5%
  }
  .small--push-two-eighths {
    left: 25%
  }
  .small--push-three-eighths {
    left: 37.5%
  }
  .small--push-four-eighths {
    left: 50%
  }
  .small--push-five-eighths {
    left: 62.5%
  }
  .small--push-six-eighths {
    left: 75%
  }
  .small--push-seven-eighths {
    left: 87.5%
  }
  .small--push-one-tenth {
    left: 10%
  }
  .small--push-two-tenths {
    left: 20%
  }
  .small--push-three-tenths {
    left: 30%
  }
  .small--push-four-tenths {
    left: 40%
  }
  .small--push-five-tenths {
    left: 50%
  }
  .small--push-six-tenths {
    left: 60%
  }
  .small--push-seven-tenths {
    left: 70%
  }
  .small--push-eight-tenths {
    left: 80%
  }
  .small--push-nine-tenths {
    left: 90%
  }
  .small--push-one-twelfth {
    left: 8.33333%
  }
  .small--push-two-twelfths {
    left: 16.66667%
  }
  .small--push-three-twelfths {
    left: 25%
  }
  .small--push-four-twelfths {
    left: 33.33333%
  }
  .small--push-five-twelfths {
    left: 41.66667%
  }
  .small--push-six-twelfths {
    left: 50%
  }
  .small--push-seven-twelfths {
    left: 58.33333%
  }
  .small--push-eight-twelfths {
    left: 66.66667%
  }
  .small--push-nine-twelfths {
    left: 75%
  }
  .small--push-ten-twelfths {
    left: 83.33333%
  }
  .small--push-eleven-twelfths {
    left: 91.66667%
  }
}

@media only screen and (min-width:750px) {
  .medium-up--push-one-half {
    left: 50%
  }
  .medium-up--push-one-third {
    left: 33.33333%
  }
  .medium-up--push-two-thirds {
    left: 66.66667%
  }
  .medium-up--push-one-quarter {
    left: 25%
  }
  .medium-up--push-two-quarters {
    left: 50%
  }
  .medium-up--push-three-quarters {
    left: 75%
  }
  .medium-up--push-one-fifth {
    left: 20%
  }
  .medium-up--push-two-fifths {
    left: 40%
  }
  .medium-up--push-three-fifths {
    left: 60%
  }
  .medium-up--push-four-fifths {
    left: 80%
  }
  .medium-up--push-one-sixth {
    left: 16.66667%
  }
  .medium-up--push-two-sixths {
    left: 33.33333%
  }
  .medium-up--push-three-sixths {
    left: 50%
  }
  .medium-up--push-four-sixths {
    left: 66.66667%
  }
  .medium-up--push-five-sixths {
    left: 83.33333%
  }
  .medium-up--push-one-eighth {
    left: 12.5%
  }
  .medium-up--push-two-eighths {
    left: 25%
  }
  .medium-up--push-three-eighths {
    left: 37.5%
  }
  .medium-up--push-four-eighths {
    left: 50%
  }
  .medium-up--push-five-eighths {
    left: 62.5%
  }
  .medium-up--push-six-eighths {
    left: 75%
  }
  .medium-up--push-seven-eighths {
    left: 87.5%
  }
  .medium-up--push-one-tenth {
    left: 10%
  }
  .medium-up--push-two-tenths {
    left: 20%
  }
  .medium-up--push-three-tenths {
    left: 30%
  }
  .medium-up--push-four-tenths {
    left: 40%
  }
  .medium-up--push-five-tenths {
    left: 50%
  }
  .medium-up--push-six-tenths {
    left: 60%
  }
  .medium-up--push-seven-tenths {
    left: 70%
  }
  .medium-up--push-eight-tenths {
    left: 80%
  }
  .medium-up--push-nine-tenths {
    left: 90%
  }
  .medium-up--push-one-twelfth {
    left: 8.33333%
  }
  .medium-up--push-two-twelfths {
    left: 16.66667%
  }
  .medium-up--push-three-twelfths {
    left: 25%
  }
  .medium-up--push-four-twelfths {
    left: 33.33333%
  }
  .medium-up--push-five-twelfths {
    left: 41.66667%
  }
  .medium-up--push-six-twelfths {
    left: 50%
  }
  .medium-up--push-seven-twelfths {
    left: 58.33333%
  }
  .medium-up--push-eight-twelfths {
    left: 66.66667%
  }
  .medium-up--push-nine-twelfths {
    left: 75%
  }
  .medium-up--push-ten-twelfths {
    left: 83.33333%
  }
  .medium-up--push-eleven-twelfths {
    left: 91.66667%
  }
}


/*================ #Helper Classes ================*/
.clearfix::after {
   content: '';
   display: table;
   clear: both;
}
 .icon__fallback-text, .visually-hidden {
   position: absolute !important;
   overflow: hidden;
   clip: rect(0 0 0 0);
   height: 1px;
   width: 1px;
   margin: -1px;
   padding: 0;
   border: 0;
}
 .visibility-hidden {
   visibility: hidden;
}
 .js-focus-hidden:focus {
   outline: none;
}
 .no-js:not(html) {
   display: none;
}
 .no-js .no-js:not(html) {
   display: block;
}
 .no-js .js {
   display: none;
}
 .hide {
   display: none !important;
}
 

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #3d4246;
  background-color: #ffffff;
  padding: 10px;
  opacity: 1;
  z-index: 1000;
  transition: none;
}

/*=============== Lazy loading ===================*/
.box {
   background: no-repeat;
   background-color: #f7f7f7;
   background-size: contain;
}
 .ratio-container {
   position: relative;
}
 .ratio-container:after {
   content: '';
   display: block;
   height: 0;
   width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
   padding-bottom: 50%;
   content: "";
}
 .ratio-container > * {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
 
/*================ #Basic Styles ================*/
body, html {
   background-color: #fff;
}
 .page-width::after {
   content: '';
   display: table;
   clear: both;
}
 .page-width {
   max-width: 1392px;
   margin: 0 auto;
}
 @media (max-width: 1499px) {
   .page-width {
     max-width: 1200px;
  }
}
 @media (max-width: 1199px) {
   .page-width {
     max-width: 940px;
  }
}
 @media (max-width: 991px) {
   .page-width {
     max-width: 720px;
  }
}
 @media (max-width: 767px) {
   .page-width {
     max-width: 576px;
  }
}
 @media (max-width: 543px) {
   .page-width {
     max-width: auto;
  }
}
 .row {
   margin-left: -15px;
   margin-right: -15px;
}
 .main-content {
   display: block;
   overflow: hidden;
   min-height: 400px;
}
 .template-cart .main-content {
   margin-bottom: 30px;
}
 
.section-header .seperator {
	 height: 20px;
	 width: 100%;
	 text-align: center;
	 background-repeat: no-repeat;
	 background-position: center;
}
 .section-header > h2 {
	 position: relative;
	 text-align: center;
	 text-transform: unset;
	 font-family: var(--secondary-font);
	 font-size: 34px;
	 color: var(--brand-third);
	 margin-bottom: 30px;
	 font-weight: 600;
}
 @media (max-width: 991px) {
	 .section-header > h2 {
		/* If media is below 992 */
		 font-size: 24px;
		 line-height: 26px;
		 margin-bottom: 20px;
	}
}
 
 
.nav-tabs {
   border-bottom: none;
}
 .nav-tabs > li.active > a {
   border-color: transparent;
}
 .nav-tabs > li.active > a:hover {
   background: transparent;
   border-color: transparent;
}
 .nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
   background: transparent;
   border-color: transparent;
   outline: none;
}
 
/*================ Typography ================*/
blockquote {
   font-size: 1.28571em;
   font-style: normal;
   text-align: center;
   padding: 0 30px;
   margin: 0;
}
 .rte blockquote {
   border-color: #e8e9eb;
   border-width: 1px 0;
   border-style: solid;
   padding: 30px 0;
   margin-bottom: 27.5px;
}
 blockquote p + cite {
   margin-top: 27.5px;
}
 blockquote cite {
   display: block;
   font-size: 0.85em;
   font-weight: 400;
}
 blockquote cite::before {
   content: '\2014 \0020';
}
 code, pre {
   font-family: Consolas, monospace;
   font-size: 1em;
}
 pre {
   overflow: auto;
}

 body, input, textarea, button, select {
   font-size: 14px;
   font-family: var(--primary-font);
   color: #232323;
   font-weight: 400;
   line-height: 1.25em;
   letter-spacing: 0.1px;
}
body {
	 font-family: var(--primary-font);
	 font-size: 14px;
	 font-weight: 400;
	 -webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
	 color: #232323;
	 line-height: 1.25em;
	 letter-spacing: 0.5px;
}
 @media (min-width: 992px) {
	 body {
		 padding: 50px 0;
	}
}
 @media screen and (min-width: 992px) and (min-width: 992px) and (max-width: 1670px) {
	 body {
		 padding: 0;
	}
}
 body > main {
	 width: 1620px;
	 max-width: 100%;
	 margin: 0 auto;
	 background: #fff;
	 box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.2);
}

 
/*================ Headings ================*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 17.5px;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word
}

.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit
}

a:hover {
  color: #232323
}

.h1,
h1 {
  font-size: 2.28571em;
  text-transform: none;
  letter-spacing: 0
}

@media only screen and (max-width:749px) {
  .h1,
  h1 {
    font-family: "Bodoni";
    font-weight: 400;
    font-size: 2.14286em
  }
}

.h2,
h2 {
  font-size: 1.28571em;
  text-transform: uppercase;
  letter-spacing: .5px
}

@media only screen and (max-width:749px) {
  .h2,
  h2 {
    font-size: 1.14286em
  }
}

.h3,
h3 {
  font-size: 1.71429em;
  text-transform: none;
  letter-spacing: 0
}

@media only screen and (max-width:749px) {
  .h3,
  h3 {
    font-size: 1.28571em
  }
}

.h4,
h4 {
  font-size: 1.14286em
}

@media only screen and (max-width:749px) {
  .h4,
  h4 {
    font-size: 1em
  }
}

.h5,
h5 {
  font-size: .92857em
}

@media only screen and (max-width:749px) {
  .h5,
  h5 {
    font-size: .85714em
  }
}

.h6,
h6 {
  font-size: .85714em
}

@media only screen and (max-width:749px) {
  .h6,
  h6 {
    font-family: "bodoni";
    font-size: .78571em
  }
}
/*================ RTE headings ================*/
.rte {
  color: #788188;
  margin-bottom: 35px
}

.rte:last-child {
  margin-bottom: 0
}

.rte .h1,
.rte .h2,
.rte .h3,
.rte .h4,
.rte .h5,
.rte .h6,
.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5,
.rte h6 {
  margin-top: 55px;
  margin-bottom: 27.5px
}

.rte .h1:first-child,
.rte .h2:first-child,
.rte .h3:first-child,
.rte .h4:first-child,
.rte .h5:first-child,
.rte .h6:first-child,
.rte h1:first-child,
.rte h2:first-child,
.rte h3:first-child,
.rte h4:first-child,
.rte h5:first-child,
.rte h6:first-child {
  margin-top: 0
}

.rte li {
  margin-bottom: 4px;
  list-style: inherit
}

.rte li:last-child {
  margin-bottom: 0
}

.rte-setting {
  margin-bottom: 19.44444px
}

.rte-setting:last-child {
  margin-bottom: 0
}
/*================ Paragraph styles ================*/
p {
  margin: 0 0 19.4444444444px;
  font-size: 15px;
  font-weight: 500;
  color: #787878;
  letter-spacing: .5px;
  line-height: 24px;
}
 @media (max-width: 749px) {
   p {
     font-size: 0.92857em;
  }
}
 p:last-child {
   margin-bottom: 0;
}
 
/*================ Lists ================*/
li {
  list-style: none;
}

/*================ Misc styles ================*/
.fine-print {
   font-size: 1em;
   font-style: italic;
}
 .txt--minor {
   font-size: 80%;
}
 .txt--emphasis {
   font-style: italic;
}
 .address {
   margin-bottom: 55px;
}
 
/*================ #Icons ================*/
.icon {
   display: inline-block;
   vertical-align: middle;
}
 .no-svg .icon {
   display: none;
}
 svg.icon:not(.icon--full-color) circle, symbol.icon:not(.icon--full-color) circle, svg.icon:not(.icon--full-color) ellipse, symbol.icon:not(.icon--full-color) ellipse, svg.icon:not(.icon--full-color) g, symbol.icon:not(.icon--full-color) g, svg.icon:not(.icon--full-color) line, symbol.icon:not(.icon--full-color) line, svg.icon:not(.icon--full-color) path, symbol.icon:not(.icon--full-color) path, svg.icon:not(.icon--full-color) polygon, symbol.icon:not(.icon--full-color) polygon, svg.icon:not(.icon--full-color) polyline, symbol.icon:not(.icon--full-color) polyline, svg.icon:not(.icon--full-color) rect, symbol.icon:not(.icon--full-color) rect {
   fill: inherit;
   stroke: inherit;
}
/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/

.icon__fallback-text, .visually-hidden {
   position: absolute !important;
   overflow: hidden;
   clip: rect(0 0 0 0);
   height: 1px;
   width: 1px;
   margin: -1px;
   padding: 0;
   border: 0;
}
 .no-svg .icon__fallback-text, .no-svg .visually-hidden {
   position: static !important;
   overflow: inherit;
   clip: none;
   height: auto;
   width: auto;
   margin: 0;
}
/*================ header ================*/
 .breadcrumb-container {
	 padding: 60px 0;
	 background-attachment: fixed;
	 background-size: cover;
	 background-position: center;
	 background-repeat: no-repeat;
	 overflow: hidden;
	 width: 100%;
	 display: block;
}
 @media (max-width: 991px) {
	 .breadcrumb-container {
		 padding: 40px 0;
		 background: #f5f5f5;
		 background-image: none !important;
	}
}
 .breadcrumbs {
	 text-align: center;
	 color: var(--breadcrumb-color);
}
 @media (max-width: 991px) {
	 .breadcrumbs {
		 color: #232323;
	}
}
 .breadcrumbs h3 {
	 font-size: 22px;
	 line-height: normal;
	 margin-bottom: 14px;
	 color: var(--breadcrumb-color);
	 font-weight: 500;
	 text-transform: capitalize;
	 letter-spacing: 0.5px;
	 font-family: var(--primary-font);
}
 @media (max-width: 991px) {
	 .breadcrumbs h3 {
		 color: #232323;
	}
}
 .breadcrumbs a {
	 color: var(--breadcrumb-color);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
}
 @media (max-width: 991px) {
	 .breadcrumbs a {
		 color: #232323;
	}
}
 .breadcrumbs a:hover {
	 color: var(--breadcrumb-color);
}
 @media (max-width: 991px) {
	 .breadcrumbs a:hover {
		 color: #232323;
	}
}
 .breadcrumbs .divider {
	 margin: 0 4px;
}
 /*================ Pagination ================*/
 .pagination .pagination__text {
	 line-height: 50px;
	 font-size: 14px;
	 color: #333;
	 font-weight: 400;
}
 @media (max-width: 767px) {
	 .pagination .pagination__text {
		/* If media is below 768 */
		 text-align: center;
		 margin-bottom: 10px;
		 line-height: 40px;
	}
}
 .pagination .page-view {
	 float: right;
	 text-align: right;
	 padding-top: 6px;
}
 @media (max-width: 767px) {
	 .pagination .page-view {
		/* If media is below 768 */
		 text-align: center;
		 padding-top: 0px;
		 margin-bottom: 10px;
	}
}
 .pagination .page-view > div {
	 display: inline-block;
	 vertical-align: middle;
	 text-align: center;
}
 .pagination .page-view .btn, .pagination .page-view a, .pagination .page-view span {
	 font-weight: 400;
	 border: 1px solid #eee;
	 width: 35px;
	 height: 35px;
	 padding: 5px;
	 display: inline-block;
	 background-color: #fff;
	 color: #232323;
	 border-radius: 0;
	 line-height: 24px;
}
 .pagination .page-view .btn:hover, .pagination .page-view a:hover, .pagination .page-view span:hover {
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
}
 .pagination .page-view b {
	 font-weight: 400;
}
 .pagination .page-view .current {
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 cursor: not-allowed;
}
 .cart-img.ajax-cart {
	 left: 35%;
	 position: relative;
	 top: -5px;
}
 .nav-item {
	 display: inline-block;
	 padding: 0 20px;
}
 /*================ Product-page ================*/
 .list__item .grid-view-item__title {
	 font-size: 18px;
	 margin-bottom: 10px;
}
 .list__item .grid-view-item__title .spr-badge {
	 margin-bottom: 10px;
}
 .list__item .grid-view-item__title .product-desc {
	 margin-bottom: 10px;
}
 .list__item .product-desc {
	 display: block !important;
}
 .list__item .grid-view-item__link {
	 display: block;
	 position: relative;
	 width: 100%;
	 height: 100%;
	 float: left;
	 margin-bottom: 30px;
}
 .list__item .grid-view-item {
	 padding: 0;
	 position: relative;
	 width: 100%;
	 overflow: hidden;
}
 .list__item .grid-view-item .grid-view-item__image-wrapper:after {
	 display: none !important;
}
 .list__item .product-detail {
	 text-align: left;
}
 @media (max-width: 767px) {
	 .list__item .product-detail {
		 text-align: center;
	}
}
 .grid-img {
	 background-image: url(//montancesguitarwiring.com/cdn/shop/t/8/assets/grid-list-sprite.png?v=9321474455035195301759193343);
	 height: 22px;
	 width: 22px;
	 content: "";
	 background-position: 0 0;
	 display: inline-block;
	 -webkit-transition: all 0.3s ease 0s;
	 -moz-transition: all 0.3s ease 0s;
	 -ms-transition: all 0.3s ease 0s;
	 -o-transition: all 0.3s ease 0s;
	 transition: all 0.3s ease 0s;
	 margin: 1px;
	 cursor: pointer;
	 background-repeat: no-repeat;
	 vertical-align: middle;
}
 .grid-img:hover, .grid-img.checked {
	 background-position: 0 -33px;
}
 .list-img {
	 background-image: url(//montancesguitarwiring.com/cdn/shop/t/8/assets/grid-list-sprite.png?v=9321474455035195301759193343);
	 height: 22px;
	 width: 22px;
	 content: "";
	 background-position: -36px 1px;
	 display: inline-block;
	 -webkit-transition: all 0.3s ease 0s;
	 -moz-transition: all 0.3s ease 0s;
	 -ms-transition: all 0.3s ease 0s;
	 -o-transition: all 0.3s ease 0s;
	 transition: all 0.3s ease 0s;
	 cursor: pointer;
	 margin: 1px;
	 background-repeat: no-repeat;
	 vertical-align: middle;
}
 .list-img:hover, .list-img.checked {
	 background-position: -36px -33px;
}
 .related .grid__item {
	 width: 100%;
}
 /*================ product page navigation ================*/
 .template-product .thumbnails-wrapper {
	 margin-top: 15px;
}
 @media (max-width: 991px) {
	 .template-product .thumbnails-wrapper {
		/* If media is below 992 */
		 margin-bottom: 15px;
	}
}
 .template-product .thumbnails-wrapper .js-qv-mask {
	 white-space: nowrap;
	 padding: 0 15px 0px;
}
 .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails {
	 margin-top: 0;
	 margin-bottom: 0;
}
 .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails .product-single__thumbnails-item {
	 padding: 0;
	 border: medium none;
	 margin: 0 1px;
}
 .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails a {
	 margin: 0;
	 border: medium none;
}
 .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails a img, .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails a video {
	 border: 1px solid #eee;
}
 .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails a .product-single__thumbnail-badge {
	 width: 20px;
	 height: 20px;
	 position: absolute;
	 right: 6px;
	 top: 6px;
	 pointer-events: none;
	 fill: #fff;
	 stroke: rgba(0, 0, 0, 0.05);
}
 .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails a .product-single__thumbnail-badge .icon-video-badge-full-color-element, .template-product .thumbnails-wrapper .js-qv-mask .product-single__thumbnails a .product-single__thumbnail-badge .icon-3d-badge-full-color-element {
	 fill: #3a3a3a;
}
 .template-product .thumbnails-wrapper .js-qv-mask .owl-nav {
	 margin-top: 0;
}
 .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-prev, .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-next {
	 left: -18px;
	 right: auto;
	 top: 40%;
	 height: 30px;
	 width: 30px;
	 position: absolute;
}
 @media (max-width: 991px) {
	 .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-prev, .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-next {
		 top: 37%;
	}
}
 @media (max-width: 767px) {
	 .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-prev, .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-next {
		 top: 40%;
	}
}
 @media (max-width: 400px) {
	 .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-prev, .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-next {
		 top: 37%;
	}
}
 .template-product .thumbnails-wrapper .js-qv-mask .owl-nav .owl-next {
	 right: -18px;
	 left: auto;
}
 /*================ Collection block ================*/
 #collection-carousel .grid__item {
	 width: 100%;
	 padding: 15px 15px 0;
}
 /*================ Social Icons ================*/
.social-icons .icon {
   width: 23px;
   height: 23px;
}
 @media (min-width: 750px) {
   .social-icons .icon {
     width: 25px;
     height: 25px;
  }
}
 .social-icons .icon.icon--wide {
   width: 40px;
}
/*================ #Lists ================*/
ul, ol {
   margin: 0;
   padding: 0;
}
 ol {
   list-style: decimal;
}
 .list--inline {
   padding: 0;
   margin: 0;
}
 .list--inline li {
   display: inline-block;
   margin-bottom: 0;
   vertical-align: middle;
}
 .list-view-items .flags, .list-view-items .sca-qv-button {
   display: none !important;
}
 
 .login-page {
	 margin: 0 auto 30px;
	 float: none;
}
 .template-customers-login #customer_login h1, .template-customers-register #customer_login h1, .template-customers-login #create_customer h1, .template-customers-register #create_customer h1 {
	 font-size: 26px;
	 font-weight: 500;
}
 .template-customers-login #customer_login .js-address-form label, .template-customers-register #customer_login .js-address-form label, .template-customers-login #create_customer .js-address-form label, .template-customers-register #create_customer .js-address-form label {
	 display: none;
}
 .template-customers-login #customer_login .js-address-form input, .template-customers-register #customer_login .js-address-form input, .template-customers-login #create_customer .js-address-form input, .template-customers-register #create_customer .js-address-form input {
	 padding: 13px 18px;
	 border: 1px solid #eee;
	 border-radius: 30px;
	 height: 45px;
	 margin-bottom: 10px;
}
 .template-customers-login #customer_login .js-address-form input::-moz-placeholder, .template-customers-register #customer_login .js-address-form input::-moz-placeholder, .template-customers-login #create_customer .js-address-form input::-moz-placeholder, .template-customers-register #create_customer .js-address-form input::-moz-placeholder {
	 color: #a6a6a6;
	 opacity: 1;
}
 .template-customers-login #customer_login .js-address-form input::-web-placeholder, .template-customers-register #customer_login .js-address-form input::-web-placeholder, .template-customers-login #create_customer .js-address-form input::-web-placeholder, .template-customers-register #create_customer .js-address-form input::-web-placeholder {
	 color: #a6a6a6;
	 opacity: 1;
}
 .template-customers-login #customer_login .js-address-form input::-os-placeholder, .template-customers-register #customer_login .js-address-form input::-os-placeholder, .template-customers-login #create_customer .js-address-form input::-os-placeholder, .template-customers-register #create_customer .js-address-form input::-os-placeholder {
	 color: #a6a6a6;
	 opacity: 1;
}
 .template-customers-login #customer_login .js-address-form input::placeholder, .template-customers-register #customer_login .js-address-form input::placeholder, .template-customers-login #create_customer .js-address-form input::placeholder, .template-customers-register #create_customer .js-address-form input::placeholder {
	 color: #a6a6a6;
	 opacity: 1;
}
 .template-customers-login #customer_login .js-address-form input:focus, .template-customers-register #customer_login .js-address-form input:focus, .template-customers-login #create_customer .js-address-form input:focus, .template-customers-register #create_customer .js-address-form input:focus, .template-customers-login #customer_login .js-address-form input:hover, .template-customers-register #customer_login .js-address-form input:hover, .template-customers-login #create_customer .js-address-form input:hover, .template-customers-register #create_customer .js-address-form input:hover {
	 background-color: #fff;
}
 .template-customers-login #customer_login .js-address-form input.btn, .template-customers-register #customer_login .js-address-form input.btn, .template-customers-login #create_customer .js-address-form input.btn, .template-customers-register #create_customer .js-address-form input.btn {
	 display: block;
	 float: none;
	 border: 1px solid var(--button-bg-color);
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 width: 100%;
	 font-size: 18px;
	 font-weight: 300;
	 height: auto;
	 line-height: 22px;
	 margin-bottom: 34px;
     border-radius: 30px;
}
 .template-customers-login #customer_login .js-address-form input.btn:hover, .template-customers-register #customer_login .js-address-form input.btn:hover, .template-customers-login #create_customer .js-address-form input.btn:hover, .template-customers-register #create_customer .js-address-form input.btn:hover, .template-customers-login #customer_login .js-address-form input.btn:focus, .template-customers-register #customer_login .js-address-form input.btn:focus, .template-customers-login #create_customer .js-address-form input.btn:focus, .template-customers-register #create_customer .js-address-form input.btn:focus {
	 background-color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
	 color: var(--button-text-hover-color);
}
 .template-customers-login #customer_login .js-address-form .forgot, .template-customers-register #customer_login .js-address-form .forgot, .template-customers-login #create_customer .js-address-form .forgot, .template-customers-register #create_customer .js-address-form .forgot {
	 float: right;
	 display: block;
}
 .template-customers-login #customer_login .js-address-form .forgot #RecoverPassword, .template-customers-register #customer_login .js-address-form .forgot #RecoverPassword, .template-customers-login #create_customer .js-address-form .forgot #RecoverPassword, .template-customers-register #create_customer .js-address-form .forgot #RecoverPassword {
	 font-size: 13px;
	 font-weight: 400;
	 color: #333;
}
 .template-customers-login #customer_login .js-address-form .new-account, .template-customers-register #customer_login .js-address-form .new-account, .template-customers-login #create_customer .js-address-form .new-account, .template-customers-register #create_customer .js-address-form .new-account {
	 font-size: 13px;
	 font-weight: 400;
	 letter-spacing: 0.3px;
	 text-align: center;
}
 .template-customers-login #customer_login .js-address-form .new-account a, .template-customers-register #customer_login .js-address-form .new-account a, .template-customers-login #create_customer .js-address-form .new-account a, .template-customers-register #create_customer .js-address-form .new-account a {
	 color: #232323;
}
 .template-customers-login #customer_login .js-address-form .new-account a:hover, .template-customers-register #customer_login .js-address-form .new-account a:hover, .template-customers-login #create_customer .js-address-form .new-account a:hover, .template-customers-register #create_customer .js-address-form .new-account a:hover {
	 color: #333;
}
 .template-customers-login #customer_login .js-address-form .new-account span, .template-customers-register #customer_login .js-address-form .new-account span, .template-customers-login #create_customer .js-address-form .new-account span, .template-customers-register #create_customer .js-address-form .new-account span {
	 color: #777;
}
 @media (max-width: 991px) {
	 .template-customers-account .page-container #MainContent .normal_main_content {
		 margin-bottom: 30px;
	}
}
 /*================ #Rich Text Editor ================*/
.rte img {
   height: auto;
}
 .rte table {
   table-layout: fixed;
}
 .rte ul, .rte ol {
   margin: 0 0 17.5px 35px;
}
 .rte ul.list--inline, .rte ol.list--inline {
   margin-left: 0;
}
 .rte ul {
   list-style: disc outside;
}
 .rte ul ul {
   list-style: circle outside;
}
 .rte ul ul ul {
   list-style: square outside;
}
 .rte a:not(.btn) {
   border-bottom: 1px solid currentColor;
   padding-bottom: 1px;
}
 .text-center.rte ul, .text-center .rte ul, .text-center.rte ol, .text-center .rte ol {
   margin-left: 0;
   list-style-position: inside;
}
 .rte__table-wrapper {
   max-width: 100%;
   overflow: auto;
   -webkit-overflow-scrolling: touch;
}

/*================ #Links and Buttons ================*/
a {
   color: #3d4246;
   text-decoration: none;
}
 a.classic-link {
   text-decoration: underline;
}
/*================ Buttons ================*/
 .btn {
	 -moz-user-select: none;
	 -ms-user-select: none;
	 -webkit-user-select: none;
	 user-select: none;
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
	 display: inline-block;
	 width: auto;
	 text-decoration: none;
	 text-align: center;
	 vertical-align: middle;
	 cursor: pointer;
	 padding: 8px 15px;
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 border: 1px solid var(--button-bg-color);
	 font-family: var(--primary-font);
	 border-radius: 30px;
	 text-transform: uppercase;
	 white-space: normal;
	 font-size: 14px;
	 letter-spacing: 0.5px;
	 font-weight: 400;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
	 outline: none;
}
 .btn svg {
	 fill: var(--button-text-color);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .btn:hover, .btn:focus, .btn.focus, .btn:active {
	 color: var(--button-text-hover-color);
	 background-color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
}
 .btn:hover svg, .btn:focus svg, .btn.focus svg, .btn:active svg {
	 fill: var(--button-text-hover-color);
}
 .btn:active:focus, .btn:active:hover {
	 color: var(--button-text-hover-color);
	 background-color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
}
 .btn:active:focus svg, .btn:active:hover svg {
	 fill: var(--button-text-hover-color);
}
 .btn .icon-arrow-right, .btn .icon-arrow-left {
	 height: 9px;
}
 .btn[disabled] {
	 cursor: default;
	 opacity: 0.5;
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 border-color: var(--button-bg-color);
}
 .btn[disabled]:hover {
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 border-color: var(--button-bg-color);
}
 .btn--small {
   font-family: var(--primary-font);
   padding: 8px 10px;
   font-size: 0.85714em;
   line-height: 1;
}
 .product-form__item--submit a.sold-out {
   cursor: not-allowed;
}
/*================ Button variations ================*/
 @media (max-width: 749px) {
   .btn--small-wide {
     padding-left: 50px;
     padding-right: 50px;
  }
}
 .btn--link {
   background-color: transparent;
   border: 0;
   margin: 0;
   color: #232323;
   text-align: left;
}
 .btn--link:hover, .btn--link:focus {
   opacity: 0.6;
}
 .btn--link .icon {
   vertical-align: middle;
}
 .btn--narrow {
   padding-left: 15px;
   padding-right: 15px;
}
 .btn--disabled {
   opacity: 0.5;
   cursor: default;
}
 .btn--disabled:hover, .btn--disabled:focus {
   opacity: 0.5;
}
 .btn--has-icon-after .icon {
   margin-left: 10px;
}
 .btn--has-icon-before .icon {
   margin-right: 10px;
}
 
/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0;
}

/*================ Return to collection/blog links ================*/
.return-link-wrapper {
   margin: 0 auto;
}
 .return-link-wrapper a {
   margin: 10px 0;
  }
 
 @media (max-width: 749px) {
   .return-link-wrapper .btn {
     display: inline-block;
  }
}

/*================ #Tables ================*/
table {
  margin-bottom: 55px / 2;
}

th {
  font-family: var(--primary-font);
  font-weight: 700;
}

th,
td {
  text-align: left;
  border: 1px solid #e8e9eb;
  padding: 10px 14px;
}


/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media (max-width: 749px) {
   .responsive-table thead {
     display: none;
  }
   .responsive-table tr {
     display: block;
  }
   .responsive-table tr, .responsive-table td {
     float: left;
     width: 100%;
  }
   .responsive-table th, .responsive-table td {
     display: block;
     text-align: right;
     border: 1px solid #e8e9eb;
     padding: 10px 14px;
     margin: 0;
  }
   .responsive-table td::before {
     content: attr(data-label);
     float: left;
     text-align: left;
     font-size: 14px;
     padding-right: 10px;
  }
   .responsive-table__row + .responsive-table__row, tfoot > .responsive-table__row:first-child {
     position: relative;
     margin-top: 10px;
     padding-top: 55px;
  }
   .responsive-table__row + .responsive-table__row::after, tfoot > .responsive-table__row:first-child::after {
     content: '';
     display: block;
     position: absolute;
     top: 20px;
     left: 27.5px;
     right: 27.5px;
     border-bottom: 1px solid #e8e9eb;
  }
}
/*================ #Images and Iframes ================*/
svg:not(:root) {
   overflow: hidden;
}
 .video-wrapper {
   position: relative;
   overflow: hidden;
   max-width: 100%;
   padding-bottom: 56.25%;
   height: 0;
   height: auto;
}
 .video-wrapper iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
/*================ Forms ================*/
form {
   margin: 0;
}
 fieldset {
   border: 1px solid #e8e9eb;
   margin: 0 0 55px;
   padding: 27.5px;
}
 legend {
   border: 0;
   padding: 0;
}
 button {
   cursor: pointer;
}
 input[type="submit"] {
   cursor: pointer;
}
 label {
   display: block;
   margin-bottom: 5px;
}
 @media (max-width: 749px) {
   label {
     font-size: 0.85714em;
  }
}
 [type="radio"] + label, [type="checkbox"] + label {
   display: inline-block;
   margin-bottom: 0;
}
 label[for] {
   cursor: pointer;
}
 input, textarea, select {
   border: 1px solid rgba(0, 0, 0, 0.1);
   background-color: #fff;
   color: #232323;
   max-width: 100%;
   line-height: 1.2;
   border-radius:30px;
}

 input[disabled], textarea[disabled], select[disabled] {
   cursor: default;
   background-color: #f4f4f4;
   border-color: #f4f4f4;
}
 input.input--error::-webkit-input-placeholder, textarea.input--error::-webkit-input-placeholder, select.input--error::-webkit-input-placeholder {
   color: #d20000;
   opacity: 0.5;
}
 input.input--error::-moz-placeholder, textarea.input--error::-moz-placeholder, select.input--error::-moz-placeholder {
   color: #d20000;
   opacity: 0.5;
}
 input.input--error:-ms-input-placeholder, textarea.input--error:-ms-input-placeholder, select.input--error:-ms-input-placeholder {
   color: #d20000;
   opacity: 0.5;
}
 input.input--error::-ms-input-placeholder, textarea.input--error::-ms-input-placeholder, select.input--error::-ms-input-placeholder {
   color: #d20000;
   opacity: 1;
}
 input.hidden-placeholder::-webkit-input-placeholder, textarea.hidden-placeholder::-webkit-input-placeholder, select.hidden-placeholder::-webkit-input-placeholder {
   color: transparent;
}
 input.hidden-placeholder::-moz-placeholder, textarea.hidden-placeholder::-moz-placeholder, select.hidden-placeholder::-moz-placeholder {
   color: transparent;
}
 input.hidden-placeholder:-ms-input-placeholder, textarea.hidden-placeholder:-ms-input-placeholder, select.hidden-placeholder:-ms-input-placeholder {
   color: transparent;
}
 input.hidden-placeholder::-ms-input-placeholder, textarea.hidden-placeholder::-ms-input-placeholder, select.hidden-placeholder::-ms-input-placeholder {
   opacity: 1;
}
 textarea {
   min-height: 100px;
}
 
/*================ Error styles ================*/
input.input--error, select.input--error, textarea.input--error {
   background-color: #fff8f8;
   color: #d20000;
}
 select {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   line-height: 1.2;
   padding-right: 15px;
   text-indent: 0.01px;
   text-overflow: '';
   cursor: pointer;
   padding-top: 8px;
   padding-left: 15px;
   padding-bottom: 8px;
}
 @media (min-width: 750px) {
   select {
     padding-top: 10px;
     padding-left: 15px;
     padding-bottom: 10px;
  }
}
 .ie9 select {
   padding-right: 10px;
   background-image: none;
}
 optgroup {
   font-weight: 700;
}
 option {
   color: #3d4246;
   background-color: #fff;
}
 select::-ms-expand {
   display: none;
}
 
/*================ Form labels ================*/
.label--hidden {
   position: absolute;
   height: 0;
   width: 0;
   margin-bottom: 0;
   overflow: hidden;
   clip: rect(1px, 1px, 1px, 1px);
}
 .ie9 .label--hidden {
   position: static;
   height: auto;
   width: auto;
   margin-bottom: 2px;
   overflow: visible;
   clip: initial;
}
 

::-webkit-input-placeholder {
  color:#232323;
  opacity:.6;
}

::-moz-placeholder {
  color:#232323;
  opacity:.6;
}

:-ms-input-placeholder {
    color:#232323;
  opacity:.6;
}

::-ms-input-placeholder {
   color:#232323;
  opacity:1;
}


/*================ Labels ================*/
.label--error {
   color: #d20000;
}
 input, textarea {
   padding: 8px 15px;
}
 @media (min-width: 750px) {
   input, textarea {
     padding: 10px 18px;
  }
}
 

/*================ Vertical forms ================*/
.form-vertical input, .form-vertical select, .form-vertical textarea {
   display: block;
   width: 100%;
   margin-bottom: 19.4444444444px;
}
 .form-vertical [type="radio"], .form-vertical [type="checkbox"] {
   display: inline-block;
   width: auto;
   margin-right: 5px;
}
 .form-vertical [type="submit"], .form-vertical .btn {
   display: inline-block;
   width: auto;
}
 .form-vertical.card-block {
   max-width: 540px;
   padding: 40px;
   margin: 20px auto;
   border: 1px solid rgba(0, 0, 0, .1);
   float: none;
   overflow: hidden;
   position: relative;
   background-color: #fff;
   border-radius: 0;
   display: block;
}
 @media (max-width: 543px) {
   .form-vertical.card-block {
     padding: 30px;
  }
}
 .form-vertical.card-block h2 {
   text-align: center;
   font-size: 22px;
   font-weight: 500;
   text-transform: uppercase;
   color: #232323;
   margin-bottom: 20px;
}
 .form-vertical.card-block h4 {
   text-align: center;
   font-size: 22px;
   font-weight: 500;
   text-transform: uppercase;
   color: #232323;
   margin-bottom: 20px;
}
 .form-vertical.card-block .js-address-form {
   padding: 20px 20px 0;
}
 @media (max-width: 543px) {
   .form-vertical.card-block .js-address-form {
    /* If media is below 544 */
     padding: 20px 0 0;
  }
}
 .form-vertical.card-block label {
   line-height: 1.8;
   text-transform: capitalize;
   color: #575757;
}
 .form-vertical.card-block .required:before {
   content: '* ';
   color: red;
   font-weight: 700;
}
 
/*================ Form feedback messages ================*/
.note, .form--success, .errors {
   padding: 8px;
   margin: 0 0 27.5px;
}
 @media (min-width: 750px) {
   .note, .form--success, .errors {
     padding: 10px;
  }
}
 .note {
   border: 1px solid #e8e9eb;
}
 .form--success, .form-success {
   border: 1px solid #19a340 ! important;
   background-color: #f8fff9 ! important;
   color: #19a340 !important;
   text-align: center;
}
 .errors {
   border: 1px solid #d20000 ! important;
   background-color: #fff8f8 ! important;
   color: #d20000 ! important;
   padding: 10px;
   margin-top: 5px;
}
 .errors ul {
   list-style: none;
   padding: 0;
   margin: 0;
}
 .errors a {
   color: #d20000 ! important;
   text-decoration: underline;
}
/*================ Input Groups ================*/

.input-group {
   position: relative;
   display: table;
   width: 100%;
   border-collapse: separate;
   background-color: #fff;
}
 .form-vertical .input-group {
   margin-bottom: 55px;
}
 .input-group__field, .input-group__btn {
   display: table-cell;
   vertical-align: middle;
   margin: 0;
}
 .input-group__field, .input-group__btn .btn {
   height: 40px;
   padding-top: 0;
   padding-bottom: 0;
}
 @media (min-width: 750px) {
   .input-group__field, .input-group__btn .btn {
     height: 40px;
  }
}
 .input-group__field {
   width: 100%;
   border-right: 0;
}
 .form-vertical .input-group__field {
   margin: 0;
}
 .input-group__btn {
   white-space: nowrap;
   width: 1%;
}
 .input-group__btn .btn {
   white-space: nowrap;
}
/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
   display: block;
}
 .site-nav {
   position: relative;
   text-align: center;
}
 #AccessibleNav .site-nav {
   display: none;
}
 .site-nav li {
   display: inline-block;
   vertical-align: middle;
   text-transform: uppercase;
}
 
/*================ Site Nav Links ================*/
.site-nav__link .icon-chevron-down {
   display: none;
   width: 8px;
   height: 8px;
   margin-left: 2px;
}
 .site-nav--active-dropdown .site-nav__link .icon-chevron-down {
   transform: rotateZ(-180deg);
}
 .site-nav__link.site-nav--active-dropdown {
   border: 1px solid #e8e9eb;
   border-bottom: 1px solid transparent;
   z-index: 2;
}
 
/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: relative;
}

.site-nav--has-centered-dropdown {
  position: static;
}

.site-nav__dropdown {
   display: none;
   position: absolute;
   z-index: 18;
   background: #fff;
   border: none;
   padding: 15px;
   text-align: center;
   border-bottom: 4px solid #232323;
   box-shadow: 0.5px 0.866px 5px 0 rgba(0, 0, 0, 0.3);
   -webkit-box-shadow: 0.5px 0.866px 5px 0 rgba(0, 0, 0, 0.3);
   -moz-box-shadow: 0.5px 0.866px 5px 0 rgba(0, 0, 0, 0.3);
   -o-box-shadow: 0.5px 0.866px 5px 0 rgba(0, 0, 0, 0.3);
   -webkit-transition: all 500ms ease 0s;
   -moz-transition: all 500ms ease 0s;
   -ms-transition: all 500ms ease 0s;
   -o-transition: all 500ms ease 0s;
   transition: all 500ms ease 0s;
   opacity: 0;
   transform: scale(1, 0);
   -webkit-transform: scale(1, 0);
   -ms-transform: scale(1, 0);
   -o-transform: scale(1, 0);
   -moz-transform: scale(1, 0);
   transform-origin: left top 0;
   -webkit-transform-origin: left top 0;
   -ms-transform-origin: left top 0;
   -o-transform-origin: left top 0;
   -moz-transform-origin: left top 0;
}
 .site-nav__dropdown .site-nav__link {
   padding: 4px 30px 4px 0;
}
 .site-nav--active-dropdown .site-nav__dropdown {
   display: block;
}
 .site-nav__dropdown li {
   display: block;
}
 

.page-width {
  padding-left: 15px;
  padding-right: 15px;
}

 
 .page-container {
   transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
   position: relative;
   overflow: hidden;
   padding-top: 30px;
}
 @media (min-width: 750px) {
   .page-container {
     -ms-transform: translate3d(0, 0, 0);
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
.template-index .page-container {
	 padding-top: 0;
	 clear: both;
}
 
 hr {
   margin: 55px 0;
   border: 0;
   border-bottom: 1px solid #e8e9eb;
}
 .hr--small {
   padding: 10px 0;
   margin: 0;
}
 .hr--invisible {
   border-bottom: 0;
}
 .border-bottom {
   border-bottom: 1px solid #f2f2f2;
}
 .border-top {
   border-top: 1px solid #e8e9eb;
}
 .site-header-inner {
   text-align: center;
}
 .grid--table {
   display: table;
   table-layout: fixed;
   width: 100%;
}
 .grid--table > .grid__item {
   float: none;
   display: inline-block;
   vertical-align: middle;
}
 @media (max-width: 749px) {
   .grid--table > .grid__item {
    /* If media is below 759 */
     width: 100%;
  }
}
 .grid--half-gutters {
   margin-left: -15px;
}
 .grid--half-gutters > .grid__item {
   padding-left: 15px;
}
 .grid--double-gutters {
   margin-left: -60px;
}
 .grid--double-gutters > .grid__item {
   padding-left: 60px;
}
 
/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important;
}


.drawer {
   display: none;
   position: absolute;
   overflow: hidden;
   -webkit-overflow-scrolling: touch;
   z-index: 9;
   background-color: #fff;
   transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
}
 .drawer input[type="text"], .drawer textarea {
   background-color: #fff;
   color: #3d4246;
}
 .js-drawer-open {
   overflow: hidden;
}
 .drawer--top {
   width: 100%;
}
 .js-drawer-open-top .drawer--top {
   -ms-transform: translateY(100%);
   -webkit-transform: translateY(100%);
   transform: translateY(100%);
   display: block;
}
 .drawer-page-content::after {
   visibility: hidden;
   opacity: 0;
   content: '';
   display: block;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
   z-index: 8;
   transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
}
 .js-drawer-open .drawer-page-content::after {
   visibility: visible;
   opacity: 1;
}
 .drawer__title, .drawer__close {
   display: table-cell;
   vertical-align: middle;
}
 .drawer__close-button {
   background: none;
   border: 0 none;
   position: relative;
   right: -15px;
   height: 100%;
   width: 60px;
   padding: 0 20px;
   color: inherit;
   font-size: 1.28571em;
}
 .drawer__close-button:active, .drawer__close-button:focus {
   background-color: rgba(0, 0, 0, .6);
}
 
.grid-view-item {
   display: block;
}
 .custom__item .grid-view-item {
   margin-bottom: 0;
}
 .spr-badge-caption {
   display: none;
}
 @media (max-width: 749px) {
   .grid-view-item__title, .grid-view-item__meta {
     font-size: 0.92857em;
  }
}
 .product-price__price, .regular {
   display: inline-block;
   color: #acaaa6;
}
 .product-price__sale {
   padding-right: 0;
}
 .grid-view-item__link {
   display: block;
   position: relative;
   width: 100%;
   height: 100%;
   float: left;
   overflow: hidden;
}
 @media (max-width: 767px) {
   .grid-view-item__link {
     max-width: 370px;
     float: none !important;
     margin: 0 auto;
  }
}
 .grid-view-item__vendor {
   margin-top: 4px;
   color: #788188;
   font-size: 0.85714em;
   text-transform: uppercase;
}
 @media (max-width: 749px) {
   .grid-view-item__vendor {
     font-size: 0.78571em;
  }
}
 .grid-view-item__image-wrapper {
   margin: 0 auto 15px;
   position: relative;
   overflow: hidden;
}
 .grid-view-item__image-wrapper .grid__item .grid-view-item__image {
   position: absolute;
   top: 0;
}
 .grid-view-item__image {
   display: block;
   margin: 0 auto;
   width: 100%;
}
 .grid-view-item__image-wrapper .grid-view-item__image {
   position: absolute;
   top: 0;
}
 .grid-view-item--sold-out .grid-view-item__image {
   opacity: 1;
}
 .ie9 .grid-view-item__image {
   opacity: 1;
}
 .list-view-item {
   display: table;
   table-layout: fixed;
   margin-bottom: 22px;
   width: 100%;
}
 .list-view-item:last-child {
   margin-bottom: 0;
}
 @media (min-width: 750px) {
   .list-view-item {
     border-bottom: 1px solid #e8e9eb;
     padding-bottom: 22px;
  }
   .list-view-item:last-child {
     padding-bottom: 0;
     border-bottom: 0;
  }
}
 .list-view-item__title {
   color: #3d4246;
   font-size: 14px;
   min-width: 100px;
}
 .list-view-item__title a {
   white-space: normal;
}
 @media (max-width: 749px) {
   .list-view-item__title {
     font-size: 0.92857em;
  }
}
 .list-view-item__price {
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
 .list-view-item__price--reg {
   color: #7796a8;
}
 @media (max-width: 749px) {
   .list-view-item__price--reg {
     display: block;
  }
}
 @media (max-width: 749px) {
   .list-view-item__price--sale {
     display: block;
  }
}
/*================ Index sections ================*/
.index-section {
   margin-bottom: 70px;
}
 @media (max-width: 991px) {
   .index-section {
     margin-bottom: 30px;
  }
}
 .index-section:first-child {
   margin-top: 0;
   border-top: 0;
}
 .displayHomeTop {
   margin-bottom: 30px;
}
 .placeholder-svg {
   display: block;
   fill: rgba(120, 129, 136, 0.35);
   background-color: rgba(120, 129, 136, 0.1);
   width: 100%;
   height: 100%;
   max-width: 100%;
   max-height: 100%;
   border: 1px solid rgba(120, 129, 136, 0.2);
}
 .placeholder-noblocks {
   padding: 40px;
   text-align: center;
}
 .placeholder-background {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}
 .placeholder-background .icon {
   border: 0;
}
 .image-bar__content .placeholder-svg {
   position: absolute;
   top: 0;
   left: 0;
}
 

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.template-password {
   height: 100vh;
}
 #LoginModal.modal {
   background-color: #fff;
}
 .password-page {
   display: table;
   height: 100%;
   width: 100%;
   color: #232323;
   background-color: #fff;
   background-size: cover;
}
 .ie9 .password-page {
   height: auto;
}
 .password-page .errors, .password-page .form--success {
   max-width: 500px;
   margin-left: auto;
   margin-right: auto;
}
 .password-header {
   height: 85px;
   display: table-row;
}
 .password-header__inner {
   display: table-cell;
   vertical-align: middle;
}
 .password-login {
   padding: 0 30px;
   text-align: right;
}
 @media (max-width: 543px) {
   .password-login {
     padding: 0 25px;
     text-align: center;
  }
}
 .password-logo .logo {
   color: #788188;
   font-weight: 700;
   max-width: 100%;
}
 .password-main {
   display: table-row;
   width: 100%;
   height: 100%;
   margin: 0 auto;
}
 .password-main__inner {
   display: table-cell;
   vertical-align: middle;
   padding: 27.5px 55px;
}
 @media (max-width: 543px) {
   .password-main__inner {
     padding: 20px 25px;
  }
}
 .password-message {
   max-width: 500px;
   margin: 82.5px auto 27.5px;
}
 .password__input-group {
   max-width: 340px;
   margin: 0 auto 55px;
   background: transparent;
}
 .password__input-group .input-group__field {
   height: 44px;
   border: 1px solid rgba(0, 0, 0, 0.1);
}
 .password__input-group .input-group__btn {
   position: absolute;
   right: 2px;
   top: 2px;
   width: auto;
}
 .password__title {
   margin-bottom: 30px;
   font-size: 60px;
   letter-spacing: 2px;
   text-transform: capitalize;
   font-weight: normal;
}
 @media (max-width: 543px) {
   .password__title {
    /* If media is below 544 */
     font-size: 30px;
     letter-spacing: 1px;
     margin-top: 10px;
  }
}
 #passwordpage_header [data-deal="0"] #storecountdown {
   display: none;
}
 #passwordpage_header .password__deal .site-header__logo-image img {
   margin-bottom: 20px;
}
 #passwordpage_header #storecountdown {
   margin-bottom: 30px;
}
 @media (max-width: 543px) {
   #passwordpage_header #storecountdown {
    /* If media is below 544 */
     margin-bottom: 15px;
     line-height: 1;
  }
}
 #passwordpage_header #storecountdown .countdown-days, #passwordpage_header #storecountdown .countdown-hours, #passwordpage_header #storecountdown .countdown-minutes, #passwordpage_header #storecountdown .countdown-seconds {
   display: inline-block;
   vertical-align: middle;
   margin: 10px;
}
 @media (max-width: 543px) {
   #passwordpage_header #storecountdown .countdown-days, #passwordpage_header #storecountdown .countdown-hours, #passwordpage_header #storecountdown .countdown-minutes, #passwordpage_header #storecountdown .countdown-seconds {
    /* If media is below 544 */
     margin: 5px;
  }
}
 #passwordpage_header #storecountdown .data {
  /* If media is below 544 */
   font-size: 40px;
   text-align: center;
   margin: 0 auto;
   width: 60px;
   height: 40px;
   line-height: 40px;
   margin-bottom: 10px;
}
 @media (max-width: 543px) {
   #passwordpage_header #storecountdown .data {
     font-size: 20px;
     position: relative;
     padding-right: 5px;
     width: 40px;
  }
   #passwordpage_header #storecountdown .data:after {
     content: ":";
     position: absolute;
     right: -7px;
     top: -1px;
  }
}
 #passwordpage_header #storecountdown .text {
   text-transform: uppercase;
   font-size: 16px;
}
 @media (max-width: 543px) {
   #passwordpage_header #storecountdown .text {
    /* If media is below 544 */
     display: none;
  }
}
 #passwordpage_header #storecountdown .countdown-seconds .data, #passwordpage_header #storecountdown .countdown-seconds .text {
   color: var(--brand-secondary);
}
 #passwordpage_header #storecountdown .countdown-seconds .data {
  /* If media is below 544 */
}
 @media (max-width: 543px) {
   #passwordpage_header #storecountdown .countdown-seconds .data:after {
     display: none;
  }
}
 .password__form-heading {
   margin-bottom: 30px;
   font-size: 14px;
}
 .password-powered-by {
   margin-top: 60px;
}
 .password-powered-by .classic-link {
   color: #232323;
}
 .password-social-sharing .addthis_toolbox > a {
   float: none;
}
 h1.product-single__title {
   margin-bottom: 0;
}
 
.product-single__price {
   color: #788188;
   font-size: 1.25em;
   font-weight: 400;
   margin-bottom: 30px;
}
 @media (max-width: 749px) {
   .product-single__price {
     display: block;
     font-size: 1.125em;
  }
}
  

.product-single__vendor {
    color: #788188;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px 0 10px;
}

/*================ Add to cart form ================*/
.product-form {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
    margin: 0 -5px -10px;
}
.add-to-cart {
   bottom: auto;
   display: inline-block;
   width: auto;
}
 .product-form__item {
   width: 100%;
   margin-bottom: 10px;
   padding: 0 5px;
}
 .product-form__item label {
   display: block;
}
 .product-form--hide-variant-labels .product-form__item label {
   position: absolute !important;
   overflow: hidden;
   clip: rect(0 0 0 0);
   height: 1px;
   width: 1px;
   margin: -1px;
   padding: 0;
   border: 0;
}
 .product-form__item input {
   width: 80px;
}
 .product-form__variants {
   display: none;
}
 .no-js .product-form__variants {
   display: block;
}
 .product-form__input {
   display: block;
   width: 100%;
}
 .product-form__cart-submit {
   line-height: 1.4;
   padding-left: 5px;
   padding-right: 5px;
   white-space: normal;
   max-width: auto;
   display: inline-block;
   width: auto;
   padding: 10px 26px;
   width: auto;
}
 @media (min-width: 750px) {
   .product-form__cart-submit--small {
     max-width: auto;
     display: inline-block;
     width: auto;
     padding: 10px 26px;
     width: auto;
  }
}
 



/*================ Product Images ================*/
.product-single__thumbnail {
   display: block;
   margin: -2px 0 8px;
   border: 2px solid transparent;
}
 .no-js .product-featured-img {
   position: relative;
}
 .zoomImg {
   background-color: #fff;
}
 @media (min-width: 750px) {
   .product-single__thumbnails {
     margin-top: 30px;
  }
}
 @media (max-width: 749px) {
   .product-single__photos {
     margin-bottom: 30px;
  }
   .product-single__photo--has-thumbnails {
     margin-bottom: 30px;
  }
}
 .product-single__photos--full {
   margin-bottom: 30px;
}
 .product-single__photo-wrapper {
   margin: 0 auto;
   width: 100%;
   position: relative;
}

/*================ Template | Collections ================*/
.collection-hero {
   position: relative;
   margin-top: 0;
   margin-bottom: 30px;
}
 .collection-name {
   margin-bottom: 30px;
}
 .collection-description {
   margin-bottom: 10px;
   margin-top: 0;
   font-size: 14px;
   font-weight: 500;
   text-align: left;
   line-height: 26px;
   color: #787878;
   letter-spacing: 0.1px;
}

 .collection-description > h2, .collection-description h3 {
   color: #232323;
   font-weight: 600;
   letter-spacing: 0.2px;
   margin-bottom: 14px;
   font-size: 16px;
   margin-top: 0;
}
 .collection-description > h4, .collection-description h5, .collection-description h6 {
   color: #232323;
   font-weight: 600;
   letter-spacing: 0.2px;
   margin-bottom: 14px;
   font-size: 14px;
   margin-top: 0;
}
 .collection-description > ul, .collection-description > ol {
   margin-bottom: 18px;
   padding-left: 26px;
   margin-left: 0;
}
 .collection-description > ul li, .collection-description > ol li {
   list-style: unset;
   padding-left: 3px;
}
 .collection-description > ul li:marker, .collection-description > ol li:marker {
   line-height: 14px;
}
 @media (max-width: 543px) {
   .collection-description > ul li, .collection-description > ol li {
    /* If media is below 544 */
     margin-bottom: 6px;
  }
   .collection-description > ul li:last-child, .collection-description > ol li:last-child {
     margin-bottom: 0;
  }
}
 .collection-description blockquote {
   text-align: left;
   line-height: 26px;
   color: #787878;
   letter-spacing: 0.2px;
   font-weight: 500;
   font-size: 13px;
   border: none;
   padding: 0 30px;
   border-left: 3px solid #e5e5e5;
   margin-left: 15px;
   margin-bottom: 18px;
}
 @media (max-width: 543px) {
   .collection-description blockquote {
    /* If media is below 544 */
     padding: 0;
     margin-left: 8px;
     padding-left: 15px;
  }
}
 .collection-hero__image {
   background-repeat: no-repeat;
   max-width: 100%;
   max-height: 100%;
   opacity: 1;
}
 
/*================ Cart page ================*/
.cart__header {
   background: #f8f8f8;
   border: 1px solid #f8f8f8;
}
 .template-cart .cart table {
   margin-bottom: 0;
}
 .template-cart .cart th, .template-cart .cart td {
   border: 0;
}
 .template-cart .cart td {
   color: #3a3838;
   font-size: 15px;
   line-height: 24px;
   font-weight: 400;
   text-align: center;
   padding: 10px 7px;
}
 @media (min-width: 992px) {
   .template-cart .cart td {
     padding: 40px 15px;
     font-size: 18px;
  }
}
 .template-cart .cart .product-info {
   text-align: left;
}
 .template-cart .cart th {
   font-weight: 700;
   padding: 15px;
   font-size: 15px;
   color: #3a3838;
   letter-spacing: 0.5px;
   text-transform: unset;
   text-align: center;
}
 @media (min-width: 992px) {
   .template-cart .cart th {
    /* If media is above 991 */
     padding: 17px 30px;
     font-size: 17px;
  }
}
 .template-cart .cart .cart__meta {
   padding-left: 0px;
   text-align: left;
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__meta {
    /* If media is below 768 */
     padding: 0;
     margin-left: 5px;
  }
}
 .template-cart .cart .cart__meta .list-view-item__title > a {
   text-decoration: none;
   color: #3a3838;
   font-size: 16px;
   font-weight: 600;
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__meta .list-view-item__title > a {
    /* If media is below 768 */
     font-size: 13px;
  }
}
 .template-cart .cart .cart__meta .cart__meta-text {
   font-size: 14px;
}
 .template-cart .cart .cart__price-wrapper {
   text-align: center;
   color: #666;
   font-weight: 600;
   font-size: 15px;
}
 @media (min-width: 992px) {
   .template-cart .cart .cart__price-wrapper {
    /* If media is above 991 */
     font-size: 18px;
  }
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__price-wrapper {
    /* If media is below 768 */
     padding: 10px 0px;
     text-align: right;
  }
}
 .template-cart .cart .cart__update-wrapper .cart-qty-btns {
   display: inline-block;
   width: auto;
   margin: 0 auto;
   text-align: center;
   float: none;
   position: relative;
   overflow: hidden;
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns {
    /* If media is below 749 */
     display: inline-block;
     vertical-align: middle;
     width: auto;
     float: right;
     margin-right: 2px;
  }
}
 .template-cart .cart .cart__update-wrapper .cart-qty-btns label {
  /* If media is below 749 */
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns label {
     display: none;
  }
}
 .template-cart .cart .cart__update-wrapper .cart-qty-btns > div {
   float: left;
   vertical-align: middle;
}
 @media screen and (min-width: 992px) and (max-width: 1499px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns > div {
     width: 30px;
  }
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns > div {
    /* If media is below 992 */
     width: 20px;
     height: 40px;
     line-height: 39px;
  }
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns > div {
    /* If media is below 749 */
     font-size: 20px;
     height: 40px;
     line-height: 37px;
     width: 40px;
  }
}
 .template-cart .cart .cart__update-wrapper .cart-qty-btns .quantity {
   float: left;
   vertical-align: middle;
}
 @media screen and (min-width: 992px) and (max-width: 1499px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns .quantity {
     width: 30px;
  }
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns .quantity {
    /* If media is below 991 */
     width: 30px;
     height: 40px;
  }
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__update-wrapper .cart-qty-btns .quantity {
    /* If media is below 749 */
     width: 40px;
     height: 40px;
     line-height: 37px;
  }
}
 .template-cart .cart .cart__update-wrapper .cart__update {
  /* If media is below 749 */
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__update-wrapper .cart__update {
     float: right;
     display: inline-block;
     vertical-align: middle;
     padding: 13px 15px;
     font-size: 12px;
  }
}
 .template-cart .cart .product_remove {
   padding: 10px 0;
}
 .template-cart .cart .product_remove a {
   text-decoration: none;
   color: #666;
   background: transparent;
   display: block;
   font-size: 27px;
}
 @media (max-width: 749px) {
   .template-cart .cart .product_remove a {
    /* If media is below 749 */
     font-size: 17px;
  }
}
 .template-cart .cart .cart__footer {
   color: #3a3838;
   font-size: 18px;
   line-height: 24px;
   font-weight: 400;
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__footer {
    /* If media is above 991 */
     font-size: 15px;
  }
}
 .template-cart .cart .cart__footer .cart_top {
   padding: 30px 30px;
   border-bottom: 1px solid #f2f2f2;
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart_top {
    /* If media is below 768 */
     text-align: center;
  }
}
 .template-cart .cart .cart__footer .cart_top .cart-note, .template-cart .cart .cart__footer .cart_top .update_cart {
   display: inline-block;
   vertical-align: middle;
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart_top .cart-note, .template-cart .cart .cart__footer .cart_top .update_cart {
    /* If media is below 768 */
     display: block;
  }
}
 .template-cart .cart .cart__footer .cart_top .cart-note {
  /* If media is below 768 */
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart_top .cart-note {
     margin-bottom: 15px;
  }
}
 .template-cart .cart .cart__footer .cart_top .cart-note .cart-note__input {
   width: 300px;
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__footer .cart_top .cart-note .cart-note__input {
    /* If media is above 991 */
     width: auto;
  }
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart_top .cart-note .cart-note__input {
    /* If media is below 768 */
     width: 100%;
  }
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__footer .cart_top .cart-note .cart-note__input {
    /* If media is below 749 */
     margin-bottom: 0;
  }
}
 .template-cart .cart .cart__footer .cart_top .update_cart {
   float: right;
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart_top .update_cart {
    /* If media is below 768 */
     float: none;
  }
}
 .template-cart .cart .cart__footer .cart-bottm {
   padding: 30px 30px;
   padding-right: 0;
   margin-top: 30px;
   display: block;
   overflow: hidden;
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__footer .cart-bottm {
    /* If media is above 991 */
     padding: 20px 0;
  }
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart-bottm {
    /* If media is below 768 */
     text-align: center;
     margin-top: 15px;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .continue_shopping, .template-cart .cart .cart__footer .cart-bottm .cart_calculator {
   display: inline-block;
   vertical-align: middle;
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart-bottm .continue_shopping, .template-cart .cart .cart__footer .cart-bottm .cart_calculator {
    /* If media is below 768 */
     display: block;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .continue_shopping {
  /* If media is below 768 */
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart-bottm .continue_shopping {
     margin-bottom: 15px;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator {
   float: right;
   padding: 30px;
   background: #f8f8f8;
}
 @media (min-width: 992px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator {
    /* If media is above 991 */
     padding: 40px 48px 40px 48px;
  }
}
 @media (max-width: 767px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator {
    /* If media is below 768 */
     float: none;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner {
   background: #fff;
   padding: 20px 0px;
   width: 400px;
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner {
    /* If media is above 991 */
     width: auto;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .cart_total_title span {
   padding: 10px 20px;
   color: #3a3838;
   font-size: 20px;
   text-transform: unset;
   font-weight: 600;
   letter-spacing: 0.5px;
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .cart_total_title span {
    /* If media is above 991 */
     font-size: 15px;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .cart_total_title .cart__subtotal {
   color: var(--brand-secondary);
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .cart__shipping {
   padding: 10px 20px 30px;
   border-top: 1px solid #f2f2f2;
   font-size: 16px;
}
 @media (max-width: 991px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .cart__shipping {
    /* If media is above 991 */
     font-size: 14px;
  }
}
 @media (max-width: 543px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .cart__shipping {
    /* If media is above 991 */
     padding: 10px 20px 20px;
  }
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .checkout_btn {
   margin: 0 auto;
   display: block;
   text-align: center;
   background: var(--button-bg-hover-color);
   color: var(--button-text-hover-color);
   border-color: var(--button-bg-hover-color);
}
 .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .checkout_btn:hover, .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .checkout_btn:focus, .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .checkout_btn.focus, .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .checkout_btn:active {
   color: var(--button-text-color);
   background-color: var(--button-bg-color);
   border-color: var(--button-bg-color);
}
 @media (max-width: 543px) {
   .template-cart .cart .cart__footer .cart-bottm .cart_calculator .cart_content_inner .checkout_btn {
    /* If media is above 991 */
     padding: 10px 15px;
  }
}
 .template-cart .cart .cart__edit {
   display: inline-block;
   margin: 0;
   margin-left: 25px;
}
 @media (max-width: 543px) {
   .template-cart .cart .cart__edit {
    /* If media is below 544 */
     margin-left: 6px;
  }
}
 .template-cart .cart .cart__edit .btn {
   background-color: transparent;
   border: none;
   color: #232323;
   padding: 0;
   margin-top: -3px;
   box-shadow: none;
}
 .template-cart .cart .cart__edit .btn span i {
   font-size: 14px;
}
 .template-cart .cart .cart__row {
  /* If media is below 749 */
}
 @media (max-width: 749px) {
   .template-cart .cart .cart__row {
     position: relative;
  }
   .template-cart .cart .cart__row .product_remove {
     float: right;
     position: absolute;
     right: 0;
     top: 0;
     padding: 6px 7px;
  }
}
 


.cart__qty-label {
  position: absolute!important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0
}

.cart__qty-input {
   text-align: center;
   width: 60px;
   padding-left: 5px;
   padding-right: 5px;
}
 @media (max-width: 749px) {
   .cart__qty-input {
     padding-top: 2px;
     padding-bottom: 2px;
  }
}
 .cart__edit--active .cart__edit-text--cancel {
   display: none;
}
 .cart__edit-text--edit {
   display: none;
}
 .cart__edit--active .cart__edit-text--edit {
   display: block;
}
 .cart__edit-text--cancel, .cart__edit-text--edit {
   pointer-events: none;
}
 .cart__row p {
   margin-bottom: 0;
}
 .cart__row p + p {
   margin-top: 10px;
}
 .cart__subtotal-title {
   float: left;
   font-weight: 500;
}
 .cart__subtotal {
   padding-left: 0;
   display: inline-block;
   float: right;
}
 .cart__savings {
   padding-top: 18px;
}
 .cart__savings-amount {
   padding-left: 27.5px;
}
 @media (min-width: 750px) {
   .cart__savings-amount {
     padding-left: 55px;
     min-width: 150px;
     display: inline-block;
  }
}
 .cart-dropdown-inner .cart table {
   margin-bottom: 0;
}
 .cart-dropdown-inner .cart table .cart__row {
   position: relative;
}
 .cart-dropdown-inner .cart table .cart__meta .remove {
   display: inline-block;
   position: absolute;
   top: 8px;
   right: 5px;
}
 .cart-dropdown-inner .cart table .cart__meta .remove a {
   border: none;
   padding: 0;
   color: #333;
   background-color: transparent;
}
 .cart-dropdown-inner .cart table .cart__meta .remove a:hover, .cart-dropdown-inner .cart table .cart__meta .remove a:active, .cart-dropdown-inner .cart table .cart__meta .remove a:focus {
   color: #232323;
   background-color: #fff;
}
 .cart-dropdown-inner .cart table .cart__meta .remove a i {
   font-size: 20px;
   color: #333;
}
 .cart-dropdown-inner .cart table .cart__meta .remove a i:hover {
   color: #232323;
}
 .cart__shipping {
   font-style: italic;
   font-size: 0.875em;
   padding: 10px 0;
   display: block;
   width: 100%;
   overflow: hidden;
   white-space: normal;
}
 .cart-note__label, .cart-note__input {
   display: block;
}
 @media (max-width: 749px) {
   .cart-note__label, .cart-note__input {
     margin: 0 auto;
  }
}
 .cart-note__label {
   margin-bottom: 15px;
}
 .cart-note__input {
   min-height: 50px;
   width: 100%;
}
 @media (max-width: 749px) {
   .cart-note__input {
     margin-bottom: 40px;
  }
}
 .cart__image {
   padding: 0;
   width: 90px;
   border: 1px solid #e9e9e9;
}
 .cart__image-wrapper {
   display: table-cell;
   width: 150px;
}
 @media (min-width: 750px) {
   .cart__meta {
     max-width: 300px;
  }
   .cart__remove {
     margin-top: 4px;
  }
   .cart__qty {
     text-align: center;
  }
}
 @media (max-width: 749px) {
   .cart .cart__update-wrapper {
     display: none;
     padding-top: 0;
     padding-bottom: 22px;
  }
}
 
@media (max-width: 749px) {
   .template-cart .cart table {
     display: block;
     width: 100%;
  }
   .template-cart .cart thead {
     display: none;
  }
   .template-cart .cart tr, .template-cart .cart tbody {
     width: 100%;
     padding: 5px 0;
  }
   .template-cart .cart tbody {
     display: block;
  }
   .cart__update--show td {
     padding-bottom: 10px;
  }
   .cart__update--show .cart__update-wrapper {
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     width: 100%;
     -ms-flex-align: center;
     -webkit-align-items: center;
     -moz-align-items: center;
     -ms-align-items: center;
     -o-align-items: center;
     align-items: center;
     -webkit-justify-content: space-between;
     -ms-justify-content: space-between;
     justify-content: space-between;
     -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
  }
   .cart-flex {
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     width: 100%;
     -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -ms-flex-align: center;
     -webkit-align-items: center;
     -moz-align-items: center;
     -ms-align-items: center;
     -o-align-items: center;
     align-items: center;
  }
   .cart-flex-item {
     display: block;
     -webkit-flex: 1 1 100%;
     -moz-flex: 1 1 100%;
     -ms-flex: 1 1 100%;
     flex: 1 1 100%;
  }
   .cart__meta {
     -webkit-flex: 1 1 0%;
     -moz-flex: 1 1 0%;
     -ms-flex: 1 1 0%;
     flex: 1 1 0%;
  }
   .cart__image-wrapper {
     -webkit-flex: 0 0 85px;
     -moz-flex: 0 0 85px;
     -ms-flex: 0 0 85px;
     flex: 0 0 85px;
  }
   .cart__price-wrapper {
     -webkit-flex: 0 1 24%;
     -moz-flex: 0 1 24%;
     -ms-flex: 0 1 24%;
     flex: 0 1 24%;
     text-align: right;
  }
   .cart__header {
     position: absolute !important;
     overflow: hidden;
     clip: rect(0 0 0 0);
     height: 1px;
     width: 1px;
     margin: -1px;
     padding: 0;
     border: 0;
  }
   .cart-message {
     padding-top: 20px;
  }
   .cart__qty-label {
     position: inherit !important;
     overflow: auto;
     clip: auto;
     width: auto;
     height: auto;
     margin: 0;
     display: inline-block;
     vertical-align: middle;
     font-size: 0.8125em;
     margin-right: 5px;
  }
}
 
.cart--no-cookies .cart__continue-btn {
	 display: none;
}
 .cart--no-cookies .cart--empty-message {
	 display: none;
}
 .cookie-message {
	 display: none;
	 padding-bottom: 25px;
}
 .cart--no-cookies .cookie-message {
	 display: block;
}
 .additional-checkout-buttons {
	 margin-top: 22px;
}
 .additional-checkout-buttons input[type="image"] {
	 padding: 0;
	 border: 0;
	 background: transparent;
}
 
.article--listing {
   padding-top: 55px;
   margin-bottom: 55px;
}
 .article__title {
   margin-bottom: 11px;
   font-size: 22px;
}
 @media (max-width: 991px) {
   .article__title {
    /* If media is below 768 */
     font-size: 18px;
  }
}
 .article__author {
   margin-right: 10px;
}
 .article__author, .article__date {
   display: inline-block;
   margin-bottom: 15px;
}
 @media (max-width: 991px) {
   .article__author, .article__date {
    /* If media is below 768 */
     margin-bottom: 10px;
  }
}
 .template-article .article__author, .template-article .article__date {
   margin-bottom: 0;
}
 .article__tags {
   margin-bottom: 27.5px;
}
 .article__tags--list {
   font-style: italic;
}
 
/*============================================================================
  Blog article grid
==============================================================================*/
.grid--blog {
   overflow: auto;
}
 .article__grid-tag {
   margin-right: 10px;
}
 .article__grid-meta {
   margin-bottom: 15px;
}
 @media (max-width: 749px) {
   .article__grid-meta--has-image {
     float: left;
     padding-left: 0;
  }
}
 .article__grid-excerpt {
   margin-bottom: 17.5px;
}
 .article__grid-image-wrapper {
   margin: 0 auto;
}
 .article__grid-image-container {
   display: block;
   clear: both;
   position: relative;
   overflow: hidden;
   margin: 0;
   min-height: 1px;
   width: 100%;
   height: 100%;
}
 @media (max-width: 749px) {
   .article__grid-image-container {
     float: left;
     margin: 0;
  }
}
 .article__grid-image-container img {
   display: block;
}
 .article__grid-image {
   margin: 0 auto;
   width: 100%;
}
 .js .article__grid-image {
   position: relative;
   top: 0;
}
 .article__list-image-container {
   display: block;
   clear: both;
   position: relative;
   min-height: 1px;
   width: 100%;
   height: 100%;
}
 .article__list-image-wrapper {
   width: 100%;
}
 .sidebar {
   margin-top: 40px;
}
 .sidebar__list {
   list-style: none;
   margin-bottom: 55px;
}
 .sidebar__list li {
   margin-bottom: 10px;
}
 .pagination {
   list-style: none;
   display: block;
   margin: 15px 0 20px;
   width: 100%;
   overflow: hidden;
}
 @media (max-width: 991px) {
   .pagination {
    /* If media is below 992 */
     margin: 20px 0 30px;
  }
}
 .pagination .pagination-block {
   background-color: #f5f5f5;
   padding: 14px 0;
   display: block;
   overflow: hidden;
}
 .pagination li {
   display: inline-block;
}
 .pagination .icon {
   display: block;
   height: 20px;
   vertical-align: middle;
}
 .comment {
   margin-bottom: 30px;
}
 .comment:last-child {
   margin-bottom: 0;
}
 .comment__content {
   margin-bottom: 5px;
}
 .comment__meta-item {
   margin-right: 10px;
   font-size: 1em;
}
 .comment__meta-item:first-child::before {
   content: '\2014 \0020';
}
 
.search-bar__form {
   display: table;
   width: 100%;
   position: relative;
   height: 40px;
   border: 1px solid transparent;
}
 @media (max-width: 749px) {
   .search-bar__form {
     width: 100%;
  }
}
 .search-bar__submit .icon {
   position: relative;
   top: -1px;
   height: 30px;
}
 .search-bar__submit, .search-header__submit {
   display: inline-block;
   vertical-align: middle;
   position: absolute;
   left: auto;
   right: 0;
   top: 3px;
   padding: 0 0 0 5px;
   height: 100%;
   z-index: 1;
}
 .search-logo {
   display: block;
   cursor: pointer;
   text-align: center;
}
 .search-logo i {
   position: relative;
   top: 3px;
}
 .search-dropdown {
   right: 45px;
   left: auto;
   top: 40px;
   position: absolute;
}
 .search-header__input, .search-bar__input {
   background-color: transparent;
   border-radius: 2px;
   color: #3d4246;
   border-color: transparent;
   width: 100%;
}
 .search-header__input::-webkit-input-placeholder, .search-bar__input::-webkit-input-placeholder {
   color: #a5a5a5;
   opacity: 0.6;
}
 .search-header__input::-moz-placeholder, .search-bar__input::-moz-placeholder {
   color: #a5a5a5;
   opacity: 0.6;
}
 .search-header__input:-ms-input-placeholder, .search-bar__input:-ms-input-placeholder {
   color: #a5a5a5;
   opacity: 0;
}
 .search-header__input::-ms-input-placeholder, .search-bar__input::-ms-input-placeholder {
   color: #a5a5a5;
   opacity: 1;
}
 .search-bar__input {
   border: 1px solid transparent;
}
 .search-bar__input:focus {
   border-color: transparent;
}
 
/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
==============================================================================*/
.search-header__input:hover + .btn--link {
  opacity: 0.6;
}

/*================ Mobile Search Bar ================*/
.search-bar {
   border-bottom: 1px solid #e8e9eb;
   padding: 0 27.5px;
}
 .search-bar__table {
   display: table;
   table-layout: fixed;
   width: 100%;
   height: 100%;
}
 .search-bar__table-cell {
   display: table-cell;
   vertical-align: middle;
}
 .search-bar__form-wrapper {
   width: 90%;
}

/*================ Header Search ================*/
 .search-header {
   position: relative;
   width: 100%;
   max-width: 300px;
   vertical-align: middle;
}
 .search-header .search-results {
   top: auto !important;
   width: 100%;
}
 .search-header.search--focus {
   background-color: #fff;
}
 .search-header__input {
   cursor: pointer;
   padding: 6px 15px;
   background: #fff;
   cursor: auto;
   border: 1px solid #eee;
   height: 40px;
}
 .search--focus .search-header__input {
   outline: none;
   background: #fff;
   cursor: auto;
}
 .search--focus .search-header__submit {
   padding-left: 10px;
}
 .search-header, .search-header__submit {
   transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1);
}
 .no-svg .site-header__search {
   display: inline-block;
}
 .no-svg .search-header {
   max-width: none;
}
 .no-svg .search__input {
   width: auto;
   padding-left: 60px;
}
 

/*================ Modals ================*/
.modal {
   -ms-transform: translateY(-20px);
   -webkit-transform: translateY(-20px);
   transform: translateY(-20px);
   background-color: transparent;
   bottom: 0;
   color: #3d4246;
   display: none;
   left: 0;
   opacity: 0;
   overflow: hidden;
   position: fixed;
   right: 0;
   top: 0;
}
 .modal--is-active {
   -ms-transform: translateY(0);
   -webkit-transform: translateY(0);
   transform: translateY(0);
   display: block;
   opacity: 1;
   overflow: hidden;
}
 .modal__inner {
   -moz-transform-style: preserve-3d;
   -webkit-transform-style: preserve-3d;
   transform-style: preserve-3d;
   height: 100%;
}
 .modal__centered {
   -ms-transform: translateY(-50%);
   -webkit-transform: translateY(-50%);
   transform: translateY(-50%);
   position: relative;
   top: 50%;
}
 .no-csstransforms .modal__centered {
   top: 20%;
}
 .modal__close {
   border: 0;
   padding: 55px;
   position: fixed;
   top: 0;
   right: 0;
}
 .modal__close .icon {
   font-size: 1.42857em;
   width: 20px;
   height: 20px;
}
 

.product-price__price {
  font-weight: 400;
}

.product-price__price{
  text-decoration:none; 
}

.product-price__sale,
.product__price--sale {
  color: #7796a8;
}

.product-price__sale-label {
  display: inline-block;
  white-space: nowrap;
  font-size: .92857em;
}

.product-price__sold-out {
  font-weight: 400;
  white-space: nowrap;
}

/*================ Module | Filters and Sort toolbar and selection ================*/

#SortTags{
  width: 100% !important; 
    text-transform: capitalize;
  
}
.tag-filter{
  overflow: hidden; 
}
.collection-view{
    margin-right:10px;
}

.filters-toolbar-wrapper {
  padding: 15px;
  background-color: #f5f5f5;
  margin-bottom: 15px; 
  line-height: 1.25em;
}

.filters-toolbar {
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   -ms-flex-align: center;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;
}
 @media (max-width: 543px) {
   .filters-toolbar {
     display: block;
  }
   .filters-toolbar .collection-view, .filters-toolbar .filters-toolbar__item--count {
     display: inline-block;
  }
   .filters-toolbar .filters-toolbar__item {
     text-align: center;
  }
}
 .filters-toolbar__item {
   -webkit-flex: 1 1 33%;
   -moz-flex: 1 1 33%;
   -ms-flex: 1 1 33%;
   flex: 1 1 33%;
   text-align: right;
}
 .no-flexbox .filters-toolbar__item {
   text-align: left !important;
}
 

.filters-toolbar__item--count {
     min-width: 0;
    -webkit-flex: 0 1 auto;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    text-align: center;
}

.no-flexbox .filters-toolbar select {
  width: 100% !important;
}

.filters-toolbar__input {
   -ms-transition: all ease-out 0.15s;
   -webkit-transition: all ease-out 0.15s;
   transition: all ease-out 0.15s;
   background-color: #fff;
   border: 0 solid transparent;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
   max-width: 100%;
   height: auto;
   opacity: 1;
}
 .filters-toolbar__input.hidden {
   opacity: 0;
}
 .filters-toolbar__input option {
   text-overflow: ellipsis;
   overflow: hidden;
}
 .select-wrapper {
   display: inline-block;
   position: relative;
}
 .select-wrapper:after {
   content: "\E5C5";
   position: absolute;
   color: #232323;
   right: 5px;
   top: 14px;
   font-family: 'Material Icons';
   font-size: 25px;
}
 #SortBy {
   font-size: 14px;
   font-weight: 400;
   margin-right: 0;
   min-width: 290px;
   position: relative;
   padding: 10px;
   line-height: 22px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   z-index: 1;
   color: #acaaa6;
   background-color: rgba(255, 255, 255, 0.5);
       border-radius: 0;
}
 @media (max-width: 767px) {
   #SortBy {
    /* If media is below 768 */
     min-width: 230px;
  }
}
 .sort-label {
   font-size: 14px;
   display: inline-block;
   font-weight: 400;
   padding-right: 15px;
   color: #7a7a7a;
}
 @media (max-width: 767px) {
   .sort-label {
    /* If media is below 768 */
     display: none;
  }
}
 .filters-toolbar {
  /* If media is below 543 */
}
 @media (max-width: 543px) {
   .filters-toolbar {
     text-align: center;
  }
}
 .filters-toolbar__input--sort {
   margin-right: -10px;
}
 .no-flexbox .filters-toolbar__input--sort {
   margin: 0;
}
 .no-flexbox .filters-toolbar__input--filter {
   margin: 0;
}
 .filters-toolbar__product-count {
   color: #323;
   font-weight: 300;
   font-size: 14px;
   letter-spacing: 0.8px;
   line-height: 20px;
}
 @media (max-width: 749px) {
   .filters-toolbar__product-count {
     font-size: 0.85714em;
     line-height: 46px;
  }
}
 

@media (min-width: 992px) {
   .site-footer .collapse {
     display: inherit;
     height: auto !important;
  }
}
 .block-heading {
   float: left;
   margin: 0;
}
 .navbar-toggler {
   float: right;
}
 .template-index .site-footer {
   margin: 0;
}


.site-footer__newsletter {
   margin: 8px 0 0;
}
 @media (max-width: 991px) {
   .site-footer__newsletter {
     margin: 8px 0 15px;
  }
}
 .site-footer__newsletter .contact-form label {
   margin: 0;
   margin-bottom: 0px;
   display: block;
   color: #353535;
   margin-bottom: 12px;
   font-size: 14px;
   font-weight: 400;
}
 .site-footer__newsletter .contact-form .input-group input {
   background-color: transparent;
}
 .site-footer__newsletter .contact-form .input-group input::placeholder {
   color: #acaaa6;
}
 .site-footer__newsletter .contact-form .input-group .input-group__btn {
   position: absolute;
   right: 2px;
   z-index: 9;
   top: 0px;
   width: auto;
}
 .site-footer__newsletter .contact-form .input-group .input-group__field {
   padding: 0 10px;
}
 
 .site-footer__social-icons {
   margin-top: 20px;
}
 @media (max-width: 991px) {
   .site-footer__social-icons {
     margin: 0;
  }
}
 @media (min-width: 750px) {
   .site-footer__social-icons {
     margin-top: 0;
  }
}

.site-footer .footer-content {
   display: block;
   overflow: hidden;
}
 .site-footer .collapsed .navbar-toggler i {
   color: var(--footer-heading-color);
}
 .site-footer .collapsed .navbar-toggler i.add {
   display: block;
}
 .site-footer .collapsed .navbar-toggler i.remove {
   display: none;
}
 .site-footer .navbar-toggler i {
   color: var(--footer-heading-color);
}
 .site-footer .navbar-toggler i.add {
   display: none;
}
 .site-footer .navbar-toggler i.remove {
   display: block;
}
 
.feature-row {
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   -webkit-justify-content: space-between;
   -ms-justify-content: space-between;
   justify-content: space-between;
   -ms-flex-align: center;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;
}
 @media (max-width: 749px) {
   .feature-row {
     -webkit-flex-direction: column;
     -moz-flex-direction: column;
     -ms-flex-direction: column;
     flex-direction: column;
     display: block;
  }
}
 

.feature-row__item {
   -webkit-flex: 0 1 50%;
   -moz-flex: 0 1 50%;
   -ms-flex: 0 1 50%;
   flex: 0 1 50%;
   text-align: center;
}
 @media (max-width: 749px) {
   .feature-row__item {
     -webkit-flex: 1 1 auto;
     -moz-flex: 1 1 auto;
     -ms-flex: 1 1 auto;
     flex: 1 1 auto;
     max-width: 100%;
  }
}
 .feature-row__item .h3 {
   font-size: 80px;
   font-weight: 700;
   color: #232323;
   padding-bottom: 30px;
   text-transform: uppercase;
   display: inline-block;
   position: relative;
   line-height: 57px;
   margin-bottom: 0;
}
 .feature-row__item .h3:after {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   bottom: 0;
   width: 100px;
   height: 2px;
   margin: 0 auto;
   background: #232323;
}
 .feature-row__item .rte-setting {
   margin-bottom: 0;
}
 .feature-row__item .rte-setting p {
   font-size: 30px;
   font-weight: 400;
   color: #12386d;
   padding: 30px 0;
   line-height: 26px;
}
 .feature-row__image-wrapper {
   margin: 0 auto 19.4444444444px;
   position: relative;
   width: 100%;
}
 .feature-row__image {
   display: block;
   margin: 0 auto;
}
 .feature-row__image-wrapper .feature-row__image {
   max-width: 100%;
   top: 0;
}
 @media (max-width: 749px) {
   .feature-row__image {
     order: 1;
  }
}
 .feature-row__text {
   padding-top: 35px;
   padding-bottom: 35px;
}
 @media (max-width: 749px) {
   .feature-row__text {
     order: 2;
     padding-bottom: 0;
  }
}
 @media (min-width: 750px) {
   .feature-row__text--left {
     padding-left: 35px;
  }
   .feature-row__text--right {
     padding-right: 35px;
  }
}
 @media (min-width: 750px) {
   .featured-row__subtext {
     font-size: 1.14286em;
  }
}

.hero {
   position: relative;
   display: table;
   width: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: 50% 50%;
}
 .hero--x-small {
   height: 94px;
}
 .hero--small {
   height: 225px;
}
 .hero--medium {
   height: 357px;
}
 @media (max-width: 767px) {
   .hero--medium {
     height: 260px;
  }
}
 .hero--large {
   height: 488px;
}
 .hero--x-large {
   height: 582px;
}
 @media (min-width: 750px) {
   .hero--x-small {
     height: 125px;
  }
   .hero--small {
     height: 300px;
  }
   .hero--medium {
     height: 470px;
  }
   .hero--large {
     height: 650px;
  }
   .hero--x-large {
     height: 775px;
  }
}
 

.hero__btn {
  background-color: #ffffff;
  color: #232323;
  margin-top: 55px / 2;
}

.slick-dotted.quotes-slider.slick-initialized {
   cursor: grab;
   cursor: -moz-grab;
   cursor: -webkit-grab;
}
 .quotes-wrapper .slick-dots {
   position: relative;
   bottom: 0;
   margin-top: 55px;
}
 .quotes-wrapper .slick-dots li button::before {
   color: #3d4246;
   opacity: 0.2;
}
 


.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none;
}


.logo-bar__image {
  display: block;
  margin: 0 auto;
}

.logo-bar__link {
  display: block;
}

.map-section {
   position: relative;
   width: 100%;
   overflow: hidden;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   -ms-flex-align: center;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;
   -webkit-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-flex-direction: row;
   -moz-flex-direction: row;
   -ms-flex-direction: row;
   flex-direction: row;
}
 @media (min-width: 750px) {
   .map-section {
     min-height: 500px;
  }
}
 

.map-section--load-error {
  height: auto;
}

.map-section__wrapper {
    height: 100%;
    flex-shrink: 0;
    flex-grow: 1;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.map-section__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.map-section__error {
   position: relative;
   z-index: 3;
}
 @media (min-width: 750px) {
   .map-section__error {
     position: absolute;
     margin: 0 2rem;
     top: 50%;
     -ms-transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
  }
}
 

.map-section__content-wrapper {
   position: relative;
   text-align: center;
   height: 100%;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   -ms-flex-preferred-size: 100%;
   -webkit-flex-basis: 100%;
   -moz-flex-basis: 100%;
   flex-basis: 100%;
   flex-grow: 0;
}
 @media (min-width: 750px) and (max-width: 989px) {
   .map-section__content-wrapper {
     -ms-flex-preferred-size: 50%;
     -webkit-flex-basis: 50%;
     -moz-flex-basis: 50%;
     flex-basis: 50%;
  }
}
 @media (min-width: 990px) {
   .map-section__content-wrapper {
     -ms-flex-preferred-size: 33%;
     -webkit-flex-basis: 33%;
     -moz-flex-basis: 33%;
     flex-basis: 33%;
  }
}
 

.map-section__content {
   position: relative;
   display: inline-block;
   background-color: rgba(120, 129, 136, .05);
   padding: 35px;
   width: 100%;
   text-align: center;
   z-index: 3;
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   width: 100%;
   -ms-flex-align: center;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;
   -webkit-flex-wrap: wrap;
   -moz-flex-wrap: wrap;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-align-content: center;
   -ms-align-content: center;
   align-content: center;
}
 .map-section__content > * {
   width: 100%;
}
 @media (min-width: 750px) {
   .map-section__content {
     background-color: #fff;
     margin: 55px 0;
     min-height: 300px;
  }
   .ie9 .map-section__content {
     top: 10%;
  }
}
 .map-section--load-error .map-section__content {
   position: static;
   transform: translateY(0);
}
 

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  z-index: 2;
   -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


.map-section__container {
   max-width: none;
   width: 100%;
   height: 55vh;
   left: 0;
}
 @media (min-width: 750px) {
   .map-section__container {
     position: absolute;
     height: 100%;
     top: 0;
     width: 130%;
  }
}
 
.map_section__directions-btn [class^="icon"] {
   height: 1em;
}
 .map_section__directions-btn * {
   vertical-align: middle;
}
 

.map-section__background-wrapper {
   overflow: hidden;
   position: relative;
   -ms-flex-preferred-size: 100%;
   -webkit-flex-basis: 100%;
   -moz-flex-basis: 100%;
   flex-basis: 100%;
}
 @media (min-width: 750px) {
   .map-section__background-wrapper {
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
  }
}
 .ie9 .map-section__background-wrapper {
   width: 100%;
   height: 500px;
}
 .map-section--onboarding .map-section__background-wrapper {
   min-height: 55vh;
}
 

.map-section__image {
   height: 100%;
   position: relative;
   top: 0;
   left: 0;
   width: 100%;
   background-size: cover;
   background-position: center;
}
 @media (min-width: 750px) {
   .map-section__image {
     position: absolute;
  }
}
 .map-section--display-map .map-section__image {
   display: none !important;
}
 .map-section--load-error .map-section__image {
   display: block !important;
}
 


.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden;
}

@media (max-width: 749px){
  .image-bar {
    max-width: 400px;
    margin: 0 auto;
  }
}

.image-bar__item {
   display: block;
   color: #fff;
   background-repeat: no-repeat;
   background-position: 50% 50%;
   background-size: cover;
}
 .image-bar__link:focus .image-bar__content {
   border-color: #3d4246;
}
 .image-bar__content, .image-bar__item {
   position: relative;
   width: 100%;
}
 .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
   height: 94px;
}
 .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
   height: 225px;
}
 .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
   height: 357px;
}
 .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
   height: 488px;
}
 .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
   height: 582px;
}
 @media (min-width: 750px) {
   .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
     height: 125px;
  }
   .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
     height: 300px;
  }
   .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
     height: 475px;
  }
   .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
     height: 650px;
  }
   .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
     height: 775px;
  }
}
 

.image-bar__overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #3d4246;
    opacity: .25;
}

.image-bar__caption {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 1s cubic-bezier(.44, .13, .48, .87);
  width: 100%;
  text-align: center;
}


.template-list-collections .grid--uniform.collection-width-4 .grid__item:nth-child(4n+1) {
   clear: left;
}
 @media (max-width: 1199px) {
   .template-list-collections .grid--uniform.collection-width-4 .grid__item:nth-child(4n+1) {
     clear: none;
  }
   .template-list-collections .grid--uniform.collection-width-4 .grid__item:nth-child(3n+1) {
     clear: left;
  }
}
 @media (max-width: 991px) {
   .template-list-collections .grid--uniform.collection-width-4 .grid__item:nth-child(3n+1) {
     clear: none;
  }
   .template-list-collections .grid--uniform.collection-width-4 .grid__item:nth-child(2n+1) {
     clear: left;
  }
}
 .template-list-collections .grid--uniform.collection-width-3 .grid__item:nth-child(3n+1) {
   clear: left;
}
 @media (max-width: 991px) {
   .template-list-collections .grid--uniform.collection-width-3 .grid__item:nth-child(3n+1) {
     clear: none;
  }
   .template-list-collections .grid--uniform.collection-width-3 .grid__item:nth-child(2n+1) {
     clear: left;
  }
}
 .template-list-collections .grid--uniform.collection-width-2 .grid__item:nth-child(2n+1) {
   clear: left;
}

.collection-grid {
  margin-bottom: -22px;
  overflow: auto;
}

.collection-grid-item {
  /* If media is below 544 */
   position: relative;
   width: 100%;
   padding-bottom: 0;
   margin-bottom: 0;
   transition: all 0.6s;
   border: 0;
}
 @media (max-width: 543px) {
   .collection-grid-item {
     margin-bottom: 0;
  }
}
 .collection-grid-item:hover .collection-grid-item__title-wrapper {
  /* If media is above 767 */
}
 @media (min-width: 768px) {
   .collection-grid-item:hover .collection-grid-item__title-wrapper .collection-grid-item__title {
     opacity: 0;
  }
   .collection-grid-item:hover .collection-grid-item__title-wrapper .collection-grid-total_item {
     opacity: 1;
  }
}
 

.grid--uniform .grid__item {
   padding: 15px;
}
 
.collection-grid-item__title-wrapper {
   position: relative;
   margin: 10px 0;
   text-align: center;
   transition: all 0.6s;
   -webkit-transition: all 0.6s;
   -moz-transition: all 0.6s;
   -o-transition: all 0.6s;
}
 .collection-grid-item__title-wrapper .collection-grid-item__title, .collection-grid-item__title-wrapper .collection-grid-total_item {
  /* If media is below 768 */
   margin-bottom: 0;
   font-weight: 500;
   font-size: 17px;
   margin-bottom: 3px;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 @media (max-width: 991px) {
   .collection-grid-item__title-wrapper .collection-grid-item__title, .collection-grid-item__title-wrapper .collection-grid-total_item {
     font-size: 15px;
  }
}
 @media (max-width: 543px) {
   .collection-grid-item__title-wrapper .collection-grid-item__title, .collection-grid-item__title-wrapper .collection-grid-total_item {
    /* If media is below 544 */
     font-size: 14px;
     bottom: 0;
     margin-bottom: 0;
  }
}
 @media (max-width: 767px) {
   .collection-grid-item__title-wrapper .collection-grid-item__title, .collection-grid-item__title-wrapper .collection-grid-total_item {
    /* If media is below 768 */
     opacity: 1;
  }
}
 @media (max-width: 543px) {
   .collection-grid-item__title-wrapper .collection-grid-item__title, .collection-grid-item__title-wrapper .collection-grid-total_item {
    /* If media is below 544 */
     font-size: 16px;
  }
}
 .collection-grid-item__title-wrapper .collection-grid-total_item {
   font-size: 14px;
   font-weight: 500;
   text-transform: unset;
   margin-bottom: 0px;
   position: absolute;
   left: 30px;
   right: 30px;
   top: 0;
   opacity: 0;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 @media (max-width: 1199px) {
   .collection-grid-item__title-wrapper .collection-grid-total_item {
    /* If media is below 1200 */
     font-size: 13px;
     padding: 9px 7px;
     left: 0px;
     right: 0px;
  }
}
 @media (max-width: 991px) {
   .collection-grid-item__title-wrapper .collection-grid-total_item {
    /* If media is below 992 */
     left: 40px;
     right: 40px;
  }
}
 @media (max-width: 767px) {
   .collection-grid-item__title-wrapper .collection-grid-total_item {
    /* If media is below 768 */
     position: unset;
     margin-top: 6px;
     padding: 10px 10px;
     opacity: 1;
  }
}
 

.collection-grid-item__link {
  border: 0;
  position: unset;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.collection-grid-item__overlay {
   position: relative;
   display: block;
   height: 100%;
   width: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center top;
}
 .collection-grid-item__overlay img {
   width: 100%;
   border: 2px solid #eee;
}
 .collection-grid-item__overlay .collection-item {
   font-size: 14px;
   font-weight: 400;
   line-height: 20px;
   position: absolute;
   top: 10px;
   color: #fff;
   right: 10px;
   border-radius: 5px;
   background: #7fbc1e;
   text-align: center;
   padding: 4px 8px;
   -webkit-transition: all 5s;
   -moz-transition: all 0.5s;
   -ms-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 


.custom-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 70%;
    margin: 0 auto;
}

.custom__item {
   -webkit-flex: 0 0 auto;
   -moz-flex: 0 0 auto;
   -ms-flex: 0 0 auto;
   flex: 0 0 auto;
   margin: 0 auto;
   max-width: 100%;
}
 @media (max-width: 749px) {
   .custom__item {
     -webkit-flex: 0 0 auto;
     -moz-flex: 0 0 auto;
     -ms-flex: 0 0 auto;
     flex: 0 0 auto;
     padding-left: 22px;
     margin-bottom: 22px;
  }
   .custom__item.small--one-half {
     -webkit-flex: 1 0 50%;
     -moz-flex: 1 0 50%;
     -ms-flex: 1 0 50%;
     flex: 1 0 50%;
     max-width: 400px;
     margin-left: auto;
     margin-right: auto;
  }
}
 .custom__item .collection-grid-item {
   margin-bottom: 0;
}
 

.custom__item--image {
  margin: 0 auto;
  padding-left: 0;
}

.custom__item-inner {
  position: relative;
  display: block;
  text-align: left;
  max-width: 100%;
}

.custom__item-inner--video,
.custom__item-inner--collection,
.custom__item-inner--html {
  display: block;
}

.custom__item-inner--image {
  position: relative;
  margin: 0 auto;
}

.custom__image {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
}

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center;
}

.align--top-right {
  text-align: right;
}

.align--middle-left {
   -ms-flex-item-align: center;
    -webkit-align-self: center;
    align-self: center;
}

.align--center {
    -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center;
}

.align--middle-right {
  -ms-flex-item-align: center;
-webkit-align-self: center;
  align-self: center;
  text-align: right;
}

.align--bottom-left {
      -ms-flex-item-align: flex-end;
    -webkit-align-self: flex-end;
    align-self: flex-end;
}

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center;
}

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right;
}





/*---------------------------addresses page -------------------*/
.address_tables .form-vertical .default_checkbox {
   margin-bottom: 15px;
}
 .address_tables .form-vertical .default_checkbox [type="checkbox"] {
   margin-top: 8px;
}
 .address_tables .form-vertical .default_checkbox label {
   line-height: 1;
}
 .address_tables .address-page .user-address {
   float: none;
}
 .address_tables .address-page .user-address .address {
   margin-bottom: 30px;
   letter-spacing: 0.5px;
}
 .address_tables .address-page .user-address .address .default {
   background-color: #eee;
   padding: 12px 20px;
   display: table;
   width: 100%;
   border-radius: 3px 3px 0 0;
   text-align: center;
   margin-bottom: 0;
   color: #232323;
}
 .address_tables .address-page .user-address .address .wrap {
   background-color: #f8f8f8;
   border: 1px solid #e9e9e9;
   padding: 15px;
   text-align: left;
}
 .address_tables .address-page .user-address .address .wrap .option_button {
   margin-bottom: 15px;
}
 .address_tables .address-page .user-address .address .wrap .option_button .btn {
   padding: 0;
   background: transparent;
   text-decoration: underline;
   text-transform: capitalize;
   border: medium none;
   font-size: 15px;
   color: #777;
   box-shadow: none;
}
 .address_tables .address-page .user-address .address .wrap .option_button .btn:hover, .address_tables .address-page .user-address .address .wrap .option_button .btn:active, .address_tables .address-page .user-address .address .wrap .option_button .btn:focus {
   color: var(--brand-secondary);
   background: transparent;
}
 .address_tables .address-page .user-address .address .wrap .option_button .address-delete {
   padding-left: 15px;
   margin-left: 15px;
   border-left: 1px solid #232323;
   border-radius: 0;
}
 .address_tables .address-page .user-address .address .wrap p {
   color: #2a2a2a;
   font-size: 15px;
   line-height: 26px;
   font-weight: 400;
   margin-bottom: 0;
}
 .address_tables .address-page .user-address .editaddress {
   clear: both;
}
 .new-add-btn {
  /* If media is below 992 */
}
 @media (max-width: 991px) {
   .new-add-btn {
     margin-bottom: 30px;
  }
}
 

#HideRecoverPasswordLink{
  display: block;
  margin:0 auto;
  text-align:  center;
}


/*---------------------------account page -------------------*/
.my_account_title, .address-header, .order_info_header {
   display: block;
   overflow: hidden;
   margin-bottom: 30px;
}
 @media (min-width: 544px) {
   .my_account_title h1, .address-header h1, .order_info_header h1 {
     float: left;
     margin-bottom: 0;
  }
}
 .my_account_title a, .address-header a, .order_info_header a {
  /* If media is above 543 */
   display: inline-block;
   vertical-align: middle;
   padding: 9px 20px;
   text-decoration: none;
   background: #f1f1f1;
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   -o-transition: all 0.3s;
   transition: all 0.3s;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 0.5px;
}
 @media (min-width: 544px) {
   .my_account_title a, .address-header a, .order_info_header a {
     float: right;
  }
}
 .my_account_title a:hover, .address-header a:hover, .order_info_header a:hover, .my_account_title a:active, .address-header a:active, .order_info_header a:active, .my_account_title a:focus, .address-header a:focus, .order_info_header a:focus {
   background: #232323;
   color: #fff;
   border-color: #232323;
}
 .account_order_detail {
   clear: both;
}
 .account_order_detail h2 {
   background: #f1f1f1;
   color: #232323;
   padding: 10px 15px;
   margin-bottom: 0px;
   border-radius: 3px 3px 0 0;
   text-align-last: center;
}
 .order_detail p {
   background-color: #fcf8e3;
   border: 1px solid #faebcc;
   color: #8a6d3b;
   padding: 12px;
   margin: 10px 0 30px;
}
 @media (max-width: 991px) {
   .order_detail .responsive-table th, .order_detail .responsive-table td {
     padding: 10px 6px;
  }
}
 .my_account_detail .wrap {
   background-color: #fff;
   padding: 15px;
   border: 1px solid #f1f1f1;
}
 .my_account_detail p {
   text-align: left;
}
/*-------------------star review color-----------*/
 .spr-badge-starrating .spr-icon-star, .spr-summary-starrating .spr-icon-star, .spr-review-header-starratings .spr-icon-star, .spr-starrating .spr-icon-star, .spr-badge-starrating .spr-icon-star-half-alt, .spr-summary-starrating .spr-icon-star-half-alt, .spr-review-header-starratings .spr-icon-star-half-alt, .spr-starrating .spr-icon-star-half-alt {
   color: #f5cb0c;
}
/*-------------------order-infopage-----------*/
 .order_info_header {
   margin-bottom: 20px;
}
 .order_infopage .order_name, .order_infopage .order_note {
  /* If media is below 544 */
}
 @media (max-width: 543px) {
   .order_infopage .order_name, .order_infopage .order_note {
     text-align: center;
  }
}
 .order_infopage .customer-address-info .wrap {
   padding: 15px;
   background: #fff;
}
 .order_infopage .customer-address-info .wrap p {
   margin-bottom: 10px;
}
 .order_infopage .customer-address-info > div {
   border: 1px solid #eee;
   margin-bottom: 20px;
   padding: 0;
}
 .order_infopage .customer-address-info > div > h2 {
   background: #f1f1f1;
   color: #232323;
   padding: 10px 15px;
   margin-bottom: 0px;
   border-radius: 3px 3px 0 0;
   text-align-last: center;
}
 
/*-------------------order-infopage-----------*/
.panel {
   border: none;
   box-shadow: none;
}
 .panel-heading {
   padding: 0;
}
 .panel-group {
   margin-bottom: 0;
}
 .panel-group .panel + .panel {
   margin: 0;
}
 .panel-group .panel-heading + .panel-collapse > .panel-body {
   border: none;
}
 .panel-body {
   padding: 0;
   border: none;
}
 

/*================ collectionproducts(grid-view search page) ================*/
.template-search hr {
  /* If media is above 767 */
   margin: 30px 0 15px;
   border-bottom: 1px solid #e2e2e2;
}
 @media (min-width: 768px) {
   .template-search hr {
     margin: 15px 0;
  }
}
 .template-search .hr--invisible {
   border-bottom: 0;
}
 .template-search .hr--small {
   padding: 10px 0;
   margin: 7px 0 0;
   clear: both;
}
 .template-search .empty-page-content {
   margin-bottom: 20px;
}
 .template-search .empty-page-content > .h2 {
   font-size: 18px;
}
 .template-search .empty-page-content p {
   text-align: left;
}
 .template-search .section-header > .h2 {
   font-size: 22px;
   margin-bottom: 12px;
   font-weight: 500;
   text-transform: capitalize;
}
 @media (min-width: 768px) {
   .template-search .section-header > .h2 {
    /* If media is above 767 */
     text-align: left;
     padding: 0;
  }
}
 @media (max-width: 543px) {
   .template-search .section-header > .h2 {
    /* If media is below 544 */
     font-size: 19px;
  }
}
 .template-search .section-header > .h2:after {
   display: none;
}
 .template-search .search-page-form {
   float: none;
}
 .template-search .search-page-form form .input-group {
   position: relative;
}
 .template-search .search-page-form form .input-group .input-group__field {
   border: 1px solid #e2e2e2;
   height: 44px;
       border-radius: 30px;
}
 .template-search .search-page-form form .input-group .input-group__btn {
   position: absolute;
   right: 2px;
   top: 2px;
   width: auto;
}
 .template-search .search_page {
   display: inline-block;
   width: 100%;
}
 .template-search .products-display {
   display: block;
   width: 100%;
   overflow: hidden;
}
 .template-search .products-display .grid__item {
  /* If media is below 768 */
}
 @media (max-width: 767px) {
   .template-search .products-display .grid__item {
     float: none;
  }
}
 .template-search .products-display .list__item {
   padding: 15px 0;
   width: 100%;
}
 .template-search .pagination {
   padding: 0;
}
 

/*================ Wishlist page ================*/
.jas-container .table-wrapper {
   max-width: 100%;
   overflow: auto;
}
 .jas-container .table-wrapper .empty-wishlist {
   width: 60%;
   margin: auto;
   margin-top: 30px;
}
 @media (max-width: 991px) {
   .jas-container .table-wrapper .empty-wishlist {
     width: 100%;
  }
}
 .wishlist-box .product-thumbnail {
  /* If media is below 544 */
}
 @media (max-width: 543px) {
   .wishlist-box .product-thumbnail {
     display: block;
  }
}
 .wishlist_table th, .wishlist_table td {
   text-align: left;
   padding: 15px;
   border: 1px solid #f4f4f4;
   color: #232323;
   font-family: var(--primary-font);
   font-size: 14px;
}
 @media (max-width: 767px) {
   .wishlist_table th, .wishlist_table td {
    /* If media is below 768 */
     padding: 10px;
  }
}
 .wishlist_table th, .wishlist_table td {
   text-align: center;
}
 .wishlist_table th .remove, .wishlist_table td .remove {
   font-size: 20px;
}
 .wishlist_table .product-add-to-cart .button {
  /* If media is below 768 */
}
 @media (max-width: 767px) {
   .wishlist_table .product-add-to-cart .button {
     padding: 8px 5px;
     white-space: nowrap;
  }
}
 @media (max-width: 543px) {
   .wishlist_table .product-add-to-cart .button {
    /* If media is below 544 */
     font-size: 12px;
  }
}
 
/*================ FAQ ================*/
.template-index .faq-maintitle {
   margin-top: 0px;
}
 .template-index #faq-block {
   margin-bottom: 70px;
}
 @media (max-width: 991px) {
   .template-index #faq-block {
    /* If media is below 992 */
     margin-bottom: 30px;
  }
}
 
#faq-block {
   border: 1px solid #e9e9e9;
   width: 54%;
   margin: auto;
   margin-bottom: 60px;
}
 @media (max-width: 991px) {
   #faq-block {
    /* If media is below 992 */
     width: 90%;
  }
}
 #faq-block .faqblock-container {
   list-style: unset;
   color: #232323;
   border-radius: 0;
}
 #faq-block .faqblock-container .panel-heading {
   cursor: pointer !important;
}
 #faq-block .faqblock-container .panel-heading .text-container {
   background-color: #f1f1f1;
   border: 1px solid #e9e9e9;
   border-bottom: 0;
   border-left: 0;
   border-right: 0;
   display: block;
   position: relative;
   padding: 15px 40px;
}
 @media (max-width: 767px) {
   #faq-block .faqblock-container .panel-heading .text-container {
    /* If media is below 768 */
     padding: 15px 15px;
  }
}
 @media (max-width: 543px) {
   #faq-block .faqblock-container .panel-heading .text-container {
    /* If media is below 544 */
     padding: 12px 13px;
  }
}
 #faq-block .faqblock-container .panel-heading .text-container:before {
   content: "\f106";
   position: absolute;
   top: 14px;
   right: 38px;
   font-family: "FontAwesome";
   font-weight: normal;
   font-style: normal;
   font-size: 19px;
   line-height: 1;
   letter-spacing: normal;
   text-transform: none;
}
 @media (max-width: 767px) {
   #faq-block .faqblock-container .panel-heading .text-container:before {
    /* If media is below 768 */
     right: 15px;
  }
}
 @media (max-width: 543px) {
   #faq-block .faqblock-container .panel-heading .text-container:before {
    /* If media is below 544 */
     right: 10px;
     font-size: 18px;
  }
}
 #faq-block .faqblock-container .panel-heading .text-container .category-count {
   font-size: 14px;
   font-weight: 500;
   line-height: 16px;
   margin-right: 8px;
   display: inline-block;
}
 @media (max-width: 543px) {
   #faq-block .faqblock-container .panel-heading .text-container .category-count {
    /* If media is below 544 */
     margin-right: 1px;
  }
}
 #faq-block .faqblock-container .panel-heading .text-container .faq-title {
   font-size: 15px;
   font-weight: 600;
   line-height: 16px;
   margin-bottom: 0;
   letter-spacing: 0.2px;
   color: #232323;
   display: inline-block;
   vertical-align: middle;
}
 @media (max-width: 767px) {
   #faq-block .faqblock-container .panel-heading .text-container .faq-title {
    /* If media is below 768 */
     font-size: 14px;
  }
}
 @media (max-width: 543px) {
   #faq-block .faqblock-container .panel-heading .text-container .faq-title {
    /* If media is below 544 */
     padding-right: 16px;
     line-height: 20px;
  }
}
 #faq-block .faqblock-container .panel-heading .text-container.collapsed {
   background-color: #fff !important;
}
 #faq-block .faqblock-container .panel-heading .text-container.collapsed:before {
   content: "\f107";
}
 #faq-block .faqblock-container:first-child .panel-heading .text-container {
   border-top: 0;
}
 #faq-block .faqblock-container .subtitle-container .panel-body {
   padding: 14px 40px;
}
 @media (max-width: 767px) {
   #faq-block .faqblock-container .subtitle-container .panel-body {
    /* If media is below 768 */
     padding: 14px 25px;
  }
}
 @media (max-width: 543px) {
   #faq-block .faqblock-container .subtitle-container .panel-body {
    /* If media is below 544 */
     padding: 14px 18px;
  }
}
 #faq-block .faqblock-container .subtitle-container .faq-subtitle {
   display: inline-block;
   margin-bottom: 0;
   text-align: left;
}
 #faq-block .faqblock-container .subtitle-container ul, #faq-block .faqblock-container .subtitle-container ol {
   padding-left: 18px;
   margin-top: 8px;
}
 #faq-block .faqblock-container .subtitle-container ul li, #faq-block .faqblock-container .subtitle-container ol li {
   list-style: unset;
   font-size: 14px;
   line-height: 28px;
   font-weight: 400;
   color: #777;
   padding-left: 3px;
}
 @media (max-width: 543px) {
   #faq-block .faqblock-container .subtitle-container ul li, #faq-block .faqblock-container .subtitle-container ol li {
    /* If media is below 544 */
     padding-left: 3px;
     margin-bottom: 8px;
     line-height: 22px;
  }
   #faq-block .faqblock-container .subtitle-container ul li:last-child, #faq-block .faqblock-container .subtitle-container ol li:last-child {
     margin-bottom: 0;
  }
}
 

/*================ About us page ================*/
.template-index #Aboutus {
  /* If media is below 992 */
}
 @media (max-width: 991px) {
   .template-index #Aboutus {
     margin-bottom: 30px;
     margin-top: 0;
  }
}
 .template-index #Aboutus .heading {
   line-height: 26px;
   font-size: 24px;
}
 @media (max-width: 543px) {
   .template-index #Aboutus .heading {
    /* If media is below 544 */
     line-height: 26px;
     font-size: 20px;
  }
}
 .template-index #Aboutus .Aboutus-information {
   margin-bottom: 0px;
}
 .template-index #Aboutus .Aboutus-information .information-container {
  /* If media is below 992 */
}
 @media (max-width: 991px) {
   .template-index #Aboutus .Aboutus-information .information-container {
     margin-bottom: 0px;
  }
}
 .template-index #Aboutus .Aboutus-bottom {
   display: block;
}
 .template-index #Aboutus .Aboutus-bottom .subheading {
   margin-bottom: 0px;
}
 .template-index #Aboutus .Aboutus-bottom.about-topspace {
   margin-top: 70px;
}
 @media (max-width: 991px) {
   .template-index #Aboutus .Aboutus-bottom.about-topspace {
    /* If media is below 992 */
     margin-top: 30px;
  }
}
 .template-index #Aboutus .section-second.information-topspace {
   margin-top: 70px;
}
 @media (max-width: 991px) {
   .template-index #Aboutus .section-second.information-topspace {
    /* If media is below 992 */
     margin-top: 35px;
  }
}
 #Aboutus {
   margin-bottom: 50px;
}
 @media (max-width: 991px) {
   #Aboutus {
    /* If media is below 992 */
     margin-bottom: 30px;
  }
}
 #Aboutus.nospace-topbottom {
   margin-top: 0 !important;
   margin-bottom: 0 !important;
}
 #Aboutus .heading {
   line-height: 34px;
   margin: 0;
   font-size: 32px;
   font-weight: 400;
   letter-spacing: 0;
}
 @media (max-width: 1299px) {
   #Aboutus .heading {
     font-size: 28px;
     line-height: 36px;
  }
}
 @media (max-width: 543px) {
   #Aboutus .heading {
    /* If media is below 544 */
     font-size: 22px;
     line-height: 30px;
  }
}

 #Aboutus .title-container {
   padding: 0;
   margin-bottom: 20px;
}
 @media (max-width: 991px) {
   #Aboutus .title-container {
    /* If media is below 992 */
     margin-top: 28px;
  }
}
 @media (max-width: 543px) {
   #Aboutus .title-container {
    /* If media is below 544 */
     margin-bottom: 14px;
  }
}
 #Aboutus .notopspace {
   margin-top: 0 !important;
}
 #Aboutus .Aboutus-information {
  /* If media is above 991 */
   margin-bottom: 0px;
}
 @media (min-width: 992px) {
   #Aboutus .Aboutus-information {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 0px;
  }
}
 #Aboutus .Aboutus-information .information-container {
  /* If media is below 992 */
}
 @media (max-width: 991px) {
   #Aboutus .Aboutus-information .information-container {
     margin-bottom: 0px;
  }
}
 #Aboutus .Aboutus-information .information-container .about-btn {
   margin-top: 20px;
}
 @media (max-width: 991px) {
   #Aboutus .Aboutus-information .information-container .about-btn {
    /* If media is below 992 */
     margin-top: 15px;
  }
}
 @media (max-width: 767px) {
   #Aboutus .Aboutus-information .information-container .about-btn {
    /* If media is below 768 */
     margin-top: 14px;
  }
}
 @media (max-width: 543px) {
   #Aboutus .Aboutus-information .information-container .about-btn {
    /* If media is below 544 */
     margin-top: 10px;
  }
}
 #Aboutus .Aboutus-information .information-container .about-btn a {
   padding: 10px 18px;
   position: relative;
   font-weight: 500;
}
 #Aboutus .Aboutus-information .information-container .about-btn a .icon-arrow-right {
   transform: rotateY(180deg);
   margin-top: -2px;
   margin-left: 5px;
}
 #Aboutus .Aboutus-information a {
   display: inline-block;
   position: relative;
}
 #Aboutus .Aboutus-information .list-Aboutus-info {
   margin-bottom: 50px;
}
 @media (max-width: 991px) {
   #Aboutus .Aboutus-information .list-Aboutus-info {
    /* If media is below 992 */
     margin-bottom: 30px;
  }
}
 #Aboutus .section-second {
   margin-bottom: 0;
}
 #Aboutus .section-second .information-container {
  /* If media is above 991 */
}
 @media (min-width: 992px) {
   #Aboutus .section-second .information-container {
     order: 1;
  }
}
 @media (max-width: 991px) {
   #Aboutus .section-second .information-container {
    /* If media is below 992 */
     margin-bottom: 0px;
  }
}
 #Aboutus .section-second .Aboutus-banner {
  /* If media is above 991 */
}
 @media (min-width: 992px) {
   #Aboutus .section-second .Aboutus-banner {
     order: 2;
  }
}
 #Aboutus .section-second.information-topspace {
   margin-top: 90px;
}
 @media (max-width: 991px) {
   #Aboutus .section-second.information-topspace {
    /* If media is below 992 */
     margin-top: 35px;
  }
}
 #Aboutus .Aboutus-bottom {
   display: inline-block;
   text-align: center;
   overflow: hidden;
   vertical-align: middle;
}
 #Aboutus .Aboutus-bottom.about-topspace {
   margin-top: 90px;
}
 @media (max-width: 991px) {
   #Aboutus .Aboutus-bottom.about-topspace {
    /* If media is below 992 */
     margin-top: 35px;
  }
}
 #Aboutus .Aboutus-bottom .title-container {
  /* If media is below 992 */
}
 @media (max-width: 991px) {
   #Aboutus .Aboutus-bottom .title-container {
     margin-top: 0px;
  }
}
 #Aboutus .Aboutus-bottom .subheading {
   width: 50%;
   margin: auto;
   margin-bottom: 30px;
}
 @media (max-width: 1199px) {
   #Aboutus .Aboutus-bottom .subheading {
    /* If media is below 1200 */
     width: 80%;
  }
}
 @media (max-width: 543px) {
   #Aboutus .Aboutus-bottom .subheading {
    /* If media is below 544 */
     width: 90%;
  }
}
 #Aboutus .Aboutus-bottom .service-img {
   margin-bottom: 15px;
}
 #Aboutus .Aboutus-bottom .service-title {
   font-size: 17px;
   color: #232323;
   font-weight: 600;
   margin-bottom: 10px;
   transition: all 500ms ease-in-out 0s;
   -webkit-transition: all 500ms ease-in-out 0s;
   -moz-transition: all 500ms ease-in-out 0s;
   -o-transition: all 500ms ease-in-out 0s;
}
 #Aboutus .Aboutus-bottom .service-block p {
   width: 90%;
   margin: auto;
}
 @media (max-width: 1199px) {
   #Aboutus .Aboutus-bottom .service-block p {
    /* If media is below 1200 */
     width: 100%;
  }
}
 #Aboutus .Aboutus-bottom .services {
  /* If media is below 768 */
}
 @media (max-width: 767px) {
   #Aboutus .Aboutus-bottom .services {
     margin-bottom: 25px;
  }
   #Aboutus .Aboutus-bottom .services:last-child {
     margin-bottom: 0;
  }
}
 #Aboutus .Aboutus-bottom .services:hover .service-title {
   color: var(--brand-secondary);
}
 
/*================contact page ================*/
.contact-form-information {
   width: 100%;
   overflow: hidden;
   padding-bottom: 100px;
   display: flex;
   align-items: center;
}
 @media (max-width: 1199px) {
   .contact-form-information {
    /* If media is below 1200 */
     padding-bottom: 60px;
     display: block;
  }
}
 @media (max-width: 767px) {
   .contact-form-information {
    /* If media is below 768 */
     padding-bottom: 50px;
  }
}
 @media (max-width: 1199px) {
   .contact-form-information .contact-banner {
     margin-bottom: 30px;
  }
}
 .contact-form-information .contact-banner .image-container {
   position: relative;
}
 @media (max-width: 991px) {
   .contact-form-information .contact-banner .image-container {
    /* If media is below 992 */
     display: inline-block;
     vertical-align: middle;
  }
}
 .contact-form-information .contact-banner .image-container a {
   display: inline-block;
   vertical-align: middle;
   position: relative;
}
 .contact-form-information .contact-banner .image-container a:after {
   border-color: rgba(200, 200, 200, 0.3);
   border-style: solid;
   border-width: 4px;
   content: "";
   height: 100%;
   left: 20px;
   position: absolute;
   top: 20px;
   width: 100%;
   z-index: -1;
   -webkit-transition: all 0.2s;
   -moz-transition: all 0.2s;
   -o-transition: all 0.2s;
   transition: all 0.2s;
}
 @media (max-width: 767px) {
   .contact-form-information .contact-banner .image-container a:after {
    /* If media is below 768 */
     display: none;
  }
}
 .contact-form-information .contact-banner .image-container a:hover:after {
   border-color: var(--brand-secondary-modify);
}
 .contact-form-information .information-container {
   text-align: left;
}
 .contact-form-information .information-container .title-container {
   margin-bottom: 0;
}
 @media (max-width: 543px) {
   .contact-form-information .information-container .title-container {
    /* If media is below 544 */
     padding: 0;
  }
}
 .contact-form-information .information-container .list-contact-info {
  /* If media is below 544 */
}
 @media (max-width: 543px) {
   .contact-form-information .information-container .list-contact-info {
     padding: 0;
  }
}
 .contact-form-information .information-container .list-contact-info .contact_info_item {
  /* If media is below 543 */
}
 @media (max-width: 543px) {
   .contact-form-information .information-container .list-contact-info .contact_info_item {
     width: 100%;
  }
}
 .contact-form-information .information-container .list-contact-info .contact_info_item h3 {
   color: #333;
   font-size: 16px;
   font-weight: 700;
   margin: 20px 0 10px;
   line-height: 1.1;
   text-transform: capitalize;
   font-family: var(--primary-font);
}
 .contact-form-information .information-container .list-contact-info .contact_info_item p, .contact-form-information .information-container .list-contact-info .contact_info_item a {
   color: #787878;
   line-height: 25px;
   margin: 0 auto;
   font-size: 15px;
   font-weight: 500;
}
 .contact-form-information .information-container .list-contact-info .contact_info_item p a:hover, .contact-form-information .information-container .list-contact-info .contact_info_item a a:hover {
   color: #787878;
}
 .contact-form-information .information-container .list-contact-info .contact_info_item:nth-child(3) {
   clear: left;
}
 .contact-form-information .information-container .list-contact-info .social-icons {
   padding-top: 5px;
}
 .contact-form-information .information-container .list-contact-info .social-icons li {
   display: inline-block;
   vertical-align: middle;
}
 .contact-form-information .information-container .list-contact-info .social-icons li a {
   border: 1px solid #ddd;
   border-radius: 50%;
   height: 35px;
   line-height: 35px;
   text-align: center;
   width: 35px;
   margin: 0 5px 5px 0;
   display: block;
   transition: all 0.4s ease 0s;
   -webkit-transition: all 0.4s ease 0s;
   -moz-transition: all 0.4s ease 0s;
   -o-transition: all 0.4s ease 0s;
   position: relative;
}
 .contact-form-information .information-container .list-contact-info .social-icons li a:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: inherit;
   z-index: -1;
   box-shadow: inset 0 0 0 35px #fff;
   -webkit-transform: scale3d(0.9, 0.9, 1);
   transform: scale3d(0.9, 0.9, 1);
   -moz-transform: box-shadow 0.3s, transform 0.3s;
   -o-transform: box-shadow 0.3s, transform 0.3s;
   -ms-transform: box-shadow 0.3s, transform 0.3s;
   -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3;
   transition: box-shadow 0.3s, transform 0.3s;
   -moz-transition: box-shadow 0.3s, transform 0.3s;
   -o-transition: box-shadow 0.3s, transform 0.3s;
}
 .contact-form-information .information-container .list-contact-info .social-icons li i {
   font-size: 14px;
   padding: 0px;
   color: #696969;
}
 .contact-form-information .information-container .list-contact-info .social-icons li:hover a:before {
   box-shadow: inset 0 0 0 2px var(--brand-secondary);
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
   -moz-transform: scale3d(1, 1, 1);
   -o-transform: scale3d(1, 1, 1);
   -ms-transform: scale3d(1, 1, 1);
}
 .contact-form-information .information-container .list-contact-info .social-icons li:hover i {
   color: var(--brand-secondary);
}
 .contact-form-bottom {
   padding: 15px;
}
 @media (min-width: 1200px) {
   .contact-form-bottom {
    /* If media is above 1199 */
     max-width: 1000px;
  }
}
 .contact-form-bottom .title-container {
   text-align: center;
   padding-left: 0;
}
 .contact-form-bottom .form-field textarea, .contact-form-bottom .form-field input {
   box-shadow: none;
   width: 100%;
   font-size: 15px;
   line-height: 1.42857143;
   color: #555;
   border-color: #e9e9e9;
   padding: 0 12px;
   margin-bottom: 15px;
   transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
 .contact-form-bottom .form-field textarea:focus, .contact-form-bottom .form-field input:focus {
   border-color: var(--brand-secondary);
   outline: 0;
}
 .contact-form-bottom .form-field input {
   height: 45px;
}
 .contact-form-bottom .form-field .form-group-area textarea {
   padding: 12px 12px 0;
}
 .contact-form-bottom .submit-button {
   margin: 0 auto;
   text-align: center;
}
 .contact-form-bottom .submit-button .btn {
   background: var(--button-bg-color) none repeat scroll 0 0;
   border: 0 none;
   border-radius: 30px;
   color: var(--button-text-color);
   display: inline-block;
   width: auto;
   text-shadow: 0 0;
   padding: 0 20px;
   font-size: 14px;
   font-weight: 400;
   text-transform: uppercase;
   line-height: 1.42857143;
   text-align: center;
   white-space: nowrap;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 .contact-form-bottom .submit-button .btn:hover, .contact-form-bottom .submit-button .btn:focus {
   background: var(--button-bg-hover-color);
   color: var(--button-text-hover-color);
   border-color: var(--button-bg-hover-color);
}
 .title-container {
   padding: 16px 30px;
   padding-right: 0;
   margin-bottom: 45px;
}
 @media (max-width: 1199px) {
   .title-container {
    /* If media is below 1200 */
     margin-bottom: 15px;
  }
}
 @media (max-width: 767px) {
   .title-container {
    /* If media is below 768 */
     margin-bottom: 10px;
  }
}
 .title-container .heading {
   color: #232323;
   font-size: 40px;
   display: block;
   letter-spacing: 0.1em;
   font-family: var(--primary-font);
   font-weight: 600;
   text-transform: uppercase;
   position: relative;
   margin: 20px 0 10px;
   line-height: 1.1;
}
 @media (max-width: 543px) {
   .title-container .heading {
    /* If media is below 543 */
     font-size: 22px;
  }
}
 .title-container .subheading {
   color: #666;
   font-size: 16px;
   font-weight: 600;
   letter-spacing: 0.2px;
}
 

/*================cart notification ================*/
.alert {
   text-align: center;
}
 .alert span {
   text-transform: capitalize;
}
 .alert .close {
  /* If media is above 543 */
}
 @media (min-width: 544px) {
   .alert .close {
     top: 15px ! important;
  }
}
 .alert a {
   color: #232323;
}
 .alert a:hover {
   color: #666;
}
 .address_tables .form-vertical input, .address_tables .form-vertical select, .address_tables .form-vertical textarea {
   height: 45px;
}
 .address_tables .form-vertical [type="radio"], .address_tables .form-vertical [type="checkbox"] {
   vertical-align: middle;
   height: auto;
   margin-bottom: 10px;
}
 .address-new-toggle i {
   margin-right: 10px;
}
 .address-update-btn {
   margin: 13px 0;
}
  .owl-carousel{
    height: auto !important;
  }

.owl-theme .owl-nav {
	 text-align: center;
	 margin-bottom: 0;
	 margin-top: 30px;
}
 @media (max-width: 991px) {
	 .owl-theme .owl-nav {
		/* If media is below 992 */
		 margin-top: 15px;
	}
}
 .owl-theme .owl-nav .owl-prev, .owl-theme .owl-nav .owl-next {
	 display: inline-block;
	 background: #fff;
	 border-radius: 50%;
	 margin: 0 3px;
	 width: 30px;
	 height: 30px;
	 border: 1px solid #eee;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -ms-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
}
 .owl-theme .owl-nav .owl-prev i, .owl-theme .owl-nav .owl-next i {
	 line-height: 29px;
	 text-align: center;
	 vertical-align: middle;
	 position: relative;
	 width: 30px;
	 height: 30px;
}
 .owl-theme .owl-nav .owl-prev i:after, .owl-theme .owl-nav .owl-next i:after {
	 display: none;
}
 .owl-theme .owl-nav .owl-prev i:before, .owl-theme .owl-nav .owl-next i:before {
	 color: #232323;
	 content: "\E317";
	 display: inline-block;
	 vertical-align: top;
	 font-family: "material icons";
	 font-size: 15px;
	 width: 30px;
	 height: 30px;
	 -webkit-transition: all 0.4s;
	 -moz-transition: all 0.4s;
	 -o-transition: all 0.4s;
	 transition: all 0.4s;
}
 .owl-theme .owl-nav .owl-prev:hover, .owl-theme .owl-nav .owl-next:hover {
	 background-color: #232323;
	 border-color: #232323;
}
 .owl-theme .owl-nav .owl-prev:hover i:before, .owl-theme .owl-nav .owl-next:hover i:before {
	 color: #fff;
}
 .owl-theme .owl-nav .owl-next i:before {
	 transform: rotate(180deg);
}
 
 .owl-theme .owl-nav .disabled {
   opacity: 1;
   cursor: default;
}
 .owl-theme .owl-nav.disabled + .owl-dots {
   margin-top: 10px;
}
 .owl-theme .owl-dots {
   text-align: center;
   display: block;
   text-align: center;
   opacity: 1;
   -webkit-transition: all 0.3s ease 0s;
   -moz-transition: all 0.3s ease 0s;
   -ms-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   -webkit-tap-highlight-color: transparent;
}
 .owl-theme .owl-dots .owl-dot {
   display: inline-block;
   vertical-align: middle;
   margin: 0px 0px;
}
 .owl-theme .owl-dots .owl-dot span {
   width: 12px;
   height: 12px;
   background: var(--button-bg-hover-color);
   border: none;
   border-radius: 50%;
   margin: 0 4px;
   display: block;
   -webkit-transition: all 0.4s ease 0s;
   -moz-transition: all 0.4s ease 0s;
   -ms-transition: all 0.4s ease 0s;
   -o-transition: all 0.4s ease 0s;
   transition: all 0.4s ease 0s;
}
 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
   background: var(--button-bg-color);
}
 .owl-theme .owl-dots .owl-dot.active span {
   cursor: default;
}
 
/*Do not change
Search-autocomplete css
*/

.thumbnail {
   border: none;
}
 .search-results {
   z-index: 8889;
   list-style-type: none;
   width: 280px;
   margin: 0;
   padding: 5px;
   background: #fff;
   border: 1px solid #e5e5e5;
   border-radius: 3px;
   -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
   box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);
   overflow: hidden;
}
 .search-results li {
   display: block;
   width: 100%;
   height: auto;
   margin: 0;
   padding: 5px 0;
   line-height: 26px;
   overflow: hidden;
}
 .search-results li a {
   display: block;
   overflow: hidden;
   padding-left: 5px;
   text-align: left;
}
 .search-results li:hover {
   background-color: #e5e5e5;
}
 .search-results li a:hover {
   color: #232323 !important;
}
 .search-results .title {
   padding-left: 0px;
   position: relative;
   line-height: 0px;
   letter-spacing: 0;
   font-size: 13px;
}
 .search-results .type {
   display: block;
   padding-left: 0px;
   overflow: hidden;
   text-transform: capitalize;
   color: gray;
}
 .search-results span {
   font-size: 14px;
   line-height: 16px;
}
 .search-results .price {
   display: block;
   overflow: hidden;
   padding-left: 0px;
   padding-top: 2px;
}
 .search-results .thumbnail {
   float: left;
   display: block;
   width: auto;
   height: auto;
   margin: 0;
   padding: 0;
   margin-right: 8px;
   text-align: center;
   overflow: hidden;
}
 .search-results .thumbnail img {
   width: 75px;
}
 

/* ------- Newsletter Popup ------- */

.newsletter-popup .modal {
   text-align: center;
}
 @media (min-width: 768px) {

   .newsletter-popup .modal:before {
     content: '';
     display: inline-block;
     height: 100%;
     vertical-align: middle;
  }
}
 .newsletter-popup .modal-dialog {
   display: inline-block;
   vertical-align: middle;
   text-align: center;
   margin: 60px 10px 30px;
}
 @media (min-width: 768px) {
   .newsletter-popup .modal-dialog {
    /* If media is above 767 */
     width: 750px;
  }
}
 .newsletter-popup .modal-content {
   padding: 0px;
   border-radius: 0;
}
 @media (min-width: 768px) {
   .newsletter-popup .modal-content {
    /* If media is above 767 */
     -webkit-animation-name: modal-animation;
     -webkit-animation-duration: 0.5s;
     animation-name: modal-animation;
     animation-duration: 0.5s;
  }
}
 .newsletter-popup .modal-content.popup-bg-image {
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}
 .newsletter-popup .modal-content .modal-header {
   padding: 0;
   border: 0;
   position: absolute;
   right: 10px;
   top: 10px;
   z-index: 1;
}
 .newsletter-popup .modal-content .modal-header .close {
   font-size: 30px;
   color: #232323;
   opacity: 1;
   text-shadow: none;
}
 .newsletter-popup .modal-content .modal-body {
   display: block;
   overflow: hidden;
   padding: 0;
}
 .newsletter-popup .modal-content .modal-body .valign-wrapper {
   display: flex;
   align-items: center;
}
 .newsletter-popup .modal-content .modal-body .valign-wrapper.image-right .popup-image {
   order: 2;
}
 .newsletter-popup .modal-content .modal-body .valign-wrapper.image-right .popup-text {
   order: 1;
}
 .newsletter-popup .modal-content .modal-body .image-cover .popup-text {
   padding: 80px 20px;
   width: 50%;
   margin: 0 auto;
}
 .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-right {
   float: right;
}
 @media (max-width: 767px) {
   .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-right {
    /* If media is below 768 */
     float: none;
     width: 80%;
  }
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-right {
    /* If media is below 544 */
     width: 100%;
  }
}
 .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-left {
   float: left;
}
 @media (max-width: 767px) {
   .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-left {
    /* If media is below 768 */
     float: none;
     width: 80%;
  }
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-left {
    /* If media is below 544 */
     width: 100%;
  }
}
 .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-center {
   float: none;
   text-align: center;
}
 @media (max-width: 767px) {
   .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-center {
    /* If media is below 768 */
     width: 80%;
  }
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-center {
    /* If media is below 544 */
     width: 100%;
  }
}
 .newsletter-popup .modal-content .modal-body .image-cover .popup-text.popup-text-center .follow-us {
   text-align: center;
}
 .newsletter-popup .modal-content .modal-body .popup-image {
   padding: 0;
   order: 1;
}
 @media (max-width: 991px) {
   .newsletter-popup .modal-content .modal-body .popup-image {
    /* If media is below 992 */
     display: none;
  }
}
 .newsletter-popup .modal-content .modal-body .popup-image img {
   width: 100%;
}
 .newsletter-popup .modal-content .modal-body .popup-text {
   order: 2;
   padding: 30px 20px;
   text-align: left;
}
 @media (max-width: 991px) {
   .newsletter-popup .modal-content .modal-body .popup-text {
    /* If media is below 992 */
     padding: 50px 40px;
     width: 80%;
  }
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .popup-text {
    /* If media is below 544 */
     padding: 40px 20px;
     width: 100%;
  }
}
 .newsletter-popup .modal-content .modal-body .popup-text .popup-title {
   font-size: 30px;
   font-weight: 600;
   line-height: 38px;
   margin-bottom: 15px;
   letter-spacing: 0.5px;
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .popup-text .popup-title {
    /* If media is below 544 */
     font-size: 24px;
     line-height: 28px;
  }
}
 .newsletter-popup .modal-content .modal-body .popup-text .popup-sub-title {
   margin-bottom: 25px;
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .popup-text .popup-sub-title {
    /* If media is below 544 */
     margin-bottom: 18px;
  }
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us {
   margin-top: 20px;
   text-align: left;
   float: none;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li {
   cursor: pointer;
   display: inline-block;
   vertical-align: middle;
   height: 35px;
   width: 35px;
   padding: 3px;
   margin: 3px 1px;
   border-radius: 50%;
   text-align: center;
   position: relative;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li .social-icons__link {
   text-align: center;
   margin: 0 auto;
   text-decoration: none;
   line-height: normal;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li .social-icons__link .icon__-text {
   display: none;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li .social-icons__link i {
   font-family: FontAwesome;
   font-weight: 400;
   position: relative;
   font-size: 15px;
   line-height: 31px;
   color: #fff;
}
 @media (max-width: 991px) {
   .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li .social-icons__link i {
    /* If media is below 992 */
     font-size: 15px;
  }
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.facebook {
   background-color: #3b5999;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.twitter {
   background-color: #00aced;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.pinterest {
   background-color: #cb2027;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.instagram {
   background-color: #cc2366;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.tumblr {
   background-color: #35465d;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.snapchat {
   background-color: #fffc00;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.youtube {
   background-color: #d12121;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.vimeo {
   background-color: #00aced;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li.rss {
   background-color: #f26522;
}
 .newsletter-popup .modal-content .modal-body .popup-text .follow-us .social-icon-inner ul li:hover {
   background: #232323;
}
 .newsletter-popup .modal-content .modal-body .popup-text .dont-show {
   margin-top: 15px;
}
 .newsletter-popup .modal-content .modal-body .popup-text .dont-show label {
   font-weight: 400;
   margin: 0;
   display: inline-block;
   vertical-align: middle;
   cursor: pointer;
}
 .newsletter-popup .modal-content .modal-body .popup-text .dont-show span {
   display: inline-block;
   vertical-align: middle;
   top: 1px;
   position: relative;
}
 .newsletter-popup .modal-content .modal-body .popup-text .dont-show input[type='checkbox'] {
   margin: 0;
   display: inline-block;
   vertical-align: middle;
   height: 15px;
   width: 15px;
}
 @media (max-width: 543px) {
   .newsletter-popup .modal-content .modal-body .popup-text .dont-show input[type='checkbox'] {
    /* If media is below 544 */
     top: 3px;
  }
}
 .newsletter-popup .modal-content .modal-body form .input-group {
   background: transparent;
}
 .newsletter-popup .modal-content .modal-body form .input-group .input-group__field {
   height: 46px;
   border: 1px solid rgba(0, 0, 0, 0.1);
}
 .newsletter-popup .modal-content .modal-body form .input-group .input-group__btn {
   position: absolute;
   right: 3px;
   top: 3px;
   width: auto;
}
 
@-webkit-keyframes modal-animation { 
  from { 
    top: -100px; 
    opacity: 0; 
  } 
  to { 
    top: 0px; 
    opacity: 1; 
  } 
} 

@keyframes modal-animation { 
  from { 
    top: -100px; 
    opacity: 0; 
  } 
  to { 
    top: 0px; 
    opacity: 1; 
  } 
}

.template-404 .section-header > h2 {
   margin-bottom: 15px;
}
 .template-404 #shopify-section-404_collection .grid__item:nth-child(4n+1) {
   clear: left;
}
 @media (max-width: 1199px) {
   .template-404 #shopify-section-404_collection .grid__item:nth-child(4n+1) {
     clear: none;
  }
   .template-404 #shopify-section-404_collection .grid__item:nth-child(3n+1) {
     clear: left;
  }
}
 @media (max-width: 991px) {
   .template-404 #shopify-section-404_collection .grid__item:nth-child(3n+1) {
     clear: none;
  }
   .template-404 #shopify-section-404_collection .grid__item:nth-child(2n+1) {
     clear: left;
  }
}
 @media (max-width: 543px) {
   .template-404 #shopify-section-404_collection .grid__item {
     width: 100%;
  }
}
 @media (max-width: 543px) {
   .template-404 .pnf-product-block .products-display {
     padding: 0 5px;
  }
}
 .template-404 .pnf-product-block .products-display .grid__item:nth-child(4n+1) {
   clear: left;
}
 @media (max-width: 1199px) {
   .template-404 .pnf-product-block .products-display .grid__item:nth-child(4n+1) {
     clear: none;
  }
   .template-404 .pnf-product-block .products-display .grid__item:nth-child(3n+1) {
     clear: left;
  }
}
 @media (max-width: 991px) {
   .template-404 .pnf-product-block .products-display .grid__item:nth-child(3n+1) {
     clear: none;
  }
   .template-404 .pnf-product-block .products-display .grid__item:nth-child(2n+1) {
     clear: left;
  }
}
 @media (max-width: 543px) {
   .template-404 .pnf-product-block .products-display .grid__item {
     padding: 5px;
  }
}
 .template-404 .pnf-product-block .view-all-btn {
   margin-top: 15px;
}
 .template-404 .empty-page {
   display: flex;
   align-items: center;
}
 @media (max-width: 991px) {
   .template-404 .empty-page {
     display: block;
  }
}
 @media (max-width: 991px) {
   .template-404 .empty-page .banner-image {
     margin-bottom: 30px;
  }
}
 .template-404 .empty-page .banner-image img {
   width: 100%;
}
 .template-404 .empty-page .empty-page-content .home-title {
   font-size: 100px;
   margin: 15px 0;
   font-weight: bold;
   line-height: 1;
   color: #232323;
}
 @media (min-width: 992px) and (max-width: 1199px) {
   .template-404 .empty-page .empty-page-content .home-title {
     font-size: 70px;
     margin: 10px 0;
  }
}
 @media (max-width: 767px) {
   .template-404 .empty-page .empty-page-content .home-title {
     font-size: 80px;
  }
}
 @media (max-width: 543px) {
   .template-404 .empty-page .empty-page-content .home-title {
     font-size: 60px;
  }
}
 .template-404 .empty-page .empty-page-content .sub-title {
   font-size: 30px;
   margin-bottom: 20px;
   font-weight: bold;
   line-height: 1.2;
   color: #232323;
}
 @media (min-width: 992px) and (max-width: 1199px) {
   .template-404 .empty-page .empty-page-content .sub-title {
     font-size: 14px;
     margin-bottom: 15px;
  }
}
 @media (max-width: 767px) {
   .template-404 .empty-page .empty-page-content .sub-title {
     font-size: 24px;
  }
}
 .template-404 .empty-page .empty-page-content .description {
   font-size: 15px;
   margin-bottom: 30px;
   font-weight: 500;
   line-height: 26px;
   color: #787878;
}
 @media (min-width: 992px) and (max-width: 1199px) {
   .template-404 .empty-page .empty-page-content .description {
     font-size: 14px;
     margin-bottom: 20px;
  }
}
 @media (max-width: 767px) {
   .template-404 .empty-page .empty-page-content .description {
     font-size: 15px;
  }
}
 .template-404 .empty-page .empty-page-content a {
   padding: 12px 35px;
   font-size: 16px;
}
 .template-404 .empty-page .empty-page-center {
   margin: 0 auto;
   text-align: center;
}
/*--------------------------------custom-css----------------*/ 


/*--------------------------------header-top----------------*/ 
.wrapper-nav{
  margin: 0 auto;
  background: transparent;
  min-height: 49px;
}
.mobile-navmenu{
  min-height: 71px;
}
/*================ header ================*/
 #header {
	 color: #666;
	 font-weight: 400;
	 font-size: 14px;
	 font-family: var(--primary-font);
	 letter-spacing: 0.1px;
}
 #header .nav-header {
	 font-size: 14px;
	 font-weight: 400;
	 position: relative;
	 background: var(--navbar-background-color);
	 letter-spacing: 0.5px;
	 border-bottom: 1px solid var(--navbar-text-modify-color);
}
 @media (max-width: 767px) {
	 #header .nav-header {
		 float: none;
		 text-align: center;
	}
}
 @media (min-width: 992px) {
	 #header .nav-header > .page-width {
		 max-width: 1380px;
	}
}
 #header .nav-header .header-block {
	 padding: 10px 15px;
	 color: var(--navbar-text-color);
	 line-height: 20px;
	 text-align: left;
}
 @media (max-width: 767px) {
	 #header .nav-header .header-block {
		/* If media is below 768 */
		 text-align: center;
		 display: none;
	}
}
 #header .nav-header .desktop-user-info {
	 text-align: right;
	 padding: 8px 15px;
}
 @media (max-width: 767px) {
	 #header .nav-header .desktop-user-info {
		/* If media is below 768 */
		 text-align: center;
		 padding: 10px 15px;
		 clear: both;
	}
}
 #header .nav-header .desktop-user-info .user_info {
	 padding: 3px 10px;
	 position: relative;
}
 #header .nav-header .desktop-user-info .user_info, #header .nav-header .desktop-user-info .checkout, #header .nav-header .desktop-user-info .wishlist {
	 display: inline-block;
	 vertical-align: middle;
	 background: #fff;
	 text-align: center;
	 border-radius: 6px 6px 0 0;
}
 #header .nav-header .desktop-user-info .user_info a, #header .nav-header .desktop-user-info .checkout a, #header .nav-header .desktop-user-info .wishlist a {
	 color: var(--navbar-text-color);
}
 #header .nav-header .desktop-user-info .checkout, #header .nav-header .desktop-user-info .wishlist {
	 margin-right: 8px;
	 position: relative;
	 padding: 3px 10px;
}
 @media (max-width: 543px) {
	 #header .nav-header .desktop-user-info .checkout, #header .nav-header .desktop-user-info .wishlist {
		/* If media is below 544 */
		 margin-right: 3px;
	}
}
 #header .header-top {
	 padding: 23px 0;
	 position: relative;
	 text-align: center;
}
 @media (max-width: 991px) {
	 #header .header-top {
		/* If media is below 992 */
		 padding: 25px 0;
	}
}
 @media (min-width: 992px) {
	 #header .header-top > .page-width {
		 max-width: 1380px;
	}
}
 @media (min-width: 544px) {
	 #header .header-top > .page-width > .row {
		 display: flex;
		 align-items: center;
	}
}
 #header .header-logo-section {
	 text-align: center;
	 margin: 0 auto;
}
 @media (max-width: 991px) {
	 #header .header-logo-section {
		 text-align: left;
	}
}
 @media (max-width: 543px) {
	 #header .header-logo-section {
		 text-align: center;
		 width: 100%;
	}
}
 #header .header-logo-section .header__logo {
	 margin: 0;
}
 #header .header-logo-section .header__logo a {
	 display: inline-block;
	 color: #232323;
}
 .header-right {
	 text-align: right;
}
 @media (max-width: 543px) {
	 .header-right {
		 display: none;
	}
}
 /*--------------------------Header-contact Block------------------*/
 #ishiheadercontactblock {
	 cursor: pointer;
	 display: inline-block;
	 vertical-align: middle;
	 margin-right: 15px;
	 white-space: nowrap;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 1199px) {
	 #ishiheadercontactblock {
		 margin-right: 10px;
	}
}
 @media (max-width: 991px) {
	 #ishiheadercontactblock {
		/* If media is below 992 */
		 margin-right: 0;
		 display: none;
	}
}
 #ishiheadercontactblock .call {
	 display: inline-block;
	 vertical-align: middle;
	 position: relative;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 543px) {
	 #ishiheadercontactblock .call {
		/* If media is below 544 */
		 display: block;
	}
}
 #ishiheadercontactblock .call:hover .call-img svg {
	 fill: var(--brand-secondary);
}
 #ishiheadercontactblock .call-img {
	 width: 50px;
	 height: 50px;
	 display: inline-block;
	 vertical-align: middle;
	 position: relative;
	 z-index: 2;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (min-width: 992px) and (max-width: 1199px) {
	 #ishiheadercontactblock .call-img {
		 width: 45px;
		 height: 45px;
	}
}
 #ishiheadercontactblock .call-img svg {
	 fill: #232323;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #ishiheadercontactblock .call-text {
	 display: inline-block;
	 vertical-align: middle;
	 padding: 0px;
	 font-weight: 500;
	 letter-spacing: 0.4px;
	 color: #666;
	 font-size: 12px;
	 text-align: left;
	 padding-left: 20px;
	 position: relative;
}
 #ishiheadercontactblock .call-text:before {
	 content: '';
	 height: 20px;
	 width: 1px;
	 background: #ddd;
	 position: absolute;
	 left: 6px;
	 top: 3px;
	 bottom: 0;
	 margin: auto;
}
 #ishiheadercontactblock .call-text .call-title {
	 color: var(--brand-third);
	 font-size: 16px;
	 line-height: 18px;
	 margin-bottom: 4px;
}
 #ishiheadercontactblock .call-text .call-num {
	 color: #666;
	 font-size: 12px;
}
 /*-------------------------search-bar-----------------*/
 #_desktop_search, #_mobile_search {
	 cursor: pointer;
	 position: relative;
}
 @media (max-width: 991px) {
	 #_desktop_search, #_mobile_search {
		 line-height: 0;
		 padding: 0;
		 float: right;
	}
}
 #_desktop_search .search-toggle, #_mobile_search .search-toggle {
	/* If media is above 991 */
	 width: 40px;
	 height: 40px;
	 display: block;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
	 cursor: pointer;
}
 @media (min-width: 992px) {
	 #_desktop_search .search-toggle, #_mobile_search .search-toggle {
		 display: none;
	}
}
 #_desktop_search .search-toggle svg, #_mobile_search .search-toggle svg {
	 fill: var(--button-text-color);
}
 @media (max-width: 991px) {
	 #_desktop_search .search-toggle svg, #_mobile_search .search-toggle svg {
		 fill: #232323;
	}
}
 #_desktop_search .search-info, #_mobile_search .search-info {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 #_desktop_search .search-info, #_mobile_search .search-info {
		 display: block;
	}
}
 @media (max-width: 991px) {
	 #_desktop_search .search-info, #_mobile_search .search-info {
		/* If media is below 992 */
		 position: absolute;
		 left: 0;
		 right: auto;
		 top: 44px;
		 z-index: 99;
	}
}
 #_desktop_search .search-info form, #_mobile_search .search-info form {
	 width: 100%;
	 max-width: 300px;
	 border-radius: 50px;
}
 @media (max-width: 991px) {
	 #_desktop_search .search-info form, #_mobile_search .search-info form {
		/* If media is below 992 */
		 border-radius: 0px;
		 background-color: transparent;
	}
}
 @media (max-width: 543px) {
	 #_desktop_search .search-info form, #_mobile_search .search-info form {
		/* If media is below 544 */
		 max-width: 240px;
	}
}
 #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input {
	 min-width: 300px;
	 width: 100%;
	 border: 1px solid #e8e8e8;
	 height: 40px;
	 padding: 5px 15px;
	 background: #fff;
	 text-transform: capitalize;
	 font-size: 13px;
	 font-weight: 500;
	 border-radius: 50px;
	 color: #666;
	 padding-right: 40px;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input {
		/* If media is between 992 and 1199 */
		 min-width: 240px;
	}
}
 @media (max-width: 543px) {
	 #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input {
		/* If media is below 544 */
		 min-width: 240px;
	}
}
 @media (max-width: 375px) {
	 #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input {
		/* If media is below 544 */
		 min-width: 210px;
	}
}
 @media (max-width: 543px) {
	 #_desktop_search .search-info .search__input, #_mobile_search .search-info .search__input {
		 border-radius: 0;
	}
}
 #_desktop_search .search-info .search__input:hover + .btn--link, #_mobile_search .search-info .search__input:hover + .btn--link {
	 opacity: 1;
}
 #_desktop_search .search-info .search__input::placeholder, #_mobile_search .search-info .search__input::placeholder {
	 color: #666;
	 opacity: 1;
}
 #_desktop_search .search-info .search__input:focus, #_mobile_search .search-info .search__input:focus {
	 background: #fff;
}
 #_desktop_search .search-info .search-header__submit, #_mobile_search .search-info .search-header__submit {
	 position: absolute;
	 border: none;
	 top: 2px;
	 right: 2px;
	 width: 36px;
	 height: 36px;
	 bottom: 0;
	 background: var(--button-bg-color);
	 font-size: 18px;
	 font-weight: 400;
	 color: var(--button-text-color);
	 padding: 0;
	 outline: none;
	 border-radius: 50%;
	 display: inline-block;
	 vertical-align: middle;
	 -ms-transition: all 0.5s;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #_desktop_search .search-info .search-header__submit:hover, #_mobile_search .search-info .search-header__submit:hover {
	 background-color: var(--button-bg-hover-color);
	 color: var(--button-text-hover-color);
}
 #_desktop_search .search-info .search-header__submit.btn--link:hover, #_mobile_search .search-info .search-header__submit.btn--link:hover, #_desktop_search .search-info .search-header__submit.btn--link:focus, #_mobile_search .search-info .search-header__submit.btn--link:focus {
	 opacity: 1;
}
 @media (max-width: 543px) {
	 #_desktop_search .search-info .search-header__submit, #_mobile_search .search-info .search-header__submit {
		 border-radius: 0;
	}
}
 #_desktop_search .search-info .search-header__submit .icon__fallback-text, #_mobile_search .search-info .search-header__submit .icon__fallback-text {
	 display: none;
	 color: #232323;
	 position: unset !important;
	 height: 35px;
	 width: auto;
	 line-height: 32px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #_desktop_search .search-info .search-results li a img, #_mobile_search .search-info .search-results li a img {
	 border: 1px solid #e9e9e9;
}
 #_desktop_search .search-info .search-results li a .price, #_mobile_search .search-info .search-results li a .price {
	 padding-top: 0;
}
 /*-----------------------shopping cart--------------*/
 #_desktop_cart, #_mobile_cart {
	 text-align: left;
	 display: inline-block;
	 vertical-align: middle;
	 white-space: nowrap;
	 position: relative;
	 float: right;
}
 @media (max-width: 991px) {
	 #_desktop_cart, #_mobile_cart {
		 padding: 0;
		 padding-right: 0;
		 border: 0;
	}
}
 #_desktop_cart:hover, #_mobile_cart:hover {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 #_desktop_cart:hover .cart-display .cart-title .cart-logo svg, #_mobile_cart:hover .cart-display .cart-title .cart-logo svg {
		 fill: var(--brand-secondary);
	}
}
 #_desktop_cart .cart-display .cart-title, #_mobile_cart .cart-display .cart-title {
	 cursor: pointer;
}
 #_desktop_cart .cart-display .cart-title .cart-logo, #_mobile_cart .cart-display .cart-title .cart-logo {
	 width: 50px;
	 height: 50px;
	 display: inline-block;
	 vertical-align: middle;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (min-width: 992px) and (max-width: 1199px) {
	 #_desktop_cart .cart-display .cart-title .cart-logo, #_mobile_cart .cart-display .cart-title .cart-logo {
		 width: 45px;
		 height: 45px;
	}
}
 @media (max-width: 991px) {
	 #_desktop_cart .cart-display .cart-title .cart-logo, #_mobile_cart .cart-display .cart-title .cart-logo {
		/* If media is below 992 */
		 height: 40px;
		 width: 40px;
	}
}
 #_desktop_cart .cart-display .cart-title .cart-logo svg, #_mobile_cart .cart-display .cart-title .cart-logo svg {
	 fill: #232323;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 991px) {
	 #_desktop_cart .cart-display .cart-title .cart-logo svg, #_mobile_cart .cart-display .cart-title .cart-logo svg {
		 fill: #232323;
	}
}
 #_desktop_cart .cart-display .cart-title .cart-price, #_mobile_cart .cart-display .cart-title .cart-price {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 #_desktop_cart .cart-display .cart-title .cart-price, #_mobile_cart .cart-display .cart-title .cart-price {
		 display: inline-block;
		 vertical-align: middle;
		 text-align: left;
		 padding-left: 15px;
		 position: relative;
	}
	 #_desktop_cart .cart-display .cart-title .cart-price:before, #_mobile_cart .cart-display .cart-title .cart-price:before {
		 content: '';
		 height: 20px;
		 width: 1px;
		 background: #ddd;
		 position: absolute;
		 left: 0px;
		 top: 13px;
	}
}
 #_desktop_cart .cart-display .cart-title .cart-price .sub-title, #_mobile_cart .cart-display .cart-title .cart-price .sub-title {
	 display: block;
}
 #_desktop_cart .cart-display .cart-title .cart-price .sub-title .cart__subtotal, #_mobile_cart .cart-display .cart-title .cart-price .sub-title .cart__subtotal {
	 display: inline-block;
	 text-align: left;
	 color: #666;
	 font-size: 12px;
	 float: none;
}
 #_desktop_cart .cart-display .cart-title .cart-price .cart-qty, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 #_desktop_cart .cart-display .cart-title .cart-price .cart-qty, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty {
		 display: inline-block;
		 position: relative;
		 padding: 0 4px;
		 font-size: 12px;
		 vertical-align: middle;
	}
}
 @media (min-width: 992px) and (min-width: 992px) {
	 #_desktop_cart .cart-display .cart-title .cart-price .cart-qty, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty {
		/* If media is above 991 */
	}
	 #_desktop_cart .cart-display .cart-title .cart-price .cart-qty:before, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty:before, #_desktop_cart .cart-display .cart-title .cart-price .cart-qty:after, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty:after {
		 content: "(";
		 position: absolute;
		 left: 0;
		 top: 0px;
		 margin: auto;
	}
	 #_desktop_cart .cart-display .cart-title .cart-price .cart-qty:after, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty:after {
		 content: ")";
		 left: auto;
		 right: 0;
	}
}
 @media (max-width: 991px) {
	 #_desktop_cart .cart-display .cart-title .cart-price .cart-qty, #_mobile_cart .cart-display .cart-title .cart-price .cart-qty {
		/* If media is below 992 */
		 background-color: var(--button-bg-color);
		 border-radius: 50%;
		 color: var(--button-text-color);
		 font-size: 11px;
		 height: 15px;
		 left: auto;
		 line-height: 13px;
		 position: absolute;
		 right: 9px;
		 text-align: center;
		 top: 6px;
		 width: 15px;
	}
}
 #_desktop_cart .cart-display .cart-title .cart-price .main-title, #_mobile_cart .cart-display .cart-title .cart-price .main-title {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 #_desktop_cart .cart-display .cart-title .cart-price .main-title, #_mobile_cart .cart-display .cart-title .cart-price .main-title {
		 display: none;
	}
}
 @media (min-width: 992px) {
	 #_desktop_cart .cart-display .cart-title .cart-price .main-title, #_mobile_cart .cart-display .cart-title .cart-price .main-title {
		/* If media is above 991 */
		 color: var(--brand-third);
		 font-size: 16px;
		 line-height: 22px;
	}
}
 #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner {
	 position: absolute;
	 z-index: 18;
	 width: 350px;
	 right: 0px;
	 top: 50px;
	 background: #fff none repeat scroll 0 0;
	 border: 1px solid #ebebeb;
	 font-family: var(--primary-font);
	 left: auto;
	 text-align: left;
	 line-height: 1.25;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 991px) {
	 #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner {
		/* If media is below 992 */
		 top: 44px;
		 right: 10px;
		 width: 300px;
	}
}
 @media (max-width: 543px) {
	 #_desktop_cart .cart-display .cart-dropdown-inner, #_mobile_cart .cart-display .cart-dropdown-inner {
		 width: 280px;
	}
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list, #_mobile_cart .cart-display .cart-dropdown-inner .product-list {
	 max-height: 252px;
	 padding: 10px;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product {
	 padding-bottom: 10px;
	 position: relative;
	 display: block;
	 overflow: hidden;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product:hover {
	 color: #232323;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product:last-child, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product:last-child {
	 padding-bottom: 0;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-img, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-img {
	 width: 85px;
	 display: inline-block;
	 float: left;
	 border: 1px solid #eee;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data {
	 overflow: hidden;
	 text-align: left;
	 padding: 15px;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data span, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data span {
	 display: block;
	 cursor: pointer;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title {
	 white-space: normal;
	 font-weight: 400;
	 color: #232323;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product .product-data .product-title:hover {
	 color: #666;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove {
	 position: absolute;
	 top: 0;
	 right: 0;
	 cursor: pointer;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i {
	 font-size: 20px;
	 color: #232323;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i:hover, #_mobile_cart .cart-display .cart-dropdown-inner .product-list .product a.remove i:hover {
	 color: #666;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer {
	 padding: 15px;
	 border-top: 1px solid #eee;
	 display: block;
	 position: relative;
	 overflow: hidden;
}
 @media (max-width: 543px) {
	 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer {
		/* If media is below 544 */
		 padding: 15px 10px;
	}
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item {
	 width: 100%;
	 font-size: 16px;
	 float: left;
	 overflow: hidden;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links {
	 text-align: center;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn {
	 -webkit-transition: all 0.4s;
	 -moz-transition: all 0.4s;
	 -o-transition: all 0.4s;
	 transition: all 0.4s;
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart {
	 background-color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
	 color: var(--button-text-hover-color);
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart:hover, #_mobile_cart .cart-display .cart-dropdown-inner .cart__footer .grid__item .cart-links .btn.view-cart:hover {
	 background-color: var(--button-bg-color);
	 border-color: var(--button-bg-color);
	 color: var(--button-text-color);
}
 #_desktop_cart .cart-display .cart-dropdown-inner .cart__empty, #_mobile_cart .cart-display .cart-dropdown-inner .cart__empty {
	 padding: 10px;
	 color: #999;
}
 /*-------------desktop width fixed-header--------------*/
 .fixed-header {
	 background-color: var(--menu-background-color);
	 position: fixed !important;
	 top: 0 !important;
	 left: 0;
	 width: 100%;
	 max-width: 100% !important;
	 z-index: 99;
	 right: 0;
	 padding: 0;
	 box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
	 margin: 0 !important;
	 border-radius: 0 !important;
	 animation: slide-down 0.7s;
	 -moz-animation: slide-down 0.7s;
	 -webkit-animation: slide-down 0.7s;
	 -o-animation: slide-down 0.7s;
	 overflow: visible;
}
 @keyframes slide-down {
  0% {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -ms-transform:translateY(-100%);
    -o-transform:translateY(-100%);
    -moz-transform:translateY(-100%);
  } 
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform:translateY(0);
    -o-transform:translateY(0);
    -moz-transform:translateY(0);
  } 
}
/*---------------------------------mobile width fixed-header--------------*/
 .navfullwidth {
	/* If media is above 1670 */
	 position: relative;
	 background-color: var(--menu-background-color);
	 margin-bottom: 15px;
}
 @media (min-width: 1670px) {
	 .navfullwidth {
		 margin: 0 -25px;
		 border-radius: 50px;
		 margin-bottom: 15px;
	}
}
 #shopify-section-Ishi_megamenu {
	 float: none;
}
 /*--------------------------Navfullwidth------------------*/
 #mobile_top_menu_wrapper {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 300px;
	 bottom: 0;
	 background: white;
	 z-index: 999;
	 overflow-y: auto;
	 overflow-x: auto;
}
 #mobile_top_menu_wrapper #top_menu_closer {
	 cursor: pointer;
	 padding: 15px 15px 10px;
	 text-align: right;
}
 #mobile_top_menu_wrapper #top_menu_closer i {
	 font-size: 24px;
	 color: #232323;
}
 #mobile_top_menu_wrapper #_mobile_top_menu {
	 padding: 0 15px;
}
 #mobile_top_menu_wrapper #top-menu {
	 margin-bottom: 0;
	 text-align: left;
	 display: block;
	 padding: 0;
}
 #mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .add {
	 display: none;
}
 #mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .remove {
	 display: block;
}
 #mobile_top_menu_wrapper .top-menu .collapse-icons .remove {
	 display: none;
}
 #mobile_top_menu_wrapper .top-menu .navbar-toggler {
	 display: inline-block;
	 padding: 0;
	 position: absolute;
	 right: 0;
	 cursor: pointer;
	 color: #333;
}
 #mobile_top_menu_wrapper .top-menu .navbar-toggler i {
	 font-size: 24px;
}
 #mobile_top_menu_wrapper .top-menu a {
	 padding: 0;
	 margin: 0;
}
 #mobile_top_menu_wrapper .top-menu .collapse {
	 display: none;
}
 #mobile_top_menu_wrapper .top-menu .collapse.in {
	 display: block;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu {
	 box-shadow: none;
	 z-index: inherit;
	 display: block;
	 position: static;
	 overflow: hidden;
	 margin-left: 0;
	 width: 100%;
	 min-width: 100%;
	 border: none;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu.collapse {
	 display: none;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu.collapse.in {
	 display: block;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu ul {
	 margin: 0;
	 padding: 0;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu ul > li {
	 float: none;
	 margin: 0;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu ul > li a {
	 text-transform: none;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu ul {
	 padding: 10px 0 0 15px;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown li a {
	 display: inline-block;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown .sub-category .top-menu .category {
	 padding: 10px 0 5px;
}
 #mobile_top_menu_wrapper .top-menu .sub-menu .mainmenu-dropdown .sub-category .top-menu .category a {
	 font-size: 14px;
}
 #mobile_top_menu_wrapper .top-menu .popover {
	 border-radius: 0;
}
 .mobile-menu-overlay {
	 background-color: rgba(0, 0, 0, .5);
	 height: 100%;
	 left: 0;
	 opacity: 0;
	 position: fixed;
	 top: 0;
	 transition: opacity 200ms, visibility 0ms 200ms;
	 visibility: hidden;
	 width: 100%;
	 z-index: 998;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .mobile-menu-overlay.active {
	 opacity: 1;
	 visibility: visible;
}
 /*---------------------------------mobile width--------------*/
 .mobile-width {
	 width: 100% !important;
}
 @media (max-width: 991px) {
	 .mobile-width {
		/* If media is below 992 */
		 background-color: #fff;
		 margin-bottom: 15px;
		 border-bottom: 1px solid #eee;
	}
}
 .mobile-width .page-width {
	 padding: 10px 15px;
}
 .mobile-width .page-width > .row {
	 display: flex;
	 align-items: center;
}
 .mobile-width .mobile_search {
	 padding: 0 !important;
}
 .mobile-width .mobile-width-left {
	 width: 28%;
	 padding: 5px;
	 display: flex;
	 align-items: center;
}
 .mobile-width .mobile-width-left #menu-icon {
	 cursor: pointer;
	 display: inline-block;
	 vertical-align: middle;
}
 .mobile-width .mobile-width-left #menu-icon svg {
	 fill: #232323;
	 width: 40px;
	 height: 40px;
}
 .mobile-width #_mobile_logo {
	 width: 44%;
	 margin: 0 auto;
	 text-align: center;
	 padding: 0 5px;
}
 .mobile-width .mobile-width-right {
	 width: 28%;
	 padding: 5px;
	 display: flex;
	 align-items: center;
	 justify-content: flex-end;
}
 .mobile-width .mobile-width-right #_mobile_user_info svg {
	 width: 40px;
	 height: 40px;
	 display: inline-block;
	 vertical-align: middle;
	 fill: #232323;
}
 .mobile-width .mobile-width-right > div {
	 float: right !important;
}
 /*================ main menu ================*/
 #_desktop_top_menu {
	 float: none;
	 padding: 0;
}
 #_desktop_top_menu #top-menu {
	 text-align: center;
	 margin-bottom: 0;
	 padding: 0;
}
 #top-menu h3 {
	 position: relative;
	 -webkit-transition: all 0.3s;
	 -moz-transition: all 0.3s;
	 -o-transition: all 0.3s;
	 transition: all 0.3s;
	 margin: 0;
	 letter-spacing: 0.5px;
	 color: #232323;
}
 @media (max-width: 991px) {
	 #top-menu h3 {
		/* If media is below 992 */
		 font-size: 15px;
		 font-weight: 400;
	}
}
 #top-menu > li {
	 display: inline-block;
	 vertical-align: middle;
	 position: relative;
}
 @media (max-width: 991px) {
	 #top-menu > li {
		 display: block;
		 padding: 15px 0;
		 border-bottom: 1px solid #eee;
	}
	 #top-menu > li:last-child {
		 border-bottom: none;
	}
}
 #top-menu > li .dropdown-item {
	 white-space: normal;
}
 #top-menu > li > a {
	 display: block;
	 padding: 16px 12px;
	 position: relative;
}
 @media (max-width: 991px) {
	 #top-menu > li > a {
		/* If media is below 992 */
		 display: inline-block;
		 vertical-align: middle;
		 padding: 15px;
	}
}
 #top-menu > li > a .title {
	 display: inline-block;
	 font-size: 14px;
	 font-weight: 400;
	 color: var(--menu-text-color);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
	 font-family: var(--primary-font);
}
 @media (max-width: 991px) {
	 #top-menu > li > a .title {
		/* If media is below 992 */
		 float: left;
		 color: #232323;
		 line-height: 20px;
		 font-weight: 400;
		 font-size: 16px;
	}
}
 #top-menu > li > a i {
	 display: none;
}
 #top-menu > li > a span {
	 background: #f00 none repeat scroll 0 0;
	 border-radius: 2px;
	 font-family: var(--primary-font);
	 font-size: 8px;
	 font-weight: 400;
	 right: 7px;
	 padding: 0px 3px;
	 position: absolute;
	 top: 2px;
	 letter-spacing: 0.5px;
	 line-height: 12px;
	 color: #fff;
}
 @media (max-width: 991px) {
	 #top-menu > li > a span {
		 display: none;
	}
}
 #top-menu > li > a span.new {
	 background: #232323 none repeat scroll 0 0;
}

 @media (min-width: 992px) {
	 #top-menu > li > a span.new:before {
		 border-top: 5px solid #232323;
	}
}
 #top-menu > li > a span.sale {
	 background: #719b2e none repeat scroll 0 0;
}

 @media (min-width: 992px) {
	 #top-menu > li > a span.sale:before {
		 border-top: 5px solid #719b2e;
	}
}
 @media (min-width: 992px) {
	 #top-menu > li > a span:before {
		 content: '';
		 position: absolute;
		 bottom: -4px;
		 left: 0;
		 width: 0;
		 height: 0;
		 border: 0 solid transparent;
		 border-top-width: 0px;
		 border-right-width: 0px;
		 border-left-width: 0px;
		 border-top-style: solid;
		 border-top-color: transparent;
		 border-left-width: 0px;
		 border-right-width: 6px;
		 border-top: 5px solid #f00;
		 -moz-transform: scale(0.9999);
	}
}
 #_desktop_top_menu #top-menu > li .sub-menu {
	 position: relative;
}
 #_desktop_top_menu #top-menu > li .sub-menu.collapse {
	 background-color: #fff;
	 background-position: right bottom;
	 background-repeat: no-repeat;
	 display: block;
	 position: absolute;
	 text-align: left;
	 top: 170%;
	 left: 0px;
	 margin: 0px;
	 padding: 20px 14px;
	 z-index: 18;
	 visibility: hidden;
	 border-radius: 3px;
	 opacity: 0;
	 border: 0;
	 -webkit-transition: all 0.6s ease;
	 -o-transition: all 0.6s ease;
	 transition: all 0.6s ease;
	 -webkit-box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
	 box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}
 #top-menu > li:hover:before {
	 -webkit-transform: scaleX(1);
	 transform: scaleX(1);
	 -webkit-transform-origin: 0%;
	 transform-origin: 0%;
}
 #top-menu > li:hover > a .title {
	 color: var(--menu-text-hover-color);
}
 @media (max-width: 991px) {
	 #top-menu > li:hover > a .title {
		/* If media is below 992 */
		 color: #232323;
	}
}
 #_desktop_top_menu #top-menu > li:hover:hover .sub-menu {
	 visibility: visible;
	 top: 100%;
	 opacity: 1;
}
 .top-menu.mainmenu-dropdown {
	 display: block;
	 overflow: hidden;
}
 .top-menu.mainmenu-dropdown .sub-category {
	 text-align: left;
	 width: 200px;
	 float: left;
	 margin-bottom: 0px;
}
 @media (max-width: 991px) {
	 .top-menu.mainmenu-dropdown .sub-category {
		/* If media is below 992 */
		 padding: 10px 0;
	}
}
 .top-menu.mainmenu-dropdown .sub-category > a {
	 padding-bottom: 4px;
	 margin-bottom: 17px;
	 position: relative;
}
 .top-menu.mainmenu-dropdown .sub-category > a:before {
	 border-top: 1px solid #ddd;
	 bottom: -7px;
	 content: "";
	 position: absolute;
	 left: 0;
	 width: 50%;
}
 @media (max-width: 991px) {
	 .top-menu.mainmenu-dropdown .sub-category > a:before {
		/* If media is below 992 */
		 display: none;
	}
}
 .top-menu.mainmenu-dropdown .sub-category > a h3 {
	 color: #232323;
	 display: block;
	 text-transform: capitalize;
	 font-weight: 400;
	 font-size: 14px;
	 font-family: var(--primary-font);
}
 @media (min-width: 992px) {
	 .top-menu.mainmenu-dropdown .sub-category > a h3 {
		/* If media is above 991 */
		 font-size: 15px;
		 color: #232323;
		 font-weight: 600;
		 -webkit-transition: all 0.5s;
		 -moz-transition: all 0.5s;
		 -o-transition: all 0.5s;
	}
}
 .top-menu.mainmenu-dropdown .sub-category ul .category:last-child a {
	 padding-bottom: 0;
}
 .top-menu.mainmenu-dropdown li a {
	 font-family: var(--primary-font);
	 padding-bottom: 12px;
	 font-size: 14px;
	 display: block;
	 color: #666;
	 font-weight: 400;
	 text-transform: capitalize;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
}
 @media (max-width: 991px) {
	 .top-menu.mainmenu-dropdown li a {
		 color: #232323;
	}
}
 @media (min-width: 992px) {
	 .top-menu.mainmenu-dropdown li a:hover {
		 color: #232323;
	}
}
 .top-menu .collapse {
	 display: inherit;
}
 .top-menu .popover {
	 max-width: inherit;
}
 .img-container {
	 clear: both;
	 margin-top: 20px;
}
 @media (max-width: 991px) {
	 .img-container {
		/* If media is below 992 */
		 display: none;
	}
}
 .grid__item--Ishi_megamenu {
	 padding: 0;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container {
	 position: relative;
	 width: 100%;
	 overflow: hidden;
	 display: block;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper {
	 width: 130px;
	 margin: 0;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper a {
	 padding: 0;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .grid-view-item__image-wrapper a img {
	 border: 1px solid #e9e9e9;
	 position: relative;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description {
	 text-align: left;
	 margin-top: 5px;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
	 display: block;
	 color: var(--brand-third);
	 font-size: 15px;
	 font-weight: 600;
	 letter-spacing: 0.1px;
	 text-transform: capitalize;
	 font-family: var(--primary-font);
	 margin-bottom: 3px;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta {
	 font-family: var(--primary-font);
	 font-size: 14px;
	 font-weight: 400;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta span, .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta s {
	 color: #666;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
	 color: var(--brand-secondary);
	 font-size: 15px;
	 font-weight: 600;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
	 margin: 0 4px;
	 color: var(--brand-third);
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span {
	 display: none;
}
 .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .visually-hidden, .grid__item--Ishi_megamenu .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out {
	 display: none;
}
 /*================ ishislider ================*/
 .ishi-slider-section {
	 margin-bottom: 30px;
	 overflow: hidden;
}
 #ishislideshow-carousel {
	 position: relative;
}
 #ishislideshow-carousel .owl-nav {
	/* If media is below 768 */
	 margin-bottom: 0;
	 margin-top: 0;
}
 @media (max-width: 767px) {
	 #ishislideshow-carousel .owl-nav {
		 display: none;
	}
}
 #ishislideshow-carousel .owl-nav .owl-prev, #ishislideshow-carousel .owl-nav .owl-next {
	 position: absolute;
	 padding: 0;
	 top: 46%;
	 margin: 4px;
	 left: -4px;
	 right: auto;
	 width: 30px;
	 height: 50px;
	 display: inline-block;
	 border-radius: 0;
	 opacity: 0;
	 border-color: var(--button-bg-color);
	 background-color: var(--button-bg-color);
	 transform: scale(0);
	 -moz-transform: scale(0);
	 -webkit-transform: scale(0);
	 -o-transform: scale(0);
	 -ms-transform: scale(0);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 991px) {
	 #ishislideshow-carousel .owl-nav .owl-prev, #ishislideshow-carousel .owl-nav .owl-next {
		/* If media is below 992 */
		 top: 40%;
	}
}
 #ishislideshow-carousel .owl-nav .owl-prev i, #ishislideshow-carousel .owl-nav .owl-next i {
	 top: 10px;
}
 #ishislideshow-carousel .owl-nav .owl-prev i:before, #ishislideshow-carousel .owl-nav .owl-next i:before {
	 color: var(--button-text-color);
}
 #ishislideshow-carousel .owl-nav .owl-prev:hover, #ishislideshow-carousel .owl-nav .owl-next:hover {
	 background-color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
}
 #ishislideshow-carousel .owl-nav .owl-prev:hover i:before, #ishislideshow-carousel .owl-nav .owl-next:hover i:before {
	 color: var(--button-text-hover-color);
}
 #ishislideshow-carousel .owl-nav .owl-next {
	 right: -4px;
	 left: auto;
}
 #ishislideshow-carousel .owl-dots {
	 position: absolute;
	 bottom: 10px;
	 right: 0;
	 left: 0;
	 margin: 0 auto;
	 text-align: center;
	 -webkit-transition: all 0.3s;
	 -moz-transition: all 0.3s;
	 -o-transition: all 0.3s;
	 transition: all 0.3s;
}
 #ishislideshow-carousel .owl-dots .owl-dot {
	 display: inline-block;
	 vertical-align: middle;
}
 #ishislideshow-carousel .owl-dots .owl-dot span {
	 margin: 0 5px;
	 cursor: pointer;
	 width: 12px;
	 height: 12px;
	 background-color: var(--button-bg-color);
	 border-radius: 0;
	 display: block;
}
 #ishislideshow-carousel .owl-dots .owl-dot.active span, #ishislideshow-carousel .owl-dots .owl-dot:hover span {
	 background-color: var(--button-bg-hover-color);
}
 #ishislideshow-carousel:hover .owl-nav .owl-prev, #ishislideshow-carousel:hover .owl-nav .owl-next {
	 opacity: 1;
	 transform: scale(1);
	 -moz-transform: scale(1);
	 -webkit-transform: scale(1);
	 -o-transform: scale(1);
	 -ms-transform: scale(1);
}
 #ishislideshow-carousel .slideshow__link {
	 display: flex;
	 align-items: center;
}
 #ishislideshow-carousel .page-width {
	 position: absolute;
	 left: 0;
	 right: 0;
}
 @media (min-width: 768px) and (max-width: 1399px) {
	 #ishislideshow-carousel .page-width {
		 width: 90%;
	}
}
 #ishislideshow-carousel .slider-content {
	 padding: 0;
}
 #ishislideshow-carousel .slider-content .sub-title {
	 font-size: 32px;
	 text-transform: unset;
	 font-family: var(--secondary-font);
	 line-height: 32px;
	 margin-bottom: 10px;
	 letter-spacing: 0.5px;
}
 @media (max-width: 1499px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 28px;
		 line-height: 28px;
	}
}
 @media (max-width: 1199px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 24px;
		 line-height: 24px;
	}
}
 @media (max-width: 991px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 20px;
		 line-height: 20px;
	}
}
 @media (max-width: 767px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 16px;
		 line-height: 16px;
	}
}
 @media (max-width: 543px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 14px;
		 line-height: 14px;
	}
}
 @media (max-width: 480px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 12px;
		 line-height: 12px;
	}
}
 @media (max-width: 415px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 11px;
		 line-height: 11px;
		 margin-bottom: 7px;
	}
}
 @media (max-width: 380px) {
	 #ishislideshow-carousel .slider-content .sub-title {
		 font-size: 10px;
		 line-height: 10px;
		 margin-bottom: 5px;
	}
}
 #ishislideshow-carousel .slider-content .main-title {
	 font-size: 65px;
	 text-transform: unset;
	 line-height: 65px;
	 margin-bottom: 20px;
	 letter-spacing: 0.7px;
	 font-weight: 500;
	 font-family: var(--primary-font);
}
 @media (max-width: 1199px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 48px;
		 line-height: 48px;
	}
}
 @media (max-width: 991px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 40px;
		 line-height: 40px;
	}
}
 @media (max-width: 767px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 30px;
		 line-height: 30px;
         margin-bottom: 15px;
	}
}
 @media (max-width: 543px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 24px;
		 line-height: 24px;
	}
}
 @media (max-width: 480px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 20px;
		 line-height: 20px;
	}
}
 @media (max-width: 415px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 18px;
		 line-height: 18px;
		 margin-bottom: 7px;
	}
}
 @media (max-width: 380px) {
	 #ishislideshow-carousel .slider-content .main-title {
		 font-size: 15px;
		 line-height: 15px;
	}
}
 #ishislideshow-carousel .slider-content .desc {
	 font-size: 16px;
	 line-height: 24px;
	 margin-bottom: 25px;
	 letter-spacing: 0.5px;
	 font-weight: 400;
	 font-family: var(--primary-font);
}
 @media (max-width: 1499px) {
	 #ishislideshow-carousel .slider-content .desc {
		 font-size: 15px;
		 line-height: 15px;
	}
}
 @media (max-width: 1199px) {
	 #ishislideshow-carousel .slider-content .desc {
		 font-size: 14px;
		 line-height: 14px;
	}
}
 @media (max-width: 991px) {
	 #ishislideshow-carousel .slider-content .desc {
		 font-size: 13px;
		 line-height: 20px;
		 margin-bottom: 20px;
	}
}
 @media (max-width: 767px) {
	 #ishislideshow-carousel .slider-content .desc {
		 display: none;
	}
}
 @media (max-width: 767px) {
	 #ishislideshow-carousel .slider-content .slider-btn {
		 padding: 7px 16px;
		 font-size: 13px;
	}
}
 @media (max-width: 543px) {
	 #ishislideshow-carousel .slider-content .slider-btn {
		 padding: 8px 12px;
		 font-size: 12px;
	}
}
 @media (max-width: 480px) {
	 #ishislideshow-carousel .slider-content .slider-btn {
		 padding: 7px 9px;
		 font-size: 10px;
	}
}
 @media (max-width: 425px) {
	 #ishislideshow-carousel .slider-content .slider-btn {
		 padding: 6px 8px;
		 font-size: 8px;
	}
}
 @media (max-width: 400px) {
	 #ishislideshow-carousel .slider-content .slider-btn {
		 padding: 5px 7px;
		 font-size: 7px;
	}
}
 @media (max-width: 375px) {
	 #ishislideshow-carousel .slider-content .slider-btn {
		 padding: 4px 6px;
		 font-size: 6px;
	}
}
 #ishislideshow-carousel .owl-item.active .sub-title {
	 -webkit-animation-duration: 1s;
	 animation-duration: 1s;
	 -webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
	 animation-name: fadeInDown;
	 animation-delay: 0.3s;
}
 #ishislideshow-carousel .owl-item.active .main-title {
	 -webkit-animation-duration: 1s;
	 animation-duration: 1s;
	 -webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
	 animation-name: fadeInDown;
	 animation-delay: 0.35s;
}
 #ishislideshow-carousel .owl-item.active .desc {
	 -webkit-animation-duration: 1s;
	 animation-duration: 1s;
	 -webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
	 animation-name: fadeInDown;
	 animation-delay: 0.4s;
}
 #ishislideshow-carousel .owl-item.active .slider-btn {
	 -webkit-animation-duration: 1s;
	 animation-duration: 1s;
	 -webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
	 animation-name: fadeInDown;
	 animation-delay: 0.5s;
}
 /*================ galleryblock ================*/
 #ishigalleryblocks {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 #ishigalleryblocks {
		 float: none;
		 margin-top: 20px;
	}
}
 #ishigalleryblocks .ishigalleryblocks-container {
	 display: block;
	 overflow: hidden;
	 padding: 0;
	 padding: 0 5px;
	 margin-bottom: 10px;
}
 #ishigalleryblocks .ishigalleryblocks-container:nth-child(4), #ishigalleryblocks .ishigalleryblocks-container:nth-child(5), #ishigalleryblocks .ishigalleryblocks-container:nth-child(6) {
	 margin-bottom: 0;
}
 @media (max-width: 767px) {
	 #ishigalleryblocks .ishigalleryblocks-container {
		/* If media is below 768 */
	}
	 #ishigalleryblocks .ishigalleryblocks-container:nth-child(4) {
		 margin-bottom: 10px;
	}
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image {
	 display: block;
	 overflow: hidden;
	 position: relative;
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image a {
	 display: block;
	 width: 100%;
	 height: 100%;
	 padding: 0;
	 overflow: hidden;
	 position: relative;
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image a:before {
	 display: none;
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image a:after {
	 display: none;
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image a:hover {
	 padding-left: 0;
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image img {
	 width: 100%;
	 max-width: 100%;
	 display: block;
}
 #ishigalleryblocks .ishigalleryblocks-container .galley-image .imageoverlay {
	 background: var(--brand-secondary-modify);
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 opacity: 0;
	 transform: scale(0);
	 -moz-transform: scale(0);
	 -webkit-transform: scale(0);
	 -o-transform: scale(0);
	 -ms-transform: scale(0);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #ishigalleryblocks .ishigalleryblocks-container:hover .galley-image .imageoverlay {
	 opacity: 1;
	 transform: scale(1);
	 -moz-transform: scale(1);
	 -webkit-transform: scale(1);
	 -o-transform: scale(1);
	 -ms-transform: scale(1);
}
 /*================ category ================*/
 .ishi-category-block {
	 overflow: hidden;
}
 .ishicategoryblock.categoryimage {
	 background-position: center;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-attachment: fixed;
}
 .ishicategoryblock.category-color {
	 display: block;
	 width: 100%;
}
 .ishicategoryblock .section-header > h2 {
	 margin-bottom: 50px;
}
 @media (max-width: 543px) {
	 .ishicategoryblock .section-header > h2 {
		/* If media is below 544 */
		 margin-bottom: 25px;
	}
}
 .ishicategoryblock .ishicategoryblock-container {
	 cursor: pointer;
}
 .ishicategoryblock .ishicategoryblock-container.item {
	 padding: 15px;
	 text-align: center;
	 position: relative;
}
 .ishicategoryblock .ishicategoryblock-container.item:before {
	 content: '';
	 position: absolute;
	 right: 0;
	 top: 0;
	 bottom: 0;
	 opacity: 0.3;
	 width: 1px;
	 height: 150px;
	 margin: auto;
}
 .ishicategoryblock .ishicategoryblock-container a {
	 position: relative;
	 display: block;
}
 .ishicategoryblock .ishicategoryblock-container .image-container {
	 position: relative;
	 padding: 20px;
	 border-radius: 50%;
	 transition: all 300ms ease;
	 -webkit-transition: all 300ms ease;
	 -moz-transition: all 300ms ease;
	 -ms-transition: all 300ms ease;
	 -o-transition: all 300ms ease;
}
 .ishicategoryblock .ishicategoryblock-container .image-container img {
	 max-width: 100%;
	 margin: 0 auto;
	 width: auto;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .ishicategoryblock .ishicategoryblock-container .image-container .placeholder-svg {
	 width: 65px;
}
 .ishicategoryblock .ishicategoryblock-container .image-container .img-border {
	 position: absolute;
	 left: 0;
	 right: 0;
	 top: 0;
	 bottom: 0;
	 width: 110px;
	 height: 110px;
	 margin: auto;
}
 .ishicategoryblock .ishicategoryblock-container .image-container .img-border svg {
	 width: 110px;
	 height: 110px;
}
 .ishicategoryblock .ishicategoryblock-container .menu-container {
	 text-align: center;
	 width: 75%;
	 margin: auto;
	 overflow: hidden;
	 transition: all 0.7s;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 margin-top: 20px;
}
 @media (max-width: 543px) {
	 .ishicategoryblock .ishicategoryblock-container .menu-container {
		/* If media is below 544 */
		 width: 95%;
	}
}
 .ishicategoryblock .ishicategoryblock-container .menu-container .heading {
	 font-size: 18px;
	 font-weight: 600;
	 margin: 15px 0 10px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 .ishicategoryblock .ishicategoryblock-container .menu-container .sub-heading {
	 font-size: 15px;
	 font-weight: 500;
	 line-height: 22px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 @media (max-width: 767px) {
	 .ishicategoryblock .ishicategoryblock-container .menu-container .sub-heading {
		/* If media is below 768 */
		 font-size: 12px;
	}
}
 @media (max-width: 543px) {
	 .ishicategoryblock .ishicategoryblock-container .menu-container .sub-heading {
		/* If media is below 544 */
		 font-size: 14px;
	}
}
 .ishicategoryblock .ishicategoryblock-container:hover .image-container {
	 border-radius: 50%;
	 -webkit-animation: spin 9s infinite linear;
	 -moz-animation: spin 9s infinite linear;
	 -o-animation: spin 9s infinite linear;
	 animation: spin 9s infinite linear;
}
 @keyframes "spinAround" {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*================ productsblock ================*/
 .product-block {
	 overflow: hidden;
}
 .product-block .owl-nav {
	 margin-top: 15px;
}
 @media (max-width: 991px) {
	 .product-block .owl-nav {
		/* If media is below 992 */
		 margin-top: 5px;
	}
}
 @media (max-width: 543px) {
	 .product-block .owl-nav {
		 margin-top: 15px;
	}
}
 .products-tab {
	 border: none;
	 text-align: center;
	 position: relative;
	 display: block;
	 margin-bottom: 20px;
	 font-size: 0;
}
 @media (max-width: 767px) {
	 .products-tab {
		/* If media is below 768 */
		 margin-bottom: 15px;
	}
}
 .products-tab .nav-item {
	/* If media is below 544 */
	 display: inline-block;
	 vertical-align: middle;
	 float: none;
	 margin: 0 10px;
	 border: none;
	 padding: 0;
	 border-radius: 0;
}
 @media (max-width: 543px) {
	 .products-tab .nav-item {
		 display: block;
		 margin-bottom: 7px;
	}
}
 .products-tab .nav-item:last-child {
	/* If media is below 544 */
}
 @media (max-width: 543px) {
	 .products-tab .nav-item:last-child {
		 margin-bottom: 0px;
	}
}
 .products-tab .nav-item .nav-link {
	 background: #fff none repeat scroll 0 0;
	 border: 1px solid #e8e8e8;
	 display: inline-block;
	 vertical-align: middle;
	 color: #666;
	 font-weight: 400;
	 font-size: 14px;
	 margin: 0;
	 border-radius: 50px;
	 outline: medium none;
	 padding: 11px 25px;
	 line-height: 13px;
	 position: relative;
	 transition: all 400ms ease-in-out 0s;
	 -webkit-transition: all 400ms ease-in-out 0s;
	 -ms-transition: all 400ms ease-in-out 0s;
	 -moz-transition: all 400ms ease-in-out 0s;
	 -o-transition: all 400ms ease-in-out 0s;
}
 @media (max-width: 543px) {
	 .products-tab .nav-item .nav-link {
		/* If media is below 544 */
		 padding: 10px 15px;
	}
}
 .products-tab .nav-item.active .nav-link, .products-tab .nav-item:hover .nav-link {
	 color: var(--button-bg-color);
}
 .products-tab .nav-item.active .nav-link {
	 color: var(--button-text-color);
	 background-color: var(--button-bg-color);
	 border-color: var(--button-bg-color);
}
 #ishiproduct-block-carousel {
	 position: relative;
	 text-align: center;
}
 #ishiproduct-block-carousel .owl-stage-outer .multilevel-item .item:last-child {
	 padding-bottom: 0;
}
 #ishiproduct-block-carousel .owl-stage-outer .grid__item {
	 width: 100%;
}
 /*================ commonproducts ================*/
 .products-display a:hover {
	 color: #232323;
}
 .products-display .product-desc {
	 display: none;
}
 @media (max-width: 543px) {
	 .products-display {
		 padding: 0 5px;
	}
}
 .products-display .grid__item, .products-display .list__item {
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 543px) {
	 .products-display .grid__item, .products-display .list__item {
		 padding: 5px 5px;
	}
}
 .products-display .grid__item .grid-view-item, .products-display .list__item .grid-view-item {
	 overflow: hidden;
	 border: 1px solid #eee;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .products-display .grid__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay {
	 position: absolute;
	 background: #c92c2c;
	 text-align: center;
	 padding: 7px;
	 width: auto;
	 color: #fff;
	 display: block;
	 font-size: 9px;
	 font-weight: 600;
	 border-radius: 4px;
	 top: 10px;
	 right: 10px;
	 line-height: 10px;
}
 @media (max-width: 543px) {
	 .products-display .grid__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item.grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay {
		 display: none;
	}
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container, .products-display .list__item .grid-view-item .grid-view-item__image-container {
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
	 overflow: hidden;
	 position: relative;
	 margin: 0;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .grid-view-item__image, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .grid-view-item__image {
	 position: relative;
	 top: 0;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .spr-badge {
	 position: absolute;
	 left: 0;
	 right: 0;
	 text-align: center;
	 margin: 0 auto;
	 bottom: 10px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
	 transition-delay: 0.4s;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay {
	 display: none;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a {
	 display: block;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a .image-inner, .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a .image-inner {
	 background: #fff;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description {
	 padding: 8px 12px 15px;
	 background: #fff;
	 border-top: 1px solid #eee;
	 text-align: center;
	 position: relative;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 543px) {
	 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 544 */
		 padding: 8px 5px 12px;
	}
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail {
	 margin-bottom: 10px;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
	 font-family: var(--primary-font);
	 color: var(--brand-third);
	 font-size: 15px;
	 text-decoration: none;
	 font-weight: 600;
	 letter-spacing: 0.1px;
	 margin-bottom: 0;
	 text-transform: capitalize;
}
 @media (max-width: 543px) {
	 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
		 font-size: 14px;
	}
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
	 font-family: var(--primary-font);
	 color: #232323;
	 font-size: 14px;
	 font-weight: 500;
	 margin-bottom: 12px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 767px) {
	 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
		/* If media is below 768 */
		 margin-bottom: 12px;
	}
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular {
	 position: relative;
	 color: #666;
	 font-size: 14px;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
	 color: var(--brand-third);
	 margin: 0 5px;
	 font-size: 13px;
	 font-weight: 600;
}
 @media (max-width: 543px) {
	 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
		 margin: 0 3px;
	}
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage span {
	 display: none;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
	 font-size: 15px;
	 font-weight: 600;
	 color: var(--brand-secondary);
}
 @media (max-width: 543px) {
	 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
		 font-size: 14px;
	}
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold .money, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold .money {
	 text-decoration: none;
}
 .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out {
	 display: none;
}
 @media (min-width: 768px) {
	 .products-display .grid__item .grid-view-item:hover, .products-display .list__item .grid-view-item:hover {
		 box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
	}
}
 .products-display .grid__item .grid-view-item:hover .thumbnail-buttons, .products-display .list__item .grid-view-item:hover .thumbnail-buttons {
	/* If media is above 767 */
}
 @media (min-width: 768px) {
	 .products-display .grid__item .grid-view-item:hover .thumbnail-buttons, .products-display .list__item .grid-view-item:hover .thumbnail-buttons {
		 opacity: 1;
	}
	 .products-display .grid__item .grid-view-item:hover .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item:hover .thumbnail-buttons .quick-view, .products-display .grid__item .grid-view-item:hover .thumbnail-buttons .product-block-hover, .products-display .list__item .grid-view-item:hover .thumbnail-buttons .product-block-hover, .products-display .grid__item .grid-view-item:hover .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item:hover .thumbnail-buttons .add-to-wishlist {
		 opacity: 1;
		 -moz-transform: translateX(0);
		 -webkit-transform: translateX(0);
		 -o-transform: translateX(0);
		 -ms-transform: translateX(0);
		 transform: translateX(0);
	}
}
 @media (min-width: 768px) {
	 .products-display .grid__item .grid-view-item:hover .extra-img, .products-display .list__item .grid-view-item:hover .extra-img {
		 opacity: 1;
		 -moz-transform: scale(1, 1);
		 -webkit-transform: scale(1, 1);
		 -o-transform: scale(1, 1);
		 -ms-transform: scale(1, 1);
		 transform: scale(1, 1);
		 -webkit-transition: all 0.7s;
		 -moz-transition: all 0.7s;
		 -ms-transition: all 0.7s;
		 -o-transition: all 0.7s;
		 transition: all 0.7s;
	}
}
 .products-display .grid__item .spr-badge, .products-display .list__item .spr-badge {
	 margin-bottom: 5px;
}
 .products-display .grid__item .spr-badge i, .products-display .list__item .spr-badge i {
	 position: relative;
	 opacity: 1;
	 height: 18px;
	 width: 16px;
	 display: inline-block;
	 top: 0px;
	 vertical-align: top;
	 font-style: normal;
}
 .products-display .grid__item .spr-badge i.spr-icon:after, .products-display .list__item .spr-badge i.spr-icon:after {
	 content: "\F005";
	 font-family: "FontAwesome";
	 color: #ccc;
	 font-size: 13px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 .products-display .grid__item .spr-badge i.spr-icon-star-empty:before, .products-display .list__item .spr-badge i.spr-icon-star-empty:before {
	 display: none ! important;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:before, .products-display .list__item .spr-badge i.spr-icon-star:before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:before {
	 display: none ! important;
	 content: '\F005';
	 font-family: "FontAwesome";
	 color: #f5cb0c;
	 position: absolute;
	 left: 0;
	 right: 0;
	 top: 30px;
	 font-size: 12px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:after, .products-display .list__item .spr-badge i.spr-icon-star:after, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:after, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:after {
	 content: "\F005";
	 font-family: "FontAwesome";
	 color: #f5cb0c;
	 font-size: 13px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+1):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+1):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+1):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+1):before {
	 -webkit-transition: all 0.2s ease-in-out;
	 -moz-transition: all 0.2s ease-in-out;
	 -o-transition: all 0.2s ease-in-out;
	 transition: all 0.2s ease-in-out;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+2):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+2):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+2):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+2):before {
	 -webkit-transition: all 0.4s ease-in-out;
	 -moz-transition: all 0.4s ease-in-out;
	 -o-transition: all 0.4s ease-in-out;
	 transition: all 0.4s ease-in-out;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+3):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+3):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+3):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+3):before {
	 -webkit-transition: all 0.6s ease-in-out;
	 -moz-transition: all 0.6s ease-in-out;
	 -o-transition: all 0.6s ease-in-out;
	 transition: all 0.6s ease-in-out;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+4):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+4):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+4):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+4):before {
	 -webkit-transition: all 0.8s ease-in-out;
	 -moz-transition: all 0.8s ease-in-out;
	 -o-transition: all 0.8s ease-in-out;
	 transition: all 0.8s ease-in-out;
}
 .products-display .grid__item .spr-badge i.spr-icon-star:nth-child(2n+5):before, .products-display .list__item .spr-badge i.spr-icon-star:nth-child(2n+5):before, .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+5):before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:nth-child(2n+5):before {
	 -webkit-transition: all 1.2s ease-in-out;
	 -moz-transition: all 1.2s ease-in-out;
	 -o-transition: all 1.2s ease-in-out;
	 transition: all 1.2s ease-in-out;
}
 .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:before, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:before {
	 content: '\f123';
}
 .products-display .grid__item .spr-badge i.spr-icon-star-half-alt:after, .products-display .list__item .spr-badge i.spr-icon-star-half-alt:after {
	 content: "\f123";
}
 .products-display .grid__item .thumbnail-buttons, .products-display .list__item .thumbnail-buttons {
	 text-align: center;
	 cursor: pointer;
	 display: inline-block;
	 vertical-align: middle;
	 background-color: #fff;
	 box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.1);
	 padding: 3px 15px;
	 border-radius: 50px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 349px) {
	 .products-display .grid__item .thumbnail-buttons, .products-display .list__item .thumbnail-buttons {
		 padding: 3px 10px;
	}
}
 .products-display .grid__item .thumbnail-buttons .quick-view, .products-display .list__item .thumbnail-buttons .quick-view, .products-display .grid__item .thumbnail-buttons .add-to-wishlist, .products-display .list__item .thumbnail-buttons .add-to-wishlist, .products-display .grid__item .thumbnail-buttons .product-block-hover, .products-display .list__item .thumbnail-buttons .product-block-hover {
	 display: inline-block;
	 vertical-align: middle;
	 background: transparent;
	 position: relative;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .products-display .grid__item .thumbnail-buttons .quick-view button, .products-display .list__item .thumbnail-buttons .quick-view button, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button, .products-display .list__item .thumbnail-buttons .add-to-wishlist button, .products-display .grid__item .thumbnail-buttons .product-block-hover button, .products-display .list__item .thumbnail-buttons .product-block-hover button, .products-display .grid__item .thumbnail-buttons .quick-view a, .products-display .list__item .thumbnail-buttons .quick-view a, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a, .products-display .list__item .thumbnail-buttons .add-to-wishlist a, .products-display .grid__item .thumbnail-buttons .product-block-hover a, .products-display .list__item .thumbnail-buttons .product-block-hover a {
	 border: none;
	 box-shadow: none;
	 padding: 0;
	 background-color: transparent;
	 height: 30px;
	 width: 30px;
}
 .products-display .grid__item .thumbnail-buttons .quick-view button span, .products-display .list__item .thumbnail-buttons .quick-view button span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button span, .products-display .list__item .thumbnail-buttons .add-to-wishlist button span, .products-display .grid__item .thumbnail-buttons .product-block-hover button span, .products-display .list__item .thumbnail-buttons .product-block-hover button span, .products-display .grid__item .thumbnail-buttons .quick-view a span, .products-display .list__item .thumbnail-buttons .quick-view a span, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a span, .products-display .list__item .thumbnail-buttons .add-to-wishlist a span, .products-display .grid__item .thumbnail-buttons .product-block-hover a span, .products-display .list__item .thumbnail-buttons .product-block-hover a span {
	 display: none;
}
 .products-display .grid__item .thumbnail-buttons .quick-view button svg, .products-display .list__item .thumbnail-buttons .quick-view button svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist button svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist button svg, .products-display .grid__item .thumbnail-buttons .product-block-hover button svg, .products-display .list__item .thumbnail-buttons .product-block-hover button svg, .products-display .grid__item .thumbnail-buttons .quick-view a svg, .products-display .list__item .thumbnail-buttons .quick-view a svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist a svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist a svg, .products-display .grid__item .thumbnail-buttons .product-block-hover a svg, .products-display .list__item .thumbnail-buttons .product-block-hover a svg {
	 fill: var(--product-icon-color);
}
 .products-display .grid__item .thumbnail-buttons .quick-view:hover button svg, .products-display .list__item .thumbnail-buttons .quick-view:hover button svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover button svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover button svg, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover button svg, .products-display .list__item .thumbnail-buttons .product-block-hover:hover button svg, .products-display .grid__item .thumbnail-buttons .quick-view:hover a svg, .products-display .list__item .thumbnail-buttons .quick-view:hover a svg, .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover a svg, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover a svg, .products-display .grid__item .thumbnail-buttons .product-block-hover:hover a svg, .products-display .list__item .thumbnail-buttons .product-block-hover:hover a svg {
	 fill: var(--product-icon-hover-color);
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover, .products-display .list__item .thumbnail-buttons .product-block-hover {
	 padding: 0 5px;
	 margin: 0 3px;
	 position: relative;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover:after, .products-display .list__item .thumbnail-buttons .product-block-hover:after {
	 content: "";
	 position: absolute;
	 right: 0;
	 left: auto;
	 top: 5px;
	 height: 20px;
	 width: 1px;
	 background: #e5e5e5;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover:before, .products-display .list__item .thumbnail-buttons .product-block-hover:before {
	 content: "";
	 position: absolute;
	 left: 0;
	 right: auto;
	 top: 5px;
	 height: 20px;
	 width: 1px;
	 background: #e5e5e5;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover:hover .nm-cartmain .nm-addToCart.adding:before, .products-display .list__item .thumbnail-buttons .product-block-hover:hover .nm-cartmain .nm-addToCart.adding:before {
	 color: #666;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding:before, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding:before {
	 position: absolute;
	 content: "\f1ce";
	 font-family: "FontAwesome";
	 color: #666;
	 top: 5px;
	 left: 0;
	 right: 0;
	 margin: 0 auto;
	 -webkit-animation: spin 2s infinite linear;
	 -moz-animation: spin 2s infinite linear;
	 -o-animation: spin 2s infinite linear;
	 animation: spin 2s infinite linear;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding svg, .products-display .list__item .thumbnail-buttons .product-block-hover .nm-cartmain .nm-addToCart.adding svg {
	 display: none;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form {
	 margin: 0;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-form__item--quantity, .products-display .list__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-form__item--quantity, .products-display .grid__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-selector, .products-display .list__item .thumbnail-buttons .product-block-hover .add_to_cart_main .add-to-cart .product-selector {
	 display: none;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form__input, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form__input {
	 display: none;
}
 .products-display .grid__item .thumbnail-buttons .product-block-hover .product-form__item, .products-display .list__item .thumbnail-buttons .product-block-hover .product-form__item {
	 padding: 0;
	 margin: 0;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist:hover .loader-btn i, .products-display .list__item .thumbnail-buttons .add-to-wishlist:hover .loader-btn i {
	 color: #666;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist .tooltip-label, .products-display .list__item .thumbnail-buttons .add-to-wishlist .tooltip-label {
	 display: none;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn {
	 height: 30px;
	 width: 30px;
	 border-radius: 0;
	 border: none;
	 padding: 0;
	 background: transparent;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn a, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn a {
	 display: block;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn a:after, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn a:after {
	 display: none;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn i, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn i {
	 display: block;
	 color: #666;
	 position: relative;
	 top: 0px;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist .loader-btn i:before, .products-display .list__item .thumbnail-buttons .add-to-wishlist .loader-btn i:before {
	 top: 0;
	 line-height: 30px;
}
 .products-display .grid__item .thumbnail-buttons .add-to-wishlist i, .products-display .list__item .thumbnail-buttons .add-to-wishlist i {
	 display: none;
}
 .products-display .grid__item .product-flags, .products-display .list__item .product-flags {
	 position: absolute;
	 top: 0px;
	 left: 0;
	 right: 0;
	 width: 100%;
}
 .products-display .grid__item .product-flags .flag, .products-display .list__item .product-flags .flag {
	 font-size: 12px;
	 font-weight: 500;
	 color: var(--brand-secondary);
	 position: absolute;
}
 .products-display .grid__item .product-flags .sale, .products-display .list__item .product-flags .sale {
	 position: absolute;
	 left: 10px;
	 top: 10px;
	 color: #fff;
	 height: 40px;
	 width: 40px;
	 left: 10px;
	 border-radius: 50%;
	 background: #7fbc1e;
	 text-align: center;
	 font-size: 10px;
	 font-weight: 600;
	 padding: 12px 4px;
	 -webkit-transition: all 5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 543px) {
	 .products-display .grid__item .product-flags .sale, .products-display .list__item .product-flags .sale {
		 height: 20px;
		 width: 35px;
		 padding: 4px 4px;
		 line-height: 12px;
		 font-size: 9px;
		 border-radius: 4px;
	}
}
 .products-display .grid__item .main-img, .products-display .list__item .main-img {
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 .products-display .grid__item .extra-img, .products-display .list__item .extra-img {
	 left: 0;
	 position: absolute;
	 right: 0;
	 top: 0;
	 opacity: 0;
	 width: 100%;
	 -moz-transform: scale(0, 1);
	 -webkit-transform: scale(0, 1);
	 -o-transform: scale(0, 1);
	 -ms-transform: scale(0, 1);
	 transform: scale(0, 1);
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 /*================ collectionproducts(list-view) ================*/
 .products-display .list__item {
	 margin-bottom: 0px;
	 padding: 15px;
}
 .products-display .list__item .grid-view-item {
	 border: 0;
}
 .products-display .list__item .grid-view-item:hover {
	 box-shadow: none;
}
 .products-display .list__item .grid-view-item:hover .grid-view-item__image-container .product-description .grid-view-item__meta {
	 opacity: 1;
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container {
	 margin-bottom: 0;
	 border-radius: 0;
	 border: 0;
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
	 padding: 0;
}
 @media (min-width: 544px) {
	 .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
		/* If media is above 543 */
		 margin-bottom: 0;
	}
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .image-inner {
	 border: 1px solid #eee;
	 overflow: hidden;
	 position: relative;
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-title-review {
	 background: transparent;
	 border-bottom: 0;
	 text-align: left;
}
 @media (max-width: 767px) {
	 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-title-review {
		/* If media is below 768 */
		 text-align: center;
	}
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description {
	 text-align: left;
	 padding: 0;
	 margin: 0;
	 background: transparent;
	 border: none;
}
 @media (min-width: 768px) {
	 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is above 767 */
		 padding-left: 25px;
	}
}
 @media (max-width: 767px) {
	 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 768 */
		 text-align: center;
		 padding-bottom: 0;
		 margin-bottom: 5px;
		 padding-top: 10px;
	}
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .product-desc {
	 margin-bottom: 10px;
	 color: #787878;
	 font-size: 15px;
	 letter-spacing: 0.5px;
	 line-height: 24px;
     font-weight: 500;
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
	/* If media is below 768 */
	 text-align: left;
	 margin-bottom: 8px;
	 opacity: 1;
}
 @media (max-width: 767px) {
	 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
		 text-align: center;
	}
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .spr-badge {
	 margin-bottom: 8px;
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
	 position: unset;
	 opacity: 1;
	 margin-bottom: 0px;
}
 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
	 opacity: 1;
	 display: inline-block;
	 vertical-align: middle;
}
 @media (min-width: 544px) {
	 .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, .products-display .list__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
		/* If media is above 543 */
		 -moz-transform: none;
		 -webkit-transform: none;
		 -o-transform: none;
		 -ms-transform: none;
		 transform: none;
	}
}
 .template-collection .products-display {
	/* If media is below 544 */
}
 @media (max-width: 543px) {
	 .template-collection .products-display {
		 padding: 0 5px;
	}
}
 @media (max-width: 543px) {
	 .template-collection .products-display .grid__item {
		 width: 50% !important;
	}
}
 .template-collection .products-display .grid__item:nth-child(4n+1) {
	 clear: left;
}
 @media (max-width: 1199px) {
	 .template-collection .products-display .grid__item:nth-child(3n+1) {
		 clear: none;
	}
	 .template-collection .products-display .grid__item:nth-child(2n+1) {
		 clear: left;
	}
}
 .template-collection .products-display .medium-up--one-third {
	/* If media is between 750 and 767 */
}
 @media screen and (min-width: 750px) and (max-width: 767px) {
	 .template-collection .products-display .medium-up--one-third {
		 width: 50%;
	}
}
 /*================ collectionpage================*/
 .template-collection .normal_main_content {
	 margin-bottom: 20px;
}
 .template-collection .normal_main_content .product_empty {
	 padding-left: 15px;
	 margin-bottom: 20px;
}
 /*------------------------(ishiservices)-----------------*/
 #ishiservices {
	 text-align: center;
	 position: relative;
}
 #ishiservices .ishiservices-content {
	 display: block;
	 overflow: hidden;
	 position: relative;
	 text-align: center;
	 margin: 0 auto;
}
 #ishiservices .service-block {
	 display: block;
	 overflow: hidden;
}
 #ishiservices .services {
	 text-align: center;
	 cursor: pointer;
	 border-right: 1px solid #eee;
	 padding: 0px 15px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #ishiservices .services:last-child {
	 border-right: 0;
}
 @media screen and (min-width: 544px) and (max-width: 991px) {
	 #ishiservices .services {
		/* If media is between 768 and 991 */
		 margin-bottom: 28px;
	}
	 #ishiservices .services:nth-child(2) {
		 border-right: 0;
	}
	 #ishiservices .services:nth-child(3), #ishiservices .services:last-child {
		 margin-bottom: 0;
		 border-bottom: 0;
	}
}
 @media (max-width: 543px) {
	 #ishiservices .services {
		/* If media is below 544 */
		 width: 100%;
		 margin-bottom: 22px;
		 border: 0;
	}
	 #ishiservices .services:last-child {
		 margin-bottom: 0;
	}
}
 #ishiservices .services .service-img-outer {
	 display: inline-block;
	 vertical-align: middle;
	 position: relative;
	 background: transparent;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 #ishiservices .services .service-img-outer {
		/* If media is between 992 and 1199 */
		 text-align: center;
		 margin: 0 auto 5px;
	}
}
 @media (max-width: 767px) {
	 #ishiservices .services .service-img-outer {
		/* If media is below 768 */
		 display: block;
		 text-align: center;
		 margin: 0 auto 5px;
	}
}
 #ishiservices .services .service-img {
	 position: relative;
	 display: inline-block;
	 vertical-align: middle;
	 margin: 0 auto 0px;
	 text-align: center;
	 height: 60px;
	 width: 60px;
	 overflow: hidden;
	 background-position: center -10px;
	 background-repeat: no-repeat;
	 -webkit-transition: all 0.4s;
	 -moz-transition: all 0.4s;
	 -o-transition: all 0.4s;
	 transition: all 0.4s;
}
 @media (max-width: 991px) {
	 #ishiservices .services .service-img {
		/* If media is below 992 */
		 margin-right: 5px;
	}
}
 #ishiservices .services .service-img .service-img-hover {
	 opacity: 0;
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 padding: 0;
	 margin: 0 auto;
	 transition: all 300ms ease;
	 -webkit-transition: all 300ms ease;
	 -moz-transition: all 300ms ease;
	 -ms-transition: all 300ms ease;
	 -o-transition: all 300ms ease;
}
 @media (max-width: 1199px) {
	 #ishiservices .services .service-img .service-img-hover {
		/* If media is below 1200 */
		 right: 0;
		 margin: 0 auto;
		 text-align: center;
	}
}
 #ishiservices .services .service-text {
	 display: block;
}
 @media (max-width: 767px) {
	 #ishiservices .services .service-text {
		/* If media is below 768 */
		 display: block;
		 text-align: center;
	}
}
 #ishiservices .services .service-text .service-title {
	/* If media is below 992 */
	 font-size: 17px;
	 font-weight: 600;
	 margin: 10px 0;
	 color: var(--brand-third);
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 @media (max-width: 991px) {
	 #ishiservices .services .service-text .service-title {
		 margin-top: 4px;
	}
}
 #ishiservices .services .service-text .service-desc {
	 color: #888;
	 font-weight: 400;
	 font-size: 14px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 #ishiservices .services .service-text .service-desc {
		/* If media is between 992 and 1199 */
		 font-size: 12px;
	}
}
 #ishiservices .services:hover .service-hover img {
	 opacity: 0;
}
 #ishiservices .services:hover .service-hover .service-img-hover {
	 background-position: center -90px;
	 transform: rotateY(360deg);
	 -webkit-animation-name: jackInTheBox;
	 animation-name: jackInTheBox;
	 animation: jackInTheBox;
	 -webkit-animation-duration: 1s;
	 animation-duration: 1s;
	 -webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
}
 #ishiservices .services:hover .service-hover .service-img-hover img {
	 opacity: 1;
}
 #ishiservices .services:hover .service-text .service-title {
	 color: var(--brand-secondary);
}
 @keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
      -webkit-transform: rotate(-10deg);
      transform: rotate(-10deg);
  }
  70% {
      -webkit-transform: rotate(3deg);
      transform: rotate(3deg);
  }
  100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}
#ishitopbanners {
	 margin-bottom: 20px;
	 text-align: right;
}
 @media (max-width: 991px) {
	 #ishitopbanners {
		/* If media is below 992 */
		 margin-bottom: 20px;
	}
}
 #ishitopbanners .ishitopbanners-container {
	 cursor: pointer;
	 margin-bottom: 30px;
}
 @media (max-width: 1199px) {
	 #ishitopbanners .ishitopbanners-container {
		/* If media is below 992 */
		 margin-bottom: 30px;
	}
	 #ishitopbanners .ishitopbanners-container:last-child.odd {
		 float: none;
		 display: inline-block;
	}
}
 @media (max-width: 991px) {
	 #ishitopbanners .ishitopbanners-container {
		/* If media is below 544 */
	}
	 #ishitopbanners .ishitopbanners-container:last-child {
		 margin-bottom: 0;
	}
}
 @media (max-width: 543px) {
	 #ishitopbanners .ishitopbanners-container {
		/* If media is below 544 */
		 width: 100%;
		 margin-bottom: 30px;
	}
	 #ishitopbanners .ishitopbanners-container:last-child {
		 margin-bottom: 0;
	}
}
 #ishitopbanners .ishitopbanners-container .image-container {
	 position: relative;
	 -js-display: flex;
	 display: flex;
	 align-items: center;
}
 #ishitopbanners .ishitopbanners-container .image-container img {
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
	 width: 100%;
}
 #ishitopbanners .ishitopbanners-container .image-container .banner-desc {
	 position: absolute;
	 right: 10px;
	 left: auto;
	 width: 70%;
}
 @media (max-width: 991px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc {
		/* If media is below 768 */
		 width: 80%;
		 right: 5px;
	}
}
 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data {
	 position: relative;
	 text-align: center;
}
 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-title {
	 font-size: 17px;
	 font-weight: 400;
	 line-height: 17px;
	 margin-bottom: 15px;
}
 @media (max-width: 1199px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-title {
		/* If media is below 768 */
		 font-size: 2px;
		 line-height: 13px;
	}
}
 @media (max-width: 991px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-title {
		/* If media is below 768 */
		 font-size: 12px;
		 line-height: 12px;
		 margin-bottom: 10px;
	}
}
 @media (max-width: 543px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-title {
		/* If media is below 544 */
		 font-size: 15px;
		 line-height: 15px;
	}
}
 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .sub-title {
	 font-size: 32px;
	 font-weight: 600;
	 line-height: 32px;
	 margin-bottom: 15px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 @media (max-width: 1199px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .sub-title {
		/* If media is below 768 */
		 font-size: 20px;
		 line-height: 20px;
	}
}
 @media (max-width: 991px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .sub-title {
		/* If media is below 768 */
		 font-size: 16px;
		 line-height: 16px;
		 margin-bottom: 10px;
	}
}
 @media (max-width: 767px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .sub-title {
		/* If media is below 768 */
		 font-size: 24px;
		 line-height: 24px;
	}
}
 @media (max-width: 543px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .sub-title {
		/* If media is below 544 */
		 font-size: 35px;
		 line-height: 35px;
	}
}
 @media (max-width: 400px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .sub-title {
		/* If media is below 544 */
		 font-size: 25px;
		 line-height: 25px;
	}
}
 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-btn .btn {
	 border-radius: 5px;
}
 @media (max-width: 1199px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-btn .btn {
		/* If media is below 544 */
		 padding: 8px 14px;
		 font-size: 12px;
	}
}
 @media (max-width: 991px) {
	 #ishitopbanners .ishitopbanners-container .image-container .banner-desc .banner-data .banner-btn .btn {
		/* If media is below 544 */
		 padding: 5px 10px;
		 font-size: 12px;
	}
}
 #ishitopbanners .ishitopbanners-container .image-container:hover .banner-desc .banner-data .sub-title {
	 transform: rotateX(360deg);
	 -webkit-transform: rotateX(360deg);
}
 /*================ special-product ================*/
 #ishispecialproducts {
	/* If media is between 992 and 1199 */
}
 @media screen and (min-width: 992px) and (max-width: 1299px) {
	 #ishispecialproducts {
		 width: 100%;
	}
}
 #ishispecialproducts .grid-view-item--sold-out .grid-view-item__image-container .grid-view-item__image-wrapper .outstock-overlay {
	 top: 36% !important;
	 padding: 8px 0 !important;
	 font-size: 13px;
}
 #ishispecialproducts .product_content {
	 text-align: center;
	 padding: 0 0px 5px 0;
	 position: relative;
	 margin: 0;
	 overflow: hidden;
}
 #ishispecialproducts .product_content .section-header > h2 {
	 background-image: none;
	 background-color: var(--brand-secondary);
	 color: #fff;
	 font-size: 16px;
	 margin: 0;
	 padding: 16px 15px;
	 text-align: left;
}
 #ishispecialproducts .product_content .owl-theme .owl-nav {
	 position: absolute;
	 top: 2.3%;
	 right: 10px;
	 margin: 0;
}
 @media screen and (min-width: 1300px) and (max-width: 1399px) {
	 #ishispecialproducts .product_content .owl-theme .owl-nav {
		 top: 2.5%;
	}
}
 @media screen and (min-width: 1200px) and (max-width: 1299px) {
	 #ishispecialproducts .product_content .owl-theme .owl-nav {
		 top: 2%;
	}
}
 @media (max-width: 991px) {
	 #ishispecialproducts .product_content .owl-theme .owl-nav {
		/* If media is below 992 */
		 top: 2.2%;
	}
}
 @media (max-width: 800px) {
	 #ishispecialproducts .product_content .owl-theme .owl-nav {
		 top: 2.5%;
	}
}
 #ishispecialproducts .product_content .products-display {
	 background: #f5f5f5;
	 padding-bottom: 15px;
	 position: unset;
}
 #ishispecialproducts .product_content .products-display .grid__item {
	 padding: 0;
	 float: none;
}
 #ishispecialproducts .product_content .products-display .grid-view-item {
	 border: none;
	 padding: 15px 15px 0;
}
 @media (max-width: 991px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item {
		/* If media is below 992 */
		 padding: 15px 0 0;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item:hover {
	 box-shadow: none;
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container {
	 display: flex;
	 align-items: center;
	 margin-bottom: 0px;
	 width: 100%;
	 border: none;
	/*@media (max-width: 767px) {
		 margin-left: -15px;
		 margin-right: -15px;
	}
	*/
}
 @media (max-width: 991px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container {
		/* If media is below 992 */
		 margin: 0;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container:hover .product-description {
	/*.grid-view-item__meta{
		 @media (min-width: 768px) {
			 opacity: 0;
		}
	}
	*/
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons {
	 opacity: 1;
	/*.quick-view ,.product-block-hover, .add-to-wishlist{
		 opacity: 1;
		 @media (min-width: 768px) {
			 opacity: 1;
			 transform: translateY(0);
			 -moz-transform: translateY(0);
			 -webkit-transform: translateY(0);
			 -o-transform: translateY(0);
			 -ms-transform: translateY(0);
		}
	}
	*/
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .spr-badge {
	 opacity: 1;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
}
 @media (max-width: 543px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .spr-badge {
		/* If media is below 544 */
		 opacity: 1;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
	 float: left;
	 padding-right: 4px;
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper a {
	 border: 1px solid #eee;
	 overflow: hidden;
	 position: relative;
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description {
	 margin: 0;
	 text-align: left;
	 padding: 0;
	 padding-left: 11px;
	 border: none;
	 background: none;
	 position: relative;
}
 @media (max-width: 767px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 768 */
		 padding-right: 0;
	}
}
 @media (max-width: 543px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 544 */
		 padding-left: 6px;
		 padding-right: 5px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__title {
	 font-size: 14px;
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail {
	/* If media is below 992 */
	 display: block;
	 margin-bottom: 7px;
}
 @media (max-width: 991px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail {
		 margin-bottom: 10px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
	 opacity: 1;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
	 margin-bottom: 10px;
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular {
	/* If media is between 992 and 1199 */
}
 @media screen and (min-width: 1200px) and (max-width: 1399px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular {
		 font-size: 13px;
	}
}
 @media (max-width: 543px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular {
		/* If media is below 544 */
		 font-size: 13px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
	/* If media is between 992 and 1199 */
}
 @media screen and (min-width: 1200px) and (max-width: 1399px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
		 font-size: 13px;
		 margin: 0 3px;
	}
}
 @media (max-width: 543px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
		/* If media is below 544 */
		 font-size: 13px;
		 margin: 0 3px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
	/* If media is between 992 and 1199 */
}
 @media screen and (min-width: 1200px) and (max-width: 1399px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
		 font-size: 13px;
	}
}
 @media (max-width: 543px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
		/* If media is below 544 */
		 font-size: 13px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .product-desc {
	 display: none;
	 color: #666;
	 font-size: 14px;
	 margin-bottom: 10px;
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge {
	 margin-bottom: 6px;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
}
 @media screen and (min-width: 1200px) and (max-width: 1499px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge {
		/* If media is between 992 and 1199 */
		 display: none;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star:before, #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star-half-alt:before {
	 top: 5px;
	 opacity: 1;
}
 @media (max-width: 991px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star:before, #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star-half-alt:before {
		/* If media is below 992 */
		 left: 2px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
	 box-shadow: 0 0px 2px 0px rgba(0, 0, 0, 0.1);
}
 @media screen and (min-width: 1200px) and (max-width: 1399px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
		/* If media is between 992 and 1199 */
		 padding: 6px 5px;
	}
}
 @media (max-width: 1199px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
		/* If media is below 1200 */
		 padding: 8px 8px;
	}
}
 @media (max-width: 543px) {
	 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
		/* If media is below 544 */
		 padding: 6px 3px;
	}
}
 #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .add-to-wishlist, #ishispecialproducts .product_content .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
	/*border: 1px solid #eee;
	 border-radius: 3px;
	*/
	/*@media (min-width: 768px) {
		 opacity: 0;
		 -moz-transform:translateX(-100px);
		 -webkit-transform:translateX(-100px);
		 -o-transform:translateX(-100px);
		 -ms-transform:translateX(-100px);
		 -webkit-transition: all .7s;
		 -moz-transition: all .7s;
		 -o-transition: all .7s;
		 transition: all .7s;
	}
	*/
}
 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
	 top: -7.2%;
}
 @media screen and (min-width: 1300px) and (max-width: 1400px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		/* If media is between 992 and 1199 */
		 top: -8.2%;
	}
}
 @media screen and (min-width: 1200px) and (max-width: 1299px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		/* If media is between 992 and 1199 */
		 top: -9.2%;
	}
}
 @media screen and (min-width: 1100px) and (max-width: 1199px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		/* If media is between 992 and 1199 */
		 top: -6.2%;
	}
}
 @media screen and (min-width: 992px) and (max-width: 1099px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		/* If media is between 992 and 1199 */
		 top: -7.2%;
	}
}
 @media (max-width: 991px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		/* If media is below 992 */
		 top: -8%;
	}
}
 @media (max-width: 767px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		/* If media is below 768 */
		 top: -8.5%;
	}
}
 @media (max-width: 360px) {
	 #ishispecialproducts .collection-carousel-two.owl-theme .owl-nav {
		 top: -10%;
	}
}
 /*================ special-deal ================*/
 .specialdeal {
	 overflow: hidden;
}
 #ishispecialdeal {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 #ishispecialdeal {
		 margin-bottom: 30px;
	}
}
 @media screen and (min-width: 992px) and (max-width: 1299px) {
	 #ishispecialdeal {
		/* If media is between 992 and 1199 */
		 width: 100%;
		 margin-bottom: 70px;
	}
}
 #ishispecialdeal .grid__item {
	 padding: 15px;
}
 @media (max-width: 767px) {
	 #ishispecialdeal .grid__item {
		/* If media is below 768 */
		 float: none;
		 padding: 15px 0;
	}
}
 #ishispecialdeal.dealimage {
	 background-position: center;
	 background-repeat: no-repeat;
	 background-size: cover;
}
 #ishispecialdeal.deal-color {
	 display: block;
}
 #ishispecialdeal .product_content {
	 padding: 5px;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 #ishispecialdeal .product_content {
		/* If media is between 992 and 1199 */
		 padding: 48px 5px;
	}
}
 @media screen and (min-width: 992px) and (max-width: 1080px) {
	 #ishispecialdeal .product_content {
		/* If media is between 992 and 1199 */
		 padding: 35px 5px;
	}
}
 #ishispecialdeal .product_content .section-header > h2 {
	 margin-bottom: 45px;
}
 @media (max-width: 991px) {
	 #ishispecialdeal .product_content .section-header > h2 {
		/* If media is below 992 */
		 margin-bottom: 35px;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item {
	 border: 0;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item:hover {
	 box-shadow: none;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container {
	/* If media is above 767 */
}
 @media (min-width: 768px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container {
		 display: flex;
		 align-items: center;
	}
}
 @media (max-width: 767px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
		 padding: 0;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail {
	 display: none;
}
 @media (max-width: 1199px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail {
		/* If media is below 1200 */
		 display: none;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail .product-single__thumbnails {
	 margin-top: 10px;
	 height: 380px;
	 display: block;
	 overflow: hidden;
}
 @media screen and (min-width: 1200px) and (max-width: 1350px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail .product-single__thumbnails {
		/* If media is between 1200 and 1350 */
		 height: 320px;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail .product-single__thumbnails .product-single__thumbnail {
	 margin-bottom: 15px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail .product-single__thumbnails .product-single__thumbnail img {
	 height: 110px;
}
 @media screen and (min-width: 1200px) and (max-width: 1350px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-thumbnail .product-single__thumbnails .product-single__thumbnail img {
		/* If media is between 1200 and 1350 */
		 height: 90px;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-img {
	 padding: 0;
	 width: 100%;
	 position: relative;
	 overflow: hidden;
	 border: 1px solid #eee;
}
 @media (max-width: 1199px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-img {
		/* If media is below 1200 */
	}
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .product-img .product-flags .sale {
		 left: 30px;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description {
	 text-align: left;
	 margin: 0;
	 padding: 15px;
	 border: none;
}
 @media (max-width: 767px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 768 */
		 margin-top: 15px;
		 text-align: center;
		 padding: 15px 10px;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .spr-badge {
	 margin-bottom: 12px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail {
	 margin-bottom: 12px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
	 font-size: 18px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
	 margin-bottom: 15px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
	 font-size: 18px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .regular {
	 font-size: 18px;
	 font-weight: 600;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .discount-percentage {
	 font-size: 17px;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-desc {
	 display: block;
	 color: #787878;
	 line-height: 24px;
	 margin-bottom: 16px;
	 font-size: 15px;
     font-weight: 500;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
	 box-shadow: 0 0px 2px 0px rgba(0, 0, 0, 0.1);
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown {
	 margin-bottom: 20px;
	 display: block;
	 position: relative;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown {
	 width: 65px;
	 height: 80px;
	 display: inline-block;
	 vertical-align: middle;
	 text-align: center;
	 font-weight: 500;
	 cursor: pointer;
	 position: relative;
	 background: #fff;
	 border-radius: 4px;
	 border: 1px solid #eee;
	 padding: 8px 0;
	 margin: 0 3px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 @media (max-width: 1199px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown {
		/* If media is below 1200 */
		 width: 56px;
	}
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown .data {
		 font-size: 23px;
	}
}
 @media (max-width: 543px) {
	 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown {
		/* If media is below 544 */
		 margin: 0 1px;
		 font-size: 19px;
	}
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown.countdown-seconds .data {
	 color: var(--brand-secondary);
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown:hover {
	 background: var(--button-bg-color);
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown:hover .data, #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown:hover .text {
	 color: var(--button-text-color);
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown .data {
	 font-size: 24px;
	 line-height: 24px;
	 padding-bottom: 10px;
	 margin-bottom: 6px;
	 color: var(--brand-third);
	 position: relative;
	 display: block;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown .data:after {
	 content: '';
	 position: absolute;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 text-align: center;
	 margin: 0 auto;
	 width: 18px;
	 height: 2px;
	 background: #ddd;
}
 #ishispecialdeal .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .productcountdown .countdown .text {
	 display: block;
	 font-size: 14px;
	 color: #999;
	 font-family: var(--primary-font);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #ishispecialdeal .owl-nav {
	 margin: 0;
	 margin-bottom: 5px;
}
 @media (min-width: 768px) {
	 #ishispecialdeal .owl-nav {
		/* If media is above 767 */
		 margin: 0;
	}
	 #ishispecialdeal .owl-nav .owl-prev, #ishispecialdeal .owl-nav .owl-next {
		 position: absolute;
		 top: 52%;
		 left: -4px;
		 right: auto;
		 margin-top: -25px;
	}
	 #ishispecialdeal .owl-nav .owl-next {
		 right: -4px;
		 left: auto;
	}
}
 @media (max-width: 991px) {
	 .ishi-client-collection.index-section {
		 margin-bottom: 0;
	}
}
 .not-show {
	 display: none;
}
 /*================ testimonials ================*/
 .ishitestimonial .testimonialimage {
	 background-position: center;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-attachment: fixed;
}
 .ishitestimonial .testimonial-color {
	 display: block;
	 width: 100%;
}
 .ishitestimonial #ishitestimonial-space {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 .ishitestimonial #ishitestimonial-space {
		 max-width: 810px;
		 margin: auto;
	}
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container {
	 text-align: center;
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .testimonial-img {
	 max-width: 100px;
	 border-radius: 50%;
	 overflow: hidden;
	 display: block;
	 margin: 0 auto;
	 text-align: center;
	 border: 2px solid #efefef;
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .testimonial-img img {
	 max-width: 100%;
	 width: auto;
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .user-description {
	 padding: 40px 75px;
	 position: relative;
	 border-radius: 6px;
	 margin-bottom: 30px;
}
 @media (max-width: 767px) {
	 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .user-description {
		 padding: 30px 25px;
	}
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .user-description:after {
	 content: '';
	 position: absolute;
	 bottom: -27px;
	 left: 0;
	 right: 0;
	 margin: 0 auto;
	 border-bottom: 14px solid transparent;
	 border-right: 14px solid transparent;
	 border-left: 14px solid transparent;
	 width: 15px;
	 height: 15px;
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .user-description ul li {
	 list-style: unset;
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .user-name {
	 position: relative;
	 display: block;
	 font-size: 20px;
	 font-weight: 600;
	 margin: 12px 0 8px;
}
 .ishitestimonial #ishitestimonials-carousel .owl-stage-outer .owl-item .ishitestimonials-container .user-designation {
	 font-size: 13px;
	 font-weight: 400;
	 display: block;
}

 @media (min-width: 768px) {
	 .ishitestimonial #ishitestimonials-carousel .owl-nav {
		 margin: 0;
	}
	 .ishitestimonial #ishitestimonials-carousel .owl-nav .owl-prev, .ishitestimonial #ishitestimonials-carousel .owl-nav .owl-next {
		 position: absolute;
		 top: 26%;
		 left: -18px;
		 right: auto;
		 margin-top: -25px;
	}
	 .ishitestimonial #ishitestimonials-carousel .owl-nav .owl-next {
		 right: -18px;
		 left: auto;
	}
}
 /*================ ishicollectionblock ================*/
 .ishi_collection_block .collection-block {
	 text-align: center;
	 padding: 0 15px;
	 position: relative;
}
 @media (max-width: 991px) {
	 .ishi_collection_block .collection-block {
		/* If media is below 992 */
		 margin-bottom: 30px;
	}
}
 .ishi_collection_block .collection-block .ishicollection-product-block {
	 border: 1px solid var(--brand-secondary);
}
 .ishi_collection_block .collection-block .section-header {
	 margin-bottom: 10px;
	 background: #f4f4f7;
	 padding: 13px;
	 padding-left: 20px;
}
 .ishi_collection_block .collection-block .section-header > h2 {
	 text-align: left;
	 font-size: 18px;
	 color: var(--brand-third);
	 padding: 0;
	 margin: 0;
}
 .ishi_collection_block .collection-block .section-header > h2:before {
	 display: none;
}
 .ishi_collection_block .collection-block .owl-theme .owl-nav {
	 display: block;
	 position: absolute;
	 top: -55px;
	 right: 15px;
	 margin: 0;
}
 @media (max-width: 991px) {
	 .ishi_collection_block .collection-block .owl-theme .owl-nav {
		/* If media is below 992 */
		 top: -50px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid__item {
	 padding: 0px 0 10px;
	 float: none;
}
 @media (max-width: 543px) {
	 .ishi_collection_block .collection-block .products-display .grid__item {
		/* If media is below 544 */
		 padding: 0 10px 10px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item {
	 border: 0;
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container {
	 display: flex;
	 align-items: center;
	 margin-bottom: 0px;
	 width: 100%;
}
 @media (max-width: 1199px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container {
		/* If media is below 1200 */
		 display: inline-block;
		 vertical-align: middle;
	}
}
 @media (max-width: 767px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container {
		/* If media is below 768 */
		 max-width: 100%;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .spr-badge {
	 opacity: 1;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
}
 @media (max-width: 543px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .spr-badge {
		/* If media is below 544 */
		 opacity: 1;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .grid-view-item__meta {
	/* If media is above 767 */
}
 @media (min-width: 768px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .grid-view-item__meta {
		 opacity: 0;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons {
	/* If media is above 767 */
}
 @media (min-width: 768px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container:hover .product-description .thumbnail-buttons {
		 opacity: 1;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
	 padding: 0 10px;
}
 @media (max-width: 543px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
		/* If media is below 544 */
		 padding: 0;
		 width: 100%;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description {
	 margin-top: 0;
	 text-align: left;
	 padding: 15px;
	 padding-left: 10px;
	 background: none;
	 overflow: hidden;
	 cursor: pointer;
	 position: relative;
}
 @media (max-width: 1199px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 1200 */
		 padding-right: 15px;
	}
}
 @media (max-width: 543px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description {
		/* If media is below 544 */
		 padding-left: 15px;
		 width: 100%;
		 text-align: center;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail {
	 display: block;
	 margin-bottom: 10px;
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
	 font-size: 14px;
}
 @media (max-width: 991px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
		/* If media is below 992 */
		 font-size: 14px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
	 opacity: 1;
	 margin-bottom: 0;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
	 margin-bottom: 5px;
}
 @media (max-width: 767px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
		/* If media is below 768 */
		 margin-bottom: 10px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .product-desc {
	 display: none;
	 color: #666;
	 font-size: 14px;
	 margin-bottom: 10px;
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge {
	 margin-bottom: 7px;
	 -webkit-transition: all 0.6s;
	 -moz-transition: all 0.6s;
	 -o-transition: all 0.6s;
	 transition: all 0.6s;
}
 @media (max-width: 543px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge {
		/* If media is below 544 */
		 display: none;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star:before, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star-half-alt:before {
	 top: 5px;
	 opacity: 1;
}
 @media (max-width: 991px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star:before, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .spr-badge .spr-icon-star-half-alt:before {
		/* If media is below 992 */
		 left: 2px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
	 display: inline-block;
}
 @media (min-width: 768px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
		/* If media is above 767 */
		 position: absolute;
		 bottom: 3px;
		 left: 10px;
		 right: 15px;
		 opacity: 0;
		 -webkit-transition: all 0.6s;
		 -moz-transition: all 0.6s;
		 -o-transition: all 0.6s;
		 transition: all 0.6s;
	}
}
 @media (min-width: 768px) and (max-width: 991px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons {
		/* If media is below 992 */
		 right: 9px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
	 padding: 7px 8px;
}
 @media (max-width: 991px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
		/* If media is below 992 */
		 padding: 7px 2px;
	}
}
 @media (max-width: 767px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
		/* If media is below 768 */
		 padding: 7px 10px;
	}
}
 @media (max-width: 543px) {
	 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover {
		/* If media is below 544 */
		 padding: 7px 8px;
	}
}
 .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view button span, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover button span, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .quick-view a span, .ishi_collection_block .collection-block .products-display .grid-view-item .grid-view-item__image-container .product-description .thumbnail-buttons .product-block-hover a span {
	 font-size: 10px;
	 line-height: 18px;
}
 /*================ smartblog ================*/
 .ishi-smartblog-section {
	 overflow: hidden;
	 margin-bottom: 40px;
}
 @media (max-width: 991px) {
	 .ishi-smartblog-section {
		/* If media is below 992 */
		 margin-bottom: 10px;
	}
}
 .smartblog .products_block_inner {
	 position: relative;
}
 .smartblog .products_block_inner .owl-nav {
	 margin-top: 15px;
}
 @media (max-width: 991px) {
	 .smartblog .products_block_inner .owl-nav {
		/* If media is below 992 */
		 margin-top: 5px;
	}
}
 .smartblog .products_block_inner .section-header > h2 {
	 margin-bottom: 10px;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post {
	 padding: 15px;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder a img {
	 -webkit-transform-style: unset;
	 transform-style: unset;
	 transform: scale(1.26);
	 -webkit-transform: scale(1.26);
	 -ms-transform: scale(1.26);
	 -o-transform: scale(1.26);
	 -moz-transform: scale(1.26);
	 opacity: 0.8;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post:hover .blog_post .news_module_image_holder .blogicons {
	 opacity: 1;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post {
	 position: relative;
	 display: inline-block;
	 vertical-align: middle;
	 border: 1px solid #eee;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder {
	 display: block;
	 max-width: 100%;
	 position: relative;
	 margin-bottom: 0px;
	 background: #232323;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder a {
	 position: relative;
	 display: block;
	 overflow: hidden;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .news_module_image_holder img {
	 transition: all 1.5s;
	 -webkit-transition: all 1.5s;
	 -moz-transition: all 1.5s;
	 -ms-transition: all 1.5s;
	 -o-transition: all 1.5s;
	 max-width: 100%;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content {
	 padding: 16px 15px;
	 text-align: left;
	 margin: 0;
	 background: #fff;
}
 @media (max-width: 750px) {
	 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content {
		/* If media is below 749 */
		 float: none;
	}
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo {
	 background-color: #fff;
	 padding: 0;
	 margin-top: 0;
	 margin-bottom: 15px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date {
	 margin: 0;
	 text-align: left;
	 display: inline-block;
}
 @media (max-width: 900px) {
	 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date {
		/* If media is below 901 */
		 display: block;
		 margin-bottom: 10px;
	}
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date i {
	 display: none;
	 font-size: 18px;
	 margin-right: 8px;
	 vertical-align: middle;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date {
	 display: inline-block;
	 vertical-align: middle;
	 color: var(--brand-secondary);
	 font-size: 24px;
	 line-height: 24px;
	 font-weight: 600;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .blog_date .date .day_year {
	 display: none;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author {
	 text-align: right;
	 display: block;
	 font-size: 14px;
	 color: #999;
	 float: right;
	 margin: 0;
	 margin-left: 14px;
}
 @media (max-width: 900px) {
	 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author {
		/* If media is below 901 */
		 display: inline-block;
		 float: none;
		 text-align: left;
	}
}
 @media (max-width: 543px) {
	 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author {
		/* If media is below 544 */
		 font-size: 13px;
		 margin-left: 8px;
	}
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author i {
	 font-size: 14px;
	 margin-right: 3px;
}
 @media (max-width: 543px) {
	 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .comment i, .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author i {
		/* If media is below 544 */
		 font-size: 12px;
	}
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author {
	/* If media is below 901 */
}
 @media (max-width: 900px) {
	 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .smartbloginfo .author {
		 margin: 0;
	}
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title {
	 margin-bottom: 12px;
	 line-height: 18px;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .sds_post_title a {
	 font-size: 17px;
	 font-weight: 600;
	 text-transform: capitalize;
	 color: var(--brand-third);
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .desc {
	 margin-bottom: 10px;
	 font-size: 15px;
	 font-weight: 500;
	 color: #787878;
	 line-height: 24px;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons {
	 display: block;
	 text-align: right;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons .btn {
	 font-size: 12px;
	 font-weight: 500;
	 padding: 0;
	 padding-bottom: 3px;
	 color: var(--button-bg-color);
	 border: 0;
	 background: none;
	 position: relative;
	 border-bottom: 1px solid var(--button-bg-color);
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
      border-radius: 0;
}
 .smartblog .products_block_inner #smartblog-carousel .sds_blog_post .blog_post .blog_content .article__meta-buttons .btn:hover {
	 letter-spacing: 1px;
	 color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
}
 .smartblog .products_block_inner .owl-dots {
	 position: absolute;
	 top: 24%;
	 right: 0;
	 margin: 0 auto !important;
	 text-align: center;
	 -webkit-transition: all 0.3s;
	 -moz-transition: all 0.3s;
	 -o-transition: all 0.3s;
	 transition: all 0.3s;
}
 @media screen and (min-width: 1200px) and (max-width: 1400px) {
	 .smartblog .products_block_inner .owl-dots {
		/* If media is between 1200 and 1400 */
		 right: 35px;
	}
}
 @media (max-width: 1199px) {
	 .smartblog .products_block_inner .owl-dots {
		/* If media is below 1200 */
		 top: 13%;
	}
}
 @media (max-width: 991px) {
	 .smartblog .products_block_inner .owl-dots {
		/* If media is below 992 */
		 position: unset;
	}
}
 .smartblog .products_block_inner .owl-dots .owl-dot {
	 display: block;
	 margin: 10px 0;
}
 @media (max-width: 991px) {
	 .smartblog .products_block_inner .owl-dots .owl-dot {
		/* If media is below 992 */
		 display: inline-block;
		 margin: 0;
	}
}
 .smartblog .products_block_inner .owl-dots .owl-dot span {
	 width: 5px;
	 height: 60px;
	 border: 0;
	 background: #ccc;
	 border-radius: 0;
	 margin: 0 3px;
	 display: block;
}
 @media (max-width: 991px) {
	 .smartblog .products_block_inner .owl-dots .owl-dot span {
		/* If media is below 992 */
		 height: 5px;
		 width: 60px;
	}
}
 .smartblog .products_block_inner .owl-dots .owl-dot.active span {
	 background-color: var(--brand-secondary);
}
 /*--------------------------------------blog page------------------------*/
 .smartblog-container .section-header .article__title {
	 font-size: 22px;
	 text-transform: uppercase;
	 color: #232323;
	 font-weight: 500;
	 margin-bottom: 20px;
	 letter-spacing: 0.8px;
}
 .smartblog-container .section-header > span {
	 font-size: 15px;
	 display: inline-block;
	 margin-right: 20px;
	 position: relative;
	 text-transform: capitalize;
	 color: #777;
	 margin-bottom: 30px;
	 padding: 0;
	 line-height: normal;
}
 .smartblog-container .section-header > span:before {
	 display: none;
}
 @media (max-width: 543px) {
	 .smartblog-container .section-header > span {
		/* If media is below 544 */
		 display: block;
		 margin-right: 0;
		 margin-bottom: 20px;
	}
}
 .smartblog-container .section-header > span i {
	 padding-right: 10px;
	 color: #999;
}
 .smartblog-container .article__grid-image-wrapper {
	 margin-bottom: 30px;
	 display: block;
	 overflow: hidden;
}

 .smartblog-container .share_this_blog {
	 text-align: center;
}
 .smartblog-container .share_this_blog a {
	 float: none;
}
 .smartblog-container textarea:focus {
	 border-color: #d8dcdc !important;
}
 .smartblog-container .comment-form .grid > div {
	 display: block;
	 width: 100%;
}
 .smartblog-container .comment-form .grid label {
	 color: #333;
	 font-weight: 500;
}
 .smartblog-container .comment-form .grid input {
	 height: 45px;
}
 .smartblog-container .available-comment {
	 display: block;
	 width: 100%;
}
 .smartblog-container .available-comment .h3 {
	 font-size: 18px;
}
 .smartblog-container .available-comment #comments {
	 position: relative;
}
 .smartblog-container .available-comment #comments li {
	 position: relative;
}
 .smartblog-container .available-comment #comments li .comment-img {
	 background: url(//montancesguitarwiring.com/cdn/shop/t/8/assets/comment-blog.jpg?v=72130053099716583031759193343);
	 background-position: 0 0;
	 background-repeat: no-repeat;
	 height: 60px;
	 width: 60px;
	 top: 0;
	 left: 0;
	 overflow: hidden;
	 display: inline-block;
	 float: left;
	 position: relative;
	 margin-right: 20px;
}
 .smartblog-container .available-comment #comments li .comment-inner {
	 overflow: hidden;
	 position: relative;
}
 .smartblog-container .available-comment #comments .comments {
	 position: relative;
	 display: inline-block;
}
 .smartblog-container .available-comment #comments .comments .comment__meta > span {
	 display: block;
}
 .smartblog-container .available-comment #comments .comments .comment__meta > span.author {
	 font-weight: 600;
}
 .smartblog-container .available-comment #comments .comments .comment__meta > span.author:before {
	 display: none;
}
 .smartblog-container .available-comment #comments .comments .comment__content {
	 text-align: left;
}
 /*-------------------------------------All-blog-post page------------------------*/
 @media (min-width: 992px) {
	 .blog--list-view {
		 margin: 0 -15px;
	}
}
 @media (max-width: 991px) {
	 .blog--list-view .pagination {
		 padding: 0;
	}
}
 .sdsarticleCat {
	 display: block;
	 width: 100%;
	 overflow: hidden;
	 margin-bottom: 30px;
	 text-align: left;
}
 @media (max-width: 991px) {
	 .sdsarticleCat {
		/* If media is below 992 */
		 text-align: center;
	}
}
 @media (max-width: 543px) {
	 .sdsarticleCat {
		/* If media is below 544 */
		 text-align: left;
	}
}
 .sdsarticleCat .articleContent, .sdsarticleCat .smartblog-desc {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 .sdsarticleCat .articleContent, .sdsarticleCat .smartblog-desc {
		 padding: 0;
	}
}
 .sdsarticleCat .smartblog-desc {
	/* If media is below 992 */
	 position: relative;
	 font-family: var(--primary-font);
	 font-size: 14px;
	 color: #232323;
	 font-weight: 400;
}
 @media (max-width: 991px) {
	 .sdsarticleCat .smartblog-desc {
		 padding: 15px 0px 0;
	}
}
 .sdsarticleCat .smartblog-desc i {
	 margin-right: 5px;
	 color: var(--brand-third);
}
 .sdsarticleCat .smartblog-desc a {
	 color: var(--brand-third);
}
 .sdsarticleCat .smartblog-desc .article__author {
	 margin: 0px;
	 letter-spacing: 1px;
	 text-transform: capitalize;
}
 .sdsarticleCat .smartblog-desc .article__author i {
	 color: var(--brand-third);
}
 .sdsarticleCat .smartblog-desc .article__title {
	 margin: 12px 0;
	 line-height: 18px;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 .sdsarticleCat .smartblog-desc .article__title {
		/* If media is between 992 and 1199 */
		 line-height: 20px;
		 margin: 10px 0;
	}
}
 .sdsarticleCat .smartblog-desc .article__title a {
	 font-size: 17px;
	 text-transform: uppercase;
	 font-weight: 600;
	 text-decoration: none;
	 font-family: var(--primary-font);
	 letter-spacing: 0.8px;
	 color: #232323;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 .sdsarticleCat .smartblog-desc .article__title a {
		/* If media is between 992 and 1199 */
		 font-size: 17px;
	}
}
 .sdsarticleCat .smartblog-desc .blog-details {
	 margin-bottom: 10px;
}
 .sdsarticleCat .smartblog-desc .blog-details .article__date {
	 margin-bottom: 0;
}
 .sdsarticleCat .smartblog-desc .blog-details span {
	 font-size: 15px;
	 display: inline-block;
	 vertical-align: middle;
	 margin-right: 10px;
	 position: relative;
	 text-transform: capitalize;
	 color: var(--brand-third);
	 line-height: 25px;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 .sdsarticleCat .smartblog-desc .blog-details span {
		/* If media is between 992 and 1199 */
		 line-height: 20px;
		 font-size: 14px;
	}
}
 .sdsarticleCat .smartblog-desc .blog_description {
	     margin-bottom: 15px;
    color: #787878;
    line-height: 24px;
    font-size: 15px;
    font-weight: 400;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 .sdsarticleCat .smartblog-desc .blog_description {
		/* If media is between 992 and 1199 */
		 line-height: 20px;
	}
}
 .sdsarticleCat .smartblog-desc .r_more {
	 text-decoration: none;
	 font-size: 14px;
	 font-weight: 500;
	 background: var(--button-bg-color);
	 border-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 display: inline-block;
	 vertical-align: middle;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .sdsarticleCat .smartblog-desc .r_more:hover {
	 background: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
	 color: var(--button-text-hover-color);
}
 .smart-form {
	 background: #fff;
	 padding: 15px 20px 10px;
}
 .smart-user {
	 background: #fff;
	 padding: 20px;
}
 /*================ brandlogo ================*/
 .manufacture-section.index-section {
	 margin-bottom: 60px;
}
 @media (max-width: 991px) {
	 .manufacture-section.index-section {
		/* If media is below 992 */
		 margin-bottom: 25px;
	}
}
 .manufacture-block #manufacture-carousel {
	 text-align: center;
}
 .manufacture-block #manufacture-carousel .logo-bar__item {
	 opacity: 1;
	 cursor: pointer;
	 display: inline-block;
	 vertical-align: middle;
	 -webkit-transition: all 0.8s;
	 -moz-transition: all 0.8s;
	 -o-transition: all 0.8s;
	 transition: all 0.8s;
}
 .manufacture-block #manufacture-carousel .logo-bar__item:hover {
	 transform: scale(0.9);
	 opacity: 1;
}
 .manufacture-block #manufacture-carousel .logo-bar__item a .placeholder-svg {
	 width: 130px;
}
 .manufacture-block #manufacture-carousel .owl-nav {
	 margin-top: 5px;
}
 /*================ collection-list ===============*/
 .collection-list-section .section-header h2 {
	 margin-bottom: 20px;
}
 .collection-list-section .grid--uniform.collection-width-4 .grid__item:nth-child(4n+1) {
	 clear: left;
}
 @media (max-width: 1199px) {
	 .collection-list-section .grid--uniform.collection-width-4 .grid__item:nth-child(4n+1) {
		 clear: none;
	}
	 .collection-list-section .grid--uniform.collection-width-4 .grid__item:nth-child(3n+1) {
		 clear: left;
	}
}
 @media (max-width: 991px) {
	 .collection-list-section .grid--uniform.collection-width-4 .grid__item:nth-child(3n+1) {
		 clear: none;
	}
	 .collection-list-section .grid--uniform.collection-width-4 .grid__item:nth-child(2n+1) {
		 clear: left;
	}
}
 .collection-list-section .grid--uniform.collection-width-3 .grid__item:nth-child(3n+1) {
	 clear: left;
}
 @media (max-width: 991px) {
	 .collection-list-section .grid--uniform.collection-width-3 .grid__item:nth-child(3n+1) {
		 clear: none;
	}
	 .collection-list-section .grid--uniform.collection-width-3 .grid__item:nth-child(2n+1) {
		 clear: left;
	}
}
 .collection-list-section .grid--uniform.collection-width-2 .grid__item:nth-child(2n+1) {
	 clear: left;
}
 @media (max-width: 543px) {
	 .collection-list-section .grid--uniform .grid__item {
		 width: 100%;
	}
}
 /*================ footer ================*/
 .template-index .site-footer {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 .template-index .site-footer {
		 margin-top: 0px;
	}
}
 @media (max-width: 991px) {
	 .template-index .site-footer {
		/* If media is below 992 */
		 margin-top: 0px;
	}
}
 .footer-before {
	 display: block;
	 padding-top: 0px;
}
 .site-footer {
	 position: relative;
	 margin-top: 70px;
	 color: var(--footer-text-color);
	 font-size: 14px;
	 padding-top: 0px;
	/*================ footer-after ================*/
}
 .site-footer.footerimage {
	 background-position: center;
	 background-repeat: no-repeat;
	 background-size: cover;
}
 .site-footer.footer-color {
	 background: var(--footer-bg-color);
}
 @media (max-width: 991px) {
	 .site-footer {
		/* If media is below 992 */
		 margin-top: 30px;
	}
}
 .site-footer .footer-before > .page-width, .site-footer .footer-container > .page-width, .site-footer .footer-bottom > .page-width {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 .site-footer .footer-before > .page-width, .site-footer .footer-container > .page-width, .site-footer .footer-bottom > .page-width {
		 max-width: 1110px;
	}
}
 .site-footer a, .site-footer p {
	 font-weight: 400;
	 letter-spacing: 0.5;
	 font-size: 14px;
	 color: var(--footer-text-color);
	 margin-bottom: 0;
	 text-decoration: none;
}
 .site-footer a {
	 transition: all 0.4s ease 0s;
	 -webkit-transition: all 0.4s ease 0s;
	 -moz-transition: all 0.4s ease 0s;
	 -o-transition: all 0.4s ease 0s;
}
 .site-footer a:hover {
	 color: var(--footer-text-hover-color);
}
 .site-footer .footer-block:last-child .footer-title {
	 margin-bottom: 0px;
}
 .site-footer .footer-heading {
	 letter-spacing: 0.5px;
	 font-family: var(--primary-font);
	 margin-bottom: 0px;
	 text-transform: unset;
	 font-size: 17px;
	 font-weight: 600;
	 color: var(--footer-heading-color);
}
 @media (min-width: 992px) {
	 .site-footer .footer-heading {
		/* If media is above 991 */
		 margin-bottom: 18px;
	}
}
 .site-footer .footer-title {
	 display: block;
	 width: 100%;
	 overflow: hidden;
	 cursor: pointer;
}
 .site-footer .block-heading {
	 margin-bottom: 12px;
	 font-family: var(--primary-font);
	 color: var(--footer-heading-color);
	 font-size: 18px;
	 font-weight: 500;
	 letter-spacing: 1px;
	 cursor: pointer;
}
 .site-footer .footer-block {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 .site-footer .footer-block {
		 padding: 0 15px;
	}
}
 .site-footer .site-footer__linklist-item {
	 margin-bottom: 13px;
	 position: relative;
}
 @media (min-width: 992px) {
	 .site-footer .site-footer__linklist-item {
		/* If media is above 991 */
	}
	 .site-footer .site-footer__linklist-item:last-child {
		 margin-bottom: 0;
	}
}
 .site-footer .bottom-link-list {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 .site-footer .bottom-link-list {
		 width: 100%;
	}
}
 .site-footer .bottom-link-list a {
	 display: block;
	 overflow: hidden;
	 position: relative;
	 transition: all 0.4s ease 0s;
	 -webkit-transition: all 0.4s ease 0s;
	 -moz-transition: all 0.4s ease 0s;
	 -o-transition: all 0.4s ease 0s;
}
 .site-footer .bottom-link-list a:before {
	 content: "";
	 position: absolute;
	 left: 0;
	 top: 40%;
	 width: 5px;
	 background: var(--footer-text-hover-color);
	 height: 5px;
	 opacity: 0;
	 border-radius: 50%;
	 transition: all 0.4s ease 0s;
	 -webkit-transition: all 0.4s ease 0s;
	 -moz-transition: all 0.4s ease 0s;
	 -o-transition: all 0.4s ease 0s;
}
 .site-footer .bottom-link-list a:hover {
	 color: var(--footer-text-hover-color);
	 padding-left: 20px;
}
 .site-footer .bottom-link-list a:hover:before {
	 opacity: 1;
}
 @media (max-width: 991px) {
	 .site-footer .bottom-link-list {
		/* If media is below 992 */
		 display: block;
		 width: 100%;
	}
}
 .site-footer .bottom-link-list .site-footer__linklist-item {
	 position: relative;
}
 .site-footer .contact-info {
	 text-align: left;
	 display: block;
}
 @media (max-width: 991px) {
	 .site-footer .contact-info {
		/* If media is below 992 */
		 width: 100%;
		 padding: 0 15px;
	}
}
 .site-footer .contact-info .store-img {
	 display: block;
	 width: 100%;
	 overflow: hidden;
	 margin-bottom: 25px;
	 text-align: center;
}
 .site-footer .contact-info .store-img .feature-row__image-wrapper {
	 margin: auto;
}
 .site-footer .contact-info .store-img img {
	 max-width: 100%;
	 max-height: 100%;
	 margin: 0;
}
 .site-footer .contact-info .contact-info-inner {
	/* If media is below 992 */
}
 @media (max-width: 991px) {
	 .site-footer .contact-info .contact-info-inner {
		 position: relative;
		 overflow: hidden;
	}
}
 .site-footer .contact-info .contact-info-inner i {
	 font-size: 20px;
	 margin-top: 0px;
	 margin-right: 0px;
	 height: 24px;
	 width: 30px;
	 color: var(--brand-secondary);
	 text-align: center;
	 vertical-align: top;
	 line-height: 25px;
}
 @media (max-width: 991px) {
	 .site-footer .contact-info .contact-info-inner i {
		 width: 45px;
		 height: 45px;
		 line-height: 45px;
		 border-radius: 50%;
		 margin: 0 auto 5px;
		 border: 1px solid var(--footer-text-modify-color);
		 display: inline-block;
		 vertical-align: middle;
	}
}
 .site-footer .contact-info .contact-info-inner .content {
	 display: inline-block;
	 vertical-align: middle;
	 overflow: hidden;
	 padding-left: 5px;
	 line-height: 23px;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 .site-footer .contact-info .contact-info-inner .content {
		/* If media is between 992 and 1199 */
		 width: 83%;
	}
}
 @media (max-width: 991px) {
	 .site-footer .contact-info .contact-info-inner .content {
		/* If media is below 992 */
		 padding: 0;
		 display: inline-block;
		 vertical-align: middle;
		 margin-left: 15px;
	}
}
 .site-footer .contact-info .contact-info-inner .shop-email i {
	 font-size: 17px;
}
 @media (max-width: 991px) {
	 .site-footer .contact-info .contact-info-inner .shop-email i {
		 line-height: 43px;
	}
}
 .site-footer .contact-info .contact-info-inner .site-footer__linklist-item {
	 margin-bottom: 16px;
	 padding: 0;
}
 @media (max-width: 991px) {
	 .site-footer .contact-info .contact-info-inner .site-footer__linklist-item {
		 width: 100%;
		 text-align: left;
	}
	 .site-footer .contact-info .contact-info-inner .site-footer__linklist-item:last-child {
		 margin-bottom: 0px;
	}
}
 .site-footer .footer-text {
	 text-align: center;
}
 .site-footer .footer-text .footer-header > h2 {
	 background-image: none;
	 color: var(--footer-heading-color);
	 padding: 0;
	 font-size: 30px;
	 font-weight: 600;
	 margin-bottom: 15px;
	 text-transform: Unset;
	 font-family: var(--secondary-font);
}
 @media (max-width: 991px) {
	 .site-footer .footer-text .footer-header > h2 {
		/* If media is below 992 */
		 font-size: 24px;
		 margin-bottom: 12px;
	}
}
 @media (max-width: 543px) {
	 .site-footer .footer-text .footer-header > h2 {
		/* If media is below 544 */
		 font-size: 22px;
		 margin-bottom: 10px;
	}
}
 .site-footer .footer-text .sub-title {
	 font-weight: 400;
	 letter-spacing: 0.5px;
	 font-size: 14px;
	 color: var(--footer-text-color);
	 margin-bottom: 25px;
}
 .site-footer .block_newsletter {
	 overflow: hidden;
	 display: block;
	 margin: 40px 0 20px;
}
 @media (max-width: 991px) {
	 .site-footer .block_newsletter {
		/* If media is below 992 */
		 margin: 40px 0 0px;
	}
}
 @media (max-width: 543px) {
	 .site-footer .block_newsletter {
		/* If media is below 544 */
		 padding: 0;
	}
}
 .site-footer .block_newsletter .site-footer__newsletter {
	 margin: 0;
}
 @media (max-width: 991px) {
	 .site-footer .block_newsletter .site-footer__newsletter {
		/* If media is below 992 */
		 padding: 0 15px;
	}
}
 .site-footer .block_newsletter .site-footer__newsletter form {
	 position: relative;
	 text-align: center;
	 margin: 0 auto;
	 width: 95%;
}
 @media (max-width: 991px) {
	 .site-footer .block_newsletter .site-footer__newsletter form {
		 width: 75%;
	}
}
 @media (max-width: 767px) {
	 .site-footer .block_newsletter .site-footer__newsletter form {
		 width: 85%;
	}
}
 @media (max-width: 543px) {
	 .site-footer .block_newsletter .site-footer__newsletter form {
		 width: 100%;
	}
}
 .site-footer .block_newsletter .input-group {
	 width: 100%;
	 background: transparent;
}
 @media (min-width: 992px) {
	 .site-footer .block_newsletter .input-group {
		/* If media is above 991 */
		 margin: 0 auto;
		 max-width: 638px;
	}
}
 @media (max-width: 1199px) {
	 .site-footer .block_newsletter .input-group {
		/* If media is below 1200 */
		 width: 100%;
	}
}
 @media (max-width: 991px) {
	 .site-footer .block_newsletter .input-group {
		/* If media is below 992 */
		 width: 100%;
		 display: block;
		 text-align: left;
	}
}
 @media (max-width: 543px) {
	 .site-footer .block_newsletter .input-group {
		/* If media is below 544 */
		 width: 100%;
	}
}
 .site-footer .block_newsletter .input-group .input-group__field {
	 min-width: 250px;
	 width: 100%;
	 height: 40px;
	 padding: 10px 20px;
	 border: 1px solid #eee;
	 background-color: #fff;
	 font-size: 14px;
	 font-weight: 400;
	 border-radius: 50px;
	 color: #666;
	 padding-right: 120px;
}
 @media (max-width: 543px) {
	 .site-footer .block_newsletter .input-group .input-group__field {
		 padding-right: 60px;
	}
}
 .site-footer .block_newsletter .input-group .input-group__field::-moz-placeholder {
	 color: #666;
	 opacity: 0.8;
}
 .site-footer .block_newsletter .input-group .input-group__field:focus {
	 background-color: #fff;
	 color: #666;
}
 .site-footer .block_newsletter .input-group .input-group__btn {
	 right: -1px;
}
 .site-footer .block_newsletter .input-group .input-group__btn .btn {
	 height: 40px;
	 background-color: var(--button-bg-color);
	 border-color: var(--button-bg-color);
	 font-weight: 400;
	 font-size: 14px;
	 color: var(--button-text-color);
	 padding: 5px 15px;
	 text-align: center;
	 outline: none;
	 border-radius: 0 50px 50px 0;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .site-footer .block_newsletter .input-group .input-group__btn .btn:hover {
	 background-color: var(--button-bg-color);
	 border-color: var(--button-bg-color);
	 color: var(--button-text-color);
}
 .site-footer .block_newsletter .input-group .input-group__btn .btn > span {
	 font-size: 14px;
	 font-weight: 400;
	 letter-spacing: 0.5px;
}
 .site-footer .block_newsletter .input-group .input-group__btn .btn:after {
	 content: '\f003';
	 font-family: "FontAwesome";
	 font-size: 20px;
	 line-height: 18px;
	 text-align: center;
	 margin: 0 auto;
	 display: none;
}
 .site-footer .block_newsletter .errors {
	 padding: 0 5px;
	 margin-bottom: 0;
}
 .site-footer .follow-us {
	 text-align: center;
	 display: block;
	 padding: 0;
	 padding-bottom: 0;
	 margin: 40px 0 20px;
}
 @media (max-width: 991px) {
	 .site-footer .follow-us {
		/* If media is below 992 */
		 margin: 20px 0;
	}
}
 .site-footer .follow-us .social-media-blocks .social_text {
	 display: block;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li {
	 cursor: pointer;
	 display: inline-block;
	 vertical-align: middle;
	 height: 34px;
	 width: 34px;
	 margin: 2px;
	 background: var(--brand-third);
	 border-radius: 50%;
	 text-align: center;
	 position: relative;
	 -webkit-transition: all 0.4s;
	 -moz-transition: all 0.4s;
	 -o-transition: all 0.4s;
	 transition: all 0.4s;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link {
	 width: 34px;
	 height: 34px;
	 text-align: center;
	 margin: 0 auto;
	 text-decoration: none;
	 line-height: 31px;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link .icon__-text {
	 display: none;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li .social-icons__link i {
	 display: inline-block;
	 vertical-align: middle;
	 font-family: FontAwesome;
	 font-weight: 400;
	 position: relative;
	 font-size: 14px;
	 color: #fff;
	 position: relative;
	 left: 0px;
	 top: 0px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.facebook {
	 background-color: #3b5999;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.facebook .social-icons__link i {
	 content: "\F09A";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.twitter {
	 background-color: #00aced;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.twitter .social-icons__link i {
	 content: "\f099";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.pinterest {
	 background-color: #cb2027;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.pinterest .social-icons__link i {
	 content: "\f231";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.instagram {
	 background-color: #cc2366;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.instagram .social-icons__link i {
	 content: "\f16d";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.tumblr {
	 background-color: #f26522;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.tumblr .social-icons__link i {
	 content: "";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.snapchat {
	 background-color: #fffc00;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.snapchat .social-icons__link i {
	 content: "";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.youtube {
	 background-color: #d12121;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.youtube .social-icons__link i {
	 content: "\f16a";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.vimeo {
	 background-color: #00aced;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.vimeo .social-icons__link i {
	 content: "\f27d";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.rss {
	 background-color: #f26522;
}
 .site-footer .follow-us .social-media-blocks .header-social ul li.rss .social-icons__link i {
	 content: "\f09e";
}
 .site-footer .follow-us .social-media-blocks .header-social ul li:hover {
	 background: var(--button-bg-color);
}
 .site-footer .follow-us .social-media-blocks .header-social ul li:hover a i {
	 color: var(--button-text-color);
}
 .site-footer .footer-link-list {
	 text-align: center;
}
 .site-footer .footer-link-list .site-footer__linklist-item {
	 display: inline-block;
	 vertical-align: middle;
	 margin: 0 12px;
	 position: relative;
}
 @media (min-width: 992px) {
	 .site-footer .footer-link-list .site-footer__linklist-item {
		/* If media is above 991 */
	}
	 .site-footer .footer-link-list .site-footer__linklist-item:before {
		 content: '';
		 width: 1px;
		 height: 12px;
		 background: var(--footer-text-modify-color);
		 position: absolute;
		 right: -14px;
		 top: 7px;
	}
}
 .site-footer .footer-link-list .site-footer__linklist-item:last-child:before {
	 display: none;
}
 .site-footer .footer-link-list .site-footer__linklist-item:last-child:after {
	 display: none;
}
 @media (max-width: 1199px) {
	 .site-footer .footer-link-list .site-footer__linklist-item {
		/* If media is below 1200 */
		 margin: 0 10px;
	}
}
 @media (max-width: 991px) {
	 .site-footer .footer-link-list .site-footer__linklist-item {
		/* If media is below 992 */
		 margin: 0 7px;
	}
}
 .site-footer .footer-link-list .site-footer__linklist-item a {
	 color: var(--footer-text-color);
	 line-height: 25px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
}
 .site-footer .footer-link-list .site-footer__linklist-item a:hover {
	 color: var(--footer-text-hover-color);
}
 .site-footer .footer-container {
	 display: block;
	 overflow: hidden;
	 padding: 0;
	 padding-top: 20px;
	 padding-bottom: 55px;
	/* .footer-border{
		 padding: 25px 0;
		 display: block;
		 overflow: hidden;
		 border-top: 1px solid #eeeeee;
		 @media (max-width: 991px) {
			 padding: 30px 0;
		}
	}
	 */
}
 @media (max-width: 991px) {
	 .site-footer .footer-container {
		/* If media is below 992 */
		 padding-bottom: 35px;
		 padding-top: 10px;
	}
}
 .site-footer .footer-container .container-inner {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 .site-footer .footer-container .container-inner > div {
		 position: relative;
	}
	 .site-footer .footer-container .container-inner > div:after {
		 content: '';
		 position: absolute;
		 right: 20px;
		 top: 0;
		 width: 1px;
		 height: 100%;
		 background: var(--footer-text-modify-color);
	}
	 .site-footer .footer-container .container-inner > div:last-child:after {
		 display: none;
	}
}
 .site-footer .footer-bottom {
	 display: block;
	 overflow: hidden;
	 padding: 8px 0;
	 border-width: 1px 0 0 0;
	 border-style: solid;
	 border-color: var(--footer-text-modify-color);
}
 @media (max-width: 991px) {
	 .site-footer .footer-bottom {
		/* If media is below 992 */
		 padding: 10px 0;
	}
}
 @media (min-width: 992px) {
	 .site-footer .footer-bottom .page-width .row {
		 display: flex;
		 align-items: center;
	}
}
 .site-footer .footer-bottom .footer-left {
	 text-align: left;
}
 @media (max-width: 991px) {
	 .site-footer .footer-bottom .footer-left {
		 text-align: center;
	}
}
 .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom {
	 padding: 6px 0;
	 display: block;
	 overflow: hidden;
}
 @media (max-width: 991px) {
	 .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom {
		/* If media is below 992 */
		 display: block;
		 padding: 8px 0;
	}
}
 .site-footer .footer-bottom .footer-left .site-footer__copyright--bottom p {
	 font-size: 14px;
	 color: var(--footer-text-color);
}
 .site-footer .footer-bottom .footer-right {
	 text-align: right;
}
 @media (max-width: 991px) {
	 .site-footer .footer-bottom .footer-right {
		 text-align: center;
	}
}
 .site-footer .footer-bottom .footer-right .payment-icons {
	/* If media is below 992 */
	 display: block;
	 padding: 0 0;
	 margin-bottom: 0px;
}
 @media (max-width: 991px) {
	 .site-footer .footer-bottom .footer-right .payment-icons {
		 padding: 8px 0;
	}
}
 .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item {
	 display: inline-block;
	 vertical-align: middle;
}
 .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link {
	 width: 44px;
	 height: 33px;
	 padding: 0;
	 margin: 0 2px;
	 box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1);
}
 .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link svg {
	 background: #fff;
	 border-radius: 2px;
}
 .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item .logo-bar__link:hover {
	 color: transparent;
}
 .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item img {
	 cursor: pointer;
	 transition: all 0.25s;
	 max-width: 100%;
}
 @media (max-width: 767px) {
	 .site-footer .footer-bottom .footer-right .payment-icons .logo-bar__item img {
		/* If media is below 768 */
		 width: 41px;
	}
}
 /*================ sidebar ================*/
 #shopify-section-Ishi_sidebar {
	/*================ leftcolumn product================*/
	/*================left-banner ================*/
	/*================filter ================*/
}
 #shopify-section-Ishi_sidebar .sidebar-collection .products-display {
	 padding: 10px;
}
 #shopify-section-Ishi_sidebar .sidebar-collection .add-to-cart, #shopify-section-Ishi_sidebar .sidebar-collection .sca-qv-button, #shopify-section-Ishi_sidebar .sidebar-collection .flags {
	 display: none !important;
}
 #shopify-section-Ishi_sidebar .left-column {
	/* If media is below 991 */
	 display: block;
	 border: 1px solid #e9e9e9;
	 margin-bottom: 30px;
	 background: #fff;
}
 @media (max-width: 991px) {
	 #shopify-section-Ishi_sidebar .left-column {
		 display: block;
		 margin-bottom: 20px;
	}
}
 #shopify-section-Ishi_sidebar .left-column.banner {
	 display: block;
}
 #shopify-section-Ishi_sidebar .left-column hr {
	 margin: 0;
}
 #shopify-section-Ishi_sidebar .left-column .grid--uniform .grid__item {
	 padding: 0;
}
 #shopify-section-Ishi_sidebar .left-column .products-display {
	 clear: both;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item {
	 position: relative;
	 overflow: hidden;
	 border: 0;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item:hover {
	 box-shadow: none;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container {
	 border: none;
	 border-radius: 0;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper {
	 float: left;
	 margin-right: 10px;
	 padding-bottom: 0;
	 border: 1px solid #eee;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .grid-view-item__image-wrapper .discount-percentage {
	 display: none;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description {
	 overflow: hidden;
	 padding: 0;
	 margin: 0;
	 border: 0;
	 text-align: left;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail {
	 overflow: hidden;
	 display: block;
	 margin-bottom: 4px;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
	 text-align: left;
	 margin-bottom: 0px;
	 line-height: 17px;
	 font-size: 14px;
	 font-weight: 400;
	 text-transform: capitalize;
	 margin: 0;
	 margin-bottom: 3px;
	 font-family: var(--primary-font);
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .product-detail .grid-view-item__title {
		/* If media is between 992 and 1199 */
		 font-size: 13px;
	}
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta {
	 text-align: left;
	 margin-bottom: 5px;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .is-bold {
	 font-size: 16px;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta span {
	 line-height: 18px;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item .grid-view-item__image-container .product-description .grid-view-item__meta .product-price__sold-out {
	 display: none;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item:hover .grid-view-item__image-container {
	 padding: 0px;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item:hover .grid-view-item__image-container a .product-detail {
	 opacity: 1;
}
 #shopify-section-Ishi_sidebar .left-column .products-display .grid__item .grid-view-item:hover .grid-view-item__meta {
	 opacity: 1;
}
 #shopify-section-Ishi_sidebar .left-column .left-inner.collapse {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 #shopify-section-Ishi_sidebar .left-column .left-inner.collapse {
		 display: inherit;
	}
}
 #shopify-section-Ishi_sidebar .left-column .sidebar-title {
	 font-size: 16px;
	 padding: 15px;
	 text-align: left;
	 margin-bottom: 8px;
	 display: block;
	 background: #f5f5f5;
	 color: #232323;
	 font-family: var(--primary-font);
	 font-weight: 400;
	 text-transform: uppercase;
	 letter-spacing: 0.5px;
	 line-height: 18px;
}
 @media screen and (min-width: 992px) and (max-width: 1199px) {
	 #shopify-section-Ishi_sidebar .left-column .sidebar-title {
		/* If media is between 992 and 1199 */
		 font-size: 13px;
	}
}
 #shopify-section-Ishi_sidebar .left-column .sidebar-title:after, #shopify-section-Ishi_sidebar .left-column .sidebar-title:before {
	 display: none;
}
 #shopify-section-Ishi_sidebar .left-column .sidebar-title a {
	 color: #232323;
}
 #shopify-section-Ishi_sidebar .left-column .sidebar-title a:hover {
	 color: #232323;
}
 #shopify-section-Ishi_sidebar .left-column .grid-view-item__link {
	 margin-bottom: 0;
}
 @media (max-width: 767px) {
	 #shopify-section-Ishi_sidebar .left-column .grid-view-item__link {
		/* If media is below 767 */
		 max-width: 100%;
	}
}
 #shopify-section-Ishi_sidebar .left-column .grid__item--Ishi_sidebar {
	 margin-bottom: 15px;
}
 #shopify-section-Ishi_sidebar .left-column .grid__item--Ishi_sidebar:last-child {
	 margin-bottom: 0;
}
 #shopify-section-Ishi_sidebar .left-column .view-all .view-all-btn {
	 background: transparent;
	 color: #7a7a7a;
	 text-transform: capitalize;
	 position: relative;
	 float: right;
	 padding: 10px 31px 15px 0;
	 border: none;
	 letter-spacing: 0em;
	 margin: 0;
}
 #shopify-section-Ishi_sidebar .left-column .view-all .view-all-btn i {
	 top: 8px;
	 position: absolute;
	 right: 5px;
}
 #shopify-section-Ishi_sidebar .left-column .block-heading {
	 float: none;
	 vertical-align: middle;
	 color: #232323;
	 border: none;
	 font-size: 16px;
	 line-height: 23px;
	 font-weight: 400;
	 text-transform: uppercase;
	 letter-spacing: 1px;
	 font-family: var(--primary-font);
}
 #shopify-section-Ishi_sidebar .left-column .block-heading a {
	 color: #232323;
	 font-weight: 400;
}
 #shopify-section-Ishi_sidebar .left-column .left-title {
	 padding: 12px 15px;
	 background: #f5f5f5;
	 cursor: pointer;
	 color: #232323;
	 line-height: 0;
}
 #shopify-section-Ishi_sidebar .left-column .collapsed .navbar-toggler i.add {
	 display: block;
}
 #shopify-section-Ishi_sidebar .left-column .collapsed .navbar-toggler i.remove {
	 display: none;
}
 #shopify-section-Ishi_sidebar .left-column .navbar-toggler i.add {
	 display: none;
}
 #shopify-section-Ishi_sidebar .left-column .navbar-toggler i.remove {
	 display: block;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories {
	 padding: 10px 15px;
	 background: transparent;
}
 @media (min-width: 992px) {
	 #shopify-section-Ishi_sidebar .sidebar-categories .categories {
		/* If media is above 991 */
		 display: inherit;
	}
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .categories-items {
	 padding: 7px 0;
	 background: transparent;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .dropdown-submenu {
	 margin-top: 8px;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title {
	 width: 100%;
	 font-weight: 400;
	 color: #232323;
	 position: relative;
	 font-size: 14px;
	 -webkit-transition: all 0.3s;
	 -moz-transition: all 0.3s;
	 -o-transition: all 0.3s;
	 transition: all 0.3s;
	 margin: 0;
	 letter-spacing: 0.5px;
	 font-family: var(--primary-font);
	 text-transform: capitalize;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapse-icon i {
	 float: right;
	 border: medium none;
	 font-size: 15px;
	 height: 18px;
	 padding: 2px;
	 width: 18px;
	 color: #232323;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapsed .add {
	 display: block;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .collapsed .remove {
	 display: none;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .add {
	 display: none;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .link-title .remove {
	 display: block;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .category_submenu {
	 padding: 3px;
	 padding-left: 15px;
}
 #shopify-section-Ishi_sidebar .sidebar-categories .categories .dropdown-item {
	 color: #232323;
	 letter-spacing: 0.5px;
	 font-weight: 400;
	 font-size: 14px;
	 text-decoration: none;
}
 #shopify-section-Ishi_sidebar .collection-left .view-all {
	 display: block;
	 overflow: hidden;
}
 #shopify-section-Ishi_sidebar .collection-left .grid__item {
	 width: 100% !important;
}
 #shopify-section-Ishi_sidebar .banner {
	 border: none;
}
 #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper {
	/* If media is below 768 */
	 margin: 0 auto;
	 overflow: hidden;
}
 @media (max-width: 991px) {
	 #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper {
		 text-align: center;
	}
}
 #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a {
	 display: block;
	 position: relative;
	 overflow: hidden;
	 transition: all 0.5s;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
}
 @media (max-width: 991px) {
	 #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a {
		/* If media is below 768 */
		 display: inline-block;
	}
}
 #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a .img-block {
	 display: inline-block;
	 overflow: hidden;
}
 #shopify-section-Ishi_sidebar .banner .feature-row__image-wrapper a .feature-row__image {
	 transition: all 0.5s;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -ms-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 width: 100%;
}
 #shopify-section-Ishi_sidebar .banner .feature-row__item {
	 text-align: unset;
}
 #shopify-section-Ishi_sidebar .tag-filter {
	 width: 100%;
}
 #shopify-section-Ishi_sidebar .tag-filter #SortTags a {
	 display: inline-block;
	 font-size: 14px;
	 color: #232323;
	 letter-spacing: 0.5px;
	 vertical-align: top;
	 margin-bottom: 5px;
}
 #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected {
	 font-weight: 600;
	 color: #232323;
}
 #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected .filter-box {
	 position: relative;
}
 #shopify-section-Ishi_sidebar .tag-filter #SortTags a.selected .filter-box:after {
	 content: "\f00c";
	 font-family: fontawesome;
	 font-size: 12px;
	 color: #333;
	 font-weight: 400;
	 top: -3px;
	 left: 1px;
	 position: absolute;
}
 #shopify-section-Ishi_sidebar .tag-filter #SortTags a span {
	 margin-right: 5px;
	 margin-top: 0;
	 display: inline-block;
	 vertical-align: middle;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container {
	 padding: 10px 15px;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all {
	 background: #333;
	 border-color: #333;
	 color: #fff;
	 display: block;
	 position: relative;
	 font-size: 14px;
	 padding: 10px 10px 10px 30px;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after {
	 content: '\E5CD';
	 position: absolute;
	 left: 24%;
	 font-family: 'Material Icons';
}
 @media (max-width: 1199px) {
	 #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after {
		/* If media is below 1200 */
		 left: 10%;
	}
}
 @media (max-width: 991px) {
	 #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after {
		/* If media is below 992 */
		 left: 39%;
	}
}
 @media (max-width: 767px) {
	 #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after {
		/* If media is below 768 */
		 left: 36%;
	}
}
 @media (max-width: 543px) {
	 #shopify-section-Ishi_sidebar .tag-filter #filter-container .clear-all:after {
		/* If media is below 543 */
		 left: 23%;
	}
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li {
	 float: left;
	 margin: 5px 8px 0 0;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox {
	 display: block;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox a.selected .filter-color {
	 outline: 1px solid #fff !important;
	 outline-offset: -3px;
	 opacity: 1;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .color li .custom-checkbox .filter-color {
	 width: 32px;
	 height: 32px;
	 box-shadow: 5px 5px 5px #e0e0e0;
	 opacity: 0.7;
	 line-height: 41px;
	 text-align: center;
	 display: inline-block;
	 cursor: pointer;
	 margin: 0;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li {
	 float: left;
	 margin: 5px 8px 0 0;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox {
	 display: block;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox a:hover .filter-size, #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox a.selected .filter-size {
	 background-color: var(--button-bg-color);
	 color: var(--button-text-color);
	 border-color: transparent;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container .size li .custom-checkbox .filter-size {
	 width: 40px;
	 height: 40px;
	 margin: 0;
	 line-height: 36px;
	 border: 1px solid #ddd;
	 text-align: center;
	 color: #777;
	 transition: 0.2s ease;
	 cursor: pointer;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container strong {
	 color: #454545;
	 font-weight: 600;
	 text-transform: uppercase;
	 font-size: 14px;
	 line-height: 28px;
	 letter-spacing: 0.5px;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container ul {
	 padding: 10px 0;
	 display: block;
	 width: 100%;
	 overflow: hidden;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container ul:first-child {
	 padding-top: 0;
}
 #shopify-section-Ishi_sidebar .tag-filter #filter-container ul li .custom-checkbox .filter-box {
	 margin-right: 3px;
	 display: inline-block;
	 width: 15px;
	 height: 15px;
	 vertical-align: sub;
	 cursor: pointer;
	 border: 1px solid #ddd;
	 background: #fafafa none repeat scroll 0 0;
}
 .collection__main {
	 padding-top: 0px;
}
 /*================ productpage ================*/
 .size-chart-modal .modal-dialog {
	 max-width: 1100px;
	 top: 10%;
	 width: 100%;
}
 @media (max-width: 767px) {
	 .size-chart-modal .modal-dialog {
		/* If media is below 544 */
		 width: unset;
	}
}
 .size-chart-modal .modal-header {
	 padding-bottom: 0;
	 padding-bottom: 0;
}
 .size-chart-modal .modal-header button {
	 color: #333;
	 font-size: 28px;
	 font-weight: 500;
	 opacity: 1;
}
 .size-chart-modal .modal-body {
	 display: block;
	 overflow: hidden;
	 width: 100%;
	 color: #232323;
	 font-size: 14px;
	 padding: 35px 30px;
	 padding-top: 20px;
}
 @media (min-width: 992px) {
	 .size-chart-modal .modal-body {
		/* If media is above 991 */
		 display: flex;
		 align-items: center;
	}
}
 @media (max-width: 543px) {
	 .size-chart-modal .modal-body {
		/* If media is below 544 */
		 display: inline-block;
		 max-width: 100%;
		 overflow: hidden;
		 margin: 0;
		 padding-left: 10px;
		 padding-right: 10px;
	}
}
 .size-chart-modal .modal-body .modal-img {
	 text-align: center;
	 margin-bottom: 30px;
}
 .size-chart-modal .modal-body .modal-text {
	/* If media is above 991 */
}
 @media (min-width: 992px) {
	 .size-chart-modal .modal-body .modal-text {
		 max-height: 600px;
		 overflow: auto;
	}
}
 @media (max-width: 543px) {
	 .size-chart-modal .modal-body .modal-text {
		/* If media is below 544 */
		 overflow: hidden;
	}
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des h4 {
	 font-size: 16px;
	 font-weight: 600;
	 line-height: 26px;
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table {
	 border: 1px solid #e9e9e9;
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table thead > tr:first-child {
	 background-color: #f1f1f1;
	 color: #232323;
	 font-size: 14px;
	 font-weight: 500;
	 border: none;
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table thead tr th {
	 text-align: center;
	 border: none;
	 font-weight: 600;
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table tbody {
	/*> tr{
		 border-bottom: 1px solid #e9e9e9;
		 &:last-child{
			 border-bottom: none;
		}
	}
	*/
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table table tbody td {
	 text-align: center;
}
 @media (max-width: 543px) {
	 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right-table {
		/* If media is below 544 */
		 max-width: 100%;
		 overflow: auto;
		 display: block;
		 margin-bottom: 12px;
	}
}
 .size-chart-modal .modal-body .modal-text .custom_size_chart_des .custom-text-right p strong {
	 font-weight: 500;
	 margin-right: 3px;
	 color: #232323;
	 font-size: 14px;
	 letter-spacing: 0.4px;
}
 .size-chart-modal .modal-header {
	 border: none;
}
 .size-chart-modal .modal-footer {
	 padding: 0;
}
 .product-single {
	 color: #777;
	 font-weight: 400;
}
 .product-single .product-single-left .product-single__title {
	 color: #232323;
	 font-weight: 500;
	 text-transform: capitalize;
	 padding-bottom: 0px;
	 font-size: 26px;
	 border-bottom: 0;
	 margin-bottom: 20px;
	 padding-top: 0px;
	 line-height: 26px;
	 letter-spacing: 0.1px;
	 text-align: left;
}
 @media (max-width: 543px) {
	 .product-single .product-single-left .product-single__title {
		/* If media is below 544 */
		 font-size: 22px;
		 line-height: 28px;
	}
}
 .product-single .product-single-left .price-product {
	 text-align: left;
}
 .product-single .product-single-left .price-product .product-single__price-product-template {
	 margin-bottom: 20px;
}
 .product-single .product-single-left .price-product .product-price__price {
	 color: #232323;
	 font-weight: 500;
	 margin: 0 2px;
	 font-size: 20px;
	 text-align: left;
	 vertical-align: middle;
}
 .product-single .product-single-left .price-product .regular-price {
	 font-weight: 400;
	 line-height: 20px;
	 color: #666;
	 margin: 0 5px;
	 font-size: 18px;
}
 .product-single .product-single-left .single-left {
	 position: relative;
}
 .product-single .product-single-left .single-left .product-single__media-wrapper {
	 border: 1px solid #eee;
}
 .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media {
	 margin: 0 auto;
	 min-height: 1px;
	 width: 100%;
	 height: 100%;
	 position: relative;
}
 .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media iframe, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media model-viewer, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .shopify-model-viewer-ui, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media img, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media > video, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .plyr, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .media-item {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 max-width: 100%;
}
 .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media iframe, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .media-video, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media model-viewer, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .shopify-model-viewer-ui, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .media-item, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .plyr, .product-single .product-single-left .single-left .product-single__media-wrapper .product-single__media .plyr__video-wrapper {
	 height: 100%;
}
 .product-single .product-single-left .zoomImg {
	 cursor: crosshair;
}
 .product-single .product-single-right .dynamic-checkout {
	 padding: 0 5px;
	 margin-top: 8px;
	 margin-bottom: 26px;
}
 .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button {
	 font-size: 14px;
	 font-weight: 400;
	 padding: 17px 40px;
	 border-radius: 30px;
	 opacity: 1;
	 background-color: var(--button-bg-hover-color);
	 border-color: var(--button-bg-hover-color);
	 color: var(--button-text-hover-color);
	 text-transform: uppercase;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button:hover {
	 background-color: var(--button-bg-color);
	 border-color: var(--button-bg-color);
	 color: var(--button-text-color);
}
 .product-single .product-single-right .dynamic-checkout .shopify-payment-button__button--hidden {
	 display: none;
}
 .product-single .product-single-right .product-single__meta .product-single__title {
	 color: #232323;
	 font-weight: 500;
	 text-transform: capitalize;
	 padding-bottom: 0px;
	 font-size: 30px;
	 border-bottom: 0;
	 margin-bottom: 12px;
	 padding-top: 10px;
	 font-family: var(--primary-font);
	 line-height: 1.1;
	 letter-spacing: 0.1px;
}
 @media (max-width: 1199px) {
	 .product-single .product-single-right .product-single__meta .product-single__title {
		/* If media is below 1200 */
		 font-size: 26px;
	}
}
 .product-single .product-single-right .product-single__meta .review {
	 margin-bottom: 16px;
}
 @media (max-width: 767px) {
	 .product-single .product-single-right .product-single__meta .review {
		/* If media is below 768 */
		 margin-bottom: 12px;
	}
}
 .product-single .product-single-right .product-single__meta .review .no-review {
	 color: #666;
	 font-weight: 400;
	 margin-left: 6px;
	 vertical-align: middle;
}
 .product-single .product-single-right .product-single__meta .review .spr-badge {
	 display: inline-block;
	 vertical-align: middle;
}
 .product-single .product-single-right .product-single__meta .review .spr-badge i {
	 position: relative;
	 opacity: 1;
	 height: 14px;
	 width: 16px;
	 line-height: 20px;
	 display: inline-block;
	 top: 0;
	 vertical-align: top;
	 font-style: normal;
}
 .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon:after {
	 content: "\F005";
	 font-family: "FontAwesome";
	 color: #ccc;
	 font-size: 13px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-empty:before {
	 display: none ! important;
}
 .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:before, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:before {
	 display: none;
}
 .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:after, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:after {
	 content: "\F005";
	 font-family: "FontAwesome";
	 color: #fec42d;
	 font-size: 13px;
	 -webkit-transition: all 0.7s;
	 -moz-transition: all 0.7s;
	 -ms-transition: all 0.7s;
	 -o-transition: all 0.7s;
	 transition: all 0.7s;
}
 @media (max-width: 767px) {
	 .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star:after, .product-single .product-single-right .product-single__meta .review .spr-badge i.spr-icon-star-half-alt:after {
		/* If media is below 768 */
		 content: '\F005';
		 color: #fec42d;
	}
}
 .product-single .product-single-right .product-single__meta .review .write_comment {
	 text-decoration: none;
	 color: #777;
	 margin: 0;
	 font-weight: 500;
	 position: relative;
	 margin-left: 7px;
	 vertical-align: middle;
}
 .product-single .product-single-right .product-single__meta .review .write_comment i {
	 font-size: 14px;
	 padding-left: 5px;
	 position: relative;
	 top: 2px;
	 display: none;
}
 .product-single .product-single-right .product-single__meta .review .write_comment:after {
	 content: '';
	 background: url(//montancesguitarwiring.com/cdn/shop/t/8/assets/write-review.png?2076) no-repeat center;
	 height: 10px;
	 width: 10px;
	 position: absolute;
	 right: 0;
	 top: 4px;
	 margin-right: -15px;
	 display: none;
}
 .product-single .product-single-right .product-single__meta .price-product {
	 margin-bottom: 17px;
}
 .product-single .product-single-right .product-single__meta .price-product .product-price__sale {
	 display: none;
}
 .product-single .product-single-right .product-single__meta .price-product .regular-price {
	 color: #232323;
	 font-weight: 500;
	 font-size: 24px;
}
 .product-single .product-single-right .product-single__meta .price-product.price--on-sale .regular-price, .product-single .product-single-right .product-single__meta .price-product .price--sold-out .regular-price {
	 text-decoration: line-through;
	 color: #888;
	 font-size: 18px;
	 vertical-align: bottom;
	 font-weight: 400;
}
 .product-single .product-single-right .product-single__meta .price-product.price--on-sale .product-price__sale, .product-single .product-single-right .product-single__meta .price-product .price--sold-out .product-price__sale {
	 display: inline-block;
}
 .product-single .product-single-right .product-single__meta .product-single__price {
	 color: #232323;
	 font-weight: 500;
	 font-size: 24px;
	 margin-bottom: 0px;
	 padding-left: 0;
	 line-height: 23px;
	 display: inline-block;
	 vertical-align: middle;
}
 .product-single .product-single-right .product-single__meta .product-single__price.visibility-hidden {
	 display: none;
}
 .product-single .product-single-right .product-single__meta .product-single__price .discount-percentage {
	 color: var(--brand-secondary);
	 font-size: 15px;
	 background: #f3f3f3;
	 padding: 5px 13px;
	 font-weight: 500;
	 line-height: 14px;
	 margin: 0;
}
 .product-single .product-single-right .product-single__meta .product-single__price #ProductPrice-product-template {
	 color: #232323;
	 font-weight: 500;
	 margin: 0px;
}
 .product-single .product-single-right .product-single__meta .product-single__price #ProductPrice-product-template.regular-price {
	 font-size: 21px;
	 color: #232323;
}
 .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale {
	 color: #232323;
	 margin: 0;
	 line-height: 23px;
}
 .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale #ComparePrice-product-template {
	 color: #666;
	 margin: 0 5px;
}
 .product-single .product-single-right .product-single__meta .product-single__price .product-price__sale #ProductPrice-product-template {
	 margin: 0;
	 font-weight: 500;
}
 .product-single .product-single-right .product-single__meta .wishlist-chart {
	 margin-bottom: 22px;
	 margin-top: 15px;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist {
	 display: inline-block;
	 vertical-align: middle;
	 line-height: 20px;
	 margin-left: 0px;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist i {
	 font-size: 14px;
	 margin-right: 8px;
	 color: #777;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist i:before {
	 content: "\f004";
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist .btn {
	 padding: 0px;
	 background-color: transparent;
	 border-color: transparent;
	 box-shadow: none;
	 color: #232323;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist .btn:hover {
	 background-color: transparent;
	 border-color: transparent;
	 color: #666;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist .btn:active {
	 box-shadow: none;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist span {
	 font-size: 14px;
	 text-transform: capitalize;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn a span {
	 display: inline-block;
	 opacity: 1;
	 color: #232323;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn i {
	 color: #232323;
}
 .product-single .product-single-right .product-single__meta .add-to-wishlist .loader-btn i:before {
	 content: "\f1ce";
}
 .product-single .product-single-right .product-single__meta .size-chart {
	 padding: 0;
	 width: auto;
	 border: none;
	 margin-left: 20px;
	 text-transform: capitalize;
	 font-size: 15px;
	 background: none;
	 box-shadow: none;
	 color: #232323;
}
 .product-single .product-single-right .product-single__meta .size-chart svg {
	 width: 27px;
	 height: auto;
	 margin-top: -2px;
	 vertical-align: middle;
	 margin-right: 9px;
}
 .product-single .product-single-right .product-single__meta .size-chart svg path {
	 fill: #777;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 .product-single .product-single-right .product-single__meta .size-chart:hover, .product-single .product-single-right .product-single__meta .size-chart:focus {
	 background-color: transparent;
	 color: #666;
	 box-shadow: none;
}
 .product-single .product-single-right .product-single__meta .size-chart:hover svg path, .product-single .product-single-right .product-single__meta .size-chart:focus svg path {
	 fill: #777;
}
 .product-single .product-single-right .product-single__meta .product-single__vendor, .product-single .product-single-right .product-single__meta .available-stock, .product-single .product-single-right .product-single__meta .variant-sku, .product-single .product-single-right .product-single__meta #sold-out {
	 color: #666;
	 font-size: 14px;
	 text-transform: capitalize;
	 letter-spacing: 0.2px;
	 margin: 0px 0 8px;
	 font-weight: 500;
}
 .product-single .product-single-right .product-single__meta .product-single__vendor span, .product-single .product-single-right .product-single__meta .available-stock span, .product-single .product-single-right .product-single__meta .variant-sku span, .product-single .product-single-right .product-single__meta #sold-out span {
	 font-weight: 400;
	 margin-left: 10px;
}
 .product-single .product-single-right .product-single__meta .product-single__vendor {
	 margin-bottom: 5px;
}
 .product-single .product-single-right .product-single__meta .product-single__vendor.available {
	 margin-bottom: 17px;
}
 .product-single .product-single-right .product-single__meta #sold-out {
	 text-transform: unset;
	 display: block;
	 width: 100%;
	 padding: 20px 0;
	 border-top: 1px solid #ddd;
	 border-bottom: 1px solid #ddd;
	 margin-bottom: 22px;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-msg {
	 text-align: left;
	 width: 91%;
	 margin: 0;
	 line-height: 24px;
	 font-weight: 500;
	 font-size: 15px;
	 color: #787878;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-msg.first {
	 margin-bottom: 20px;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-msg .sold-msg {
	 color: #666;
	 font-weight: 600;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price {
	 display: block;
	 overflow: hidden;
	 margin-bottom: 15px;
	 text-align: left;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper {
	 float: none;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input {
	 width: 230px;
	 max-width: 230px;
	 border: 1px solid #ddd;
	 background: #fff;
	 border-radius: 0;
	 color: #232323;
	 text-align: left;
	 border-radius: 0;
	 box-shadow: none;
	 font-size: 14px;
	 font-weight: 400;
	 height: 40px;
	 display: inline-block;
	 vertical-align: middle;
}
 @media (max-width: 350px) {
	 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input {
		 width: 210px;
	}
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-input:focus {
	 border-color: #ddd;
	 background: #fff;
	 box-shadow: none;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit {
	 border-radius: 0;
	 padding: 9px 35px;
	 display: inline-block;
	 vertical-align: middle;
	 color: var(--button-text-color);
	 background: var(--button-bg-color);
	 margin-top: 0px;
	 border: 1px solid var(--button-bg-color);
	 height: 40px;
	 display: inline-block;
	 vertical-align: middle;
}
 @media (max-width: 991px) {
	 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit {
		/* If media is below 992 */
		 padding: 9px 24px;
	}
}
 @media (max-width: 350px) {
	 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit {
		/* If media is below 350 */
		 padding: 9px 15px;
	}
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price #notify-me-wrapper .styled-submit:hover {
	 border-color: var(--button-bg-hover-color);
	 background: var(--button-bg-hover-color);
	 color: var(--button-text-hover-color);
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount {
	 float: right;
	 line-height: 40px;
}
 @media (max-width: 1199px) {
	 .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount {
		/* If media is below 1200 */
		 float: none;
		 text-align: center;
		 line-height: unset;
	}
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ProductPrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ProductPrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #Save, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #Save {
	 color: #232323;
	 font-weight: 400;
	 font-size: 21px;
	 margin: 0;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ComparePrice-product-template, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #ComparePrice-product-template {
	 color: #666;
	 margin-right: 5px;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #Save, .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-discount #Save {
	 color: var(--brand-secondary);
	 margin: 0 5px;
}
 .product-single .product-single-right .product-single__meta #sold-out .notify-price .product-regular #ProductPrice-product-template {
	 font-size: 24px;
}
 .product-single .product-single-right .product-single__meta .available-stock {
	 display: none;
	 position: relative;
	 margin: 10px 0 10px;
	 padding-left: 5px;
}
 .product-single .product-single-right .product-single__meta .instock, .product-single .product-single-right .product-single__meta .outstock {
	 display: inline-block;
	 font-weight: 600;
	 vertical-align: middle;
	 color: #232323;
}
 .product-single .product-single-right .product-single__meta .instock i, .product-single .product-single-right .product-single__meta .outstock i {
	 line-height: 22px;
	 display: inline-block;
	 vertical-align: middle;
}
 .product-single .product-single-right .product-single__meta .instock {
	 display: none !important;
}
 .product-single .product-single-right .product-single__meta .product-available {
	 color: #4cbb6c;
}
 .product-single .product-single-right .product-single__meta .product-unavailable {
	 color: #ff9a52;
}
 .product-single .product-single-right .product-single__meta .product-single__description {
	 color: #333;
	 margin-bottom: 15px;
	 color: #323;
	 font-weight: 300;
	 font-size: 14px;
	 letter-spacing: 0.8px;
	 line-height: 20px;
}
 .product-single .product-single-right .product-single__meta .product-form {
	 margin-bottom: 0px;
}
 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper {
	 display: none;
	 width: 38.35%;
	 float: left;
	 position: relative;
}
 @media (max-width: 1199px) {
	 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper {
		/* If media is below 1200 */
		 width: 40%;
	}
}
 @media (max-width: 991px) {
	 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper {
		 width: 50%;
	}
}
 @media (max-width: 375px) {
	 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper {
		 width: 64%;
	}
}
 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper select {
	 height: 45px;
	 width: 100%;
	 background-image: url(//montancesguitarwiring.com/cdn/shop/t/8/assets/dropdown-sprite.png?v=23516386153762416671759193343);
	 background-repeat: no-repeat;
	 background-position: right 18px center;
	 background-color: #fff;
	 text-indent: 0.01px;
	 text-overflow: '';
	 cursor: pointer;
	 outline: none;
	 color: #888;
	 border: 1px solid #e9e9e9;
}
 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper select .veriant-option {
	 outline: none;
}
 .product-single .product-single-right .product-single__meta .product-form .selector-wrapper label {
	 font-size: 16px;
}
 .product-single .product-single-right .product-single__meta .product-form label {
	 font-weight: 600;
}
 .product-single .product-single-right .product-single__meta .product-form .product-form__controls-group {
	 display: block;
	 width: 100%;
}
 .product-single .product-single-right .product-single__meta .quantity-cart {
	 display: block;
	 width: 100%;
	 display: inline-flex;
	 align-items: flex-end;
	 margin-bottom: 26px;
}
 .product-single .product-single-right .product-single__meta .quantity-cart .product-form__item {
	 margin-bottom: 0px !important;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-info {
	 display: inline-block;
	 width: 50%;
	 padding: 0;
	 margin-top: 5px;
}
 @media (max-width: 1199px) {
	 .product-single .product-single-right .product-single__meta .product-selection .product-info {
		/* If media is below 1200 */
		 width: 55%;
	}
}
 @media (max-width: 543px) {
	 .product-single .product-single-right .product-single__meta .product-selection .product-info {
		/* If media is below 544 */
		 width: 53%;
	}
}
 .product-single .product-single-right .product-single__meta .product-selection .product-info.product-soldout {
	 display: none;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-info.product-sale .product-single__price {
	/* If media is below 1200 */
}
 @media (max-width: 1199px) {
	 .product-single .product-single-right .product-single__meta .product-selection .product-info.product-sale .product-single__price {
		 float: none;
		 line-height: unset;
		 margin-bottom: 20px;
	}
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item {
	 margin-bottom: 26px;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item label {
	 display: block;
	 font-size: 14px;
	 line-height: 14px;
	 margin-bottom: 10px;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item.product-form__item--quantity {
	 display: inline-block;
	 width: auto !important;
	 clear: both;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--quantity {
	/* If media is below 345 */
	/* margin-bottom: 20px;
	*/
}
 .product-single .product-single-right .product-single__meta .product-selection .item_info {
	 display: block;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit, .product-single .product-single-right .product-single__meta .product-selection .available-stock {
	 float: left;
	 width: auto;
	 margin-right: 0px;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit {
	 margin-bottom: 0px;
	 width: 100%;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart {
	 display: inline-block;
	 vertical-align: middle;
	 margin-bottom: 0px;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart {
	 width: 100%;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .addToCart .btn {
	 margin-right: 10px;
}
 .product-single .product-single-right .product-single__meta .product-selection .product-form__item--submit .btn {
	 padding: 9px 16px;
	 height: 50px;
	 font-size: 14px;
	 letter-spacing: 0.5px;
}
 .product-single .product-single-right .product-single__meta .trusted-img {
	 margin-bottom: 15px;
}
 .product-single .product-single-right .product-single__meta .share_this_btn {
	 margin-bottom: 20px;
}
 .product-single .product-single-right .product-single__meta .share_this_btn a {
	 transition: all 0.3s ease-in-out;
	 transform: translateY(0px);
}
 .product-single .product-single-right .product-single__meta .share_this_btn a > span {
	 height: 25px !important;
	 width: 25px !important;
}
 .product-single .product-single-right .product-single__meta .share_this_btn a .at-icon {
	 height: 25px !important;
	 width: 25px !important;
}
 .product-single .product-single-right .product-single__meta .share_this_btn a:hover {
	 transform: translateY(-3px);
}
 .product-single .product-single-right .product-single__meta .share_this_btn a.addthis_button_compact:hover {
	 transform: translateY(0px);
}
 .product-single .product-single-right .product-single__meta .share_this_btn .at-icon-wrapper {
	 background-color: transparent !important;
}
 .product-single .product-single-right .product-single__meta .share_this_btn .at-icon-wrapper svg {
	 fill: #777;
}
 .product-single .product-single-right .product-single__meta .share_this_btn .addthis_toolbox a {
	 margin-right: 3px;
	 margin-bottom: 0;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab {
	 margin-bottom: 20px;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li {
	 margin-bottom: 7px;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li:last-child {
	 margin-bottom: 0px;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item {
	 padding: 20px 30px;
	 border: none;
	 background: #f8f8f8;
	 margin-bottom: 10px;
	 border-radius: 30px;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item img {
	 opacity: 0.9;
	 margin-right: 5px;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .title {
	 text-transform: capitalize;
	 font-size: 15px;
	 color: #232323;
	 font-weight: 500;
	 position: relative;
	 padding-right: 10px;
	 margin-right: 5px;
	 font-family: var(--primary-font);
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .title:after {
	 content: '';
	 height: 1px;
	 width: 7px;
	 background: rgba(0, 0, 0, 0.3);
	 position: absolute;
	 right: -4px;
	 top: 14px;
}
 .product-single .product-single-right .product-single__meta .block-reassurence-tab li .block-reassurance-item .sub-title {
	 color: #888;
	 font-weight: 400;
	 font-size: 14px;
	 font-family: var(--primary-font);
	 font-style: italic;
}
 .styled-input {
	 min-width: 200px;
	 padding: 10px 15px;
}
 .ishi-product-swatch, .ishi-quickview-swatch {
	 display: block;
	 clear: both;
	 width: 100%;
	 padding-left: 5px;
}
 .ishi-product-swatch .ishi-custom-swatch, .ishi-quickview-swatch .ishi-custom-swatch {
	 display: block;
	 clear: both;
	 overflow: hidden;
	 margin-bottom: 15px;
}
 .ishi-product-swatch label, .ishi-quickview-swatch label {
	 font-size: 14px;
	 text-transform: capitalize;
	 margin: 0px;
	 font-weight: 600;
	 margin-bottom: 8px;
}
 .ishi-product-swatch .option-swatch .custom-swatch, .ishi-quickview-swatch .option-swatch .custom-swatch {
	 margin: 0;
	 border: 1px solid #ddd;
	 text-align: center;
	 color: #777;
	 transition: 0.2s ease;
	 cursor: pointer;
	 display: inline-block;
	 vertical-align: middle;
	 margin-right: 6px;
	 margin-bottom: 6px;
	 padding: 8px 16px;
}
 .ishi-product-swatch .option-swatch .custom-swatch.color-swatch, .ishi-quickview-swatch .option-swatch .custom-swatch.color-swatch {
	 width: 35px;
	 height: 35px;
	 box-shadow: 2px 2px 4px #e0e0e0;
	 border: 1px solid #ddd;
}
 .ishi-product-swatch .option-swatch .custom-swatch.color-swatch.active, .ishi-quickview-swatch .option-swatch .custom-swatch.color-swatch.active {
	 transform: scale(0.9);
	 border-color: #232323;
}
 .ishi-product-swatch .option-swatch .custom-swatch.active, .ishi-quickview-swatch .option-swatch .custom-swatch.active {
	 border-color: #232323;
	 color: #232323;
}
/*================ productpage tab ================*/
.product-tab {
   margin: 50px auto;
   text-align: center;
   background: #fff;
   border: 1px solid #e9e9e9;
}
 @media (max-width: 991px) {
   .product-tab {
     margin: 20px auto 40px;
  }
}
 .product-tab > div {
   padding: 15px;
   text-align: left;
   line-height: 26px;
   color: #787878;
   margin-bottom: 20px;
   letter-spacing: 0.1px;
   font-weight: 500;
   font-size: 15px;
   overflow: hidden;
}
 @media (max-width: 543px) {
   .product-tab > div {
    /* If media is below 544 */
     margin-bottom: 18px;
     line-height: 24px;
  }
   .product-tab > div .spr-summary {
     text-align: left;
  }
}
 .product-tab > div p {
   font-size: 15px !important;
}
 .product-tab #desc > h4, .product-tab .custom-desc > h4 {
   color: #232323;
   font-weight: 600;
   letter-spacing: 0.2px;
   margin-bottom: 14px;
   font-size: 15px;
}
 .product-tab #desc > ul, .product-tab .custom-desc > ul, .product-tab #desc > ol, .product-tab .custom-desc > ol {
   margin-bottom: 18px;
   padding-left: 26px;
}
 .product-tab #desc > ul li, .product-tab .custom-desc > ul li, .product-tab #desc > ol li, .product-tab .custom-desc > ol li {
   list-style: unset;
   padding-left: 3px;
}
 .product-tab #desc > ul li:marker, .product-tab .custom-desc > ul li:marker, .product-tab #desc > ol li:marker, .product-tab .custom-desc > ol li:marker {
   line-height: 14px;
}
 @media (max-width: 543px) {
   .product-tab #desc > ul li, .product-tab .custom-desc > ul li, .product-tab #desc > ol li, .product-tab .custom-desc > ol li {
    /* If media is below 544 */
     margin-bottom: 6px;
  }
   .product-tab #desc > ul li:last-child, .product-tab .custom-desc > ul li:last-child, .product-tab #desc > ol li:last-child, .product-tab .custom-desc > ol li:last-child {
     margin-bottom: 0;
  }
}
 .product-tab #desc blockquote, .product-tab .custom-desc blockquote {
   text-align: left;
   line-height: 26px;
   color: #787878;
   margin-bottom: 0;
   letter-spacing: 0.2px;
   font-weight: 400;
   font-size: 14px;
   border-left: 3px solid #e5e5e5;
   margin-left: 15px;
}
 @media (max-width: 543px) {
   .product-tab #desc blockquote, .product-tab .custom-desc blockquote {
    /* If media is below 544 */
     padding: 0;
     margin-left: 8px;
     padding-left: 15px;
  }
}
 .product-tab .tabs {
   border-bottom: none;
   margin-bottom: 10px;
   text-align: center;
   line-height: 40px;
   position: relative;
   display: inline-block;
   margin-top: -1px;
}
 .product-tab .tab-id li {
   display: inline-block;
   vertical-align: top;
   margin: -1px 0 0 0;
   float: none;
   text-transform: uppercase;
   margin-left: 12px;
}
 @media (max-width: 1199px) {
   .product-tab .tab-id li {
    /* If media is below 1200 */
     margin-left: 4px;
  }
}
 @media (max-width: 767px) {
   .product-tab .tab-id li {
    /* If media is below 768 */
     margin: 7px 0 0 5px;
  }
}
 @media (max-width: 543px) {
   .product-tab .tab-id li {
     display: block;
     margin: 0;
     margin-top: 7px;
     margin-bottom: 7px;
  }
}
 .product-tab .tab-id li:first-child {
   margin-left: 0px;
}
 .product-tab .tab-id li:last-child {
   margin-bottom: 0px;
}
 .product-tab .tab-id li.active a {
   border-color: transparent;
   background: transparent;
   color: #fff;
}
 .product-tab .tab-id li.active a:after {
   height: 100%;
   -webkit-transition: all 0.58s;
   -moz-transition: all 0.58s;
   -o-transition: all 0.58s;
   transition: all 0.58s;
   transition-delay: 0.08s;
}
 .product-tab .tab-id li a {
   color: #232323;
   padding-left: 1px;
   padding-right: 1px;
   padding: 8px 12px;
   border: 1px solid transparent;
   background: #f5f5f5;
   letter-spacing: 1px;
   text-decoration: none;
   -webkit-transition: all 0.9s;
   -moz-transition: all 0.9s;
   -o-transition: all 0.9s;
   transition: all 0.9s;
   font-size: 14px;
   font-weight: 500;
   border-radius: 0;
   position: relative;
   z-index: 1;
}
 @media (max-width: 1199px) {
   .product-tab .tab-id li a {
    /* If media is below 1200 */
     padding: 8px 9px;
     letter-spacing: 0.2px;
     font-size: 13px;
  }
}
 .product-tab .tab-id li a:after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 0%;
   z-index: -1;
   background-color: #232323;
   -webkit-transition: all 0.58s;
   -moz-transition: all 0.58s;
   -o-transition: all 0.58s;
   transition: all 0.58s;
   transition-delay: 0.08s;
   transition-timing-function: ease;
   -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
   transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
 @media (max-width: 767px) {
   .product-tab .tab-id li a {
    /* If media is below 768 */
     font-size: 13px;
     padding: 8px 10px;
     letter-spacing: 0.1px;
  }
}
 .product-tab .tab-id li a:hover, .product-tab .tab-id li a:focus {
   border-color: transparent;
   background: transparent;
   color: #fff;
}
 .product-tab .tab-id li a:hover:after, .product-tab .tab-id li a:focus:after {
   height: 100%;
   -webkit-transition: all 0.58s;
   -moz-transition: all 0.58s;
   -o-transition: all 0.58s;
   transition: all 0.58s;
   transition-delay: 0.08s;
}
 .product-tab #shopify-product-reviews {
   margin: 0;
}
 .product-tab #product-review .spr-container .spr-header .spr-header-title, .product-tab #product-review .spr-container .spr-content .spr-header-title {
   display: none;
}
 .product-tab #product-review .spr-container .spr-header .spr-starrating i, .product-tab #product-review .spr-container .spr-content .spr-starrating i, .product-tab #product-review .spr-container .spr-header .spr-starratings i, .product-tab #product-review .spr-container .spr-content .spr-starratings i {
   opacity: 1;
}
 .product-tab #product-review .spr-container .spr-header .spr-starrating i:before, .product-tab #product-review .spr-container .spr-content .spr-starrating i:before, .product-tab #product-review .spr-container .spr-header .spr-starratings i:before, .product-tab #product-review .spr-container .spr-content .spr-starratings i:before {
   font-size: 14px;
   width: 16px;
   content: "\F005";
   font-family: "FontAwesome";
}
 .product-tab #product-review .spr-container .spr-header .spr-starrating .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-content .spr-starrating .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-header .spr-starratings .spr-icon-star-empty:before, .product-tab #product-review .spr-container .spr-content .spr-starratings .spr-icon-star-empty:before {
   color: #ccc;
   content: "\F005";
   font-family: "FontAwesome";
}
 .product-tab #product-review .spr-container .spr-header .spr-summary-actions, .product-tab #product-review .spr-container .spr-content .spr-summary-actions {
  /* If media is below 544 */
}
 @media (max-width: 543px) {
   .product-tab #product-review .spr-container .spr-header .spr-summary-actions, .product-tab #product-review .spr-container .spr-content .spr-summary-actions {
     width: 100%;
     display: inline-block;
     text-align: left;
  }
}
 .product-tab #product-review .spr-container .spr-header .spr-summary-actions a, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a {
   -moz-user-select: none;
   -ms-user-select: none;
   -webkit-user-select: none;
   user-select: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   display: inline-block;
   width: auto;
   text-decoration: none;
   text-align: center;
   vertical-align: middle;
   cursor: pointer;
   padding: 10px 15px;
   background-color: var(--button-bg-color);
   color: var(--button-text-color);
   border: 1px solid var(--button-bg-color);
   border-radius: 30px;
   text-transform: uppercase;
   white-space: normal;
   font-size: 14px;
   line-height: 20px;
   letter-spacing: 0px;
   font-weight: 500;
   outline: none;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 @media (max-width: 543px) {
   .product-tab #product-review .spr-container .spr-header .spr-summary-actions a, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a {
    /* If media is below 544 */
     margin-top: 20px;
     float: none;
     display: inline-block;
  }
}
 .product-tab #product-review .spr-container .spr-header .spr-summary-actions a:hover, .product-tab #product-review .spr-container .spr-content .spr-summary-actions a:hover {
   background-color: var(--button-bg-hover-color);
   color: var(--button-text-hover-color);
   border: 1px solid var(--button-bg-hover-color);
}
 .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a {
   opacity: 1;
   width: 19px;
}
 .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a:before {
   font-size: 14px;
}
 .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-empty {
   color: #ccc !important;
}
 .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-hover {
   color: #fec42d !important;
}
 .product-tab #product-review .spr-container .spr-content .spr-form-review-rating a.spr-icon-star-hover:before {
   color: #fec42d !important;
}
 .product-tab #product-review .spr-container .spr-review-reportreview {
   font-size: 13px;
   line-height: 16px;
   color: #777;
   float: left;
   font-weight: 600;
   -webkit-transition: all 0.4s;
   -moz-transition: all 0.4s;
   -o-transition: all 0.4s;
   transition: all 0.4s;
}
 .product-tab #product-review .spr-container .spr-review-reportreview:hover {
   color: #232323;
}
 .product-tab #product-review .spr-container .spr-review-header-title {
   font-size: 15px;
   font-weight: 500;
   color: #232323;
   margin-bottom: 7px;
}
 .product-tab #product-review .spr-container .spr-review-content {
   margin: 0 0 20px 0;
}
 .product-tab #product-review .spr-container .spr-review-content .spr-review-content-body {
   line-height: 24px;
   word-wrap: break-word;
}
 .product-tab #product-review .spr-container .spr-review-header-byline {
   font-style: normal;
   font-size: 13px;
   opacity: 1;
   color: #787878;
   font-weight: 500;
   margin-bottom: 12px;
}
 .product-tab #product-review .spr-container .spr-review-header-byline strong {
   font-weight: 500;
}
 .product-tab #product-review .spr-container {
   border: none;
   padding: 0;
}
 .product-tab #product-review .spr-review, .product-tab #product-review .spr-form {
   border-color: #e3e3e3;
}
 .product-tab #product-review .spr-form form fieldset input {
   height: 45px;
   border-radius: 30px;
}
 .product-tab #shipping .policy > div {
   line-height: 20px;
   margin-bottom: 15px;
}
 .product-tab #shipping .policy > div:last-child {
   margin-bottom: 0;
}
 .product-tab #shipping .title {
   font-weight: 600;
   color: #232323;
   font-family: var(--primary-font);
   letter-spacing: 1px;
   font-size: 19px;
   display: none;
}
 .product-tab #shipping .inner-content > h4 {
   font-size: 15px;
   font-weight: 600;
   color: #232323;
}
 .product-template__container .related {
	 margin-bottom: 0px;
}
 .product-template__container .related .section-header {
	 text-align: center;
	 margin: 0;
}
 .template-product .return-link-wrapper a {
	 margin: 0;
}
 #shopify-section-Ishi_relatedproductsblock {
	 margin-top: 50px;
	 border-radius: 5px;
}
 @media (max-width: 991px) {
	 #shopify-section-Ishi_relatedproductsblock {
		/* If media is below 992 */
		 margin-bottom: 30px;
	}
}
 #shopify-section-Ishi_relatedproductsblock .owl-nav {
	 margin-top: 15px;
}
 /*================ slide to top ================*/
 #slidetop {
	 background: var(--button-bg-color) none repeat scroll 0 0;
	 box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.2);
	 color: transparent;
	 border-radius: 50%;
	 bottom: 15px;
	 cursor: pointer;
	 height: 40px;
	 overflow: hidden;
	 padding: 6px;
	 position: fixed;
	 right: 15px;
	 text-align: center;
	 width: 40px;
	 z-index: 99;
	 opacity: 1;
	 display: none;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #slidetop::after {
	 content: '\E5CE';
	 display: inline-block;
	 color: var(--button-text-color);
	 font-family: material icons;
	 font-size: 26px;
	 left: 0;
	 position: absolute;
	 right: 0;
	 top: 10px;
	 -webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	 -o-transition: all 0.5s;
	 transition: all 0.5s;
}
 #slidetop:hover {
	 background-color: var(--button-bg-hover-color);
}
 #slidetop:hover:after {
	 color: var(--button-text-hover-color);
}
 /*=========do not change=======================*/
 .manufacture-main {
	 clear: left;
}
 #shopify-section-list-collections-template .grid__item {
	/* If media is below 768 */
}
 @media (max-width: 767px) {
	 #shopify-section-list-collections-template .grid__item {
		 width: 50%;
	}
	 #shopify-section-list-collections-template .grid__item:nth-child(3n+1) {
		 clear: right;
	}
}
 @media (max-width: 543px) {
	 #shopify-section-list-collections-template .grid__item {
		 width: 100%;
	}
}
 #drawer-toggle {
   position: absolute;
   opacity: 0;
}
 #drawer-toggle-label {
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   left: 0px;
   height: 40px;
   width: 40px;
   display: block;
   background: rgba(255, 255, 255, .0);
   z-index: 1;
   text-align: center;
   padding: 8px 0px;
}
/* adds our "hamburger" menu icon */
 #drawer-toggle-label i {
   color: #333;
}
/* checked styles (menu open state) */
 #drawer-toggle:checked ~ #drawer-toggle-label {
   height: 100%;
}
 #drawer-toggle:checked ~ .navdrawer {
   right: 0px;
}
 @media (max-width: 991px) {
   #drawer-toggle:checked ~ .navdrawer {
     right: auto;
     left: 0;
  }
}
 #drawer-toggle:checked ~ #page-content {
   margin-left: 300px;
}
/* Menu item styles */
 .navdrawer #drawer-toggle-label {
   position: relative !important;
   height: 30px;
   display: block;
   width: 100%;
   text-align: right;
}
 @media (max-width: 991px) {
   .navdrawer #drawer-toggle-label {
     text-align: left;
  }
}
 .navdrawer #drawer-toggle-label i {
   color: #fff;
   top: 0;
   left: 5px;
   font-size: 24px;
}
 @media (max-width: 991px) {
   .navdrawer #drawer-toggle-label i {
     color: #232323;
  }
}
 .template-article #shopify-section-Ishi_sidebar .tag-filter {
   display: none;
}
 .responsive-sidebar {
   padding: 0 15px;
   overflow: hidden;
}
 .disabled {
   opacity: 1 !important;
}
 .template-login {
   width: 100%;
}
 .template-login .grid__item {
   float: none;
}
 .template-cart .empty-page-content {
   padding: 130px 0;
}
 .template-cart .cart__continue-btn {
   margin: 20px 0;
}
 .template-search .sca-qv-button-wrap .sca-qv-button {
   display: none !important;
}
 
/*============== quickviewModal ==================*/

#quickviewModal .modal-dialog {
   max-width: 1100px;
   top: 10%;
   width: 100%;
}
 @media (max-width: 767px) {
   #quickviewModal .modal-dialog {
    /* If media is below 544 */
     width: unset;
  }
}
 #quickviewModal .modal-header {
   padding-bottom: 0;
}
 #quickviewModal .modal-header button {
   color: #333;
   font-size: 28px;
   opacity: 1;
}
 #quickviewModal .modal-body {
   display: block;
   overflow: hidden;
   width: 100%;
   color: #232323;
   font-size: 14px;
}
 #quickviewModal .modal-body #qv-images-container #qv-product-cover {
   text-align: center;
   border: 1px solid #e9e9e9;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails {
   padding-top: 10px;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails .thumb-item {
   display: inline-block;
   padding: 10px;
   vertical-align: middle;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails .thumb-item img {
   border: 1px solid #e9e9e9;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails i {
   margin-top: 0 !important;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav {
   margin-top: 0;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-prev, #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next {
   top: 43%;
   left: -6px;
   position: absolute;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-nav .owl-next {
   right: -6px;
   left: auto;
}
 #quickviewModal .modal-body #qv-images-container #qv-thumbnails .owl-dots {
   display: none;
}
 #quickviewModal .modal-body #qv-text-container > div {
   letter-spacing: 0.5px;
   margin-bottom: 10px;
   font-weight: 300;
   font-size: 14px;
   letter-spacing: 0.8px;
   line-height: 20px;
}
 #quickviewModal .modal-body #qv-text-container #qv-productdescription {
   text-align: left;
   line-height: 26px;
   color: #787878;
   margin-bottom: 10px;
   letter-spacing: 0.5px;
   font-weight: 500;
   font-size: 15px;
   overflow: hidden;
}
 @media (max-width: 767px) {
   #quickviewModal .modal-body #qv-text-container #qv-productdescription {
    /* If media is below 768 */
     line-height: 24px;
  }
   #quickviewModal .modal-body #qv-text-container #qv-productdescription .spr-summary {
     text-align: left;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-productdescription p {
   font-size: 14px !important;
}
 #quickviewModal .modal-body #qv-text-container #qv-productname {
   text-transform: capitalize;
   letter-spacing: 1px;
   font-size: 26px;
   font-weight: 700;
   margin: 0 0 15px;
   color: #232323;
}
 @media (max-width: 767px) {
   #quickviewModal .modal-body #qv-text-container #qv-productname {
    /* If media is below 768 */
     font-size: 20px;
     line-height: 24px;
     padding-top: 12px;
     margin: 0 0 5px;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice {
   line-height: 33px;
   display: inline-block;
   margin-bottom: 6px;
}
 @media (max-width: 767px) {
   #quickviewModal .modal-body #qv-text-container #qv-productprice {
    /* If media is below 768 */
     margin-bottom: 3px;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .regular {
   color: #666;
   font-weight: 400;
   font-size: 20px;
}
 @media (max-width: 767px) {
   #quickviewModal .modal-body #qv-text-container #qv-productprice .regular {
    /* If media is below 768 */
     font-size: 17px;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .qv-discountprice {
   font-size: 17px;
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .qv-regularprice.single-price {
   line-height: 26px;
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .product-price__price, #quickviewModal .modal-body #qv-text-container #qv-productprice .product-price__sale {
  /*margin-left: -7px;
  */
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .is-bold {
   color: #232323;
   font-weight: 700;
   font-size: 20px;
}
 @media (max-width: 767px) {
   #quickviewModal .modal-body #qv-text-container #qv-productprice .is-bold {
    /* If media is below 768 */
     font-size: 17px;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .discount-percentage {
   font-weight: 600;
   background: #f1f1f1;
   color: #232323;
   padding: 7px 11px;
   line-height: 15px;
   margin: 0 8px;
   font-size: 14px;
   margin-bottom: 0px;
   text-transform: unset;
   display: none;
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .discount-percentage span {
   display: inline-block;
   vertical-align: middle;
   color: #232323;
}
 #quickviewModal .modal-body #qv-text-container #qv-productprice .product-price__sold-out {
   display: none;
}
 #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating {
   display: inline-block;
   vertical-align: top;
}
 #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating i {
   margin: 0 1px;
   opacity: 1;
}
 #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating i:before {
   font-size: 14px;
   width: 16px;
   content: "\F005";
   font-family: "FontAwesome";
   color: #ccc !important;
}
 #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating .spr-icon-star:before, #quickviewModal .modal-body #qv-text-container #qv-spr-badge .spr-starrating .spr-icon-star-half-alt:before {
   color: #fec42d !important;
}
 #quickviewModal .modal-body #qv-text-container #qv-discount {
   display: inline-block;
   background-color: #232323;
   color: #fff;
   padding: 2px 10px;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity {
   padding-top: 10px;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart {
   display: block;
   width: 100%;
   overflow: hidden;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector {
   overflow: hidden;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper {
   display: none;
   width: 50%;
   float: left;
   padding-right: 20px;
   margin-bottom: 30px;
   position: relative;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper select {
   width: 100%;
   background-image: url(//montancesguitarwiring.com/cdn/shop/t/8/assets/dropdown-sprite.png?v=23516386153762416671759193343);
   background-repeat: no-repeat;
   background-position: right 18px center;
   background-color: #fff;
   text-indent: 0.01px;
   text-overflow: '';
   cursor: pointer;
   color: #888;
   border: 1px solid #e9e9e9;
   outline: none;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper select .veriant-option {
   outline: none;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-selector .selector-wrapper label {
   font-size: 16px;
   font-weight: 500;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit {
   overflow: hidden;
   display: inline-block;
   width: 56%;
   vertical-align: middle;
}
 @media (max-width: 543px) {
   #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit {
    /* If media is below 544 */
     width: auto;
     padding: 0 1px;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart {
   cursor: not-allowed;
   pointer-events: none;
   opacity: 1;
   padding: 9px 18px 9px;
}
 @media (max-width: 543px) {
   #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart {
    /* If media is below 544 */
     padding: 9px 16px 9px;
  }
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart.enable, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart.enable {
   opacity: 1;
   cursor: pointer;
   font-weight: 600;
   pointer-events: unset;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .qv-addToCart.sold-out, #quickviewModal .modal-body #qv-text-container #qv-quantity .add-to-cart .product-form__item--submit .addToCart.sold-out {
   opacity: 1;
   cursor: unset;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .product-form__item .addToCart {
   line-height: 30px;
   width: 100%;
   display: inline-block;
}
 #quickviewModal .modal-body #qv-text-container #qv-quantity .ishi-quickview-swatch {
   margin-bottom: 25px;
}
 #quickviewModal .modal-header {
   border: none;
}
 #quickviewModal .modal-footer {
   padding: 0;
}
 .product-form__item--quantity, .cart-qty-btns {
   float: left;
   display: inline-block;
   width: auto;
   vertical-align: middle;
   margin-bottom: 20px;
}
 .product-form__item--quantity > div, .cart-qty-btns > div {
   color: #888;
   background: #fff;
   display: inline-block;
   width: 45px;
   height: 50px;
   float: left;
   text-align: center;
   line-height: 48px;
   font-size: 23px;
   border: 1px solid #e9e9e9;
   cursor: pointer;
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 @media screen and (min-width: 768px) and (max-width: 1499px) {
   .product-form__item--quantity > div, .cart-qty-btns > div {
    /* If media is between 992 and 1199 */
     width: 34px;
  }
}
 @media (max-width: 543px) {
   .product-form__item--quantity > div, .cart-qty-btns > div {
    /* If media is below 544 */
     width: 33px;
  }
}
 .product-form__item--quantity > div:hover, .cart-qty-btns > div:hover, .product-form__item--quantity > div:focus, .cart-qty-btns > div:focus {
   color: #232323;
}
.product-form__item--quantity .qtyminus, .cart-qty-btns .qtyminus {
   border-radius: 30px 0 0 30px;
}
 .product-form__item--quantity .qtyplus, .cart-qty-btns .qtyplus {
   border-radius: 0 30px 30px 0;
}
 .product-form__item--quantity .quantity, .cart-qty-btns .quantity {
   border-radius: 0;
   display: inline-block;
   vertical-align: middle;
   float: left;
   color: #888;
   background: #fff;
   border: none;
   width: 65px;
   text-align: center;
   height: 50px;
   border-top: 1px solid #e9e9e9;
   border-bottom: 1px solid #e9e9e9;
}
 @media screen and (min-width: 768px) and (max-width: 1499px) {
   .product-form__item--quantity .quantity, .cart-qty-btns .quantity {
    /* If media is between 992 and 1199 */
     width: 52px;
  }
}
 @media (max-width: 543px) {
   .product-form__item--quantity .quantity, .cart-qty-btns .quantity {
    /* If media is below 544 */
     width: 50px;
  }
}
 
/*----------------Image hover effect------------------*/.ishi-customhover-fadeinnormal.scale img, .ishi-customhover-fadeinflip.scale img, .ishi-customhover-fadeinrotate.scale img, .ishi-customhover-fadeinrotate3D.scale img, .ishi-customhover-fadeintop.scale img, .ishi-customhover-fadeinbottom.scale img, .ishi-customhover-fadeoutcenter.scale img, .ishi-customhover-fadeinoutcorner.scale img, .ishi-customhover-fadeinoutbordercorner.scale img, .ishi-customhover-doublefadeincenter.scale img, .ishi-customhover-fadeinoutdouble.scale img, .ishi-customhover-fadeinoutsingle.scale img, .ishi-customhover-fadeinoutdoublevertical.scale img, .ishi-customhover-perspective.scale img, .ishi-customhover-fadeinoutrotatevertical.scale img {
   transform: scale(1);
   -moz-transform: scale(1);
   -webkit-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
   -webkit-transition: all 0.6s ease 0s;
   -moz-transition: all 0.6s ease 0s;
   -ms-transition: all 0.6s ease 0s;
   -o-transition: all 0.6s ease 0s;
   transition: all 0.6s ease 0s;
}
 .ishi-customhover-fadeinnormal:hover.scale img, .ishi-customhover-fadeinflip:hover.scale img, .ishi-customhover-fadeinrotate:hover.scale img, .ishi-customhover-fadeinrotate3D:hover.scale img, .ishi-customhover-fadeintop:hover.scale img, .ishi-customhover-fadeinbottom:hover.scale img, .ishi-customhover-fadeoutcenter:hover.scale img, .ishi-customhover-fadeinoutcorner:hover.scale img, .ishi-customhover-fadeinoutbordercorner:hover.scale img, .ishi-customhover-doublefadeincenter:hover.scale img, .ishi-customhover-fadeinoutdouble:hover.scale img, .ishi-customhover-fadeinoutsingle:hover.scale img, .ishi-customhover-fadeinoutdoublevertical:hover.scale img, .ishi-customhover-perspective:hover.scale img, .ishi-customhover-fadeinoutrotatevertical:hover.scale img {
   transform: scale(1.1);
   -moz-transform: scale(1.1);
   -webkit-transform: scale(1.1);
   -o-transform: scale(1.1);
   -ms-transform: scale(1.1);
}
 .ishi-customhover-fadeinoutsingle:before {
   content: "";
   left: 0;
   opacity: 1;
   position: absolute;
   right: 0;
   top: 0;
   background: rgba(255, 255, 255, .6) none repeat scroll 0 0;
   height: 0;
   -webkit-transition: all 900ms ease-in-out 0s;
   -o-transition: all 900ms ease-in-out 0s;
   transition: all 900ms ease-in-out 0s;
   width: 100%;
}
 .ishi-customhover-fadeinoutsingle:hover:before {
   opacity: 0;
   height: 100%;
}
 .ishi-customhover-fadeinoutdouble:before {
   content: "";
   left: 0;
   opacity: 1;
   position: absolute;
   right: 0;
   top: 0;
   background: rgba(0, 0, 0, .6) none repeat scroll 0 0;
   height: 0;
   -webkit-transition: all 900ms ease-in-out 0s;
   -o-transition: all 900ms ease-in-out 0s;
   transition: all 900ms ease-in-out 0s;
   width: 100%;
}
 .ishi-customhover-fadeinoutdouble:after {
   content: "";
   left: 0;
   opacity: 1;
   position: absolute;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, .6) none repeat scroll 0 0;
   height: 0;
   -webkit-transition: all 900ms ease-in-out 0s;
   -o-transition: all 900ms ease-in-out 0s;
   transition: all 900ms ease-in-out 0s;
   width: 100%;
}
 .ishi-customhover-fadeinoutdouble:hover:before {
   opacity: 0;
   height: 85%;
}
 .ishi-customhover-fadeinoutdouble:hover:after {
   opacity: 0;
   height: 85%;
}
 .ishi-customhover-fadeinoutdoublevertical:before {
   content: "";
   left: 0;
   opacity: 1;
   position: absolute;
   top: 0;
   bottom: 0;
   background: rgba(255, 255, 255, .6) none repeat scroll 0 0;
   width: 0;
   -webkit-transition: all 900ms ease-in-out 0s;
   -o-transition: all 900ms ease-in-out 0s;
   transition: all 900ms ease-in-out 0s;
   height: 100%;
}
 .ishi-customhover-fadeinoutdoublevertical:after {
   content: "";
   opacity: 1;
   position: absolute;
   right: 0;
   top: 0;
   bottom: 0;
   background: rgba(255, 255, 255, .6) none repeat scroll 0 0;
   width: 0;
   -webkit-transition: all 900ms ease-in-out 0s;
   -o-transition: all 900ms ease-in-out 0s;
   transition: all 900ms ease-in-out 0s;
   height: 100%;
}
 .ishi-customhover-fadeinoutdoublevertical:hover:before {
   opacity: 0;
   width: 85%;
}
 .ishi-customhover-fadeinoutdoublevertical:hover:after {
   opacity: 0;
   width: 85%;
}
 .ishi-customhover-perspective:before {
   content: "";
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.1);
   position: absolute;
   top: 0;
   left: 0;
   border: 15px solid rgba(255, 255, 255, 0);
   opacity: 0;
}
 .ishi-customhover-perspective:hover:before {
   animation-name: perspectiveH;
   animation-duration: 1200ms;
   animation-iteration-count: 1;
   animation-timing-function: linear;
   opacity: 1;
}
 @keyframes perspectiveH {
   0% {
     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
     transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
     -webkit-animation-timing-function: ease-in;
     animation-timing-function: ease-in;
     opacity: 0;
  }
   40% {
     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
     transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
     -webkit-animation-timing-function: ease-in;
     animation-timing-function: ease-in;
  }
   60% {
     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
     transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
     opacity: 1;
  }
   80% {
     -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
     transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
   100% {
     -webkit-transform: perspective(400px);
     transform: perspective(400px);
  }
}
 .ishi-customhover-fadeinoutrotatevertical:before, .ishi-customhover-fadeinoutrotatevertical:after {
   content: "";
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   color: #fff;
   text-align: center;
   padding: 20% 20px;
   background: rgba(0, 0, 0, 0.05);
   transform: rotate(-90deg);
   transform-origin: left top 0;
   -webkit-transition: all 0.6s ease 0s;
   -moz-transition: all 0.6s ease 0s;
   -o-transition: all 0.6s ease 0s;
}
 .ishi-customhover-fadeinoutrotatevertical:after {
   right: 0;
   bottom: 0;
   top: auto;
   left: auto;
   transform-origin: right bottom 0;
}
 .ishi-customhover-fadeinoutrotatevertical:hover:before, .ishi-customhover-fadeinoutrotatevertical:hover:after {
   transform: rotate(0deg);
}
 .ishi-customhover-fadeinnormal:after {
   content: "";
   position: absolute;
   top: 10px;
   left: 10px;
   right: 10px;
   bottom: 10px;
   background: rgba(0, 0, 0, 0.07);
   opacity: 0;
   -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   transition: all 0.5s ease;
}
 .ishi-customhover-fadeinnormal:hover:after {
   opacity: 1;
   transform: scale(1);
   -moz-transform: scale(1);
   -webkit-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
}
 .ishi-customhover-fadeinflip:after {
   content: "";
   background-color: rgba(0, 0, 0, 0.08);
   position: absolute;
   padding: 30px;
   position: absolute;
   top: 10px;
   bottom: 10px;
   left: 10px;
   right: 10px;
   opacity: 0;
   -webkit-transform: rotate3d(1, 1, 0, 100deg);
   -moz-transform: rotate3d(1, 1, 0, 100deg);
   -ms-transform: rotate3d(1, 1, 0, 100deg);
   -o-transform: rotate3d(1, 1, 0, 100deg);
   transform: rotate3d(1, 1, 0, 100deg);
   -webkit-transition: all 0.35s ease;
   -moz-transition: all 0.35s ease;
   transition: all 0.35s ease;
}
 .ishi-customhover-fadeinflip:hover:after {
   opacity: 1;
   -webkit-transition-delay: 0.14s;
   -moz-transition-delay: 0.14s;
   transition-delay: 0.14s;
   -webkit-transform: rotate3d(0, 0, 0, 0deg);
   -moz-transform: rotate3d(0, 0, 0, 0deg);
   -ms-transform: rotate3d(0, 0, 0, 0deg);
   -o-transform: rotate3d(0, 0, 0, 0deg);
   transform: rotate3d(0, 0, 0, 0deg);
}
 .ishi-customhover-fadeinrotate:after {
   content: '';
   background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
   position: absolute;
   display: block;
   top: 10px;
   right: 10px;
   bottom: 10px;
   opacity: 0;
   left: 10px;
   -webkit-transition: all 0.3s ease 0s;
   -moz-transition: all 0.3s ease 0s;
   -ms-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   -webkit-transform: rotate(-180deg) scale(0);
   -moz-transform: rotate(-180deg) scale(0);
   -ms-transform: rotate(-180deg) scale(0);
   -o-transform: rotate(-180deg) scale(0);
   transform: rotate(-180deg) scale(0);
}
 .ishi-customhover-fadeinrotate:hover:after {
   -webkit-transform: rotate(0deg) scale(1);
   -moz-transform: rotate(0deg) scale(1);
   -ms-transform: rotate(0deg) scale(1);
   -o-transform: rotate(0deg) scale(1);
   transform: rotate(0deg) scale(1);
   opacity: 1;
}
 .ishi-customhover-fadeinrotate3D:after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   right: 50%;
   bottom: 50%;
   -webkit-transition: all 0.9s;
   -moz-transition: all 0.9s;
   -o-transition: all 0.9s;
   transition: all 0.9s;
}
 .ishi-customhover-fadeinrotate3D:hover:after {
   background: rgba(0, 0, 0, 0.08);
   transform: rotateY(180deg);
   -moz-transform: rotateY(180deg);
   -webkit-transform: rotateY(180deg);
   -o-transform: rotateY(180deg);
   -ms-transform: rotateY(180deg);
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   -webkit-transition: all 0.9s;
   -moz-transition: all 0.9s;
   -o-transition: all 0.9s;
   transition: all 0.9s;
}
 .ishi-customhover-fadeintop:after {
   content: "";
   background: rgba(0, 0, 0, 0.06);
   transition: all 0.5s ease;
   -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   -ms-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   width: 100%;
   height: 0%;
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
}
 .ishi-customhover-fadeintop:hover:after {
   height: 100%;
}
 .ishi-customhover-fadeinbottom:after {
   content: "";
   background: rgba(0, 0, 0, 0.06);
   transition: all 0.5s ease;
   -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   -ms-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   width: 100%;
   height: 0%;
   position: absolute;
   left: 0;
   right: 0;
   bottom: 0;
}
 .ishi-customhover-fadeinbottom:hover:after {
   height: 100%;
}
 .ishi-customhover-fadeintopbottom:before, .ishi-customhover-fadeintopbottom:after {
   content: "";
   background: none repeat scroll 0 0 rgba(0, 0, 0, 0.06);
   bottom: -100%;
   width: 100%;
   height: 100%;
   display: block;
   left: 0;
   opacity: 0;
   position: absolute;
   -webkit-transition: all 0.8s ease 0s;
   -moz-transition: all 0.8s ease 0s;
   -ms-transition: all 0.8s ease 0s;
   -o-transition: all 0.8s ease 0s;
   transition: all 0.8s ease 0s;
}
 .ishi-customhover-fadeintopbottom:after {
   top: -100%;
   bottom: auto;
}
 .ishi-customhover-fadeintopbottom:hover:before {
   bottom: 50%;
   opacity: 1;
}
 .ishi-customhover-fadeintopbottom:hover:after {
   top: 50%;
   opacity: 1;
}
 .ishi-customhover-doublefadeincenter:before, .ishi-customhover-doublefadeincenter:after {
   content: "";
   bottom: 10px;
   left: 10px;
   opacity: 0;
   position: absolute;
   right: 10px;
   top: 10px;
   background: rgba(0, 0, 0, 0.06) none repeat scroll 0 0;
   transition: opacity 0.35s ease 0s, transform 0.5s ease 0s;
   -webkit-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s;
   -moz-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s;
   -o-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s;
   -ms-transition: opacity 0.35s ease 0s, transform 0.5s ease 0s;
}
 .ishi-customhover-doublefadeincenter:before {
   transform: scale(0, 1);
   -webkit-transform: scale(0, 1);
   -moz-transform: scale(0, 1);
   -o-transform: scale(0, 1);
   -ms-transform: scale(0, 1);
}
 .ishi-customhover-doublefadeincenter:after {
   transform: scale(1, 0);
   -webkit-transform: scale(1, 0);
   -moz-transform: scale(1, 0);
   -o-transform: scale(1, 0);
   -ms-transform: scale(1, 0);
}
 .ishi-customhover-doublefadeincenter:hover:before, .ishi-customhover-doublefadeincenter:hover:after {
   opacity: 1;
   transform: scale(1);
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
}
 .ishi-customhover-fadeoutcenter:after {
   background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
   bottom: 20px;
   content: "";
   left: 20px;
   position: absolute;
   right: 20px;
   top: 20px;
   transform: scale(0);
   -webkit-transform: scale(0);
   -ms-transform: scale(0);
   -o-transform: scale(0);
   opacity: 1;
}
 .ishi-customhover-fadeoutcenter:hover:after {
   transform: scale(1);
   -webkit-transform: scale(1);
   -ms-transform: scale(1);
   -o-transform: scale(1);
   transition-duration: 1s;
   -moz-transition-duration: 1s;
   -webkit-transition-duration: 1s;
   -khtml-transition-duration: 1s;
   -o-transition-duration: 1s;
   opacity: 0;
}
 .ishi-customhover-fadeoutcorner:before, .ishi-customhover-fadeoutcorner:after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 0;
   height: 0;
   background: rgba(0, 0, 0, 0.1);
   margin: auto;
   opacity: 1;
}
 .ishi-customhover-fadeoutcorner:after {
   bottom: 0;
   right: 0;
   left: auto;
   top: auto;
}
 .ishi-customhover-fadeoutcorner:hover:before, .ishi-customhover-fadeoutcorner:hover:after {
   height: 100%;
   -webkit-transition: 1.3s;
   transition: 1.3s;
   opacity: 0;
   width: 100%;
}
 .ishi-customhover-fadeinoutcorner:after {
   background-color: var(--brand-secondary);
   width: 0;
   height: 0;
   content: "";
   opacity: 0.1;
   position: absolute;
   -webkit-transition: all 0.4s ease-in-out 0s;
   right: 0;
}
 .ishi-customhover-fadeinoutcorner:hover:after {
   width: 100%;
   height: 100%;
   right: auto;
   left: 0;
}
 .ishi-customhover-fadeinoutbordercorner:before, .ishi-customhover-fadeinoutbordercorner:after {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   opacity: 0;
   -webkit-transition: opacity 0.9s, -webkit-transform 0.9s;
   transition: opacity 0.9s, transform 0.9s;
   z-index: 9;
}
 .ishi-customhover-fadeinoutbordercorner:before {
   content: '';
   z-index: 9;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   transform: scale(0);
   -moz-transform: scale(0);
   -webkit-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   background: rgba(0, 0, 0, 0.1);
   -webkit-transition: all 0.5s;
   -moz-transition: all 0.5s;
   -o-transition: all 0.5s;
   transition: all 0.5s;
}
 .ishi-customhover-fadeinoutbordercorner:before {
   border-top: 10px solid #fff;
   border-bottom: 10px solid #fff;
   -webkit-transform: scale(0, 1);
   transform: scale(0, 1);
   background: rgba(0, 0, 0, 0.1);
}
 .ishi-customhover-fadeinoutbordercorner:after {
   border-right: 10px solid #fff;
   border-left: 10px solid #fff;
   -webkit-transform: scale(1, 0);
   transform: scale(1, 0);
   background: transparent !important;
}
 .ishi-customhover-fadeinoutbordercorner:hover:before, .ishi-customhover-fadeinoutbordercorner:hover:after {
   opacity: 1;
   transform: scale(1);
   -moz-transform: scale(1);
   -webkit-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
}
 .ishi-customhover-fadeinoutbordercorner:hover:before {
   opacity: 1;
   transform: scale(1);
   -moz-transform: scale(1);
   -webkit-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
}
 

*{
  outline: none !important;
}


/*---------Custom-loader-----------*/

/*================ site loader ================*/

#siteloader {
   background: #fff;
   height: 100%;
   left: 0;
   right: 0;
   position: fixed;
   top: 0;
   bottom: 0;
   width: 100%;
   z-index: 9999;
   margin: auto;
   -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   transition: all 0.5s ease;
}
 #siteloader > div {
   top: 45%;
   margin: auto;
   position: relative;
   clear: both;
}
 #spin-wrapper {
   width: 100%;
   height: 100%;
   position: fixed;
   z-index: 9998;
   background: #fff;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
}
 .ishi-rotate-slices {
   width: 32px;
   height: 32px;
   clear: both;
   border-radius: 50%;
   border-top: 24px rgba(0, 0, 0, 0.75) solid;
   border-left: 24px rgba(0, 0, 0, 0.25) solid;
   border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
   border-right: 24px rgba(0, 0, 0, 0.25) solid;
   -webkit-animation: spSlices 1s infinite linear;
   animation: spSlices 2.5s infinite linear;
}
 @-webkit-keyframes spSlices {
   0% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   25% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.75) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   50% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.75) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   75% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.75) solid;
  }
   100% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
}
 @-moz-keyframes spSlices {
   0% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   25% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.75) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   50% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.75) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   75% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.75) solid;
  }
   100% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
}
 @-o-keyframes spSlices {
   0% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   25% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.75) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   50% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.75) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   75% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.75) solid;
  }
   100% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
}
 @keyframes spSlices {
   0% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   25% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.75) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   50% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.75) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
   75% {
     border-top: 24px rgba(0, 0, 0, 0.25) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.75) solid;
  }
   100% {
     border-top: 24px rgba(0, 0, 0, 0.75) solid;
     border-right: 24px rgba(0, 0, 0, 0.25) solid;
     border-bottom: 24px rgba(0, 0, 0, 0.25) solid;
     border-left: 24px rgba(0, 0, 0, 0.25) solid;
  }
}
 .ishi-round-rotate-scale {
   border-radius: 100%;
   border: 2px solid var(--brand-secondary);
   border-bottom-color: transparent;
   height: 40px;
   width: 40px;
   background: transparent;
   -webkit-animation: rotate-scale 0.75s 0s linear infinite;
   animation: rotate-scale 0.75s 0s linear infinite;
}
 @-webkit-keyframes rotate-scale {
   0% {
     -webkit-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
  }
   50% {
     -webkit-transform: rotate(180deg) scale(0.6);
     transform: rotate(180deg) scale(0.6);
  }
   100% {
     -webkit-transform: rotate(360deg) scale(1);
     transform: rotate(360deg) scale(1);
  }
}
 @-moz-keyframes rotate-scale {
   0% {
     -moz-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
  }
   50% {
     -moz-transform: rotate(180deg) scale(0.6);
     transform: rotate(180deg) scale(0.6);
  }
   100% {
     -moz-transform: rotate(360deg) scale(1);
     transform: rotate(360deg) scale(1);
  }
}
 @-o-keyframes rotate-scale {
   0% {
     -o-transform: rotate(0) scale(1);
     transform: rotate(0) scale(1);
  }
   50% {
     -o-transform: rotate(180deg) scale(0.6);
     transform: rotate(180deg) scale(0.6);
  }
   100% {
     -o-transform: rotate(360deg) scale(1);
     transform: rotate(360deg) scale(1);
  }
}
 @keyframes rotate-scale {
   0% {
     transform: rotate(0) scale(1);
  }
   50% {
     transform: rotate(180deg) scale(0.6);
  }
   100% {
     transform: rotate(360deg) scale(1);
  }
}
 .ishi-square-rotate {
   position: relative;
   width: 155px;
   height: 120px;
}
 .ishi-square-rotate:before, .ishi-square-rotate:after {
   position: absolute;
   content: "";
   height: 60px;
   width: 60px;
   top: 30px;
   left: 50px;
   border-radius: 7px;
   background-color: var(--brand-secondary);
   -webkit-animation: loader-rotate2 1.8s ease-in-out infinite;
   animation: loader-rotate2 1.8s ease-in-out infinite;
   -webkit-animation-direction: alternate;
   animation-direction: alternate;
   -webkit-transform-origin: center center;
   transform-origin: center center;
}
 .ishi-square-rotate:after {
   height: 30px;
   width: 30px;
   left: 65px;
   top: 45px;
   border-radius: 3px;
   background-color: #fff;
   -webkit-animation: loader-rotate1 1.8s ease-in-out infinite;
   animation: loader-rotate1 1.8s ease-in-out infinite;
   -webkit-animation-direction: alternate;
   animation-direction: alternate;
   -webkit-transform-origin: center center;
   transform-origin: center center;
}
 @-webkit-keyframes loader-rotate1 {
   0% {
     -webkit-transform: rotate(0deg) scale(1);
     transform: rotate(0deg) scale(1);
  }
   65% {
     -webkit-transform: rotate(-90deg) scale(0.5);
     transform: rotate(-90deg) scale(0.5);
  }
   100% {
     -webkit-transform: rotate(270deg) scale(1.2);
     transform: rotate(270deg) scale(1.2);
  }
}
 @-moz-keyframes loader-rotate1 {
   0% {
     -moz-transform: rotate(0deg) scale(1);
     transform: rotate(0deg) scale(1);
  }
   65% {
     -moz-transform: rotate(-90deg) scale(0.5);
     transform: rotate(-90deg) scale(0.5);
  }
   100% {
     -moz-transform: rotate(270deg) scale(1.2);
     transform: rotate(270deg) scale(1.2);
  }
}
 @-o-keyframes loader-rotate1 {
   0% {
     -o-transform: rotate(0deg) scale(1);
     transform: rotate(0deg) scale(1);
  }
   65% {
     -o-transform: rotate(-90deg) scale(0.5);
     transform: rotate(-90deg) scale(0.5);
  }
   100% {
     -o-transform: rotate(270deg) scale(1.2);
     transform: rotate(270deg) scale(1.2);
  }
}
 @keyframes loader-rotate1 {
   0% {
     transform: rotate(0deg) scale(1);
  }
   65% {
     transform: rotate(-90deg) scale(0.5);
  }
   100% {
     transform: rotate(270deg) scale(1.2);
  }
}
 @-webkit-keyframes loader-rotate2 {
   0% {
     -webkit-transform: rotate(0deg) scale(1);
     transform: rotate(0deg) scale(1);
  }
   45% {
     -webkit-transform: rotate(90deg) scale(0.8);
     transform: rotate(90deg) scale(0.8);
     border-radius: 50%;
  }
   100% {
     -webkit-transform: rotate(-270deg) scale(1.1);
     transform: rotate(-270deg) scale(1.1);
  }
}
 @-moz-keyframes loader-rotate2 {
   0% {
     -moz-transform: rotate(0deg) scale(1);
     transform: rotate(0deg) scale(1);
  }
   45% {
     -moz-transform: rotate(90deg) scale(0.8);
     transform: rotate(90deg) scale(0.8);
     border-radius: 50%;
  }
   100% {
     -moz-transform: rotate(-270deg) scale(1.1);
     transform: rotate(-270deg) scale(1.1);
  }
}
 @-o-keyframes loader-rotate2 {
   0% {
     -o-transform: rotate(0deg) scale(1);
     transform: rotate(0deg) scale(1);
  }
   45% {
     -o-transform: rotate(90deg) scale(0.8);
     transform: rotate(90deg) scale(0.8);
     border-radius: 50%;
  }
   100% {
     -o-transform: rotate(-270deg) scale(1.1);
     transform: rotate(-270deg) scale(1.1);
  }
}
 @keyframes loader-rotate2 {
   0% {
     transform: rotate(0deg) scale(1);
  }
   45% {
     transform: rotate(90deg) scale(0.8);
     border-radius: 50%;
  }
   100% {
     transform: rotate(-270deg) scale(1.1);
  }
}
 .ishi-round-flip {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: var(--brand-secondary);
   animation: lds-circle 2.4s cubic-bezier(0, 1, 0.9, 1) infinite;
}
 @-webkit-keyframes lds-circle {
   0%, 100% {
     animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8);
  }
   0% {
     transform: rotateY(0deg);
  }
   50% {
     transform: rotateY(900deg);
     animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1);
  }
   100% {
     transform: rotateY(1500deg);
  }
}
 @-moz-keyframes lds-circle {
   0%, 100% {
     animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8);
  }
   0% {
     transform: rotateY(0deg);
  }
   50% {
     transform: rotateY(900deg);
     animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1);
  }
   100% {
     transform: rotateY(1500deg);
  }
}
 @-o-keyframes lds-circle {
   0%, 100% {
     animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8);
  }
   0% {
     transform: rotateY(0deg);
  }
   50% {
     transform: rotateY(900deg);
     animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1);
  }
   100% {
     transform: rotateY(1500deg);
  }
}
 @keyframes lds-circle {
   0%, 100% {
     animation-timing-function: cubic-bezier(0.8, 0, 1, 0.8);
  }
   0% {
     transform: rotateY(0deg);
  }
   50% {
     transform: rotateY(900deg);
     animation-timing-function: cubic-bezier(0, 0.6, 0.6, 1);
  }
   100% {
     transform: rotateY(1500deg);
  }
}
 .ishi-triangle-rotate {
   width: 0;
   height: 0;
   border-left: 30px solid transparent;
   border-right: 30px solid transparent;
   border-bottom: 30px solid var(--brand-secondary);
   -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
   animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}
 @-webkit-keyframes triangle-skew-spin {
   25% {
     -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
     transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
   50% {
     -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
     transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
   75% {
     -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
     transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
   100% {
     -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
     transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
 @-o-keyframes triangle-skew-spin {
   25% {
     -o-transform: perspective(100px) rotateX(180deg) rotateY(0);
     transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
   50% {
     -o-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
     transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
   75% {
     -o-transform: perspective(100px) rotateX(0) rotateY(180deg);
     transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
   100% {
     -o-transform: perspective(100px) rotateX(0) rotateY(0);
     transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
 @-moz-keyframes triangle-skew-spin {
   25% {
     -moz-transform: perspective(100px) rotateX(180deg) rotateY(0);
     transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
   50% {
     -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
     transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
   75% {
     -moz-transform: perspective(100px) rotateX(0) rotateY(180deg);
     transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
   100% {
     -moz-transform: perspective(100px) rotateX(0) rotateY(0);
     transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
 @keyframes triangle-skew-spin {
   25% {
     -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
     transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
   50% {
     -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
     transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
   75% {
     -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
     transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
   100% {
     -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
     transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
 .ishi-rotate-plane {
   display: block;
   width: 50px;
   height: 50px;
   background-color: var(--brand-secondary);
   margin: 0 auto;
   -webkit-animation: rotateplane 1.4s infinite ease-in-out;
   animation: rotateplane 1.4s infinite ease-in-out;
}
 @-webkit-keyframes rotateplane {
   0% {
     -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
     transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
   50% {
     -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
     transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
   100% {
     -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
     transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
 @-moz-keyframes rotateplane {
   0% {
     -moz-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
     transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
   50% {
     -moz-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
     transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
   100% {
     -moz-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
     transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
 @-o-keyframes rotateplane {
   0% {
     -o-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
     transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
   50% {
     -o-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
     transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
   100% {
     -o-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
     transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
 @keyframes rotateplane {
   0% {
     transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
   50% {
     transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
   100% {
     transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
 .ishi-round-rotate {
   color: var(--brand-secondary);
   font-size: 8px;
   text-indent: -99999em;
   margin: auto;
   position: relative;
   width: 10em;
   height: 10em;
   border-radius: 50%;
   box-shadow: inset 0 0 0 0.9em;
   -webkit-transform: translateZ(0);
   -ms-transform: translateZ(0);
   transform: translateZ(0);
}
 .ishi-round-rotate:before, .ishi-round-rotate:after {
   position: absolute;
   content: "";
   width: 5.2em;
   height: 10.2em;
   background: #fff;
   border-radius: 10.2em 0 0 10.2em;
   top: -0.1em;
   left: -0.1em;
   -webkit-transform-origin: 5.2em 5.1em;
   transform-origin: 5.2em 5.1em;
   -webkit-animation: load2 2s infinite ease 1.5s;
   animation: load2 2s infinite ease 1.5s;
}
 .ishi-round-rotate:after {
   border-radius: 0 10.2em 10.2em 0;
   left: 5.1em;
   -webkit-transform-origin: 0px 5.1em;
   transform-origin: 0px 5.1em;
   -webkit-animation: load2 2s infinite ease 0s;
   animation: load2 2s infinite ease 0s;
}
 @-webkit-keyframes load2 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @-moz-keyframes load2 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @-o-keyframes load2 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @keyframes load2 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 .ishi-simple-dot-scaleout {
   width: 52px;
   height: 52px;
   border-radius: 40px;
   background-color: var(--brand-secondary);
   -webkit-animation: scaleout 1s infinite ease-in-out;
   animation: scaleout 1s infinite ease-in-out;
}
 @-webkit-keyframes scaleout {
   0% {
     -webkit-transform: scale(0);
     transform: scale(0);
  }
   100% {
     -webkit-transform: scale(1);
     transform: scale(1);
     opacity: 0;
  }
}
 @-moz-keyframes scaleout {
   0% {
     -webkit-transform: scale(0);
     transform: scale(0);
  }
   100% {
     -webkit-transform: scale(1);
     transform: scale(1);
     opacity: 0;
  }
}
 @-o-keyframes scaleout {
   0% {
     -webkit-transform: scale(0);
     transform: scale(0);
  }
   100% {
     -webkit-transform: scale(1);
     transform: scale(1);
     opacity: 0;
  }
}
 @keyframes scaleout {
   0% {
     -webkit-transform: scale(0);
     transform: scale(0);
  }
   100% {
     -webkit-transform: scale(1);
     transform: scale(1);
     opacity: 0;
  }
}
 .ishi-dots-rotate {
   color: var(--brand-secondary);
   font-size: 46px;
   text-indent: -9999em;
   overflow: hidden;
   width: 1em;
   height: 1em;
   border-radius: 50%;
   margin: auto;
   position: relative;
   -webkit-transform: translateZ(0);
   -ms-transform: translateZ(0);
   transform: translateZ(0);
   -webkit-animation: load1 1.8s infinite ease, round1 1.8s infinite ease;
   animation: load1 1.8s infinite ease, round1 1.8s infinite ease;
}
 @-webkit-keyframes load1 {
   0% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   5%, 95% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   10%, 59% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
   20% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
   38% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
   100% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
 @-moz-keyframes load1 {
   0% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   5%, 95% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   10%, 59% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
   20% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
   38% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
   100% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
 @-o-keyframes load1 {
   0% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   5%, 95% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   10%, 59% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
   20% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
   38% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
   100% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
 @keyframes load1 {
   0% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   5%, 95% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
   10%, 59% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
   20% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
   38% {
     box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
   100% {
     box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
 @-webkit-keyframes round1 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @-moz-keyframes round1 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @-o-keyframes round1 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @keyframes round1 {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 .ishi-dots-scale {
   width: 32px;
   height: 32px;
   margin: 0 auto;
}
 .ishi-dots-scale:before, .ishi-dots-scale:after {
   content: '';
   border: none;
   border-radius: 50%;
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0px;
   background: rgba(0, 0, 0, 0.2);
   transform: scale(1, 1);
   opacity: 1;
   -webkit-animation: spWaveBe 0.6s infinite linear;
   animation: spWaveBe 0.6s infinite linear;
}
 .ishi-dots-scale:after {
   transform: scale(0, 0);
   opacity: 0;
   -webkit-animation: spWaveAf 0.6s infinite linear;
   animation: spWaveAf 0.6s infinite linear;
}
 .ishi-dots-scale-border {
   width: 34px;
   height: 34px;
   margin: 0 auto;
}
 .ishi-dots-scale-border:before, .ishi-dots-scale-border:after {
   content: '';
   border: 2px solid var(--brand-secondary);
   border-radius: 50%;
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0px;
   transform: scale(1, 1);
   opacity: 1;
   -webkit-animation: spWaveBe 0.6s infinite linear;
   animation: spWaveBe 0.6s infinite linear;
}
 .ishi-dots-scale-border:after {
   transform: scale(0, 0);
   opacity: 0;
   -webkit-animation: spWaveAf 0.6s infinite linear;
   animation: spWaveAf 0.6s infinite linear;
}
 @-webkit-keyframes spWaveAf {
   0% {
     transform: scale(0.5, 0.5);
     opacity: 0;
  }
   100% {
     transform: scale(1, 1);
     opacity: 1;
  }
}
 @-webkit-keyframes spWaveBe {
   0% {
     -webkit-transform: scale(1, 1);
     opacity: 1;
  }
   100% {
     -webkit-transform: scale(1.5, 1.5);
     opacity: 0;
  }
}
 @-moz-keyframes spWaveAf {
   0% {
     transform: scale(0.5, 0.5);
     opacity: 0;
  }
   100% {
     transform: scale(1, 1);
     opacity: 1;
  }
}
 @-moz-keyframes spWaveBe {
   0% {
     -webkit-transform: scale(1, 1);
     opacity: 1;
  }
   100% {
     -webkit-transform: scale(1.5, 1.5);
     opacity: 0;
  }
}
 @-o-keyframes spWaveAf {
   0% {
     transform: scale(0.5, 0.5);
     opacity: 0;
  }
   100% {
     transform: scale(1, 1);
     opacity: 1;
  }
}
 @-o-keyframes spWaveBe {
   0% {
     -webkit-transform: scale(1, 1);
     opacity: 1;
  }
   100% {
     -webkit-transform: scale(1.5, 1.5);
     opacity: 0;
  }
}
 @keyframes spWaveAf {
   0% {
     transform: scale(0.5, 0.5);
     opacity: 0;
  }
   100% {
     transform: scale(1, 1);
     opacity: 1;
  }
}
 @keyframes spWaveBe {
   0% {
     -webkit-transform: scale(1, 1);
     opacity: 1;
  }
   100% {
     -webkit-transform: scale(1.5, 1.5);
     opacity: 0;
  }
}
 .ishi-rotating-circle {
   width: 115px;
   height: 115px;
   margin: -75px 0 0 -75px;
   border-radius: 50%;
   border: 3px solid transparent;
   border-top-color: transparent;
   border-top-color: var(--brand-secondary);
   -webkit-animation: spin 2s linear infinite;
   animation: spin 2s linear infinite;
}
 .ishi-rotating-circle:before {
   content: "";
   position: absolute;
   top: 5px;
   left: 5px;
   right: 5px;
   bottom: 5px;
   border-radius: 50%;
   border: 3px solid transparent;
   border-top-color: var(--brand-secondary);
   -webkit-animation: spin 3s linear infinite;
   animation: spin 3s linear infinite;
}
 .ishi-rotating-circle:after {
   content: "";
   position: absolute;
   top: 15px;
   left: 15px;
   right: 15px;
   bottom: 15px;
   border-radius: 50%;
   border: 3px solid transparent;
   border-top-color: transparent;
   border-top-color: var(--brand-secondary);
   -webkit-animation: spin 1.5s linear infinite;
   animation: spin 1.5s linear infinite;
}
 @-webkit-keyframes spin {
   0% {
     -webkit-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     -ms-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @-moz-keyframes spin {
   0% {
     -webkit-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     -ms-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @-o-keyframes spin {
   0% {
     -webkit-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     -ms-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 @keyframes spin {
   0% {
     -webkit-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
  }
   100% {
     -webkit-transform: rotate(360deg);
     -ms-transform: rotate(360deg);
     transform: rotate(360deg);
  }
}
 
.view-all-btn {
	 margin-top: 20px;
}
 
 .rte {
   text-align: left;
   line-height: 24px;
   color: #787878;
   margin-bottom: 20px;
   letter-spacing: 0.5px;
   font-weight: 500;
   font-size: 15px;
   overflow: hidden;
}
 @media (max-width: 543px) {
   .rte {
    /* If media is below 544 */
     margin-bottom: 18px;
     line-height: 24px;
  }
}
 .rte p {
	font-size: 15px !important;
}
 .rte > h4 {
   color: #232323;
   font-weight: 600;
   letter-spacing: 0.2px;
     margin: 0;
   margin-bottom: 14px;
   font-size: 15px;
}
 .rte > ul, .rte > ol {
   margin: 0;
   margin-bottom: 18px;
   padding-left: 26px;
}
 .rte > ul li, .rte > ol li {
   list-style: unset;
   padding-left: 3px;
}
 .rte > ul li:marker, .rte > ol li:marker{
   line-height: 14px;
}
 @media (max-width: 543px) {
   .rte > ul li, .rte > ol li {
    /* If media is below 544 */
     margin-bottom: 6px;
  }
   .rte > ul li:last-child, .rte > ol li:last-child{
     margin-bottom: 0;
  }
}
 .rte blockquote{
   text-align: left;
   line-height: 26px;
   color: #787878;
   margin-bottom: 0;
   letter-spacing: .2px;
   font-weight: 500;
   font-size: 15px;
   border: 0;
   border-left: 3px solid #E5E5E5;
   margin-left: 15px;
   padding: 0;
   padding-left: 30px;
}
 @media (max-width: 543px) {
   .rte blockquote{
    /* If media is below 544 */
     padding: 0;
     margin-left: 8px;
     padding-left: 15px;
  }
}
 



// Newly added font code start
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

	@font-face {
  	font-famiy: "Bodoni";
    src: url("//montancesguitarwiring.com/cdn/shop/t/8/assets/BodoniModa_18pt-Regular.woff2?v=53816245213198540291759193343");
         url("//montancesguitarwiring.com/cdn/shop/t/8/assets/BodoniModa_18pt-Regular.woff?2076");
         url("//montancesguitarwiring.com/cdn/shop/t/8/assets/BodoniModa_18pt-Regular.ttf?v=160063784391511230091759193343"); 
           font-weight: 400;
  }

h1, span.h3.block-heading, div.sub-title, h2, h2.home-title, div.heading, h6, h3, h2#main-header.section__title, h2.footer-heading.hidden-lg-down, div.h4.grid-view-item__title, h3.inner-title, h3.title, span.user-name { font-family: 'Bodoni Moda', serif!important; }*/

  	@font-face {
  	font-famiy: "Poppins";
    src: url("//montancesguitarwiring.com/cdn/shop/t/8/assets/Poppins-Regular.woff2?v=89709614042480634761759193343");
      	 url("//montancesguitarwiring.com/cdn/shop/t/8/assets/Poppins-Regular.woff?v=36603626553595052201759193343");
         url("//montancesguitarwiring.com/cdn/shop/t/8/assets/Poppins-Regular.ttf?v=126186514142382109311759193343");
  }


a, a.btn, div.slider-btn.btn, div.sub-heading, p, p.section__text, a.nav-link, span.outstock-overlay, div, div.desc, span.user-designation, div.user-description, p.section-text, input.search-header_input.search_input { font-family: 'Poppins', sans-serif!important; }

// Newly added font code start