.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-fe97352e-405d-4115-98d3-ff8ad95f432b {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
min-height: 50px;
max-width: 1400px;
}








#s-fe97352e-405d-4115-98d3-ff8ad95f432b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe97352e-405d-4115-98d3-ff8ad95f432b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: #221f1f;
  font-family: "Staatliches";
  font-weight: 400;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #333333;
  font-family: "Nunito";
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: #221f1f;
  font-family: "Staatliches";
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #333333;
  font-family: "Nunito";
  font-weight: 500;
}

#s-8089d4d9-5540-4a19-a8b9-8c76a0cf6dbc {
  margin-left: auto;
margin-right: auto;
max-width: 600px;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-f45ea44d-6c7b-4aa5-b3ee-2153613d9d2c {
  margin-left: auto;
margin-right: auto;
}

#s-f45ea44d-6c7b-4aa5-b3ee-2153613d9d2c hr {
  border-top: 2px solid rgba(188, 148, 92, 1);
}

#s-962e9636-d61e-4b19-a693-405ebdf14c06 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-962e9636-d61e-4b19-a693-405ebdf14c06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-962e9636-d61e-4b19-a693-405ebdf14c06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-1f32025f-c90f-4229-abcb-716e0c33b369 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-1f32025f-c90f-4229-abcb-716e0c33b369"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f32025f-c90f-4229-abcb-716e0c33b369"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1f32025f-c90f-4229-abcb-716e0c33b369"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f32025f-c90f-4229-abcb-716e0c33b369"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-a9aa5231-c142-4e16-ae22-a484547b1da0 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-a9aa5231-c142-4e16-ae22-a484547b1da0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9aa5231-c142-4e16-ae22-a484547b1da0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d60d43d6-dde1-449d-8316-9dd9e7673b23 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
  max-width: max-content;
}

.shg-product-image-wrapper {
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-d61ba440-d0de-4939-a38b-f19fd49adf9d {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d {
  max-width:  100%;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d {
  max-width:  100%;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d {
  max-width:  100%;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d {
  max-width:  100%;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d {
  max-width:  100%;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d .shg-image-zoom,
.shg-c#s-d61ba440-d0de-4939-a38b-f19fd49adf9d img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
.shg-product-title-component h1 span,
.shg-product-title-component h2 span,
.shg-product-title-component h3 span,
.shg-product-title-component h4 span,
.shg-product-title-component h5 span,
.shg-product-title-component h6 span {
  margin: 0;
  padding: 0;
  display: block;
  color: #221f1f;
  font-family: "Staatliches";
  text-transform: none;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-be4b1e86-4c7f-4e24-853c-7e300712d71f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-be4b1e86-4c7f-4e24-853c-7e300712d71f .shg-product-title-component h2 span {
  
  
  font-family: FoundryGridnik;
  
  font-size: 20px;
  
  
  
}

#s-5f3f5122-e3a1-4310-ad75-c1711d1eb76d {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-5f3f5122-e3a1-4310-ad75-c1711d1eb76d .shg-product-sold-out {
  display: none;
  color: rgba(150, 118, 74, 1);
  font-size: 18px;
  
  font-family: FoundryGridnik;
  font-style:  normal ;
}

#s-5f3f5122-e3a1-4310-ad75-c1711d1eb76d .shg-product-price {
  color: rgba(150, 118, 74, 1);
  
  font-family: FoundryGridnik;
  font-style:  normal ;
  font-size: 18px;
}

#s-5f3f5122-e3a1-4310-ad75-c1711d1eb76d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-88639707-28e0-42a4-ad0e-4efc8fab9441 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-88639707-28e0-42a4-ad0e-4efc8fab9441 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-88639707-28e0-42a4-ad0e-4efc8fab9441.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc551568-225c-4e81-8cb8-027918df7824 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}

#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec {
  max-width:  100%;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec {
  max-width:  100%;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec {
  max-width:  100%;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec {
  max-width:  100%;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec {
  max-width:  100%;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec .shg-image-zoom,
.shg-c#s-5a9b1c5e-3773-4c62-a910-813f87f2eaec img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c98461ed-c47c-44d9-ac6f-5dffdccd8750 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c98461ed-c47c-44d9-ac6f-5dffdccd8750 .shg-product-title-component h2 span {
  
  
  font-family: FoundryGridnik;
  
  font-size: 20px;
  
  
  
}

#s-3053c07b-804d-45c7-abf9-bce453556b2b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-3053c07b-804d-45c7-abf9-bce453556b2b .shg-product-sold-out {
  display: none;
  color: rgba(150, 118, 74, 1);
  font-size: 18px;
  
  font-family: FoundryGridnik;
  font-style:  normal ;
}

#s-3053c07b-804d-45c7-abf9-bce453556b2b .shg-product-price {
  color: rgba(150, 118, 74, 1);
  
  font-family: FoundryGridnik;
  font-style:  normal ;
  font-size: 18px;
}

#s-3053c07b-804d-45c7-abf9-bce453556b2b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2b761c69-9dd2-4449-b7ab-953802432cd4 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-2b761c69-9dd2-4449-b7ab-953802432cd4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2b761c69-9dd2-4449-b7ab-953802432cd4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f2b73d0-bc1f-48a9-a1ba-4168566cb145 {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}

#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 {
  max-width:  100%;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 {
  max-width:  100%;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 {
  max-width:  100%;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 {
  max-width:  100%;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 {
  max-width:  100%;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 .shg-image-zoom,
.shg-c#s-29dd620b-8ce6-433d-bfd8-e62bff317e21 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-04a8a941-e716-447a-a3ae-76a16aa0b4c9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-04a8a941-e716-447a-a3ae-76a16aa0b4c9 .shg-product-title-component h2 span {
  
  
  font-family: FoundryGridnik;
  
  font-size: 20px;
  
  
  
}

#s-b5fb5333-16a9-40a1-b13c-81c613fce623 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-b5fb5333-16a9-40a1-b13c-81c613fce623 .shg-product-sold-out {
  display: none;
  color: rgba(150, 118, 74, 1);
  font-size: 18px;
  
  font-family: FoundryGridnik;
  font-style:  normal ;
}

#s-b5fb5333-16a9-40a1-b13c-81c613fce623 .shg-product-price {
  color: rgba(150, 118, 74, 1);
  
  font-family: FoundryGridnik;
  font-style:  normal ;
  font-size: 18px;
}

#s-b5fb5333-16a9-40a1-b13c-81c613fce623 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b7c5db7d-d303-46c8-9ab9-196ea8d1d369 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-b7c5db7d-d303-46c8-9ab9-196ea8d1d369 {
  margin-top: 20px;
margin-bottom: 20px;
}
}







#s-b7c5db7d-d303-46c8-9ab9-196ea8d1d369 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b7c5db7d-d303-46c8-9ab9-196ea8d1d369.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-960f4b07-b4c9-4eb0-88af-c09a6da27163 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-960f4b07-b4c9-4eb0-88af-c09a6da27163"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-960f4b07-b4c9-4eb0-88af-c09a6da27163"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-960f4b07-b4c9-4eb0-88af-c09a6da27163"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-960f4b07-b4c9-4eb0-88af-c09a6da27163"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-52813eca-2a24-4e4c-b440-dd4076c0db96 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-52813eca-2a24-4e4c-b440-dd4076c0db96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52813eca-2a24-4e4c-b440-dd4076c0db96.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f6aa4cc-e965-4395-bbc3-f6a45df030fd {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}

#s-87796ee3-6529-4ce8-8373-49207d296f68 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 {
  max-width:  100%;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 {
  max-width:  100%;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 {
  max-width:  100%;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 {
  max-width:  100%;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 {
  max-width:  100%;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 .shg-image-zoom,
.shg-c#s-87796ee3-6529-4ce8-8373-49207d296f68 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-e5e81cfc-0294-4951-addd-a0b41059c33d {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e5e81cfc-0294-4951-addd-a0b41059c33d .shg-product-title-component h2 span {
  
  
  font-family: FoundryGridnik;
  
  font-size: 20px;
  
  
  
}

#s-eb64cb11-52d9-4440-8337-9a737bc2e720 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-eb64cb11-52d9-4440-8337-9a737bc2e720 .shg-product-sold-out {
  display: none;
  color: rgba(150, 118, 74, 1);
  font-size: 18px;
  
  font-family: FoundryGridnik;
  font-style:  normal ;
}

#s-eb64cb11-52d9-4440-8337-9a737bc2e720 .shg-product-price {
  color: rgba(150, 118, 74, 1);
  
  font-family: FoundryGridnik;
  font-style:  normal ;
  font-size: 18px;
}

#s-eb64cb11-52d9-4440-8337-9a737bc2e720 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4fc1427c-35e3-4905-a012-1dc81146e225 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
}








#s-4fc1427c-35e3-4905-a012-1dc81146e225 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4fc1427c-35e3-4905-a012-1dc81146e225.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bdac702-0272-4325-801c-38b8fa8b980f {
  margin-left: auto;
margin-right: auto;
max-width: 350px;
}

#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 {
  max-width:  100%;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 {
  max-width:  100%;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 {
  max-width:  100%;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 {
  max-width:  100%;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 {
  max-width:  100%;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-product-image-wrapper {
  width: 100%;
  height: auto;
}

.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 .shg-image-zoom,
.shg-c#s-5acbfc97-d816-4f82-bac5-bf70b9d810a1 img.shogun-image {
  aspect-ratio: 1:1;
  border-style: solid;
  border-color: rgba(188, 148, 92, 1);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  
    border-radius: 45px;
    overflow: hidden; /* To clip the inner img */
  
}



  .shg-product-image-wrapper {
    display: none;
  }
}
#s-60dd8f4f-9c8a-4bef-9317-822f613dc6c3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60dd8f4f-9c8a-4bef-9317-822f613dc6c3 .shg-product-title-component h2 span {
  
  
  font-family: FoundryGridnik;
  
  font-size: 20px;
  
  
  
}

#s-903049cf-c705-468b-b15a-44c12ee43449 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-903049cf-c705-468b-b15a-44c12ee43449 .shg-product-sold-out {
  display: none;
  color: rgba(150, 118, 74, 1);
  font-size: 18px;
  
  font-family: FoundryGridnik;
  font-style:  normal ;
}

#s-903049cf-c705-468b-b15a-44c12ee43449 .shg-product-price {
  color: rgba(150, 118, 74, 1);
  
  font-family: FoundryGridnik;
  font-style:  normal ;
  font-size: 18px;
}

#s-903049cf-c705-468b-b15a-44c12ee43449 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-14d2424e-7474-4e51-9aa1-814637a61387 {
  margin-left: auto;
margin-right: auto;
}

#s-14d2424e-7474-4e51-9aa1-814637a61387 hr {
  border-top: 2px solid rgba(188, 148, 92, 1);
}

#s-86ce583d-4973-4471-98e7-d0a793f4926f {
  margin-top: -40px;
margin-left: auto;
margin-bottom: -40px;
margin-right: auto;
text-align: left;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

.shogun-form-error-msg,
.shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}
