.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-34415654-384f-4e67-bb18-c231a55fc6f2 {
  min-height: 50px;
}








#s-34415654-384f-4e67-bb18-c231a55fc6f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34415654-384f-4e67-bb18-c231a55fc6f2.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-2c9f01f5-3579-45ae-88b4-3f7ae2c8cb22 {
  padding-left: 2%;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-2c9f01f5-3579-45ae-88b4-3f7ae2c8cb22"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c9f01f5-3579-45ae-88b4-3f7ae2c8cb22"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2c9f01f5-3579-45ae-88b4-3f7ae2c8cb22"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c9f01f5-3579-45ae-88b4-3f7ae2c8cb22"] > .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;
  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-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
  max-width: 4000px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
    width: 100%;
    height: auto;
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
    
    
  }


.s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
      position: relative;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
    width: 100%;
    height: auto;
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
    
    
  }


.s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
      position: relative;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 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-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
    width: 100%;
    height: auto;
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
    
    
  }


.s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
      position: relative;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 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-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
    width: 100%;
    height: auto;
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
    
    
  }


.s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
      position: relative;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
    width: 100%;
    height: auto;
  }

  #s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
    
    
  }


.s-268d669b-cde0-4bf3-9e84-804796c6a7b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container {
      position: relative;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-268d669b-cde0-4bf3-9e84-804796c6a7b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 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: ;
  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-479dc543-1267-4c81-b43b-37ac1a2ab66a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-479dc543-1267-4c81-b43b-37ac1a2ab66a .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
}

#s-b39445f8-3765-45e0-a628-217b8c29077d {
  max-width: 200px;
aspect-ratio: 325/141;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d {
    width: 100%;
    height: auto;
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
    
    
  }


.s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-content {
  
    align-items: center;
  
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b39445f8-3765-45e0-a628-217b8c29077d {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
      position: relative;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d {
    width: 100%;
    height: auto;
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
    
    
  }


.s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-content {
  
    align-items: center;
  
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b39445f8-3765-45e0-a628-217b8c29077d {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
      position: relative;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d 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-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d {
    width: 100%;
    height: auto;
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
    
    
  }


.s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-content {
  
    align-items: center;
  
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b39445f8-3765-45e0-a628-217b8c29077d {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
      position: relative;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d 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-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d {
    width: 100%;
    height: auto;
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
    
    
  }


.s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-content {
  
    align-items: center;
  
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b39445f8-3765-45e0-a628-217b8c29077d {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
      position: relative;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b39445f8-3765-45e0-a628-217b8c29077d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d {
    width: 100%;
    height: auto;
  }

  #s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
    
    
  }


.s-b39445f8-3765-45e0-a628-217b8c29077d .shogun-image-content {
  
    align-items: center;
  
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b39445f8-3765-45e0-a628-217b8c29077d {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container {
      position: relative;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b39445f8-3765-45e0-a628-217b8c29077d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-982a9452-bf6e-43ca-9acc-64d6dbe2d335 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 2%;
padding-right: 2%;
}

#s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
  max-width: 195px;
aspect-ratio: 195/130;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
    width: 100%;
    height: auto;
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
    
    
  }


.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
      position: relative;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
    width: 100%;
    height: auto;
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
    
    
  }


.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
      position: relative;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 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-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
    width: 100%;
    height: auto;
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
    
    
  }


.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
      position: relative;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 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-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
    width: 100%;
    height: auto;
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
    
    
  }


.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
      position: relative;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
    width: 100%;
    height: auto;
  }

  #s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
    
    
  }


.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 .shogun-image-content {
  
    align-items: center;
  
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container {
      position: relative;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a5e35ffc-5b62-4db7-8386-9e7fce1cf007 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@media (min-width: 0px) {
[id="s-2553a685-091f-4f9e-b108-7fdeeb53ede1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2553a685-091f-4f9e-b108-7fdeeb53ede1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2553a685-091f-4f9e-b108-7fdeeb53ede1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2553a685-091f-4f9e-b108-7fdeeb53ede1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-af0d5ed1-9407-4926-8394-9de680ef3174 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-af0d5ed1-9407-4926-8394-9de680ef3174 .shg-product-quantity-wrapper {
  display: flex;
}

#s-af0d5ed1-9407-4926-8394-9de680ef3174 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-af0d5ed1-9407-4926-8394-9de680ef3174 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-af0d5ed1-9407-4926-8394-9de680ef3174 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-af0d5ed1-9407-4926-8394-9de680ef3174 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42 {
  margin-top: 11px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(254, 89, 109, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42:hover {background-color: rgba(143, 216, 254, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-5b7ce30f-c9ea-4d42-af23-fcc58261ca42.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



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

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

@media (min-width: 1200px){#s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3 {
  display: unset;
}
#s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3, #wrap-s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3 { display: unset !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3 {
  display: unset;
}
#s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3, #wrap-s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3 { display: unset !important; }}
#s-7b2a074e-75e6-4ed5-a3d9-f7b33351e2c3 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-1e027129-083d-47a1-aa02-8d73c3084b84 {
  max-width: 3888px;
aspect-ratio: 3888/698;
text-align: center;
}
@media (max-width: 767px){#s-1e027129-083d-47a1-aa02-8d73c3084b84 {
  display: none;
}
#s-1e027129-083d-47a1-aa02-8d73c3084b84, #wrap-s-1e027129-083d-47a1-aa02-8d73c3084b84 { display: none !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }

    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-link {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 {
    width: 100%;
    height: auto;
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
    
    
  }


.s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e027129-083d-47a1-aa02-8d73c3084b84 {
      --shg-aspect-ratio: calc(3888/698); 
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
      position: relative;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }

    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-link {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 {
    width: 100%;
    height: auto;
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
    
    
  }


.s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e027129-083d-47a1-aa02-8d73c3084b84 {
      --shg-aspect-ratio: calc(3888/698); 
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
      position: relative;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84 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-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }

    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-link {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 {
    width: 100%;
    height: auto;
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
    
    
  }


.s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e027129-083d-47a1-aa02-8d73c3084b84 {
      --shg-aspect-ratio: calc(3888/698); 
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
      position: relative;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84 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-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }

    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-link {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 {
    width: 100%;
    height: auto;
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
    
    
  }


.s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e027129-083d-47a1-aa02-8d73c3084b84 {
      --shg-aspect-ratio: calc(3888/698); 
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
      position: relative;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }

    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-link {
      aspect-ratio: 3888/698;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1e027129-083d-47a1-aa02-8d73c3084b84 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 {
    width: 100%;
    height: auto;
  }

  #s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
    
    
  }


.s-1e027129-083d-47a1-aa02-8d73c3084b84 .shogun-image-content {
  
    align-items: center;
  
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1e027129-083d-47a1-aa02-8d73c3084b84 {
      --shg-aspect-ratio: calc(3888/698); 
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container {
      position: relative;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1e027129-083d-47a1-aa02-8d73c3084b84 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
  max-width: 1534px;
aspect-ratio: 1534/1304;
text-align: center;
}
@media (min-width: 1200px){#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
  display: none;
}
#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975, #wrap-s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
  display: none;
}
#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975, #wrap-s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
  display: none;
}
#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975, #wrap-s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 { display: none !important; }}@media (max-width: 767px){#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
  display: unset;
}
#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975, #wrap-s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 { display: unset !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }

    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-link {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
    width: 100%;
    height: auto;
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
    
    
  }


.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-content {
  
    align-items: center;
  
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
      --shg-aspect-ratio: calc(1534/1304); 
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
      position: relative;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }

    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-link {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
    width: 100%;
    height: auto;
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
    
    
  }


.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-content {
  
    align-items: center;
  
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
      --shg-aspect-ratio: calc(1534/1304); 
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
      position: relative;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 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-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }

    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-link {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
    width: 100%;
    height: auto;
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
    
    
  }


.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-content {
  
    align-items: center;
  
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
      --shg-aspect-ratio: calc(1534/1304); 
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
      position: relative;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 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-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }

    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-link {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
    width: 100%;
    height: auto;
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
    
    
  }


.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-content {
  
    align-items: center;
  
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
      --shg-aspect-ratio: calc(1534/1304); 
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
      position: relative;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }

    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-link {
      aspect-ratio: 1534/1304;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
    width: 100%;
    height: auto;
  }

  #s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
    
    
  }


.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 .shogun-image-content {
  
    align-items: center;
  
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 {
      --shg-aspect-ratio: calc(1534/1304); 
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container {
      position: relative;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4d93b991-c6d6-404f-adf0-bf6b3ffc4975 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@media (min-width: 1200px){#s-1a9ee649-189b-4515-8ad2-6b282dc05111 {
  display: unset;
}
#s-1a9ee649-189b-4515-8ad2-6b282dc05111, #wrap-s-1a9ee649-189b-4515-8ad2-6b282dc05111 { display: unset !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1a9ee649-189b-4515-8ad2-6b282dc05111 {
  display: unset;
}
#s-1a9ee649-189b-4515-8ad2-6b282dc05111, #wrap-s-1a9ee649-189b-4515-8ad2-6b282dc05111 { display: unset !important; }}
#s-1a9ee649-189b-4515-8ad2-6b282dc05111 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-cb6d07fa-f675-4df0-8f8e-c005a665c689 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.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-45a2ad8b-460a-4c03-80dc-fba235923304 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-45a2ad8b-460a-4c03-80dc-fba235923304 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



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

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px){#s-a8dcbe7d-653f-4747-8d3f-38181f238a5f {
  display: none;
}
#s-a8dcbe7d-653f-4747-8d3f-38181f238a5f, #wrap-s-a8dcbe7d-653f-4747-8d3f-38181f238a5f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a8dcbe7d-653f-4747-8d3f-38181f238a5f {
  display: none;
}
#s-a8dcbe7d-653f-4747-8d3f-38181f238a5f, #wrap-s-a8dcbe7d-653f-4747-8d3f-38181f238a5f { display: none !important; }}
.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-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 {
  text-align: left;
}



.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f7d6f1d-4532-4f2c-aabc-d56ee5281345 img.shogun-image {
  width: 100%;
}



}
#s-1256f12b-3d0f-4d0c-8af6-1bc419a922a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1256f12b-3d0f-4d0c-8af6-1bc419a922a7 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-bab59742-3a9b-40e3-8bae-edaf680adb76 {
  text-align: center;
}

#s-bab59742-3a9b-40e3-8bae-edaf680adb76 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-bab59742-3a9b-40e3-8bae-edaf680adb76 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-bab59742-3a9b-40e3-8bae-edaf680adb76 .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-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 {
  text-align: left;
}



.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7dfe10ba-d81d-4306-bfc7-b785d8c215b6 img.shogun-image {
  width: 100%;
}



}
#s-74a07479-a550-425b-b17b-6c9d25a07372 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-74a07479-a550-425b-b17b-6c9d25a07372 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-45495e92-2542-473a-9992-6b947b3136ac {
  text-align: center;
}

#s-45495e92-2542-473a-9992-6b947b3136ac .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-45495e92-2542-473a-9992-6b947b3136ac .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-45495e92-2542-473a-9992-6b947b3136ac .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-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 {
  text-align: left;
}



.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbcdf7c7-8130-496a-a5ef-ae75a43b4f19 img.shogun-image {
  width: 100%;
}



}
#s-189ce4e8-995c-4d03-8034-164fdf4e86d9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-189ce4e8-995c-4d03-8034-164fdf4e86d9 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-cc24ba10-6e38-423a-9d1b-ac7eebd56cfb {
  text-align: center;
}

#s-cc24ba10-6e38-423a-9d1b-ac7eebd56cfb .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cc24ba10-6e38-423a-9d1b-ac7eebd56cfb .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-cc24ba10-6e38-423a-9d1b-ac7eebd56cfb .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-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 {
  text-align: left;
}



.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c71157fc-40cb-40fe-b745-adc9ed8dfaf2 img.shogun-image {
  width: 100%;
}



}
#s-425761a8-ba84-4957-b467-39b9b4b1704c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-425761a8-ba84-4957-b467-39b9b4b1704c .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-d6312a62-392f-4f53-866c-0871fb8a002d {
  text-align: center;
}

#s-d6312a62-392f-4f53-866c-0871fb8a002d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d6312a62-392f-4f53-866c-0871fb8a002d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-d6312a62-392f-4f53-866c-0871fb8a002d .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-5479f333-3c8b-435b-9450-1cee74a22366 {
  text-align: left;
}



.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5479f333-3c8b-435b-9450-1cee74a22366 img.shogun-image {
  width: 100%;
}



}
#s-1007a010-0e4a-41fe-9e7b-ad320115db8a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1007a010-0e4a-41fe-9e7b-ad320115db8a .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-49a9df5a-bc0e-45e4-b0ca-4450ca3c4510 {
  text-align: center;
}

#s-49a9df5a-bc0e-45e4-b0ca-4450ca3c4510 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-49a9df5a-bc0e-45e4-b0ca-4450ca3c4510 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-49a9df5a-bc0e-45e4-b0ca-4450ca3c4510 .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-9f42f996-0025-4858-8303-55ba79b8ca60 {
  text-align: left;
}



.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9f42f996-0025-4858-8303-55ba79b8ca60 img.shogun-image {
  width: 100%;
}



}
#s-bf30fc5c-cba6-4388-9cc3-44756fbc58a1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf30fc5c-cba6-4388-9cc3-44756fbc58a1 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-1272b60e-0940-4259-ac4b-8655b76fd27f {
  text-align: center;
}

#s-1272b60e-0940-4259-ac4b-8655b76fd27f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1272b60e-0940-4259-ac4b-8655b76fd27f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-1272b60e-0940-4259-ac4b-8655b76fd27f .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: 768px) and (max-width: 991px){#s-3974540c-3f9b-4bd7-a1cf-7ae91d51426f {
  display: none;
}
#s-3974540c-3f9b-4bd7-a1cf-7ae91d51426f, #wrap-s-3974540c-3f9b-4bd7-a1cf-7ae91d51426f { display: none !important; }}@media (max-width: 767px){#s-3974540c-3f9b-4bd7-a1cf-7ae91d51426f {
  display: none;
}
#s-3974540c-3f9b-4bd7-a1cf-7ae91d51426f, #wrap-s-3974540c-3f9b-4bd7-a1cf-7ae91d51426f { display: none !important; }}
#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 {
  text-align: left;
}



.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accfdcfd-6b95-4ca6-a811-f38d9c403609 img.shogun-image {
  width: 100%;
}



}
#s-a9131ef5-feb5-4cfd-8398-2bee8896a6a8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a9131ef5-feb5-4cfd-8398-2bee8896a6a8 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-c739c602-9da8-419a-9d83-b7f99110ee3b {
  text-align: center;
}

#s-c739c602-9da8-419a-9d83-b7f99110ee3b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c739c602-9da8-419a-9d83-b7f99110ee3b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-c739c602-9da8-419a-9d83-b7f99110ee3b .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-4611c322-8efd-4912-9de8-8fec2605044d {
  text-align: left;
}



.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4611c322-8efd-4912-9de8-8fec2605044d img.shogun-image {
  width: 100%;
}



}
#s-2e3c840e-253d-42ae-8e93-23d61e2339fb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2e3c840e-253d-42ae-8e93-23d61e2339fb .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-9fbf0d03-e5ee-4a37-9e11-72b8da6a2c31 {
  text-align: center;
}

#s-9fbf0d03-e5ee-4a37-9e11-72b8da6a2c31 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9fbf0d03-e5ee-4a37-9e11-72b8da6a2c31 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-9fbf0d03-e5ee-4a37-9e11-72b8da6a2c31 .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-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 {
  text-align: left;
}



.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ec98cc0e-8fca-4c3a-9d19-96987b93dc56 img.shogun-image {
  width: 100%;
}



}
#s-7c08d4ae-7ed1-4745-9ed8-63abb62d7fb3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7c08d4ae-7ed1-4745-9ed8-63abb62d7fb3 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-0cf9e7f9-6017-49b6-adba-92ad06981639 {
  text-align: center;
}

#s-0cf9e7f9-6017-49b6-adba-92ad06981639 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0cf9e7f9-6017-49b6-adba-92ad06981639 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-0cf9e7f9-6017-49b6-adba-92ad06981639 .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-887e8bb7-b674-4ff6-9597-515bd0bd0320 {
  text-align: left;
}



.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-887e8bb7-b674-4ff6-9597-515bd0bd0320 img.shogun-image {
  width: 100%;
}



}
#s-4a7e999a-58f4-4d54-a69e-6711e0f798c9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4a7e999a-58f4-4d54-a69e-6711e0f798c9 .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-e12025b1-d41e-4bca-8719-379617c6d944 {
  text-align: center;
}

#s-e12025b1-d41e-4bca-8719-379617c6d944 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e12025b1-d41e-4bca-8719-379617c6d944 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-e12025b1-d41e-4bca-8719-379617c6d944 .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-f785c2a7-e22f-4e0f-84cb-825fe424a890 {
  text-align: left;
}



.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f785c2a7-e22f-4e0f-84cb-825fe424a890 img.shogun-image {
  width: 100%;
}



}
#s-445f4a47-98bf-4d67-a5bc-9c759c5925ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-445f4a47-98bf-4d67-a5bc-9c759c5925ac .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-da8d73a3-e338-4296-82a3-5acbf8a5a55a {
  text-align: center;
}

#s-da8d73a3-e338-4296-82a3-5acbf8a5a55a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-da8d73a3-e338-4296-82a3-5acbf8a5a55a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-da8d73a3-e338-4296-82a3-5acbf8a5a55a .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-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 {
  text-align: left;
}



.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ad98787d-8cd6-41eb-8f25-c7b40a8d38a8 img.shogun-image {
  width: 100%;
}



}
#s-ad7a0d7c-3cc4-4b83-87dc-904199d9540b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad7a0d7c-3cc4-4b83-87dc-904199d9540b .shg-product-title-component h3 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-40796bed-c50a-4f8e-a254-325e5d59242e {
  text-align: center;
}

#s-40796bed-c50a-4f8e-a254-325e5d59242e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-40796bed-c50a-4f8e-a254-325e5d59242e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-40796bed-c50a-4f8e-a254-325e5d59242e .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-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3 {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(254, 89, 109, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3:hover {background-color: rgba(143, 216, 254, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3:active {background-color: rgba(254, 89, 109, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3-root {
    text-align: center;
  }


#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3-root {
    text-align: center;
  }


#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3-root {
    text-align: center;
  }


#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3-root {
    text-align: center;
  }


#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3-root {
    text-align: center;
  }


#s-d82848b2-d1ad-48c3-93dc-c85eb84dc9d3.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}
@media (min-width: 1200px){#s-9946ec1b-30bf-4851-b58f-9613a7cc38d0 {
  display: none;
}
#s-9946ec1b-30bf-4851-b58f-9613a7cc38d0, #wrap-s-9946ec1b-30bf-4851-b58f-9613a7cc38d0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9946ec1b-30bf-4851-b58f-9613a7cc38d0 {
  display: none;
}
#s-9946ec1b-30bf-4851-b58f-9613a7cc38d0, #wrap-s-9946ec1b-30bf-4851-b58f-9613a7cc38d0 { display: none !important; }}
#s-9946ec1b-30bf-4851-b58f-9613a7cc38d0 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 {
  display: none;
}
#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778, #wrap-s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 {
  display: none;
}
#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778, #wrap-s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 { display: none !important; }}
#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 .shg-sld-nav-button.shg-sld-left,
#s-0ca1260a-9e6e-460d-834d-9e1b9e30a778 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-a000c885-b6cf-4005-81f9-5c4078a723b9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a000c885-b6cf-4005-81f9-5c4078a723b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a000c885-b6cf-4005-81f9-5c4078a723b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a000c885-b6cf-4005-81f9-5c4078a723b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
  max-width: 862px;
aspect-ratio: 862/1166;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
    width: 100%;
    height: auto;
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
    
    
  }


.s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
      position: relative;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
    width: 100%;
    height: auto;
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
    
    
  }


.s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
      position: relative;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 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-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
    width: 100%;
    height: auto;
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
    
    
  }


.s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
      position: relative;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 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-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
    width: 100%;
    height: auto;
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
    
    
  }


.s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
      position: relative;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
    width: 100%;
    height: auto;
  }

  #s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
    
    
  }


.s-e484b4a2-7b54-495e-ad4f-394451f855b0 .shogun-image-content {
  
    align-items: center;
  
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container {
      position: relative;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e484b4a2-7b54-495e-ad4f-394451f855b0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-eed89168-c957-4b01-a724-2bddfc248896 {
  max-width: 862px;
aspect-ratio: 862/1166;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 {
    width: 100%;
    height: auto;
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
    
    
  }


.s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-content {
  
    align-items: center;
  
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eed89168-c957-4b01-a724-2bddfc248896 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
      position: relative;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 {
    width: 100%;
    height: auto;
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
    
    
  }


.s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-content {
  
    align-items: center;
  
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eed89168-c957-4b01-a724-2bddfc248896 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
      position: relative;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896 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-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 {
    width: 100%;
    height: auto;
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
    
    
  }


.s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-content {
  
    align-items: center;
  
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eed89168-c957-4b01-a724-2bddfc248896 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
      position: relative;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896 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-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 {
    width: 100%;
    height: auto;
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
    
    
  }


.s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-content {
  
    align-items: center;
  
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eed89168-c957-4b01-a724-2bddfc248896 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
      position: relative;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }

    #s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-link {
      aspect-ratio: 862/1166;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eed89168-c957-4b01-a724-2bddfc248896 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 {
    width: 100%;
    height: auto;
  }

  #s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
    
    
  }


.s-eed89168-c957-4b01-a724-2bddfc248896 .shogun-image-content {
  
    align-items: center;
  
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eed89168-c957-4b01-a724-2bddfc248896 {
      --shg-aspect-ratio: calc(862/1166); 
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container {
      position: relative;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eed89168-c957-4b01-a724-2bddfc248896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@media (min-width: 0px) {
[id="s-bb494a31-232f-4378-a90e-ab4c96228f54"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-bb494a31-232f-4378-a90e-ab4c96228f54"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bb494a31-232f-4378-a90e-ab4c96228f54"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb494a31-232f-4378-a90e-ab4c96228f54"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
    width: 100%;
    height: auto;
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
    
    
  }


.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
      position: relative;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
    width: 100%;
    height: auto;
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
    
    
  }


.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
      position: relative;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc 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-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
    width: 100%;
    height: auto;
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
    
    
  }


.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
      position: relative;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc 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-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
    width: 100%;
    height: auto;
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
    
    
  }


.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
      position: relative;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
    width: 100%;
    height: auto;
  }

  #s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
    
    
  }


.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container {
      position: relative;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-70e9d0ad-cf98-4c65-94ae-71d6f433d7fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
    width: 100%;
    height: auto;
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
    
    
  }


.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-content {
  
    align-items: center;
  
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
      position: relative;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
    width: 100%;
    height: auto;
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
    
    
  }


.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-content {
  
    align-items: center;
  
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
      position: relative;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e 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-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
    width: 100%;
    height: auto;
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
    
    
  }


.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-content {
  
    align-items: center;
  
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
      position: relative;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e 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-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
    width: 100%;
    height: auto;
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
    
    
  }


.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-content {
  
    align-items: center;
  
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
      position: relative;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
    width: 100%;
    height: auto;
  }

  #s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
    
    
  }


.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e .shogun-image-content {
  
    align-items: center;
  
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container {
      position: relative;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-22a0bcb7-1b19-4a1b-9cbb-9784c50c522e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@media (max-width: 767px){#s-02b9a4ab-1be2-4bf1-805d-797dcf24a045 {
  display: unset;
}
#s-02b9a4ab-1be2-4bf1-805d-797dcf24a045, #wrap-s-02b9a4ab-1be2-4bf1-805d-797dcf24a045 { display: unset !important; }}
@media (min-width: 0px) {
[id="s-02b9a4ab-1be2-4bf1-805d-797dcf24a045"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-02b9a4ab-1be2-4bf1-805d-797dcf24a045"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-02b9a4ab-1be2-4bf1-805d-797dcf24a045"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-02b9a4ab-1be2-4bf1-805d-797dcf24a045"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
    width: 100%;
    height: auto;
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
    
    
  }


.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
      position: relative;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
    width: 100%;
    height: auto;
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
    
    
  }


.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
      position: relative;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 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-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
    width: 100%;
    height: auto;
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
    
    
  }


.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
      position: relative;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 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-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
    width: 100%;
    height: auto;
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
    
    
  }


.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
      position: relative;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
    width: 100%;
    height: auto;
  }

  #s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
    
    
  }


.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container {
      position: relative;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd1d1d1-22dc-41aa-a83b-4556d8c8e4c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
    width: 100%;
    height: auto;
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
    
    
  }


.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
      position: relative;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
    width: 100%;
    height: auto;
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
    
    
  }


.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
      position: relative;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 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-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
    width: 100%;
    height: auto;
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
    
    
  }


.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
      position: relative;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 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-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
    width: 100%;
    height: auto;
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
    
    
  }


.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
      position: relative;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
    width: 100%;
    height: auto;
  }

  #s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
    
    
  }


.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 .shogun-image-content {
  
    align-items: center;
  
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container {
      position: relative;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fbdd9986-01b0-46e8-a2f1-54c1c25f29d9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@media (min-width: 768px) and (max-width: 991px){#s-df308b74-000c-4029-9be2-6944655b7cc6 {
  display: none;
}
#s-df308b74-000c-4029-9be2-6944655b7cc6, #wrap-s-df308b74-000c-4029-9be2-6944655b7cc6 { display: none !important; }}@media (max-width: 767px){#s-df308b74-000c-4029-9be2-6944655b7cc6 {
  display: none;
}
#s-df308b74-000c-4029-9be2-6944655b7cc6, #wrap-s-df308b74-000c-4029-9be2-6944655b7cc6 { display: none !important; }}
#s-df308b74-000c-4029-9be2-6944655b7cc6 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

@media (min-width: 768px) and (max-width: 991px){#s-e8d8f379-87df-4f59-a798-f0850a0e7e27 {
  display: none;
}
#s-e8d8f379-87df-4f59-a798-f0850a0e7e27, #wrap-s-e8d8f379-87df-4f59-a798-f0850a0e7e27 { display: none !important; }}@media (max-width: 767px){#s-e8d8f379-87df-4f59-a798-f0850a0e7e27 {
  display: none;
}
#s-e8d8f379-87df-4f59-a798-f0850a0e7e27, #wrap-s-e8d8f379-87df-4f59-a798-f0850a0e7e27 { display: none !important; }}
@media (min-width: 0px) {
[id="s-e8d8f379-87df-4f59-a798-f0850a0e7e27"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8d8f379-87df-4f59-a798-f0850a0e7e27"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-e8d8f379-87df-4f59-a798-f0850a0e7e27"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8d8f379-87df-4f59-a798-f0850a0e7e27"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
    width: 100%;
    height: auto;
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
    
    
  }


.s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-content {
  
    align-items: center;
  
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
      position: relative;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
    width: 100%;
    height: auto;
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
    
    
  }


.s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-content {
  
    align-items: center;
  
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
      position: relative;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 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-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
    width: 100%;
    height: auto;
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
    
    
  }


.s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-content {
  
    align-items: center;
  
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
      position: relative;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 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-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
    width: 100%;
    height: auto;
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
    
    
  }


.s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-content {
  
    align-items: center;
  
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
      position: relative;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
    width: 100%;
    height: auto;
  }

  #s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
    
    
  }


.s-e890b096-aa3f-4bf7-930b-6abd59882f00 .shogun-image-content {
  
    align-items: center;
  
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container {
      position: relative;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e890b096-aa3f-4bf7-930b-6abd59882f00 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
    width: 100%;
    height: auto;
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
    
    
  }


.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-content {
  
    align-items: center;
  
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
      position: relative;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
    width: 100%;
    height: auto;
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
    
    
  }


.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-content {
  
    align-items: center;
  
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
      position: relative;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb 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-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
    width: 100%;
    height: auto;
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
    
    
  }


.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-content {
  
    align-items: center;
  
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
      position: relative;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb 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-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
    width: 100%;
    height: auto;
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
    
    
  }


.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-content {
  
    align-items: center;
  
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
      position: relative;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
    width: 100%;
    height: auto;
  }

  #s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
    
    
  }


.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb .shogun-image-content {
  
    align-items: center;
  
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container {
      position: relative;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c3c03b3a-0c0d-4993-8d05-d6821e7545eb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
  max-width: 576px;
aspect-ratio: 576/896;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
    width: 100%;
    height: auto;
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
    
    
  }


.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-content {
  
    align-items: center;
  
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
      position: relative;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
    width: 100%;
    height: auto;
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
    
    
  }


.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-content {
  
    align-items: center;
  
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
      position: relative;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 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-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
    width: 100%;
    height: auto;
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
    
    
  }


.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-content {
  
    align-items: center;
  
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
      position: relative;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 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-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
    width: 100%;
    height: auto;
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
    
    
  }


.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-content {
  
    align-items: center;
  
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
      position: relative;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }

    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-link {
      aspect-ratio: 576/896;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
    width: 100%;
    height: auto;
  }

  #s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
    
    
  }


.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 .shogun-image-content {
  
    align-items: center;
  
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 {
      --shg-aspect-ratio: calc(576/896); 
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container {
      position: relative;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f27781c6-0aa2-4cb2-bc6a-b6b5d7772a73 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8988d506-e56d-4d99-ac9e-d66ee2700d8c hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-33cfa4f9-e4c4-4f83-a058-66f2b95c046e {
  padding-left: 2%;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-33cfa4f9-e4c4-4f83-a058-66f2b95c046e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33cfa4f9-e4c4-4f83-a058-66f2b95c046e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33cfa4f9-e4c4-4f83-a058-66f2b95c046e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33cfa4f9-e4c4-4f83-a058-66f2b95c046e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9d880352-de00-44a2-8921-5f41a432d2bb {
  max-width: 3000px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb {
    width: 100%;
    height: auto;
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
    
    
  }


.s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-content {
  
    align-items: center;
  
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d880352-de00-44a2-8921-5f41a432d2bb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
      position: relative;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb {
    width: 100%;
    height: auto;
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
    
    
  }


.s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-content {
  
    align-items: center;
  
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d880352-de00-44a2-8921-5f41a432d2bb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
      position: relative;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb 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-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb {
    width: 100%;
    height: auto;
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
    
    
  }


.s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-content {
  
    align-items: center;
  
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d880352-de00-44a2-8921-5f41a432d2bb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
      position: relative;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb 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-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb {
    width: 100%;
    height: auto;
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
    
    
  }


.s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-content {
  
    align-items: center;
  
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d880352-de00-44a2-8921-5f41a432d2bb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
      position: relative;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9d880352-de00-44a2-8921-5f41a432d2bb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb {
    width: 100%;
    height: auto;
  }

  #s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
    
    
  }


.s-9d880352-de00-44a2-8921-5f41a432d2bb .shogun-image-content {
  
    align-items: center;
  
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9d880352-de00-44a2-8921-5f41a432d2bb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container {
      position: relative;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9d880352-de00-44a2-8921-5f41a432d2bb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1b8a9aa8-97e4-42ec-a58e-4ae11dd02372 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1b8a9aa8-97e4-42ec-a58e-4ae11dd02372 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
}

#s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
  max-width: 200px;
aspect-ratio: 325/141;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
    width: 100%;
    height: auto;
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
    
    
  }


.s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
      position: relative;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
    width: 100%;
    height: auto;
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
    
    
  }


.s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
      position: relative;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 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-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
    width: 100%;
    height: auto;
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
    
    
  }


.s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
      position: relative;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 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-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
    width: 100%;
    height: auto;
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
    
    
  }


.s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
      position: relative;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }

    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-link {
      aspect-ratio: 325/141;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
    width: 100%;
    height: auto;
  }

  #s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
    
    
  }


.s-955ece97-067c-45fd-b3b5-497c1bd993e5 .shogun-image-content {
  
    align-items: center;
  
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 {
      --shg-aspect-ratio: calc(325/141); 
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container {
      position: relative;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-955ece97-067c-45fd-b3b5-497c1bd993e5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8d16b007-bc9c-40cf-9239-dd4a80acdd33 {
  padding-left: 6%;
padding-right: 6%;
}

#s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
  max-width: 195px;
aspect-ratio: 195/130;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
    width: 100%;
    height: auto;
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
    
    
  }


.s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-content {
  
    align-items: center;
  
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
      position: relative;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
    width: 100%;
    height: auto;
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
    
    
  }


.s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-content {
  
    align-items: center;
  
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
      position: relative;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d 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-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
    width: 100%;
    height: auto;
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
    
    
  }


.s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-content {
  
    align-items: center;
  
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
      position: relative;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d 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-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
    width: 100%;
    height: auto;
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
    
    
  }


.s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-content {
  
    align-items: center;
  
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
      position: relative;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }

    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-link {
      aspect-ratio: 195/130;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
    width: 100%;
    height: auto;
  }

  #s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
    
    
  }


.s-9a2f3697-3df6-4a68-8657-c8cddebf074d .shogun-image-content {
  
    align-items: center;
  
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d {
      --shg-aspect-ratio: calc(195/130); 
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container {
      position: relative;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9a2f3697-3df6-4a68-8657-c8cddebf074d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@media (min-width: 0px) {
[id="s-c4b716ec-6414-425d-a445-802f23c76750"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4b716ec-6414-425d-a445-802f23c76750"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c4b716ec-6414-425d-a445-802f23c76750"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c4b716ec-6414-425d-a445-802f23c76750"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-189a8600-d471-4eeb-a326-b7313f38370f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-189a8600-d471-4eeb-a326-b7313f38370f .shg-product-quantity-wrapper {
  display: flex;
}

#s-189a8600-d471-4eeb-a326-b7313f38370f .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-189a8600-d471-4eeb-a326-b7313f38370f .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-189a8600-d471-4eeb-a326-b7313f38370f .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-189a8600-d471-4eeb-a326-b7313f38370f .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-30fe4731-0c77-42eb-9e46-5046748ce492 {
  margin-top: 11px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(254, 89, 109, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-30fe4731-0c77-42eb-9e46-5046748ce492:hover {background-color: rgba(143, 216, 254, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}#s-30fe4731-0c77-42eb-9e46-5046748ce492:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-30fe4731-0c77-42eb-9e46-5046748ce492 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-30fe4731-0c77-42eb-9e46-5046748ce492.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-30fe4731-0c77-42eb-9e46-5046748ce492.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}

#s-30fe4731-0c77-42eb-9e46-5046748ce492.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



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