.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-7026d2f1-902c-4d6a-a953-badb9c471b86 {
  background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}

#s-7026d2f1-902c-4d6a-a953-badb9c471b86 {
  background-image: url(https://i.shgcdn.com/43282816-665b-4d42-9e8f-3182321b467c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-7026d2f1-902c-4d6a-a953-badb9c471b86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7026d2f1-902c-4d6a-a953-badb9c471b86.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-41d3db57-085f-4715-a655-9d2206cfc7b7 {
  margin-left: 20%;
margin-right: 20%;
max-width: 1800px;
aspect-ratio: 4/3;
text-align: center;
background-color: rgba(23, 23, 23, 1);
}
@media (max-width: 767px){#s-41d3db57-085f-4715-a655-9d2206cfc7b7 {
  margin-left: 0%;
margin-right: 0%;
}
}






  #s-41d3db57-085f-4715-a655-9d2206cfc7b7 img.shogun-image {
    

    
    
    
  }


#s-41d3db57-085f-4715-a655-9d2206cfc7b7 .shogun-image-content {
  
    align-items: center;
  
}

#s-cd44584a-c773-4481-b901-0c3c9bb870c9 {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}








#s-cd44584a-c773-4481-b901-0c3c9bb870c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd44584a-c773-4481-b901-0c3c9bb870c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ee32739-079b-4970-82e9-13ecbb4d2c58 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 253, 250, 1);
}








#s-1ee32739-079b-4970-82e9-13ecbb4d2c58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ee32739-079b-4970-82e9-13ecbb4d2c58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-e3bdaa8a-1d2f-411e-b56f-5a36aaf5340f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
text-align: center;
background-color: rgba(255, 253, 250, 1);
}

#s-e3bdaa8a-1d2f-411e-b56f-5a36aaf5340f .shogun-heading-component h1 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.25em;
  letter-spacing: 1px;
  
}



#s-e2505e58-3e19-47d3-b2e0-c2369e757ef6 {
  min-height: 50px;
background-color: rgba(255, 253, 250, 1);
}








#s-e2505e58-3e19-47d3-b2e0-c2369e757ef6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2505e58-3e19-47d3-b2e0-c2369e757ef6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f54cf78f-462c-47bb-8bf7-9904055a9e1a {
  margin-left: 20%;
margin-right: 20%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
text-align: center;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-f54cf78f-462c-47bb-8bf7-9904055a9e1a {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-f54cf78f-462c-47bb-8bf7-9904055a9e1a {
  margin-left: 3%;
margin-right: 3%;
}
}
#s-f54cf78f-462c-47bb-8bf7-9904055a9e1a .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-fa4b9016-8532-4953-b0d5-eaa88ec7c702 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 8px;
padding-bottom: 8px;
text-align: center;
background-color: rgba(179, 224, 255, 1);
}

#s-fa4b9016-8532-4953-b0d5-eaa88ec7c702 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-fa4b9016-8532-4953-b0d5-eaa88ec7c702 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: 1px;
  
}


}
.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-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b2efd6c-a6e8-4438-99e6-0a5a4a4092a1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.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;
  height: inherit;
  position: relative;
}

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-2a2446e0-0064-47c3-838d-e3f3691114ec {
  max-width: 495px;
aspect-ratio: 495/700;
text-align: center;
}







  img.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
    
    
  }


.s-2a2446e0-0064-47c3-838d-e3f3691114ec .shogun-image-content {
  
    align-items: center;
  
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
    
    
  }


.s-2a2446e0-0064-47c3-838d-e3f3691114ec .shogun-image-content {
  
    align-items: center;
  
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
  box-sizing: border-box;
}




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





  img.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
    
    
  }


.s-2a2446e0-0064-47c3-838d-e3f3691114ec .shogun-image-content {
  
    align-items: center;
  
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
  box-sizing: border-box;
}




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





  img.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
    
    
  }


.s-2a2446e0-0064-47c3-838d-e3f3691114ec .shogun-image-content {
  
    align-items: center;
  
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
  box-sizing: border-box;
}




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





  img.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
    
    
  }


.s-2a2446e0-0064-47c3-838d-e3f3691114ec .shogun-image-content {
  
    align-items: center;
  
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a2446e0-0064-47c3-838d-e3f3691114ec.shogun-image {
  box-sizing: border-box;
}




}
#s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
  max-width: 481px;
aspect-ratio: 481/700;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }

    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-link {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
    width: 100%;
    height: auto;
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
    
    
  }


.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-content {
  
    align-items: center;
  
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
      --shg-aspect-ratio: calc(481/700); 
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
      position: relative;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }

    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-link {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
    width: 100%;
    height: auto;
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
    
    
  }


.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-content {
  
    align-items: center;
  
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
      --shg-aspect-ratio: calc(481/700); 
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
      position: relative;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }

    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-link {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
    width: 100%;
    height: auto;
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
    
    
  }


.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-content {
  
    align-items: center;
  
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
      --shg-aspect-ratio: calc(481/700); 
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
      position: relative;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }

    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-link {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
    width: 100%;
    height: auto;
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
    
    
  }


.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-content {
  
    align-items: center;
  
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
      --shg-aspect-ratio: calc(481/700); 
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
      position: relative;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }

    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-link {
      aspect-ratio: 481/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
    width: 100%;
    height: auto;
  }

  #s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
    
    
  }


.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf .shogun-image-content {
  
    align-items: center;
  
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf {
      --shg-aspect-ratio: calc(481/700); 
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container {
      position: relative;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83feb0c3-bff9-453f-b1d1-2f82b5d6b7bf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c {
  max-width: 496px;
aspect-ratio: 496/700;
text-align: center;
}
@media (min-width: 1200px){#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c {
  margin-left: 0%;
margin-right: 0%;
}
}






  img.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
    
    
  }


.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c .shogun-image-content {
  
    align-items: center;
  
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
    
    
  }


.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c .shogun-image-content {
  
    align-items: center;
  
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
  box-sizing: border-box;
}




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





  img.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
    
    
  }


.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c .shogun-image-content {
  
    align-items: center;
  
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
  box-sizing: border-box;
}




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





  img.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
    
    
  }


.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c .shogun-image-content {
  
    align-items: center;
  
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
  box-sizing: border-box;
}




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





  img.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
    
    
  }


.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c .shogun-image-content {
  
    align-items: center;
  
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eba189d5-3b15-4301-9bf3-6e0e5c82099c.shogun-image {
  box-sizing: border-box;
}




}
#s-8c9d49d7-2383-4b2f-8e29-f8d8acfa9129 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-8c9d49d7-2383-4b2f-8e29-f8d8acfa9129 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c9d49d7-2383-4b2f-8e29-f8d8acfa9129.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-8f5e4f5e-0fbf-46f9-969d-3641ab0f1659 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 30%;
padding-bottom: 10px;
padding-right: 30%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8f5e4f5e-0fbf-46f9-969d-3641ab0f1659 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-8f5e4f5e-0fbf-46f9-969d-3641ab0f1659 {
  padding-left: 3%;
padding-right: 3%;
}
}
#s-8f5e4f5e-0fbf-46f9-969d-3641ab0f1659 .shg-product-title-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: ;
}

#s-17c89ad0-bdf9-483d-9013-9f0f94a3d2e5 {
  text-align: center;
}

#s-17c89ad0-bdf9-483d-9013-9f0f94a3d2e5 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-17c89ad0-bdf9-483d-9013-9f0f94a3d2e5 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-17c89ad0-bdf9-483d-9013-9f0f94a3d2e5 .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;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 6px;
border-left-width: 6px;
border-bottom-width: 6px;
border-right-width: 6px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
opacity: 1;
}
#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e-root {
    text-align: center;
  }


#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e-root {
    text-align: center;
  }


#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e-root {
    text-align: center;
  }


#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e-root {
    text-align: center;
  }


#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e-root {
    text-align: center;
  }


#s-f698f8a3-42a2-469d-9a3a-d6bd65d0770e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}
#s-9055de3e-b323-4331-b120-7b4235ca740f {
  margin-top: -2px;
margin-bottom: -2px;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(255, 253, 250, 1);
}








#s-9055de3e-b323-4331-b120-7b4235ca740f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9055de3e-b323-4331-b120-7b4235ca740f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7ca1b449-075d-49ce-a81e-1bcd16b10a98 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 8px;
padding-bottom: 8px;
text-align: center;
background-color: rgba(255, 247, 200, 1);
}

#s-7ca1b449-075d-49ce-a81e-1bcd16b10a98 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-7ca1b449-075d-49ce-a81e-1bcd16b10a98 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 21px;
  
  letter-spacing: -1px;
  
}


}
#s-02b575d2-8c60-4f93-b43f-45a1f0b09c71 {
  margin-top: 10px;
margin-left: 5%;
margin-bottom: 10px;
margin-right: 5%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-02b575d2-8c60-4f93-b43f-45a1f0b09c71 {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-02b575d2-8c60-4f93-b43f-45a1f0b09c71 {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-02b575d2-8c60-4f93-b43f-45a1f0b09c71"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02b575d2-8c60-4f93-b43f-45a1f0b09c71"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-02b575d2-8c60-4f93-b43f-45a1f0b09c71"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-02b575d2-8c60-4f93-b43f-45a1f0b09c71"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-d40eee8a-eb42-4ee1-aedd-7eb727895458 {
  max-width: 496px;
aspect-ratio: 496/700;
text-align: center;
}







  img.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
    
    
  }


.s-d40eee8a-eb42-4ee1-aedd-7eb727895458 .shogun-image-content {
  
    align-items: center;
  
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
    
    
  }


.s-d40eee8a-eb42-4ee1-aedd-7eb727895458 .shogun-image-content {
  
    align-items: center;
  
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
  box-sizing: border-box;
}




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





  img.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
    
    
  }


.s-d40eee8a-eb42-4ee1-aedd-7eb727895458 .shogun-image-content {
  
    align-items: center;
  
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
  box-sizing: border-box;
}




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





  img.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
    
    
  }


.s-d40eee8a-eb42-4ee1-aedd-7eb727895458 .shogun-image-content {
  
    align-items: center;
  
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
  box-sizing: border-box;
}




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





  img.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
    
    
  }


.s-d40eee8a-eb42-4ee1-aedd-7eb727895458 .shogun-image-content {
  
    align-items: center;
  
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d40eee8a-eb42-4ee1-aedd-7eb727895458.shogun-image {
  box-sizing: border-box;
}




}
#s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
  max-width: 496px;
aspect-ratio: 496/700;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }

    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-link {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
    width: 100%;
    height: auto;
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
    
    
  }


.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-content {
  
    align-items: center;
  
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
      --shg-aspect-ratio: calc(496/700); 
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
      position: relative;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }

    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-link {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
    width: 100%;
    height: auto;
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
    
    
  }


.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-content {
  
    align-items: center;
  
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
      --shg-aspect-ratio: calc(496/700); 
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
      position: relative;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }

    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-link {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
    width: 100%;
    height: auto;
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
    
    
  }


.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-content {
  
    align-items: center;
  
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
      --shg-aspect-ratio: calc(496/700); 
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
      position: relative;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }

    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-link {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
    width: 100%;
    height: auto;
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
    
    
  }


.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-content {
  
    align-items: center;
  
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
      --shg-aspect-ratio: calc(496/700); 
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
      position: relative;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }

    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-link {
      aspect-ratio: 496/700;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
    width: 100%;
    height: auto;
  }

  #s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
    
    
  }


.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d .shogun-image-content {
  
    align-items: center;
  
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d {
      --shg-aspect-ratio: calc(496/700); 
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container {
      position: relative;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a3248671-ffb1-4be0-83e6-f4b690d7c65d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 {
  max-width: 500px;
aspect-ratio: 500/700;
text-align: center;
}
@media (min-width: 1200px){#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 {
  margin-left: 0%;
margin-right: 0%;
}
}






  img.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
    
    
  }


.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
  box-sizing: border-box;
}




@media (min-width: 1200px){





  img.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
    
    
  }


.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
  box-sizing: border-box;
}




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





  img.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
    
    
  }


.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
  box-sizing: border-box;
}




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





  img.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
    
    
  }


.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
  box-sizing: border-box;
}




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





  img.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
    
    
  }


.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6 .shogun-image-content {
  
    align-items: center;
  
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89ec4fbf-cdd8-4338-8b24-f3c22dbc8dd6.shogun-image {
  box-sizing: border-box;
}




}
#s-a0e890ed-c65f-4370-9349-e6697154bdc9 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-a0e890ed-c65f-4370-9349-e6697154bdc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0e890ed-c65f-4370-9349-e6697154bdc9.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e28ddc4f-298e-4773-b750-a40b5b57d0b0 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 30%;
padding-bottom: 10px;
padding-right: 30%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-e28ddc4f-298e-4773-b750-a40b5b57d0b0 {
  padding-left: 20%;
padding-right: 20%;
}
}@media (max-width: 767px){#s-e28ddc4f-298e-4773-b750-a40b5b57d0b0 {
  padding-left: 3%;
padding-right: 3%;
}
}
#s-e28ddc4f-298e-4773-b750-a40b5b57d0b0 .shg-product-title-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 19px;
  line-height: ;
  letter-spacing: ;
}

#s-40a6f91e-0c7f-4815-aa5a-985ac9e5e0ad {
  text-align: center;
}

#s-40a6f91e-0c7f-4815-aa5a-985ac9e5e0ad .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-40a6f91e-0c7f-4815-aa5a-985ac9e5e0ad .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-40a6f91e-0c7f-4815-aa5a-985ac9e5e0ad .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-917cba62-70bc-4caa-8797-d6e40274b504 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 6px;
border-left-width: 6px;
border-bottom-width: 6px;
border-right-width: 6px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
opacity: 1;
}
#s-917cba62-70bc-4caa-8797-d6e40274b504:hover {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-917cba62-70bc-4caa-8797-d6e40274b504:active {background-color: rgba(0, 0, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-917cba62-70bc-4caa-8797-d6e40274b504-root {
    text-align: center;
  }


#s-917cba62-70bc-4caa-8797-d6e40274b504.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-917cba62-70bc-4caa-8797-d6e40274b504-root {
    text-align: center;
  }


#s-917cba62-70bc-4caa-8797-d6e40274b504.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-917cba62-70bc-4caa-8797-d6e40274b504-root {
    text-align: center;
  }


#s-917cba62-70bc-4caa-8797-d6e40274b504.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-917cba62-70bc-4caa-8797-d6e40274b504-root {
    text-align: center;
  }


#s-917cba62-70bc-4caa-8797-d6e40274b504.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-917cba62-70bc-4caa-8797-d6e40274b504-root {
    text-align: center;
  }


#s-917cba62-70bc-4caa-8797-d6e40274b504.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  
  
  display:  inline-block ;
}
}
#s-ff00f3f0-423c-48f8-b1e7-7746fb8d0ea4 {
  margin-top: -2px;
margin-bottom: -2px;
padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(255, 253, 250, 1);
}








#s-ff00f3f0-423c-48f8-b1e7-7746fb8d0ea4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff00f3f0-423c-48f8-b1e7-7746fb8d0ea4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71ebf0dc-6900-4cde-a8d5-572ce7702abc {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
padding-top: 8px;
padding-bottom: 8px;
text-align: center;
background-color: rgba(255, 182, 187, 1);
}

#s-71ebf0dc-6900-4cde-a8d5-572ce7702abc .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 24px;
  
  letter-spacing: -1px;
  
}


@media (max-width: 767px){#s-71ebf0dc-6900-4cde-a8d5-572ce7702abc .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 22px;
  
  letter-spacing: -1px;
  
}


}
#s-9ae521d1-d561-403c-b84f-40cf147b6402 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}








#s-9ae521d1-d561-403c-b84f-40cf147b6402 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ae521d1-d561-403c-b84f-40cf147b6402.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d2cdd8b2-b821-43a8-b44f-3578529b675c {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
@media (min-width: 1200px){#s-d2cdd8b2-b821-43a8-b44f-3578529b675c {
  margin-left: 20%;
margin-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d2cdd8b2-b821-43a8-b44f-3578529b675c {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-d2cdd8b2-b821-43a8-b44f-3578529b675c {
  margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-d2cdd8b2-b821-43a8-b44f-3578529b675c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-d2cdd8b2-b821-43a8-b44f-3578529b675c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-d2cdd8b2-b821-43a8-b44f-3578529b675c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-d2cdd8b2-b821-43a8-b44f-3578529b675c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (max-width: 767px){#s-83e3e9cd-622d-4e62-8ff9-b821a539eea3 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
.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-85739109-449a-4f65-be15-8a5706f104f9 {
  text-align: left;
}



.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-85739109-449a-4f65-be15-8a5706f104f9 img.shogun-image {
  width: 100%;
}



}
#s-8770e59a-5b97-40a3-a51d-a8a52215cb50 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8770e59a-5b97-40a3-a51d-a8a52215cb50 .shg-product-title-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-162ed40f-4e65-4191-9eae-e6a2e9365f64 {
  text-align: center;
}

#s-162ed40f-4e65-4191-9eae-e6a2e9365f64 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-162ed40f-4e65-4191-9eae-e6a2e9365f64 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-162ed40f-4e65-4191-9eae-e6a2e9365f64 .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 (max-width: 767px){#s-a3dab547-62ff-4346-8293-624b96c19f17 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-306c70a4-ef0e-425e-afc9-d2525281d50e {
  text-align: left;
}



.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-306c70a4-ef0e-425e-afc9-d2525281d50e img.shogun-image {
  width: 100%;
}



}
#s-4cb810ad-4001-4803-a309-7309cbed2837 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4cb810ad-4001-4803-a309-7309cbed2837 .shg-product-title-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-6cd50664-e99a-4885-8dd9-f36e378cc670 {
  text-align: center;
}

#s-6cd50664-e99a-4885-8dd9-f36e378cc670 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6cd50664-e99a-4885-8dd9-f36e378cc670 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6cd50664-e99a-4885-8dd9-f36e378cc670 .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-592bf3c1-33df-4fd2-8bb6-5a69a4760710 {
  text-align: left;
}



.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-592bf3c1-33df-4fd2-8bb6-5a69a4760710 img.shogun-image {
  width: 100%;
}



}
#s-162b101b-c063-418d-b38b-f6eb305b8fa9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-162b101b-c063-418d-b38b-f6eb305b8fa9 .shg-product-title-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-1975c01e-7c20-4b2f-b966-90266ba4998e {
  text-align: center;
}

#s-1975c01e-7c20-4b2f-b966-90266ba4998e .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1975c01e-7c20-4b2f-b966-90266ba4998e .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1975c01e-7c20-4b2f-b966-90266ba4998e .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-4b4916df-e17f-44c3-bdca-16aa76346163 {
  margin-top: 0px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}
@media (min-width: 1200px){#s-4b4916df-e17f-44c3-bdca-16aa76346163 {
  margin-left: 20%;
margin-right: 20%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4b4916df-e17f-44c3-bdca-16aa76346163 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-4b4916df-e17f-44c3-bdca-16aa76346163 {
  margin-left: 0%;
margin-right: 0%;
}
}
@media (min-width: 0px) {
[id="s-4b4916df-e17f-44c3-bdca-16aa76346163"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-4b4916df-e17f-44c3-bdca-16aa76346163"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-4b4916df-e17f-44c3-bdca-16aa76346163"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-4b4916df-e17f-44c3-bdca-16aa76346163"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (max-width: 767px){#s-de5f90e9-3b4d-4890-a117-8daf7ce4b25f {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 {
  text-align: left;
}



.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3f72a10-d406-4ba9-b3ee-a5853eebbd14 img.shogun-image {
  width: 100%;
}



}
#s-e000b4eb-81cd-44ee-a0ac-d8ab7c4e3331 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e000b4eb-81cd-44ee-a0ac-d8ab7c4e3331 .shg-product-title-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-5da0709a-9da5-4ba3-bf3d-d4fa900a7ac8 {
  text-align: center;
}

#s-5da0709a-9da5-4ba3-bf3d-d4fa900a7ac8 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5da0709a-9da5-4ba3-bf3d-d4fa900a7ac8 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-5da0709a-9da5-4ba3-bf3d-d4fa900a7ac8 .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 (max-width: 767px){#s-9ea7672b-af64-46cc-a774-afac1a8340a1 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 {
  text-align: left;
}



.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-515f24d0-1288-4b04-aedd-5dbac3cebe17 img.shogun-image {
  width: 100%;
}



}
#s-0b1c7105-824b-4e61-9dea-51ec272b9f3c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0b1c7105-824b-4e61-9dea-51ec272b9f3c .shg-product-title-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-90b03cb9-7b76-44c7-9a21-4f34b59bbea5 {
  text-align: center;
}

#s-90b03cb9-7b76-44c7-9a21-4f34b59bbea5 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-90b03cb9-7b76-44c7-9a21-4f34b59bbea5 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-90b03cb9-7b76-44c7-9a21-4f34b59bbea5 .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-32c20390-019d-4393-ac73-88ded18a4e06 {
  text-align: left;
}



.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c20390-019d-4393-ac73-88ded18a4e06 img.shogun-image {
  width: 100%;
}



}
#s-ba9829fc-c826-4a1c-89d8-effbe0bc6d5e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ba9829fc-c826-4a1c-89d8-effbe0bc6d5e .shg-product-title-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-287bcb67-71a2-4ba3-9fa2-2fa55f467cd5 {
  text-align: center;
}

#s-287bcb67-71a2-4ba3-9fa2-2fa55f467cd5 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-287bcb67-71a2-4ba3-9fa2-2fa55f467cd5 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-287bcb67-71a2-4ba3-9fa2-2fa55f467cd5 .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-66fda297-f22c-448e-a168-ec9a1b3facc9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(255, 182, 187, 1);
}

#s-66fda297-f22c-448e-a168-ec9a1b3facc9 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-66fda297-f22c-448e-a168-ec9a1b3facc9 .shogun-heading-component h2 {
  color: rgba(51, 51, 51, 1);
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  
}


}
#s-86f1e425-9ca1-4bda-8552-81b957fbcbd9 {
  min-height: 50px;
}








#s-86f1e425-9ca1-4bda-8552-81b957fbcbd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86f1e425-9ca1-4bda-8552-81b957fbcbd9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2d12ca34-ec2c-44f3-a722-9e3174e08625 {
  margin-left: 10%;
margin-right: 10%;
}
@media (max-width: 767px){#s-2d12ca34-ec2c-44f3-a722-9e3174e08625 {
  margin-left: 2%;
margin-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-2d12ca34-ec2c-44f3-a722-9e3174e08625"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2d12ca34-ec2c-44f3-a722-9e3174e08625"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2d12ca34-ec2c-44f3-a722-9e3174e08625"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2d12ca34-ec2c-44f3-a722-9e3174e08625"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-660d5c5a-a764-454c-948d-f19f156fbea0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-660d5c5a-a764-454c-948d-f19f156fbea0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-fdcc6ffe-d14f-413f-8f4a-d597a0c45437 {
  max-width: 1040px;
aspect-ratio: 1040/350;
text-align: center;
}







  #s-fdcc6ffe-d14f-413f-8f4a-d597a0c45437 img.shogun-image {
    

    
    
    
  }


#s-fdcc6ffe-d14f-413f-8f4a-d597a0c45437 .shogun-image-content {
  
    align-items: center;
  
}

#s-b8cfc9b6-b863-4faf-8ad1-f175df90781d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b8cfc9b6-b863-4faf-8ad1-f175df90781d .shogun-heading-component h3 {
  color: #000;
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-6a29c77d-c706-4653-858a-1e5d4653c9fa {
  max-width: 1040px;
aspect-ratio: 1040/350;
text-align: center;
}







  #s-6a29c77d-c706-4653-858a-1e5d4653c9fa img.shogun-image {
    

    
    
    
  }


#s-6a29c77d-c706-4653-858a-1e5d4653c9fa .shogun-image-content {
  
    align-items: center;
  
}

#s-feed1ca5-aa95-409f-acc1-5941514923d2 {
  margin-left: 10%;
margin-right: 10%;
}
@media (max-width: 767px){#s-feed1ca5-aa95-409f-acc1-5941514923d2 {
  margin-left: 2%;
margin-right: 2%;
}
}
@media (min-width: 0px) {
[id="s-feed1ca5-aa95-409f-acc1-5941514923d2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-feed1ca5-aa95-409f-acc1-5941514923d2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-feed1ca5-aa95-409f-acc1-5941514923d2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-feed1ca5-aa95-409f-acc1-5941514923d2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-69c84990-b525-44d9-82f6-29ad6b168943 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69c84990-b525-44d9-82f6-29ad6b168943 .shogun-heading-component h3 {
  color: #000;
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-9839a71c-0dc8-471e-b54d-267f264fec2a {
  max-width: 1040px;
aspect-ratio: 1040/350;
text-align: center;
}





  #s-9839a71c-0dc8-471e-b54d-267f264fec2a img.shogun-image,
  #s-9839a71c-0dc8-471e-b54d-267f264fec2a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9839a71c-0dc8-471e-b54d-267f264fec2a {
    width: 100%;
    height: auto;
  }



  #s-9839a71c-0dc8-471e-b54d-267f264fec2a img.shogun-image {
    

    
    
    
  }


#s-9839a71c-0dc8-471e-b54d-267f264fec2a .shogun-image-content {
  
    align-items: center;
  
}

#s-6cae9f65-f4c0-4d83-a5a7-60f1976600f6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6cae9f65-f4c0-4d83-a5a7-60f1976600f6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  900 ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d051c62d-2bb0-4af3-ac16-cd30fe8e374e {
  max-width: 1040px;
aspect-ratio: 1040/350;
text-align: center;
}







  #s-d051c62d-2bb0-4af3-ac16-cd30fe8e374e img.shogun-image {
    

    
    
    
  }


#s-d051c62d-2bb0-4af3-ac16-cd30fe8e374e .shogun-image-content {
  
    align-items: center;
  
}

/*
  $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:before,.shg-c:after{content:" ";display:table}.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:#000;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}[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}
