.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;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.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-dd505d47-eed4-42fb-88dc-bb6b8a0c5d55 {
  min-height: 50px;
}








#s-dd505d47-eed4-42fb-88dc-bb6b8a0c5d55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dd505d47-eed4-42fb-88dc-bb6b8a0c5d55.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-66c132c2-9897-4377-9c20-c193995da2cc {
  min-height: 50px;
}








#s-66c132c2-9897-4377-9c20-c193995da2cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-66c132c2-9897-4377-9c20-c193995da2cc.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;
}

#s-7e7b2742-20cd-41d2-8987-fbee773a3745 {
  margin-top: 15px;
margin-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-7e7b2742-20cd-41d2-8987-fbee773a3745"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7e7b2742-20cd-41d2-8987-fbee773a3745"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7e7b2742-20cd-41d2-8987-fbee773a3745"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7e7b2742-20cd-41d2-8987-fbee773a3745"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-c9b10179-a8c0-40b7-9f32-26d453e5333c {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  img.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
    
    
  }


.s-c9b10179-a8c0-40b7-9f32-26d453e5333c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shg-align-container {
  text-align: center
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
    
    
  }


.s-c9b10179-a8c0-40b7-9f32-26d453e5333c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shg-align-container {
  text-align: center
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){





  img.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
    
    
  }


.s-c9b10179-a8c0-40b7-9f32-26d453e5333c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shg-align-container {
  text-align: center
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){





  img.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
    
    
  }


.s-c9b10179-a8c0-40b7-9f32-26d453e5333c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shg-align-container {
  text-align: center
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){





  img.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
    
    
  }


.s-c9b10179-a8c0-40b7-9f32-26d453e5333c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shg-align-container {
  text-align: center
}

.s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9b10179-a8c0-40b7-9f32-26d453e5333c.shogun-image {
  box-sizing: border-box;
}


}
#s-16e90832-3d20-483e-8479-d74a405d6bbf {
  display: none;
}
.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);
}

.shg-product-image-wrapper {
  display: none;
  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-1494dfdf-fe01-434d-b5b9-f34ac56207dd {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1494dfdf-fe01-434d-b5b9-f34ac56207dd img.shogun-image {
  width: 100%;
}



}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000000;
  font-family: Serif;
  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-fb4a8552-731c-415c-9434-c25fd82d5a87 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-fb4a8552-731c-415c-9434-c25fd82d5a87 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-fb4a8552-731c-415c-9434-c25fd82d5a87 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-39b5bf9c-fa96-43be-a01b-f8f940cf8ee3 {
  text-align: center;
}

#s-39b5bf9c-fa96-43be-a01b-f8f940cf8ee3 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-39b5bf9c-fa96-43be-a01b-f8f940cf8ee3 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-39b5bf9c-fa96-43be-a01b-f8f940cf8ee3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-c466678a-c8fb-435f-9c26-b8c0303c92c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c466678a-c8fb-435f-9c26-b8c0303c92c4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c466678a-c8fb-435f-9c26-b8c0303c92c4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c466678a-c8fb-435f-9c26-b8c0303c92c4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-1c92de53-845e-4f9f-8e51-2f386159bff6 {
  display: none;
}
#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28e8d3e5-8b21-4e67-adab-8a71d9475778 img.shogun-image {
  width: 100%;
}



}
#s-48343a8d-7bfe-434f-be0e-dbda4dc1ed29 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-48343a8d-7bfe-434f-be0e-dbda4dc1ed29 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-48343a8d-7bfe-434f-be0e-dbda4dc1ed29 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-fccfdbb0-5463-4c69-9bd4-a6708450eb06 {
  text-align: center;
}
@media (max-width: 767px){#s-fccfdbb0-5463-4c69-9bd4-a6708450eb06 {
  padding-bottom: 20px;
}
}
#s-fccfdbb0-5463-4c69-9bd4-a6708450eb06 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-fccfdbb0-5463-4c69-9bd4-a6708450eb06 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-fccfdbb0-5463-4c69-9bd4-a6708450eb06 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2d79b2e2-0edc-470e-a321-91b16009c07d {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  img.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
    
    
  }


.s-2d79b2e2-0edc-470e-a321-91b16009c07d .shogun-image-content {
  
    align-items: center;
  
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shg-align-container {
  text-align: center
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
    
    
  }


.s-2d79b2e2-0edc-470e-a321-91b16009c07d .shogun-image-content {
  
    align-items: center;
  
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shg-align-container {
  text-align: center
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){





  img.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
    
    
  }


.s-2d79b2e2-0edc-470e-a321-91b16009c07d .shogun-image-content {
  
    align-items: center;
  
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shg-align-container {
  text-align: center
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){





  img.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
    
    
  }


.s-2d79b2e2-0edc-470e-a321-91b16009c07d .shogun-image-content {
  
    align-items: center;
  
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shg-align-container {
  text-align: center
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){





  img.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
    
    
  }


.s-2d79b2e2-0edc-470e-a321-91b16009c07d .shogun-image-content {
  
    align-items: center;
  
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shg-align-container {
  text-align: center
}

.s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2d79b2e2-0edc-470e-a321-91b16009c07d.shogun-image {
  box-sizing: border-box;
}


}
#s-cd684511-748e-4670-aa16-5abd7914cf3a {
  display: none;
}
#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-41e5dc25-4f3a-4292-9a6f-ca1bda7e2287 img.shogun-image {
  width: 100%;
}



}
#s-dcad8d06-830f-412f-8549-610e1abd79a6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-dcad8d06-830f-412f-8549-610e1abd79a6 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-dcad8d06-830f-412f-8549-610e1abd79a6 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-6a56b6a5-346e-4849-bde3-644ddfb6661e {
  text-align: center;
}

#s-6a56b6a5-346e-4849-bde3-644ddfb6661e .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-6a56b6a5-346e-4849-bde3-644ddfb6661e .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-6a56b6a5-346e-4849-bde3-644ddfb6661e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-25fa2c22-595b-4f15-a201-7e4df055e17f {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-25fa2c22-595b-4f15-a201-7e4df055e17f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25fa2c22-595b-4f15-a201-7e4df055e17f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-25fa2c22-595b-4f15-a201-7e4df055e17f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-25fa2c22-595b-4f15-a201-7e4df055e17f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0b3f9465-0094-47f8-8c22-288adc5e311d {
  display: none;
}
#s-447f44ba-3a63-46ce-b09b-a4544282696e {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-447f44ba-3a63-46ce-b09b-a4544282696e img.shogun-image {
  width: 100%;
}



}
#s-090d2c4a-9644-4265-b97c-32f8d8b14019 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-090d2c4a-9644-4265-b97c-32f8d8b14019 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-090d2c4a-9644-4265-b97c-32f8d8b14019 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-341ebd2f-60ae-48ef-9781-cba4ffe35808 {
  text-align: center;
}
@media (max-width: 767px){#s-341ebd2f-60ae-48ef-9781-cba4ffe35808 {
  margin-bottom: 20px;
}
}
#s-341ebd2f-60ae-48ef-9781-cba4ffe35808 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-341ebd2f-60ae-48ef-9781-cba4ffe35808 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-341ebd2f-60ae-48ef-9781-cba4ffe35808 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ab95d78a-c07a-43b8-ac5b-01587d834b5a {
  display: none;
}
#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}
@media (max-width: 767px){#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e {
  margin-top: 15px;
}
}


.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7f3cede-51ed-42d5-9268-5eb66aa70a0e img.shogun-image {
  width: 100%;
}



}
#s-5f84fba7-37ff-424a-82e9-e166c0076d22 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-5f84fba7-37ff-424a-82e9-e166c0076d22 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-5f84fba7-37ff-424a-82e9-e166c0076d22 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-c2c60fcf-de71-4929-abab-019587e0f63f {
  text-align: center;
}

#s-c2c60fcf-de71-4929-abab-019587e0f63f .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-c2c60fcf-de71-4929-abab-019587e0f63f .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-c2c60fcf-de71-4929-abab-019587e0f63f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-4a2f141a-ff0c-4b6f-91f5-981bc87bccc7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4a2f141a-ff0c-4b6f-91f5-981bc87bccc7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4a2f141a-ff0c-4b6f-91f5-981bc87bccc7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4a2f141a-ff0c-4b6f-91f5-981bc87bccc7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4aa2f6d2-1b21-47d0-9d01-5f1fe8ef0c54 {
  display: none;
}
#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3e3da5c1-5831-4b4c-aed8-2af38129f4ca img.shogun-image {
  width: 100%;
}



}
#s-9cd29bcf-1710-492a-a41a-0c6c83448b1b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-9cd29bcf-1710-492a-a41a-0c6c83448b1b {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-9cd29bcf-1710-492a-a41a-0c6c83448b1b .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-e7c39f21-4a5c-4423-85d1-ec1874d303ad {
  text-align: center;
}
@media (max-width: 767px){#s-e7c39f21-4a5c-4423-85d1-ec1874d303ad {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-e7c39f21-4a5c-4423-85d1-ec1874d303ad .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-e7c39f21-4a5c-4423-85d1-ec1874d303ad .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-e7c39f21-4a5c-4423-85d1-ec1874d303ad .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-cb0a4cff-c947-478d-b2b7-40ccce9ca1b0 {
  display: none;
}
#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7e8809ba-e0fe-4306-acd6-37ef8e1a6847 img.shogun-image {
  width: 100%;
}



}
#s-00a584ca-b0e8-43d9-83b3-b4024c510be2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-00a584ca-b0e8-43d9-83b3-b4024c510be2 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-00a584ca-b0e8-43d9-83b3-b4024c510be2 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-10ccbf80-d978-4ec0-b7b0-3af4270d4917 {
  text-align: center;
}
@media (max-width: 767px){#s-10ccbf80-d978-4ec0-b7b0-3af4270d4917 {
  margin-top: 0px;
margin-bottom: 20px;
}
}
#s-10ccbf80-d978-4ec0-b7b0-3af4270d4917 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-10ccbf80-d978-4ec0-b7b0-3af4270d4917 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-10ccbf80-d978-4ec0-b7b0-3af4270d4917 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-375dfce8-07e3-4b92-8eff-707ce631a35b {
  display: none;
}
#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-93e33f62-c201-4f9c-a5c1-42fa88e8149e img.shogun-image {
  width: 100%;
}



}
#s-3fa38cd3-793a-49c9-9392-573e7f756faa {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-3fa38cd3-793a-49c9-9392-573e7f756faa {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-3fa38cd3-793a-49c9-9392-573e7f756faa .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-70f0cec7-31b8-4787-9564-ddb5b941d791 {
  text-align: center;
}

#s-70f0cec7-31b8-4787-9564-ddb5b941d791 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-70f0cec7-31b8-4787-9564-ddb5b941d791 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-70f0cec7-31b8-4787-9564-ddb5b941d791 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e0ab7689-1582-4ede-a95f-3524dccb95e8 {
  min-height: 50px;
}








#s-e0ab7689-1582-4ede-a95f-3524dccb95e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0ab7689-1582-4ede-a95f-3524dccb95e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-98418348-b347-4ef6-9b7d-a8dcbfc65a48 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-98418348-b347-4ef6-9b7d-a8dcbfc65a48"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-98418348-b347-4ef6-9b7d-a8dcbfc65a48"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-98418348-b347-4ef6-9b7d-a8dcbfc65a48"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-98418348-b347-4ef6-9b7d-a8dcbfc65a48"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ef30611e-b3b4-446e-9025-368971ae60b0 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  img.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
    
    
  }


.s-ef30611e-b3b4-446e-9025-368971ae60b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shg-align-container {
  text-align: center
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
    
    
  }


.s-ef30611e-b3b4-446e-9025-368971ae60b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shg-align-container {
  text-align: center
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){





  img.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
    
    
  }


.s-ef30611e-b3b4-446e-9025-368971ae60b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shg-align-container {
  text-align: center
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){





  img.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
    
    
  }


.s-ef30611e-b3b4-446e-9025-368971ae60b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shg-align-container {
  text-align: center
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){





  img.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
    
    
  }


.s-ef30611e-b3b4-446e-9025-368971ae60b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shg-align-container {
  text-align: center
}

.s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef30611e-b3b4-446e-9025-368971ae60b0.shogun-image {
  box-sizing: border-box;
}


}
#s-d8a8365e-3fb2-447d-b728-325602e26837 {
  display: none;
}
#s-726e1a8d-45ac-442d-beb3-a239e3b794de {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}
@media (max-width: 767px){#s-726e1a8d-45ac-442d-beb3-a239e3b794de {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
}


.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-726e1a8d-45ac-442d-beb3-a239e3b794de img.shogun-image {
  width: 100%;
}



}
#s-7c069de5-ae36-45d7-bb8e-8754cf77ac50 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-7c069de5-ae36-45d7-bb8e-8754cf77ac50 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-7c069de5-ae36-45d7-bb8e-8754cf77ac50 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-aee50098-8d33-4508-8967-2408dbca1d90 {
  text-align: center;
}
@media (max-width: 767px){#s-aee50098-8d33-4508-8967-2408dbca1d90 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-aee50098-8d33-4508-8967-2408dbca1d90 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-aee50098-8d33-4508-8967-2408dbca1d90 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-aee50098-8d33-4508-8967-2408dbca1d90 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1577c0f6-85af-4894-a68f-b308c679e304 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-1577c0f6-85af-4894-a68f-b308c679e304"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1577c0f6-85af-4894-a68f-b308c679e304"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1577c0f6-85af-4894-a68f-b308c679e304"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1577c0f6-85af-4894-a68f-b308c679e304"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked,
.shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-b13add65-8307-4cfa-ad5d-90c2a9e17662 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  #s-b13add65-8307-4cfa-ad5d-90c2a9e17662 img.shogun-image {
    

    
    
    
  }


#s-b13add65-8307-4cfa-ad5d-90c2a9e17662 .shogun-image-content {
  
    align-items: center;
  
}

#s-5c741850-5670-4dbb-83cb-b5745b3a37b5 {
  display: none;
}
#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-efc0e3b8-020e-4019-937b-dfcf0cf1b7b0 img.shogun-image {
  width: 100%;
}



}
#s-ae316138-458a-428c-9427-c5a28d7c7322 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-ae316138-458a-428c-9427-c5a28d7c7322 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-ae316138-458a-428c-9427-c5a28d7c7322 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-881dc902-6a52-4858-873d-a396afb26056 {
  text-align: center;
}
@media (max-width: 767px){#s-881dc902-6a52-4858-873d-a396afb26056 {
  margin-top: 0px;
margin-bottom: 10px;
}
}
#s-881dc902-6a52-4858-873d-a396afb26056 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-881dc902-6a52-4858-873d-a396afb26056 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-881dc902-6a52-4858-873d-a396afb26056 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1ac53e6e-3abf-4d9d-9196-4ba2f4efad61 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  #s-1ac53e6e-3abf-4d9d-9196-4ba2f4efad61 img.shogun-image {
    

    
    
    
  }


#s-1ac53e6e-3abf-4d9d-9196-4ba2f4efad61 .shogun-image-content {
  
    align-items: center;
  
}

#s-5ec48bae-310b-48a5-bbab-dd4e0c1eeab9 {
  min-height: 50px;
}








#s-5ec48bae-310b-48a5-bbab-dd4e0c1eeab9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ec48bae-310b-48a5-bbab-dd4e0c1eeab9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-40ca8e3f-1f6e-4e4a-a4c6-98680312e135 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-40ca8e3f-1f6e-4e4a-a4c6-98680312e135"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40ca8e3f-1f6e-4e4a-a4c6-98680312e135"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-40ca8e3f-1f6e-4e4a-a4c6-98680312e135"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-40ca8e3f-1f6e-4e4a-a4c6-98680312e135"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-beafb358-5a8f-4553-b61e-7a0210d7a159 {
  display: none;
}
#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}
@media (max-width: 767px){#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c {
  margin-top: 0px;
margin-bottom: 0px;
}
}


.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a1b7876d-8fea-426c-b1b8-0a3c2b8b7a9c img.shogun-image {
  width: 100%;
}



}
#s-adbab0f9-c904-42b6-8159-212b06753e8f {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-adbab0f9-c904-42b6-8159-212b06753e8f {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-adbab0f9-c904-42b6-8159-212b06753e8f .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-470e2b39-6122-4571-919c-bbf66eaacb60 {
  text-align: center;
}
@media (max-width: 767px){#s-470e2b39-6122-4571-919c-bbf66eaacb60 {
  margin-bottom: 10px;
}
}
#s-470e2b39-6122-4571-919c-bbf66eaacb60 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-470e2b39-6122-4571-919c-bbf66eaacb60 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-470e2b39-6122-4571-919c-bbf66eaacb60 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f4d41689-cca0-490a-af36-08aed7faf8b4 {
  display: none;
}
#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c8089256-7af2-48ba-82ec-e9a6af8ca755 img.shogun-image {
  width: 100%;
}



}
#s-bb395521-e1b0-4fcd-a98b-d9e17b6814cd {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-bb395521-e1b0-4fcd-a98b-d9e17b6814cd {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-bb395521-e1b0-4fcd-a98b-d9e17b6814cd .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-948fd9bd-ee96-40c6-872d-fc481e03a80b {
  text-align: center;
}

#s-948fd9bd-ee96-40c6-872d-fc481e03a80b .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-948fd9bd-ee96-40c6-872d-fc481e03a80b .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-948fd9bd-ee96-40c6-872d-fc481e03a80b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-2e55b1ea-6bb9-4062-b36c-d92b6a9fb8c7 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-2e55b1ea-6bb9-4062-b36c-d92b6a9fb8c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2e55b1ea-6bb9-4062-b36c-d92b6a9fb8c7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2e55b1ea-6bb9-4062-b36c-d92b6a9fb8c7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2e55b1ea-6bb9-4062-b36c-d92b6a9fb8c7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-233c8118-ba1c-4928-b96f-110255b8f98b {
  display: none;
}
#s-d5b601c8-9456-434f-a97d-86a1d781629f {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5b601c8-9456-434f-a97d-86a1d781629f img.shogun-image {
  width: 100%;
}



}
#s-afd90322-6966-486c-8b87-d36af45afc89 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-afd90322-6966-486c-8b87-d36af45afc89 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-afd90322-6966-486c-8b87-d36af45afc89 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-4726882d-a92e-4bce-90c6-aaaa44b7a962 {
  text-align: center;
}

#s-4726882d-a92e-4bce-90c6-aaaa44b7a962 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-4726882d-a92e-4bce-90c6-aaaa44b7a962 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-4726882d-a92e-4bce-90c6-aaaa44b7a962 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f3832fde-7995-4978-90c2-eb1b09ed2427 {
  display: none;
}
#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-451f67f2-c2ca-4aa8-ae28-408fd6bb7f45 img.shogun-image {
  width: 100%;
}



}
#s-0daedea3-615b-4763-aaf9-34889ed0ae9c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-0daedea3-615b-4763-aaf9-34889ed0ae9c {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-0daedea3-615b-4763-aaf9-34889ed0ae9c .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-e62c8fb9-8b46-4d8c-9108-b29dd6681c05 {
  text-align: center;
}

#s-e62c8fb9-8b46-4d8c-9108-b29dd6681c05 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-e62c8fb9-8b46-4d8c-9108-b29dd6681c05 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-e62c8fb9-8b46-4d8c-9108-b29dd6681c05 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8c5a0aae-4851-4947-a542-2a0974f04032 {
  display: none;
}
#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf3721f7-d2fb-48e4-9c26-7c6d800f43e7 img.shogun-image {
  width: 100%;
}



}
#s-eb289bf2-444c-4d00-9f9e-26629104bdb0 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-eb289bf2-444c-4d00-9f9e-26629104bdb0 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-eb289bf2-444c-4d00-9f9e-26629104bdb0 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-8de11c0c-c426-47cc-8ab1-8a8811b27b72 {
  text-align: center;
}

#s-8de11c0c-c426-47cc-8ab1-8a8811b27b72 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-8de11c0c-c426-47cc-8ab1-8a8811b27b72 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-8de11c0c-c426-47cc-8ab1-8a8811b27b72 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-d6c0eed4-1d4c-4591-a18e-837e3ec51562 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-d6c0eed4-1d4c-4591-a18e-837e3ec51562"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6c0eed4-1d4c-4591-a18e-837e3ec51562"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6c0eed4-1d4c-4591-a18e-837e3ec51562"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6c0eed4-1d4c-4591-a18e-837e3ec51562"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a331794e-1191-4240-99dc-d670148ac43d {
  display: none;
}
#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 {
  text-align: left;
}



.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f64f2e97-779f-4d33-8b9d-4410ef1ef386 img.shogun-image {
  width: 100%;
}



}
#s-00780292-e99a-463d-8b60-7b1f28ea9712 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-00780292-e99a-463d-8b60-7b1f28ea9712 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-00780292-e99a-463d-8b60-7b1f28ea9712 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-b2ce5926-8740-4080-8edf-6b3d269b6a2d {
  text-align: center;
}
@media (max-width: 767px){#s-b2ce5926-8740-4080-8edf-6b3d269b6a2d {
  margin-bottom: 30px;
}
}
#s-b2ce5926-8740-4080-8edf-6b3d269b6a2d .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-b2ce5926-8740-4080-8edf-6b3d269b6a2d .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-b2ce5926-8740-4080-8edf-6b3d269b6a2d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-5b6f2f35-d832-4579-bf8a-3d34265d8bb1 {
  display: none;
}
#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 {
  text-align: left;
}



.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb91bcaa-b7c5-44b7-9774-1cba13747893 img.shogun-image {
  width: 100%;
}



}
#s-33cff26a-01cc-4bf0-a258-453d4649d58a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-33cff26a-01cc-4bf0-a258-453d4649d58a {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-33cff26a-01cc-4bf0-a258-453d4649d58a .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-7bab759a-fa0e-4731-8961-254a48ade4d9 {
  text-align: center;
}

#s-7bab759a-fa0e-4731-8961-254a48ade4d9 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-7bab759a-fa0e-4731-8961-254a48ade4d9 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-7bab759a-fa0e-4731-8961-254a48ade4d9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-61ec1139-cb6c-4f33-9851-5371613d77ac {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-61ec1139-cb6c-4f33-9851-5371613d77ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-61ec1139-cb6c-4f33-9851-5371613d77ac"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-61ec1139-cb6c-4f33-9851-5371613d77ac"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-61ec1139-cb6c-4f33-9851-5371613d77ac"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-1092e721-5163-48f5-9d9e-df303b29ed0a {
  display: none;
}
#s-e22875a6-788a-49f4-8779-87e226ebe33c {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e22875a6-788a-49f4-8779-87e226ebe33c img.shogun-image {
  width: 100%;
}



}
#s-873a863f-8c01-4d60-b3e3-a50563b62197 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-873a863f-8c01-4d60-b3e3-a50563b62197 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-873a863f-8c01-4d60-b3e3-a50563b62197 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-9ce1563c-7fd4-424c-b7ce-4c49cb9bdd45 {
  text-align: center;
}
@media (max-width: 767px){#s-9ce1563c-7fd4-424c-b7ce-4c49cb9bdd45 {
  margin-bottom: 10px;
}
}
#s-9ce1563c-7fd4-424c-b7ce-4c49cb9bdd45 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-9ce1563c-7fd4-424c-b7ce-4c49cb9bdd45 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-9ce1563c-7fd4-424c-b7ce-4c49cb9bdd45 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ba1af808-2a93-4f97-89bf-97bab16b9dd3 {
  display: none;
}
#s-4f89537b-8cf4-47b9-895f-b4a76907948b {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4f89537b-8cf4-47b9-895f-b4a76907948b img.shogun-image {
  width: 100%;
}



}
#s-b2dd4d20-ce45-419f-8524-ea737fbfdcf7 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-b2dd4d20-ce45-419f-8524-ea737fbfdcf7 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-b2dd4d20-ce45-419f-8524-ea737fbfdcf7 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-528f1d80-da5b-4731-a54f-29a7531beb76 {
  text-align: center;
}
@media (max-width: 767px){#s-528f1d80-da5b-4731-a54f-29a7531beb76 {
  margin-bottom: 10px;
}
}
#s-528f1d80-da5b-4731-a54f-29a7531beb76 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-528f1d80-da5b-4731-a54f-29a7531beb76 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-528f1d80-da5b-4731-a54f-29a7531beb76 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-95211dbe-2d87-4c97-964d-4ac3d1edd5d9 {
  display: none;
}
#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-61632709-ab94-4b53-bad0-6ad821a5d5c2 img.shogun-image {
  width: 100%;
}



}
#s-5f454454-80aa-45de-922d-5afb0cc14f87 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-5f454454-80aa-45de-922d-5afb0cc14f87 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-5f454454-80aa-45de-922d-5afb0cc14f87 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-c17b28f1-2883-420e-a897-7bb39bb95db9 {
  text-align: center;
}

#s-c17b28f1-2883-420e-a897-7bb39bb95db9 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-c17b28f1-2883-420e-a897-7bb39bb95db9 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-c17b28f1-2883-420e-a897-7bb39bb95db9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c52862d6-adbd-41e8-a8ce-3a24ec53870f {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-c52862d6-adbd-41e8-a8ce-3a24ec53870f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c52862d6-adbd-41e8-a8ce-3a24ec53870f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c52862d6-adbd-41e8-a8ce-3a24ec53870f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c52862d6-adbd-41e8-a8ce-3a24ec53870f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ce616def-1f1f-417b-8785-45c77a5c21e4 {
  display: none;
}
#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-888e8558-1e51-4bd6-9d27-0e6f03df8659 img.shogun-image {
  width: 100%;
}



}
#s-202fc3dc-a5f1-4b99-8bdf-94d11905b04d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-202fc3dc-a5f1-4b99-8bdf-94d11905b04d {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-202fc3dc-a5f1-4b99-8bdf-94d11905b04d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-1733a117-3d9d-4a4e-b293-e0b4bb495bc0 {
  text-align: center;
}
@media (max-width: 767px){#s-1733a117-3d9d-4a4e-b293-e0b4bb495bc0 {
  margin-bottom: 20px;
}
}
#s-1733a117-3d9d-4a4e-b293-e0b4bb495bc0 .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-1733a117-3d9d-4a4e-b293-e0b4bb495bc0 .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-1733a117-3d9d-4a4e-b293-e0b4bb495bc0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-c1e691d5-17f3-445f-9294-b2d007fbf363 {
  display: none;
}
#s-458ebda8-f5ed-403a-8751-22ea098eca19 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: left;
}



.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-458ebda8-f5ed-403a-8751-22ea098eca19 img.shogun-image {
  width: 100%;
}



}
#s-19fb210f-de65-430e-879e-64b6d9fd699d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 19px;
padding-bottom: 1px;
text-align: center;
}
@media (max-width: 767px){#s-19fb210f-de65-430e-879e-64b6d9fd699d {
  margin-top: 0px;
margin-bottom: 0px;
}
}
#s-19fb210f-de65-430e-879e-64b6d9fd699d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: PT Serif;
  font-style:   ;
  font-size: 18px;
  line-height: 2em;
  letter-spacing: ;
}

#s-40e067d2-f90a-4408-b876-88ae6fe463dd {
  text-align: center;
}

#s-40e067d2-f90a-4408-b876-88ae6fe463dd .shg-product-sold-out {
  display: none;
  color: rgba(49, 49, 49, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
}

#s-40e067d2-f90a-4408-b876-88ae6fe463dd .shg-product-price {
  color: rgba(49, 49, 49, 1);
  font-weight:   ;
  font-family: PT Serif;
  font-style:  normal ;
  font-size: 16px;
}

#s-40e067d2-f90a-4408-b876-88ae6fe463dd .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

/*
  $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;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#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-lazyload-bg-image {
  display: none;
}

.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 {
  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;
}

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{background-attachment:scroll!important}}@media only screen and (min-width:1024px) and (max-height:1366px) and (-webkit-min-device-pixel-ratio:1.5) and (hover:none) and (orientation:landscape){.shg-box{background-attachment:scroll!important}}#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:#000;background-color:rgba(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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.shogun-lazyload-bg-image{display:none}.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{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.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}