.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-8c7c8b65-8c90-4a39-aa23-352ac1538aff {
  min-height: 50px;
}
@media (min-width: 1200px){#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff {
  display: none;
}
#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff, #wrap-s-8c7c8b65-8c90-4a39-aa23-352ac1538aff { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff {
  display: none;
}
#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff, #wrap-s-8c7c8b65-8c90-4a39-aa23-352ac1538aff { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff {
  display: none;
}
#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff, #wrap-s-8c7c8b65-8c90-4a39-aa23-352ac1538aff { display: none !important; }}







#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c7c8b65-8c90-4a39-aa23-352ac1538aff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2392504d-4a86-4833-8bac-17ec66a04b3f {
  min-height: 50px;
}








#s-2392504d-4a86-4833-8bac-17ec66a04b3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2392504d-4a86-4833-8bac-17ec66a04b3f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-321b2cda-0967-4081-b2f5-1828d312697d {
  max-width: 700px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image,
  #s-321b2cda-0967-4081-b2f5-1828d312697d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d {
    width: 100%;
    height: auto;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
    
    
  }


.s-321b2cda-0967-4081-b2f5-1828d312697d .shogun-image-content {
  
    align-items: center;
  
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-321b2cda-0967-4081-b2f5-1828d312697d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
      position: relative;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image,
  #s-321b2cda-0967-4081-b2f5-1828d312697d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d {
    width: 100%;
    height: auto;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
    
    
  }


.s-321b2cda-0967-4081-b2f5-1828d312697d .shogun-image-content {
  
    align-items: center;
  
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-321b2cda-0967-4081-b2f5-1828d312697d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
      position: relative;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image,
  #s-321b2cda-0967-4081-b2f5-1828d312697d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d {
    width: 100%;
    height: auto;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
    
    
  }


.s-321b2cda-0967-4081-b2f5-1828d312697d .shogun-image-content {
  
    align-items: center;
  
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-321b2cda-0967-4081-b2f5-1828d312697d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
      position: relative;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image,
  #s-321b2cda-0967-4081-b2f5-1828d312697d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d {
    width: 100%;
    height: auto;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
    
    
  }


.s-321b2cda-0967-4081-b2f5-1828d312697d .shogun-image-content {
  
    align-items: center;
  
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-321b2cda-0967-4081-b2f5-1828d312697d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
      position: relative;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image,
  #s-321b2cda-0967-4081-b2f5-1828d312697d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d {
    width: 100%;
    height: auto;
  }

  #s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
    
    
  }


.s-321b2cda-0967-4081-b2f5-1828d312697d .shogun-image-content {
  
    align-items: center;
  
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-321b2cda-0967-4081-b2f5-1828d312697d {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container {
      position: relative;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-321b2cda-0967-4081-b2f5-1828d312697d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f652d26b-dc2e-44b8-9fb3-d54181b11234 {
  border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-f652d26b-dc2e-44b8-9fb3-d54181b11234 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f652d26b-dc2e-44b8-9fb3-d54181b11234.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d806a9f-6472-4cf7-8391-62c2d37ac2ec {
  background-repeat: no-repeat;
background-size: contain;
padding-left: 16px;
padding-right: 16px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
min-height: 50px;
background-position: center center;
}

#s-5d806a9f-6472-4cf7-8391-62c2d37ac2ec {
  background-image: url(https://i.shgcdn.com/7da87821-3032-4bbd-84aa-e35c4f0b912f/);
}








#s-5d806a9f-6472-4cf7-8391-62c2d37ac2ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d806a9f-6472-4cf7-8391-62c2d37ac2ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-28cc0907-c330-4066-b120-73ca8df349df {
  margin-top: 31px;
margin-bottom: 16px;
text-align: left;
}

#s-28cc0907-c330-4066-b120-73ca8df349df .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Futura";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.5em;
  
  text-align: left;
}



.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-c895759e-6f8b-4ac1-8852-9e836e79f2e0 {
  margin-bottom: 8px;
}

#s-2042e625-0291-40f3-a709-34f7783cf7f8 {
  margin-bottom: 60px;
}

#s-f2033f6b-5b47-4594-8583-d1e4c15701a4 {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}

#s-f2033f6b-5b47-4594-8583-d1e4c15701a4 {
  background-image: url();
}








#s-f2033f6b-5b47-4594-8583-d1e4c15701a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2033f6b-5b47-4594-8583-d1e4c15701a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-93fd78b6-7e5b-48ac-ba89-29415129426d {
  margin-top: 16px;
margin-bottom: 60px;
text-align: left;
}


  #s-93fd78b6-7e5b-48ac-ba89-29415129426d .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(221, 221, 221, 0);
  }
  #s-93fd78b6-7e5b-48ac-ba89-29415129426d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(244, 244, 244, 0);
    border: 1px solid rgba(221, 221, 221, 0);
  }
#s-93fd78b6-7e5b-48ac-ba89-29415129426d .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(212, 212, 212, 1);
  font-family: Noto Sans;
  font-weight: ;
  font-style: ;
  font-size: 14px;
}

#s-93fd78b6-7e5b-48ac-ba89-29415129426d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-93fd78b6-7e5b-48ac-ba89-29415129426d .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(244, 244, 244, 0);
}

#s-93fd78b6-7e5b-48ac-ba89-29415129426d .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-9355b151-b9a7-48af-a22e-e28be23aeb2c {
  margin-top: 32px;
margin-bottom: 60px;
min-height: 50px;
}








#s-9355b151-b9a7-48af-a22e-e28be23aeb2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9355b151-b9a7-48af-a22e-e28be23aeb2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8d92507-5f75-4b97-b7e6-2ed212f75279 {
  margin-bottom: 32px;
}

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

@media (min-width: 0px) {
[id="s-712ba656-5c89-42ab-b682-fbb69bc83cdc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-712ba656-5c89-42ab-b682-fbb69bc83cdc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-712ba656-5c89-42ab-b682-fbb69bc83cdc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-712ba656-5c89-42ab-b682-fbb69bc83cdc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-6dba0779-1086-40fd-8aa4-2d35a1ce1e1e {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-6dba0779-1086-40fd-8aa4-2d35a1ce1e1e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6dba0779-1086-40fd-8aa4-2d35a1ce1e1e {
  cursor: pointer;
}#s-6dba0779-1086-40fd-8aa4-2d35a1ce1e1e.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image,
  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
    width: 100%;
    height: auto;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
    
    
  }


.s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
      position: relative;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image,
  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
    width: 100%;
    height: auto;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
    
    
  }


.s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
      position: relative;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image,
  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
    width: 100%;
    height: auto;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
    
    
  }


.s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
      position: relative;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image,
  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
    width: 100%;
    height: auto;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
    
    
  }


.s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
      position: relative;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image,
  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
    width: 100%;
    height: auto;
  }

  #s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
    
    
  }


.s-059ebfcf-149e-4913-be1d-2fd4f59224f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container {
      position: relative;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-059ebfcf-149e-4913-be1d-2fd4f59224f6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a0aeb0ca-da25-47be-94ca-fdb27623e748 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-adc02825-49bd-4911-83ad-b3db131264b0 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-adc02825-49bd-4911-83ad-b3db131264b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adc02825-49bd-4911-83ad-b3db131264b0 {
  cursor: pointer;
}#s-adc02825-49bd-4911-83ad-b3db131264b0.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image,
  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
    width: 100%;
    height: auto;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
    
    
  }


.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shogun-image-content {
  
    align-items: center;
  
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
      position: relative;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image,
  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
    width: 100%;
    height: auto;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
    
    
  }


.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shogun-image-content {
  
    align-items: center;
  
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
      position: relative;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image,
  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
    width: 100%;
    height: auto;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
    
    
  }


.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shogun-image-content {
  
    align-items: center;
  
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
      position: relative;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image,
  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
    width: 100%;
    height: auto;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
    
    
  }


.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shogun-image-content {
  
    align-items: center;
  
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
      position: relative;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image,
  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
    width: 100%;
    height: auto;
  }

  #s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
    
    
  }


.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 .shogun-image-content {
  
    align-items: center;
  
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shg-align-container {
  display: flex;
  justify-content: center
}

.s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container {
      position: relative;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-91a20c63-d56a-4a90-b1a3-4ec92e4a5458 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6d19b315-760a-4522-ad7d-274862c70725 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-bc21e690-93fe-4f26-81ef-176a29cc26da {
  margin-top: 16px;
}

@media (min-width: 0px) {
[id="s-bc21e690-93fe-4f26-81ef-176a29cc26da"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-bc21e690-93fe-4f26-81ef-176a29cc26da"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-bc21e690-93fe-4f26-81ef-176a29cc26da"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc21e690-93fe-4f26-81ef-176a29cc26da"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-6c1903c7-3b18-4c52-a8d6-0a5d73a87f2b {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-6c1903c7-3b18-4c52-a8d6-0a5d73a87f2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6c1903c7-3b18-4c52-a8d6-0a5d73a87f2b {
  cursor: pointer;
}#s-6c1903c7-3b18-4c52-a8d6-0a5d73a87f2b.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image,
  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
    width: 100%;
    height: auto;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
    
    
  }


.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
      position: relative;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image,
  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
    width: 100%;
    height: auto;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
    
    
  }


.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
      position: relative;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image,
  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
    width: 100%;
    height: auto;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
    
    
  }


.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
      position: relative;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image,
  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
    width: 100%;
    height: auto;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
    
    
  }


.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
      position: relative;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image,
  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
    width: 100%;
    height: auto;
  }

  #s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
    
    
  }


.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container {
      position: relative;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-28e6fa3f-d915-4f5f-90df-fbfeea8db2c8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-200f82be-5f07-49f9-961e-c5c0564ea23b {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-0b503786-0034-4ee3-a780-dd5a790a1a24 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-0b503786-0034-4ee3-a780-dd5a790a1a24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b503786-0034-4ee3-a780-dd5a790a1a24 {
  cursor: pointer;
}#s-0b503786-0034-4ee3-a780-dd5a790a1a24.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image,
  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
    width: 100%;
    height: auto;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
    
    
  }


.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
      position: relative;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image,
  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
    width: 100%;
    height: auto;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
    
    
  }


.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
      position: relative;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image,
  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
    width: 100%;
    height: auto;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
    
    
  }


.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
      position: relative;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image,
  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
    width: 100%;
    height: auto;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
    
    
  }


.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
      position: relative;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image,
  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
    width: 100%;
    height: auto;
  }

  #s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
    
    
  }


.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container {
      position: relative;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2d23b8-8c51-4214-8004-d2e237b4acf0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6d16e45a-eeca-4c94-878c-722269db04b0 {
  margin-bottom: 16px;
margin-right: 8px;
}

#s-bb9c655a-98ed-454e-a998-3bd16f83d574 {
  margin-top: 16px;
}

@media (min-width: 0px) {
[id="s-bb9c655a-98ed-454e-a998-3bd16f83d574"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-bb9c655a-98ed-454e-a998-3bd16f83d574"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-bb9c655a-98ed-454e-a998-3bd16f83d574"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb9c655a-98ed-454e-a998-3bd16f83d574"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-73685aca-84bf-4ee4-80e9-c17eb14a621b {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-73685aca-84bf-4ee4-80e9-c17eb14a621b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73685aca-84bf-4ee4-80e9-c17eb14a621b {
  cursor: pointer;
}#s-73685aca-84bf-4ee4-80e9-c17eb14a621b.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-b1025a0e-53a0-4b39-af69-2faab2427323 {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image,
  #s-b1025a0e-53a0-4b39-af69-2faab2427323 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 {
    width: 100%;
    height: auto;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
    
    
  }


.s-b1025a0e-53a0-4b39-af69-2faab2427323 .shogun-image-content {
  
    align-items: center;
  
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1025a0e-53a0-4b39-af69-2faab2427323 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
      position: relative;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image,
  #s-b1025a0e-53a0-4b39-af69-2faab2427323 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 {
    width: 100%;
    height: auto;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
    
    
  }


.s-b1025a0e-53a0-4b39-af69-2faab2427323 .shogun-image-content {
  
    align-items: center;
  
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1025a0e-53a0-4b39-af69-2faab2427323 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
      position: relative;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image,
  #s-b1025a0e-53a0-4b39-af69-2faab2427323 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 {
    width: 100%;
    height: auto;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
    
    
  }


.s-b1025a0e-53a0-4b39-af69-2faab2427323 .shogun-image-content {
  
    align-items: center;
  
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1025a0e-53a0-4b39-af69-2faab2427323 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
      position: relative;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image,
  #s-b1025a0e-53a0-4b39-af69-2faab2427323 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 {
    width: 100%;
    height: auto;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
    
    
  }


.s-b1025a0e-53a0-4b39-af69-2faab2427323 .shogun-image-content {
  
    align-items: center;
  
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1025a0e-53a0-4b39-af69-2faab2427323 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
      position: relative;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image,
  #s-b1025a0e-53a0-4b39-af69-2faab2427323 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 {
    width: 100%;
    height: auto;
  }

  #s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
    
    
  }


.s-b1025a0e-53a0-4b39-af69-2faab2427323 .shogun-image-content {
  
    align-items: center;
  
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b1025a0e-53a0-4b39-af69-2faab2427323 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container {
      position: relative;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b1025a0e-53a0-4b39-af69-2faab2427323 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6b29281b-a91b-45f2-a482-7ab2379fa869 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-d37c92ab-9c82-47fc-af27-f0926655a503 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-d37c92ab-9c82-47fc-af27-f0926655a503 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d37c92ab-9c82-47fc-af27-f0926655a503 {
  cursor: pointer;
}#s-d37c92ab-9c82-47fc-af27-f0926655a503.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-54a3f4ad-7893-49f6-8e68-775fe534441b {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image,
  #s-54a3f4ad-7893-49f6-8e68-775fe534441b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b {
    width: 100%;
    height: auto;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
    
    
  }


.s-54a3f4ad-7893-49f6-8e68-775fe534441b .shogun-image-content {
  
    align-items: center;
  
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54a3f4ad-7893-49f6-8e68-775fe534441b {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
      position: relative;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image,
  #s-54a3f4ad-7893-49f6-8e68-775fe534441b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b {
    width: 100%;
    height: auto;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
    
    
  }


.s-54a3f4ad-7893-49f6-8e68-775fe534441b .shogun-image-content {
  
    align-items: center;
  
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54a3f4ad-7893-49f6-8e68-775fe534441b {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
      position: relative;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image,
  #s-54a3f4ad-7893-49f6-8e68-775fe534441b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b {
    width: 100%;
    height: auto;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
    
    
  }


.s-54a3f4ad-7893-49f6-8e68-775fe534441b .shogun-image-content {
  
    align-items: center;
  
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54a3f4ad-7893-49f6-8e68-775fe534441b {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
      position: relative;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image,
  #s-54a3f4ad-7893-49f6-8e68-775fe534441b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b {
    width: 100%;
    height: auto;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
    
    
  }


.s-54a3f4ad-7893-49f6-8e68-775fe534441b .shogun-image-content {
  
    align-items: center;
  
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54a3f4ad-7893-49f6-8e68-775fe534441b {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
      position: relative;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image,
  #s-54a3f4ad-7893-49f6-8e68-775fe534441b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b {
    width: 100%;
    height: auto;
  }

  #s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
    
    
  }


.s-54a3f4ad-7893-49f6-8e68-775fe534441b .shogun-image-content {
  
    align-items: center;
  
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-54a3f4ad-7893-49f6-8e68-775fe534441b {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container {
      position: relative;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-54a3f4ad-7893-49f6-8e68-775fe534441b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-45071979-2266-4a2d-9879-6f2ad42beab5 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-4c1b664a-5c65-4ca3-9da2-782a64b00337 {
  margin-top: 16px;
}

@media (min-width: 0px) {
[id="s-4c1b664a-5c65-4ca3-9da2-782a64b00337"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-4c1b664a-5c65-4ca3-9da2-782a64b00337"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-4c1b664a-5c65-4ca3-9da2-782a64b00337"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c1b664a-5c65-4ca3-9da2-782a64b00337"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-fe5bc686-8e6f-446a-9daa-e42a3f0df5d5 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-fe5bc686-8e6f-446a-9daa-e42a3f0df5d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe5bc686-8e6f-446a-9daa-e42a3f0df5d5 {
  cursor: pointer;
}#s-fe5bc686-8e6f-446a-9daa-e42a3f0df5d5.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image,
  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
    width: 100%;
    height: auto;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
    
    
  }


.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
      position: relative;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image,
  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
    width: 100%;
    height: auto;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
    
    
  }


.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
      position: relative;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image,
  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
    width: 100%;
    height: auto;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
    
    
  }


.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
      position: relative;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image,
  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
    width: 100%;
    height: auto;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
    
    
  }


.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
      position: relative;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image,
  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
    width: 100%;
    height: auto;
  }

  #s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
    
    
  }


.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container {
      position: relative;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4d9157c-49b3-4e78-8b8b-f9aeb3e07fc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-225c6b04-ddab-48b5-bd13-1a4905f2d746 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-b9a94a53-0c95-459d-80e0-37d26b239f6e {
  margin-top: 32px;
}

@media (min-width: 0px) {
[id="s-b9a94a53-0c95-459d-80e0-37d26b239f6e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-b9a94a53-0c95-459d-80e0-37d26b239f6e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-b9a94a53-0c95-459d-80e0-37d26b239f6e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9a94a53-0c95-459d-80e0-37d26b239f6e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}








#s-94b92f9b-886f-4032-baa3-27d3415ce911 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94b92f9b-886f-4032-baa3-27d3415ce911.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
  max-width: 330px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image,
  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
    width: 100%;
    height: auto;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
    
    
  }


.s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
      position: relative;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image,
  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
    width: 100%;
    height: auto;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
    
    
  }


.s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
      position: relative;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image,
  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
    width: 100%;
    height: auto;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
    
    
  }


.s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
      position: relative;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image,
  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
    width: 100%;
    height: auto;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
    
    
  }


.s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
      position: relative;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image,
  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
    width: 100%;
    height: auto;
  }

  #s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
    
    
  }


.s-6ae1deb8-c180-4a44-b9dd-b22057028738 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container {
      position: relative;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6ae1deb8-c180-4a44-b9dd-b22057028738 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4d7fc3aa-5403-479f-854c-3f8a2df3ab29 {
  padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-4d7fc3aa-5403-479f-854c-3f8a2df3ab29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d7fc3aa-5403-479f-854c-3f8a2df3ab29.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3bd60cda-594f-4798-9811-7f93f904c28a {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-5876f759-a3ed-4903-b5e8-7d2e57e348af {
  margin-bottom: 8px;
}

#s-a1889397-8e44-47ad-9743-c4a0474093fd {
  margin-bottom: 20px;
text-align: left;
}

#s-a1889397-8e44-47ad-9743-c4a0474093fd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-a1889397-8e44-47ad-9743-c4a0474093fd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-a1889397-8e44-47ad-9743-c4a0474093fd .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-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-70253b46-280c-4513-a49d-bd4a2673c30b {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-70253b46-280c-4513-a49d-bd4a2673c30b:hover {background-color: rgba(238, 176, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-70253b46-280c-4513-a49d-bd4a2673c30b:active {background-color: rgba(238, 176, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-70253b46-280c-4513-a49d-bd4a2673c30b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70253b46-280c-4513-a49d-bd4a2673c30b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70253b46-280c-4513-a49d-bd4a2673c30b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-70253b46-280c-4513-a49d-bd4a2673c30b.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(246, 246, 246, 1);
}


  #s-70253b46-280c-4513-a49d-bd4a2673c30b.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-5da5afc1-eca6-45a2-a75c-003fa7175532 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-5da5afc1-eca6-45a2-a75c-003fa7175532:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5da5afc1-eca6-45a2-a75c-003fa7175532:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-5da5afc1-eca6-45a2-a75c-003fa7175532 {
  display: none;
}
#s-5da5afc1-eca6-45a2-a75c-003fa7175532, #wrap-s-5da5afc1-eca6-45a2-a75c-003fa7175532 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5da5afc1-eca6-45a2-a75c-003fa7175532 {
  display: none;
}
#s-5da5afc1-eca6-45a2-a75c-003fa7175532, #wrap-s-5da5afc1-eca6-45a2-a75c-003fa7175532 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5da5afc1-eca6-45a2-a75c-003fa7175532 {
  display: none;
}
#s-5da5afc1-eca6-45a2-a75c-003fa7175532, #wrap-s-5da5afc1-eca6-45a2-a75c-003fa7175532 { display: none !important; }}@media (max-width: 767px){#s-5da5afc1-eca6-45a2-a75c-003fa7175532 {
  display: none;
}
#s-5da5afc1-eca6-45a2-a75c-003fa7175532, #wrap-s-5da5afc1-eca6-45a2-a75c-003fa7175532 { display: none !important; }}


#s-5da5afc1-eca6-45a2-a75c-003fa7175532 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5da5afc1-eca6-45a2-a75c-003fa7175532.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5da5afc1-eca6-45a2-a75c-003fa7175532.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-5da5afc1-eca6-45a2-a75c-003fa7175532.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-5da5afc1-eca6-45a2-a75c-003fa7175532.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-c42a4222-b4e0-4223-a5b5-c061d522ef67 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-c42a4222-b4e0-4223-a5b5-c061d522ef67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c42a4222-b4e0-4223-a5b5-c061d522ef67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-6e078e00-28fb-4586-a2c9-8356827f669e {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-6e078e00-28fb-4586-a2c9-8356827f669e hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}








#s-e8d2b5f8-8dba-41ad-bb2b-000fa38744fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8d2b5f8-8dba-41ad-bb2b-000fa38744fd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d11cd062-6a94-42dd-914d-93de0e257368 {
  max-width: 330px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image,
  #s-d11cd062-6a94-42dd-914d-93de0e257368 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 {
    width: 100%;
    height: auto;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
    
    
  }


.s-d11cd062-6a94-42dd-914d-93de0e257368 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d11cd062-6a94-42dd-914d-93de0e257368 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
      position: relative;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image,
  #s-d11cd062-6a94-42dd-914d-93de0e257368 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 {
    width: 100%;
    height: auto;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
    
    
  }


.s-d11cd062-6a94-42dd-914d-93de0e257368 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d11cd062-6a94-42dd-914d-93de0e257368 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
      position: relative;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image,
  #s-d11cd062-6a94-42dd-914d-93de0e257368 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 {
    width: 100%;
    height: auto;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
    
    
  }


.s-d11cd062-6a94-42dd-914d-93de0e257368 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d11cd062-6a94-42dd-914d-93de0e257368 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
      position: relative;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image,
  #s-d11cd062-6a94-42dd-914d-93de0e257368 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 {
    width: 100%;
    height: auto;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
    
    
  }


.s-d11cd062-6a94-42dd-914d-93de0e257368 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d11cd062-6a94-42dd-914d-93de0e257368 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
      position: relative;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image,
  #s-d11cd062-6a94-42dd-914d-93de0e257368 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 {
    width: 100%;
    height: auto;
  }

  #s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
    
    
  }


.s-d11cd062-6a94-42dd-914d-93de0e257368 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d11cd062-6a94-42dd-914d-93de0e257368 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container {
      position: relative;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d11cd062-6a94-42dd-914d-93de0e257368 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ca0a3d78-2840-4159-968e-f967f704d24a {
  padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-ca0a3d78-2840-4159-968e-f967f704d24a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca0a3d78-2840-4159-968e-f967f704d24a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d0941aab-0d83-4296-a859-17ade3be1c8e {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 44px;
}

#s-6c697fa3-1b41-4359-86ea-945b7765305d {
  margin-bottom: 8px;
}

#s-96bff600-a57b-4dc4-8751-a3853b77a8a7 {
  margin-bottom: 20px;
text-align: left;
}

#s-96bff600-a57b-4dc4-8751-a3853b77a8a7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-96bff600-a57b-4dc4-8751-a3853b77a8a7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-96bff600-a57b-4dc4-8751-a3853b77a8a7 .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-ec27866d-e962-4ffe-bf2c-108f46ec7f0a {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a {
  display: none;
}
#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a, #wrap-s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a {
  display: none;
}
#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a, #wrap-s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a {
  display: none;
}
#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a, #wrap-s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a { display: none !important; }}@media (max-width: 767px){#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a {
  display: none;
}
#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a, #wrap-s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a { display: none !important; }}


#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-ec27866d-e962-4ffe-bf2c-108f46ec7f0a.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-11b06985-4ba8-461a-9622-39e8eb6ec202 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-11b06985-4ba8-461a-9622-39e8eb6ec202:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-11b06985-4ba8-461a-9622-39e8eb6ec202:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-11b06985-4ba8-461a-9622-39e8eb6ec202 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-11b06985-4ba8-461a-9622-39e8eb6ec202.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-11b06985-4ba8-461a-9622-39e8eb6ec202.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-11b06985-4ba8-461a-9622-39e8eb6ec202.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-11b06985-4ba8-461a-9622-39e8eb6ec202.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-63343b13-6b70-472e-82a1-616c2e21e7bf {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-63343b13-6b70-472e-82a1-616c2e21e7bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63343b13-6b70-472e-82a1-616c2e21e7bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e2127e8-e0dc-435d-a1dd-195c8bcf0f44 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-3e2127e8-e0dc-435d-a1dd-195c8bcf0f44 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-8eb04c9f-5190-45f5-8e2b-cfd361ba98f1 {
  margin-top: 32px;
margin-bottom: 60px;
min-height: 50px;
}








#s-8eb04c9f-5190-45f5-8e2b-cfd361ba98f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8eb04c9f-5190-45f5-8e2b-cfd361ba98f1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-592e5fd8-3b96-4231-a08c-a83233c2f2f8 {
  margin-bottom: 32px;
}

@media (min-width: 0px) {
[id="s-4d9388df-663d-4649-aef9-35ea6f043c7f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-4d9388df-663d-4649-aef9-35ea6f043c7f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-4d9388df-663d-4649-aef9-35ea6f043c7f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d9388df-663d-4649-aef9-35ea6f043c7f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-229e93af-b463-474f-a04f-8e628d8f12f6 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-229e93af-b463-474f-a04f-8e628d8f12f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-229e93af-b463-474f-a04f-8e628d8f12f6 {
  cursor: pointer;
}#s-229e93af-b463-474f-a04f-8e628d8f12f6.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image,
  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
    width: 100%;
    height: auto;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
    
    
  }


.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
      position: relative;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image,
  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
    width: 100%;
    height: auto;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
    
    
  }


.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
      position: relative;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image,
  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
    width: 100%;
    height: auto;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
    
    
  }


.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
      position: relative;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image,
  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
    width: 100%;
    height: auto;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
    
    
  }


.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
      position: relative;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image,
  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
    width: 100%;
    height: auto;
  }

  #s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
    
    
  }


.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed .shogun-image-content {
  
    align-items: center;
  
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container {
      position: relative;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f4ebdd16-053c-411e-bb44-a30a2741f6ed img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7cf3071c-d51d-4ca7-9e62-65dbb83e809e {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-1a2af231-d455-4a54-9ed5-435b59954c5f {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-1a2af231-d455-4a54-9ed5-435b59954c5f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a2af231-d455-4a54-9ed5-435b59954c5f {
  cursor: pointer;
}#s-1a2af231-d455-4a54-9ed5-435b59954c5f.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-7a06b68e-c830-45fc-8146-14e630e87c56 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image,
  #s-7a06b68e-c830-45fc-8146-14e630e87c56 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 {
    width: 100%;
    height: auto;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
    
    
  }


.s-7a06b68e-c830-45fc-8146-14e630e87c56 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a06b68e-c830-45fc-8146-14e630e87c56 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
      position: relative;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image,
  #s-7a06b68e-c830-45fc-8146-14e630e87c56 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 {
    width: 100%;
    height: auto;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
    
    
  }


.s-7a06b68e-c830-45fc-8146-14e630e87c56 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a06b68e-c830-45fc-8146-14e630e87c56 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
      position: relative;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image,
  #s-7a06b68e-c830-45fc-8146-14e630e87c56 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 {
    width: 100%;
    height: auto;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
    
    
  }


.s-7a06b68e-c830-45fc-8146-14e630e87c56 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a06b68e-c830-45fc-8146-14e630e87c56 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
      position: relative;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image,
  #s-7a06b68e-c830-45fc-8146-14e630e87c56 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 {
    width: 100%;
    height: auto;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
    
    
  }


.s-7a06b68e-c830-45fc-8146-14e630e87c56 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a06b68e-c830-45fc-8146-14e630e87c56 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
      position: relative;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image,
  #s-7a06b68e-c830-45fc-8146-14e630e87c56 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 {
    width: 100%;
    height: auto;
  }

  #s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
    
    
  }


.s-7a06b68e-c830-45fc-8146-14e630e87c56 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a06b68e-c830-45fc-8146-14e630e87c56 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container {
      position: relative;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a06b68e-c830-45fc-8146-14e630e87c56 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-35469e69-ee8d-45b7-b881-2c0c2ed0b833 {
  margin-top: 16px;
margin-left: 8px;
margin-bottom: 16px;
margin-right: 8px;
}

#s-47e25449-d067-4918-8587-e9e9374097a5 {
  margin-top: 16px;
}

@media (min-width: 0px) {
[id="s-47e25449-d067-4918-8587-e9e9374097a5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-47e25449-d067-4918-8587-e9e9374097a5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-47e25449-d067-4918-8587-e9e9374097a5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-47e25449-d067-4918-8587-e9e9374097a5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-3e448ba5-30eb-4d58-93d2-274c40412011 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-3e448ba5-30eb-4d58-93d2-274c40412011 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e448ba5-30eb-4d58-93d2-274c40412011 {
  cursor: pointer;
}#s-3e448ba5-30eb-4d58-93d2-274c40412011.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-e58fc079-1df4-41e6-a946-bfd687222a0e {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image,
  #s-e58fc079-1df4-41e6-a946-bfd687222a0e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e {
    width: 100%;
    height: auto;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
    
    
  }


.s-e58fc079-1df4-41e6-a946-bfd687222a0e .shogun-image-content {
  
    align-items: center;
  
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e58fc079-1df4-41e6-a946-bfd687222a0e {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
      position: relative;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image,
  #s-e58fc079-1df4-41e6-a946-bfd687222a0e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e {
    width: 100%;
    height: auto;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
    
    
  }


.s-e58fc079-1df4-41e6-a946-bfd687222a0e .shogun-image-content {
  
    align-items: center;
  
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e58fc079-1df4-41e6-a946-bfd687222a0e {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
      position: relative;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image,
  #s-e58fc079-1df4-41e6-a946-bfd687222a0e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e {
    width: 100%;
    height: auto;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
    
    
  }


.s-e58fc079-1df4-41e6-a946-bfd687222a0e .shogun-image-content {
  
    align-items: center;
  
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e58fc079-1df4-41e6-a946-bfd687222a0e {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
      position: relative;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image,
  #s-e58fc079-1df4-41e6-a946-bfd687222a0e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e {
    width: 100%;
    height: auto;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
    
    
  }


.s-e58fc079-1df4-41e6-a946-bfd687222a0e .shogun-image-content {
  
    align-items: center;
  
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e58fc079-1df4-41e6-a946-bfd687222a0e {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
      position: relative;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image,
  #s-e58fc079-1df4-41e6-a946-bfd687222a0e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e {
    width: 100%;
    height: auto;
  }

  #s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
    
    
  }


.s-e58fc079-1df4-41e6-a946-bfd687222a0e .shogun-image-content {
  
    align-items: center;
  
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e58fc079-1df4-41e6-a946-bfd687222a0e {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container {
      position: relative;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e58fc079-1df4-41e6-a946-bfd687222a0e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6b229cc8-b9a1-4d12-9b2f-c8be093fd048 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-deef0fcd-e3e5-4fc4-96ff-69f1ffbc1170 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-deef0fcd-e3e5-4fc4-96ff-69f1ffbc1170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-deef0fcd-e3e5-4fc4-96ff-69f1ffbc1170 {
  cursor: pointer;
}#s-deef0fcd-e3e5-4fc4-96ff-69f1ffbc1170.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
  max-width: 660px;
aspect-ratio: 660/588;
text-align: center;
}





  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image,
  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
    width: 100%;
    height: auto;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
    
    
  }


.s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shogun-image-content {
  
    align-items: center;
  
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shg-align-container {
  display: flex;
  justify-content: center
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
      position: relative;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image,
  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
    width: 100%;
    height: auto;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
    
    
  }


.s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shogun-image-content {
  
    align-items: center;
  
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shg-align-container {
  display: flex;
  justify-content: center
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
      position: relative;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image,
  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
    width: 100%;
    height: auto;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
    
    
  }


.s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shogun-image-content {
  
    align-items: center;
  
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shg-align-container {
  display: flex;
  justify-content: center
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
      position: relative;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image,
  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
    width: 100%;
    height: auto;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
    
    
  }


.s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shogun-image-content {
  
    align-items: center;
  
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shg-align-container {
  display: flex;
  justify-content: center
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
      position: relative;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image,
  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
    width: 100%;
    height: auto;
  }

  #s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
    
    
  }


.s-256d5cae-f2d6-42c8-8a9d-e92de7927641 .shogun-image-content {
  
    align-items: center;
  
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shg-align-container {
  display: flex;
  justify-content: center
}

.s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 {
      --shg-aspect-ratio: calc(660/588); 
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container {
      position: relative;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-256d5cae-f2d6-42c8-8a9d-e92de7927641 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a44fd0ef-03e9-4207-b370-5f674cc23697 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-44135a06-87f7-4cf8-a643-91c69a80834f {
  margin-top: 16px;
}

@media (min-width: 0px) {
[id="s-44135a06-87f7-4cf8-a643-91c69a80834f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-44135a06-87f7-4cf8-a643-91c69a80834f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-44135a06-87f7-4cf8-a643-91c69a80834f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-44135a06-87f7-4cf8-a643-91c69a80834f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-412bd3e5-0673-49b0-aebb-3ebd15efa2fb {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-412bd3e5-0673-49b0-aebb-3ebd15efa2fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-412bd3e5-0673-49b0-aebb-3ebd15efa2fb {
  cursor: pointer;
}#s-412bd3e5-0673-49b0-aebb-3ebd15efa2fb.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-634ac197-0725-48d5-8ebb-caca30c323fc {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image,
  #s-634ac197-0725-48d5-8ebb-caca30c323fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc {
    width: 100%;
    height: auto;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
    
    
  }


.s-634ac197-0725-48d5-8ebb-caca30c323fc .shogun-image-content {
  
    align-items: center;
  
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-634ac197-0725-48d5-8ebb-caca30c323fc {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
      position: relative;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image,
  #s-634ac197-0725-48d5-8ebb-caca30c323fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc {
    width: 100%;
    height: auto;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
    
    
  }


.s-634ac197-0725-48d5-8ebb-caca30c323fc .shogun-image-content {
  
    align-items: center;
  
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-634ac197-0725-48d5-8ebb-caca30c323fc {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
      position: relative;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image,
  #s-634ac197-0725-48d5-8ebb-caca30c323fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc {
    width: 100%;
    height: auto;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
    
    
  }


.s-634ac197-0725-48d5-8ebb-caca30c323fc .shogun-image-content {
  
    align-items: center;
  
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-634ac197-0725-48d5-8ebb-caca30c323fc {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
      position: relative;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image,
  #s-634ac197-0725-48d5-8ebb-caca30c323fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc {
    width: 100%;
    height: auto;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
    
    
  }


.s-634ac197-0725-48d5-8ebb-caca30c323fc .shogun-image-content {
  
    align-items: center;
  
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-634ac197-0725-48d5-8ebb-caca30c323fc {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
      position: relative;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image,
  #s-634ac197-0725-48d5-8ebb-caca30c323fc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc {
    width: 100%;
    height: auto;
  }

  #s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
    
    
  }


.s-634ac197-0725-48d5-8ebb-caca30c323fc .shogun-image-content {
  
    align-items: center;
  
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-634ac197-0725-48d5-8ebb-caca30c323fc {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container {
      position: relative;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-634ac197-0725-48d5-8ebb-caca30c323fc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e11161f9-c5ea-40b3-9fc4-6cf4a3a3b641 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-5b5f449d-644f-4fe5-9d3c-a94a66cfbce7 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-5b5f449d-644f-4fe5-9d3c-a94a66cfbce7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b5f449d-644f-4fe5-9d3c-a94a66cfbce7 {
  cursor: pointer;
}#s-5b5f449d-644f-4fe5-9d3c-a94a66cfbce7.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image,
  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
    width: 100%;
    height: auto;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
    
    
  }


.s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
      position: relative;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image,
  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
    width: 100%;
    height: auto;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
    
    
  }


.s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
      position: relative;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image,
  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
    width: 100%;
    height: auto;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
    
    
  }


.s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
      position: relative;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image,
  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
    width: 100%;
    height: auto;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
    
    
  }


.s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
      position: relative;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image,
  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
    width: 100%;
    height: auto;
  }

  #s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
    
    
  }


.s-e28c4cad-5001-4c9a-b735-801605ecffc4 .shogun-image-content {
  
    align-items: center;
  
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container {
      position: relative;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e28c4cad-5001-4c9a-b735-801605ecffc4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-09ecee1d-f29b-442d-85dc-03dad72871a3 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-ca429103-3c7a-4f9c-aa19-660f8d62b06f {
  margin-top: 16px;
}

@media (min-width: 0px) {
[id="s-ca429103-3c7a-4f9c-aa19-660f8d62b06f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-ca429103-3c7a-4f9c-aa19-660f8d62b06f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-ca429103-3c7a-4f9c-aa19-660f8d62b06f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-ca429103-3c7a-4f9c-aa19-660f8d62b06f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-e30a9047-fc8d-4223-a332-21d7abcd9132 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-e30a9047-fc8d-4223-a332-21d7abcd9132 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e30a9047-fc8d-4223-a332-21d7abcd9132 {
  cursor: pointer;
}#s-e30a9047-fc8d-4223-a332-21d7abcd9132.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image,
  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
    width: 100%;
    height: auto;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
    
    
  }


.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shogun-image-content {
  
    align-items: center;
  
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
      position: relative;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image,
  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
    width: 100%;
    height: auto;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
    
    
  }


.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shogun-image-content {
  
    align-items: center;
  
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
      position: relative;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image,
  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
    width: 100%;
    height: auto;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
    
    
  }


.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shogun-image-content {
  
    align-items: center;
  
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
      position: relative;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image,
  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
    width: 100%;
    height: auto;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
    
    
  }


.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shogun-image-content {
  
    align-items: center;
  
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
      position: relative;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image,
  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
    width: 100%;
    height: auto;
  }

  #s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
    
    
  }


.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 .shogun-image-content {
  
    align-items: center;
  
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container {
      position: relative;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c27b0e4a-61bb-4cf2-accf-4cada1607a64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-1fda8949-83fc-4ce2-83a3-6dcc2524f650 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-48fefe19-4fb9-43be-ba4f-9632cfeb79dd {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-48fefe19-4fb9-43be-ba4f-9632cfeb79dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48fefe19-4fb9-43be-ba4f-9632cfeb79dd {
  cursor: pointer;
}#s-48fefe19-4fb9-43be-ba4f-9632cfeb79dd.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
  max-width: 330px;
aspect-ratio: 330/294;
text-align: center;
}





  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image,
  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
    width: 100%;
    height: auto;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
    
    
  }


.s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shogun-image-content {
  
    align-items: center;
  
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
      position: relative;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image,
  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
    width: 100%;
    height: auto;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
    
    
  }


.s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shogun-image-content {
  
    align-items: center;
  
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
      position: relative;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image,
  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
    width: 100%;
    height: auto;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
    
    
  }


.s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shogun-image-content {
  
    align-items: center;
  
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
      position: relative;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image,
  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
    width: 100%;
    height: auto;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
    
    
  }


.s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shogun-image-content {
  
    align-items: center;
  
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
      position: relative;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image,
  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
    width: 100%;
    height: auto;
  }

  #s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
    
    
  }


.s-516c92ac-c3cb-4c6d-915b-65fe6958155d .shogun-image-content {
  
    align-items: center;
  
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d {
      --shg-aspect-ratio: calc(330/294); 
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container {
      position: relative;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-516c92ac-c3cb-4c6d-915b-65fe6958155d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-2bc9f60c-ec6e-4f8d-b74e-a1058ff2b289 {
  margin-top: 16px;
margin-bottom: 16px;
}

#s-00de3f51-497d-460e-a333-a72b6d610d8a {
  margin-top: 60px;
margin-bottom: 60px;
}

@media (min-width: 0px) {
[id="s-00de3f51-497d-460e-a333-a72b6d610d8a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-00de3f51-497d-460e-a333-a72b6d610d8a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-00de3f51-497d-460e-a333-a72b6d610d8a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-00de3f51-497d-460e-a333-a72b6d610d8a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}








#s-b3c5ae65-09e1-4931-93bd-7eae275effcf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3c5ae65-09e1-4931-93bd-7eae275effcf.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba {
  text-align: center;
}







  img.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
    
    
  }


.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
    
    
  }


.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
    
    
  }


.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
    
    
  }


.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
    
    
  }


.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9256ad1b-bf15-4d9e-8fca-a0b4831d40ba.shogun-image {
  box-sizing: border-box;
}



}
#s-480c0a15-ca26-4f24-ba9c-e82423c32330 {
  padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-480c0a15-ca26-4f24-ba9c-e82423c32330 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-480c0a15-ca26-4f24-ba9c-e82423c32330.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07184411-2753-43a3-ae51-2dc657d64866 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 44px;
}

#s-ec0fc2b1-74cb-4d0e-ba86-ad323ac752d1 {
  margin-bottom: 8px;
}

#s-9348dfa7-4fe7-4b4a-83fb-f6c940c86711 {
  margin-bottom: 20px;
text-align: left;
}

#s-9348dfa7-4fe7-4b4a-83fb-f6c940c86711 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-9348dfa7-4fe7-4b4a-83fb-f6c940c86711 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-9348dfa7-4fe7-4b4a-83fb-f6c940c86711 .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-7350191c-84e4-48d6-8ead-521957bac3fc {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-7350191c-84e4-48d6-8ead-521957bac3fc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7350191c-84e4-48d6-8ead-521957bac3fc:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-7350191c-84e4-48d6-8ead-521957bac3fc {
  display: none;
}
#s-7350191c-84e4-48d6-8ead-521957bac3fc, #wrap-s-7350191c-84e4-48d6-8ead-521957bac3fc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7350191c-84e4-48d6-8ead-521957bac3fc {
  display: none;
}
#s-7350191c-84e4-48d6-8ead-521957bac3fc, #wrap-s-7350191c-84e4-48d6-8ead-521957bac3fc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7350191c-84e4-48d6-8ead-521957bac3fc {
  display: none;
}
#s-7350191c-84e4-48d6-8ead-521957bac3fc, #wrap-s-7350191c-84e4-48d6-8ead-521957bac3fc { display: none !important; }}@media (max-width: 767px){#s-7350191c-84e4-48d6-8ead-521957bac3fc {
  display: none;
}
#s-7350191c-84e4-48d6-8ead-521957bac3fc, #wrap-s-7350191c-84e4-48d6-8ead-521957bac3fc { display: none !important; }}


#s-7350191c-84e4-48d6-8ead-521957bac3fc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7350191c-84e4-48d6-8ead-521957bac3fc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7350191c-84e4-48d6-8ead-521957bac3fc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-7350191c-84e4-48d6-8ead-521957bac3fc.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-7350191c-84e4-48d6-8ead-521957bac3fc.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-bdd5dffb-68e1-4508-879a-c9b9825566b1 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-bdd5dffb-68e1-4508-879a-c9b9825566b1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bdd5dffb-68e1-4508-879a-c9b9825566b1:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bdd5dffb-68e1-4508-879a-c9b9825566b1 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bdd5dffb-68e1-4508-879a-c9b9825566b1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bdd5dffb-68e1-4508-879a-c9b9825566b1.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-bdd5dffb-68e1-4508-879a-c9b9825566b1.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-bdd5dffb-68e1-4508-879a-c9b9825566b1.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-950a0623-b146-4979-a6ec-2888289b3ba6 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-950a0623-b146-4979-a6ec-2888289b3ba6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-950a0623-b146-4979-a6ec-2888289b3ba6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3fd04fdd-eec8-446a-bb94-9e5d42bdf740 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-3fd04fdd-eec8-446a-bb94-9e5d42bdf740 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}








#s-e6854f09-0349-400b-9651-c6f66fb0e8f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6854f09-0349-400b-9651-c6f66fb0e8f1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
  max-width: 330px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image,
  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
    width: 100%;
    height: auto;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
    
    
  }


.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
      position: relative;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image,
  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
    width: 100%;
    height: auto;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
    
    
  }


.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
      position: relative;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image,
  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
    width: 100%;
    height: auto;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
    
    
  }


.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
      position: relative;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image,
  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
    width: 100%;
    height: auto;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
    
    
  }


.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
      position: relative;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image,
  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
    width: 100%;
    height: auto;
  }

  #s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
    
    
  }


.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container {
      position: relative;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2bed1a15-0e17-4ae6-8241-d5ce3087dc02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-2307046e-37dd-4fae-9e64-71fc9ca47639 {
  padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-2307046e-37dd-4fae-9e64-71fc9ca47639 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2307046e-37dd-4fae-9e64-71fc9ca47639.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-678de678-b4ea-4b0e-bda4-fbb98e9d9fdb {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 44px;
}

#s-aa4d37d9-6f7f-4271-bd04-b5ea35e34468 {
  margin-bottom: 8px;
}

#s-24ea4826-6d6e-4520-aceb-ada9034aef49 {
  margin-bottom: 20px;
}

#s-a3634fe7-7361-4f8f-9375-3210ddca491c {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-a3634fe7-7361-4f8f-9375-3210ddca491c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a3634fe7-7361-4f8f-9375-3210ddca491c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a3634fe7-7361-4f8f-9375-3210ddca491c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a3634fe7-7361-4f8f-9375-3210ddca491c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a3634fe7-7361-4f8f-9375-3210ddca491c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-a3634fe7-7361-4f8f-9375-3210ddca491c.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-a3634fe7-7361-4f8f-9375-3210ddca491c.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-940cd318-0be4-423a-9242-5b81b02048df {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-940cd318-0be4-423a-9242-5b81b02048df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-940cd318-0be4-423a-9242-5b81b02048df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9b22dc7-9744-45d9-8712-eff63a886f5c {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-e9b22dc7-9744-45d9-8712-eff63a886f5c hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-036cb27b-772c-4224-9a58-d93a95d9865f {
  margin-bottom: 60px;
}

@media (min-width: 0px) {
[id="s-036cb27b-772c-4224-9a58-d93a95d9865f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 768px) {
[id="s-036cb27b-772c-4224-9a58-d93a95d9865f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 992px) {
[id="s-036cb27b-772c-4224-9a58-d93a95d9865f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.0px);
}

}

@media (min-width: 1200px) {
[id="s-036cb27b-772c-4224-9a58-d93a95d9865f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.0px);
}

}

#s-af73ea56-2fa5-4a9e-bdfc-cdf78b4cd2b2 {
  min-height: 50px;
}








#s-af73ea56-2fa5-4a9e-bdfc-cdf78b4cd2b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-af73ea56-2fa5-4a9e-bdfc-cdf78b4cd2b2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
  max-width: 330px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image,
  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
    width: 100%;
    height: auto;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
    
    
  }


.s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
      position: relative;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image,
  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
    width: 100%;
    height: auto;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
    
    
  }


.s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
      position: relative;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image,
  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
    width: 100%;
    height: auto;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
    
    
  }


.s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
      position: relative;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image,
  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
    width: 100%;
    height: auto;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
    
    
  }


.s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
      position: relative;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image,
  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
    width: 100%;
    height: auto;
  }

  #s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
    
    
  }


.s-079688a7-a66c-41e2-b2c3-c42c32ad4896 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shg-align-container {
  display: flex;
  justify-content: center
}

.s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container {
      position: relative;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-079688a7-a66c-41e2-b2c3-c42c32ad4896 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ee1e55de-cd9c-42a9-b4b8-f4342f05f349 {
  padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-ee1e55de-cd9c-42a9-b4b8-f4342f05f349 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ee1e55de-cd9c-42a9-b4b8-f4342f05f349.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca1f2f06-9304-494d-a610-98cb7deca15e {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 44px;
}

#s-1c6f1976-6fde-4a5f-b0f3-6a626e71f49b {
  margin-bottom: 8px;
}

#s-046df00d-7745-48d4-986d-8db21897a993 {
  margin-bottom: 20px;
}

#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-b5e06ce1-901c-4a9e-8b85-1bc15081e135.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-b5e06ce1-901c-4a9e-8b85-1bc15081e135.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-64fca04f-e3c4-4619-9ba6-ceb512b96832 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-64fca04f-e3c4-4619-9ba6-ceb512b96832 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64fca04f-e3c4-4619-9ba6-ceb512b96832.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bde4783a-54e8-4d45-af3c-a3de824620db {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-bde4783a-54e8-4d45-af3c-a3de824620db hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}








#s-fa5353b2-60ed-4208-9032-d979a8cfc4a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa5353b2-60ed-4208-9032-d979a8cfc4a7.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
  max-width: 330px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image,
  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
    width: 100%;
    height: auto;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
    
    
  }


.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
      position: relative;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image,
  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
    width: 100%;
    height: auto;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
    
    
  }


.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
      position: relative;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image,
  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
    width: 100%;
    height: auto;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
    
    
  }


.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
      position: relative;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image,
  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
    width: 100%;
    height: auto;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
    
    
  }


.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
      position: relative;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image,
  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
    width: 100%;
    height: auto;
  }

  #s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
    
    
  }


.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container {
      position: relative;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdddabe7-9ae9-47a7-84ce-bd37eecb2bcc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-29a90471-56e8-4d8d-b3be-ea335bb2bc3c {
  padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-29a90471-56e8-4d8d-b3be-ea335bb2bc3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29a90471-56e8-4d8d-b3be-ea335bb2bc3c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09019913-d9f6-4f66-b9ef-e85075acac58 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 44px;
}

#s-5b6a2025-f64d-48cc-893a-91f054d4e5a5 {
  margin-bottom: 8px;
}

#s-641fc6f4-6eab-4d62-912e-4e0d6a8f8f16 {
  margin-bottom: 20px;
text-align: left;
}

#s-641fc6f4-6eab-4d62-912e-4e0d6a8f8f16 .shg-product-sold-out {
  display: none;
  color: rgba(255, 68, 0, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-641fc6f4-6eab-4d62-912e-4e0d6a8f8f16 .shg-product-price {
  color: rgba(255, 68, 0, 1);
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-641fc6f4-6eab-4d62-912e-4e0d6a8f8f16 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Futura;
  font-style:  normal ;
  font-size: 14px;
  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-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
background-color: rgba(117, 117, 117, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f {
  display: none;
}
#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f, #wrap-s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f {
  display: none;
}
#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f, #wrap-s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f {
  display: none;
}
#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f, #wrap-s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f { display: none !important; }}@media (max-width: 767px){#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f {
  display: none;
}
#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f, #wrap-s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f { display: none !important; }}

  #s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f-root {
    text-align: center;
  }


#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
@media (min-width: 1200px){
  #s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f-root {
    text-align: center;
  }


#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f-root {
    text-align: center;
  }


#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f-root {
    text-align: center;
  }


#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}@media (max-width: 767px){
  #s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f-root {
    text-align: center;
  }


#s-7a5bfc1c-dd01-42b3-af78-fe18cca54b1f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}
#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b {
  
}
}@media (max-width: 767px){#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b {
  
}
}


#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-012eae1c-d4b3-4923-a958-4a7bc2e99b0b.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-ce4853fd-a9fa-4993-a8ea-664b5332abe4 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 8px;
padding-right: 8px;
min-height: 50px;
}








#s-ce4853fd-a9fa-4993-a8ea-664b5332abe4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce4853fd-a9fa-4993-a8ea-664b5332abe4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73123537-1b94-4196-b8f9-89d98072dd3d {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-73123537-1b94-4196-b8f9-89d98072dd3d hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-a0011db1-d8b4-4a07-a84c-2ae5f0b49959 {
  min-height: 50px;
}
@media (max-width: 767px){#s-a0011db1-d8b4-4a07-a84c-2ae5f0b49959 {
  display: none;
}
#s-a0011db1-d8b4-4a07-a84c-2ae5f0b49959, #wrap-s-a0011db1-d8b4-4a07-a84c-2ae5f0b49959 { display: none !important; }}







#s-a0011db1-d8b4-4a07-a84c-2ae5f0b49959 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0011db1-d8b4-4a07-a84c-2ae5f0b49959.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-063a9b40-b5f9-467c-b586-cec73c4d6d94 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
min-height: 400px;
background-color: rgba(0, 0, 0, 1);
}








#s-063a9b40-b5f9-467c-b586-cec73c4d6d94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-063a9b40-b5f9-467c-b586-cec73c4d6d94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2997bb7b-b98d-405a-8be3-e8e63c72d5ee {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
background-position: center center;
}

#s-2997bb7b-b98d-405a-8be3-e8e63c72d5ee {
  background-image: url(https://i.shgcdn.com/5c7d04b8-ea27-45cd-9124-276303bcd685/);
}








#s-2997bb7b-b98d-405a-8be3-e8e63c72d5ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2997bb7b-b98d-405a-8be3-e8e63c72d5ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9661df4-1ce1-4382-93fd-f7a9ec195c58 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1266px;
background-position: center center;
}

#s-e9661df4-1ce1-4382-93fd-f7a9ec195c58 {
  background-image: url(https://i.shgcdn.com/3fb93b66-79fb-4d88-9856-1c3aa195cc40/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-e9661df4-1ce1-4382-93fd-f7a9ec195c58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9661df4-1ce1-4382-93fd-f7a9ec195c58.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-36b27c75-2171-4f92-9847-dfd1a8cc4246"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-36b27c75-2171-4f92-9847-dfd1a8cc4246"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-36b27c75-2171-4f92-9847-dfd1a8cc4246"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-36b27c75-2171-4f92-9847-dfd1a8cc4246"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-06647162-76c2-4219-b605-ace5b04a76fd {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 400px;
}








#s-06647162-76c2-4219-b605-ace5b04a76fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06647162-76c2-4219-b605-ace5b04a76fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e62e03d9-2760-400c-b2f0-ed86aab1e9df {
  margin-bottom: 16px;
text-align: left;
}

#s-e62e03d9-2760-400c-b2f0-ed86aab1e9df .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Futura";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-3b8a715d-936d-48cf-aa0f-03702fea108a {
  margin-bottom: 8px;
}

#s-97aeb34b-c876-4f1b-a8c0-9e2e09535c01 {
  margin-bottom: 32px;
max-width: 510px;
}

#s-3770613c-10ea-4dfa-89c8-16e01f01d8b0 {
  margin-bottom: 100px;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
}








#s-3770613c-10ea-4dfa-89c8-16e01f01d8b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3770613c-10ea-4dfa-89c8-16e01f01d8b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d1835d09-97e3-414d-8943-105885a68074 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1266px;
}








#s-d1835d09-97e3-414d-8943-105885a68074 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1835d09-97e3-414d-8943-105885a68074.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 {
  margin-top: 16px;
text-align: left;
}


  #s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(212, 212, 212, 0);
  }
  #s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(212, 212, 212, 0);
  }
#s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(212, 212, 212, 1);
  font-family: Noto Sans;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
}

#s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 0);
}

#s-40e5b76c-c61b-41df-82fe-13cdfa89bde7 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(212, 212, 212, 0);
}

#s-0c6e0372-da76-45ee-82ec-276a1274702d {
  min-height: 50px;
}








#s-0c6e0372-da76-45ee-82ec-276a1274702d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c6e0372-da76-45ee-82ec-276a1274702d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-96d0727f-b146-4a24-aa71-d6108dc1bb83 {
  margin-top: 60px;
margin-bottom: 32px;
}

@media (min-width: 0px) {
[id="s-6fb3873c-02ac-403d-930f-5da2d21344aa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6fb3873c-02ac-403d-930f-5da2d21344aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-6fb3873c-02ac-403d-930f-5da2d21344aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-6fb3873c-02ac-403d-930f-5da2d21344aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-7bb0e0df-b32e-4fd1-8f06-32a7b0db9592 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-7bb0e0df-b32e-4fd1-8f06-32a7b0db9592 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7bb0e0df-b32e-4fd1-8f06-32a7b0db9592 {
  cursor: pointer;
}#s-7bb0e0df-b32e-4fd1-8f06-32a7b0db9592.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f395349-4f05-4966-97e2-16a813eebc2b {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-fc9f45f0-8bbf-43f4-9c85-ff85c2e60bb9 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-fc9f45f0-8bbf-43f4-9c85-ff85c2e60bb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc9f45f0-8bbf-43f4-9c85-ff85c2e60bb9 {
  cursor: pointer;
}#s-fc9f45f0-8bbf-43f4-9c85-ff85c2e60bb9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5f41f5ae-6fbe-4dd1-9693-a317dbfe68e9 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-7a6ec934-f632-49af-a8b1-aa9f8de41ea0 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-7a6ec934-f632-49af-a8b1-aa9f8de41ea0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a6ec934-f632-49af-a8b1-aa9f8de41ea0 {
  cursor: pointer;
}#s-7a6ec934-f632-49af-a8b1-aa9f8de41ea0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-69e7f705-c6ce-499c-b270-9a98f8ba4a09 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-454e8b2b-69af-46f0-b92a-0f3f3268045b {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-454e8b2b-69af-46f0-b92a-0f3f3268045b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-454e8b2b-69af-46f0-b92a-0f3f3268045b {
  cursor: pointer;
}#s-454e8b2b-69af-46f0-b92a-0f3f3268045b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2761460e-c208-4470-806c-7959ccd7dc6a {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-16f12bc5-dbf4-4027-85f4-c73a7dc0379a {
  margin-top: 32px;
}

@media (min-width: 0px) {
[id="s-16f12bc5-dbf4-4027-85f4-c73a7dc0379a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-16f12bc5-dbf4-4027-85f4-c73a7dc0379a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-16f12bc5-dbf4-4027-85f4-c73a7dc0379a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-16f12bc5-dbf4-4027-85f4-c73a7dc0379a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-9a2e9e57-0184-4f31-a80e-fbef03988300 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-9a2e9e57-0184-4f31-a80e-fbef03988300 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a2e9e57-0184-4f31-a80e-fbef03988300 {
  cursor: pointer;
}#s-9a2e9e57-0184-4f31-a80e-fbef03988300.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ae187fe3-cb86-4981-99cb-3e62942c4908 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-c3f3a676-a3e3-4193-a786-b7fad905273d {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-c3f3a676-a3e3-4193-a786-b7fad905273d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3f3a676-a3e3-4193-a786-b7fad905273d {
  cursor: pointer;
}#s-c3f3a676-a3e3-4193-a786-b7fad905273d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-71478554-e355-40af-859d-e1da1d236be7 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-fa12ff97-b6a2-4e24-b64c-d5cf481d8668 {
  margin-bottom: 60px;
padding-top: 60px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-fa12ff97-b6a2-4e24-b64c-d5cf481d8668"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa12ff97-b6a2-4e24-b64c-d5cf481d8668"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fa12ff97-b6a2-4e24-b64c-d5cf481d8668"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa12ff97-b6a2-4e24-b64c-d5cf481d8668"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}








#s-a7fe0cf2-fe53-4ff0-ae7d-61ee91d5ed05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7fe0cf2-fe53-4ff0-ae7d-61ee91d5ed05.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c4d40857-7679-4374-8200-174e3c059f62 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image,
  #s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 {
    width: 100%;
    height: auto;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
    
    
  }


.s-c4d40857-7679-4374-8200-174e3c059f62 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
  box-sizing: border-box;
}


.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-c4d40857-7679-4374-8200-174e3c059f62 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
      position: relative;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image,
  #s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 {
    width: 100%;
    height: auto;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
    
    
  }


.s-c4d40857-7679-4374-8200-174e3c059f62 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
  box-sizing: border-box;
}


.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-c4d40857-7679-4374-8200-174e3c059f62 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
      position: relative;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image,
  #s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 {
    width: 100%;
    height: auto;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
    
    
  }


.s-c4d40857-7679-4374-8200-174e3c059f62 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
  box-sizing: border-box;
}


.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-c4d40857-7679-4374-8200-174e3c059f62 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
      position: relative;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image,
  #s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 {
    width: 100%;
    height: auto;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
    
    
  }


.s-c4d40857-7679-4374-8200-174e3c059f62 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
  box-sizing: border-box;
}


.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-c4d40857-7679-4374-8200-174e3c059f62 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
      position: relative;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image,
  #s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 {
    width: 100%;
    height: auto;
  }

  #s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
    
    
  }


.s-c4d40857-7679-4374-8200-174e3c059f62 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image {
  box-sizing: border-box;
}


.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-c4d40857-7679-4374-8200-174e3c059f62 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-c4d40857-7679-4374-8200-174e3c059f62 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container {
      position: relative;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4d40857-7679-4374-8200-174e3c059f62 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-88e844fb-4f43-40c5-b424-86d3faaed9d8 {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-88e844fb-4f43-40c5-b424-86d3faaed9d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88e844fb-4f43-40c5-b424-86d3faaed9d8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0676a19a-9ac7-4820-91f1-1a736a08c52e {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 44px;
}

#s-dd3cf77c-7ef3-4540-a537-dcf6667765e0 {
  margin-bottom: 12px;
}

#s-e3e86da3-178b-4257-8a41-77c351893591 {
  margin-bottom: 24px;
text-align: left;
}

#s-e3e86da3-178b-4257-8a41-77c351893591 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-e3e86da3-178b-4257-8a41-77c351893591 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-e3e86da3-178b-4257-8a41-77c351893591 .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-7eadac91-2994-4569-9a06-90994778fa9e {
  border-style: solid;
padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-7eadac91-2994-4569-9a06-90994778fa9e:hover {background-color: rgba(238, 176, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-7eadac91-2994-4569-9a06-90994778fa9e:active {background-color: rgba(238, 176, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-7eadac91-2994-4569-9a06-90994778fa9e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7eadac91-2994-4569-9a06-90994778fa9e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7eadac91-2994-4569-9a06-90994778fa9e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-7eadac91-2994-4569-9a06-90994778fa9e.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
}


  #s-7eadac91-2994-4569-9a06-90994778fa9e.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-8c45635f-2414-463d-b40e-408122a0863c {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-8c45635f-2414-463d-b40e-408122a0863c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8c45635f-2414-463d-b40e-408122a0863c:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-8c45635f-2414-463d-b40e-408122a0863c {
  display: none;
}
#s-8c45635f-2414-463d-b40e-408122a0863c, #wrap-s-8c45635f-2414-463d-b40e-408122a0863c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8c45635f-2414-463d-b40e-408122a0863c {
  display: none;
}
#s-8c45635f-2414-463d-b40e-408122a0863c, #wrap-s-8c45635f-2414-463d-b40e-408122a0863c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8c45635f-2414-463d-b40e-408122a0863c {
  display: none;
}
#s-8c45635f-2414-463d-b40e-408122a0863c, #wrap-s-8c45635f-2414-463d-b40e-408122a0863c { display: none !important; }}@media (max-width: 767px){#s-8c45635f-2414-463d-b40e-408122a0863c {
  display: none;
}
#s-8c45635f-2414-463d-b40e-408122a0863c, #wrap-s-8c45635f-2414-463d-b40e-408122a0863c { display: none !important; }}


#s-8c45635f-2414-463d-b40e-408122a0863c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8c45635f-2414-463d-b40e-408122a0863c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8c45635f-2414-463d-b40e-408122a0863c.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-8c45635f-2414-463d-b40e-408122a0863c.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-8c45635f-2414-463d-b40e-408122a0863c.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-b0a24c0f-4bd6-405b-b16a-08c3ef27c8bc {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 50px;
}








#s-b0a24c0f-4bd6-405b-b16a-08c3ef27c8bc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b0a24c0f-4bd6-405b-b16a-08c3ef27c8bc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-445a1646-2532-43c1-aab5-169bb99839f4 {
  margin-bottom: 4px;
}

#s-20964d27-4984-4336-9b3a-b0045c41c04f {
  margin-top: -6px;
margin-bottom: -6px;
}

#s-20964d27-4984-4336-9b3a-b0045c41c04f hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-c3786797-bce9-464e-b12a-fa543274feb7 {
  margin-bottom: 4px;
}








#s-298bb90d-3a0c-4afe-9cdf-4509474a4019 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-298bb90d-3a0c-4afe-9cdf-4509474a4019.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image,
  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
    width: 100%;
    height: auto;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
    
    
  }


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
  box-sizing: border-box;
}


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
      position: relative;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image,
  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
    width: 100%;
    height: auto;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
    
    
  }


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
  box-sizing: border-box;
}


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
      position: relative;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image,
  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
    width: 100%;
    height: auto;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
    
    
  }


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
  box-sizing: border-box;
}


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
      position: relative;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image,
  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
    width: 100%;
    height: auto;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
    
    
  }


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
  box-sizing: border-box;
}


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
      position: relative;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image,
  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
    width: 100%;
    height: auto;
  }

  #s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
    
    
  }


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image {
  box-sizing: border-box;
}


.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper .shogun-image.hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image:not(.hover) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 .shg-image-content-wrapper:hover .shogun-image.hover {
  opacity: 1;
}



  @supports not (aspect-ratio: 1/1) {
    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container {
      position: relative;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-573d47f2-eeb7-494c-951e-bd5f3fbaceb2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-b6fe94ec-6a50-4cd7-9f79-dac3f01bdca6 {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-b6fe94ec-6a50-4cd7-9f79-dac3f01bdca6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6fe94ec-6a50-4cd7-9f79-dac3f01bdca6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c01dd8c9-b3e3-4b83-97b9-05dabd74b292 {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 44px;
}

#s-953efed8-3e72-4239-9bfd-9cae6a9a4c43 {
  margin-bottom: 12px;
}

#s-13f677be-af75-4094-be2b-e21f71191bec {
  margin-bottom: 24px;
text-align: left;
}

#s-13f677be-af75-4094-be2b-e21f71191bec .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-13f677be-af75-4094-be2b-e21f71191bec .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-13f677be-af75-4094-be2b-e21f71191bec .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-e988c1a0-337c-4402-9e5a-76921972953e {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-e988c1a0-337c-4402-9e5a-76921972953e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e988c1a0-337c-4402-9e5a-76921972953e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-e988c1a0-337c-4402-9e5a-76921972953e {
  display: none;
}
#s-e988c1a0-337c-4402-9e5a-76921972953e, #wrap-s-e988c1a0-337c-4402-9e5a-76921972953e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e988c1a0-337c-4402-9e5a-76921972953e {
  display: none;
}
#s-e988c1a0-337c-4402-9e5a-76921972953e, #wrap-s-e988c1a0-337c-4402-9e5a-76921972953e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e988c1a0-337c-4402-9e5a-76921972953e {
  display: none;
}
#s-e988c1a0-337c-4402-9e5a-76921972953e, #wrap-s-e988c1a0-337c-4402-9e5a-76921972953e { display: none !important; }}@media (max-width: 767px){#s-e988c1a0-337c-4402-9e5a-76921972953e {
  display: none;
}
#s-e988c1a0-337c-4402-9e5a-76921972953e, #wrap-s-e988c1a0-337c-4402-9e5a-76921972953e { display: none !important; }}


#s-e988c1a0-337c-4402-9e5a-76921972953e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e988c1a0-337c-4402-9e5a-76921972953e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e988c1a0-337c-4402-9e5a-76921972953e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-e988c1a0-337c-4402-9e5a-76921972953e.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-e988c1a0-337c-4402-9e5a-76921972953e.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-5fd904fb-55e4-4cca-a5b5-ad49592d2223.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-5fd904fb-55e4-4cca-a5b5-ad49592d2223.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-0a49876d-c18a-4af6-8381-c2340ce469bd {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 50px;
}








#s-0a49876d-c18a-4af6-8381-c2340ce469bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a49876d-c18a-4af6-8381-c2340ce469bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f924e43-e7e8-4a36-bd60-34b15ae62db2 {
  margin-bottom: 4px;
}

#s-2c1c3eec-58c5-4bac-b5c3-66ef4323d92f {
  margin-top: -6px;
margin-bottom: -6px;
}

#s-2c1c3eec-58c5-4bac-b5c3-66ef4323d92f hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-779f215f-3f1c-4a57-8530-be196e5b2e27 {
  margin-bottom: 4px;
}








#s-4acfeb53-5c76-413f-89b9-ce1fff25d6d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4acfeb53-5c76-413f-89b9-ce1fff25d6d1.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image,
  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
    width: 100%;
    height: auto;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
    
    
  }


.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
      position: relative;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image,
  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
    width: 100%;
    height: auto;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
    
    
  }


.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
      position: relative;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image,
  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
    width: 100%;
    height: auto;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
    
    
  }


.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
      position: relative;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image,
  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
    width: 100%;
    height: auto;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
    
    
  }


.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
      position: relative;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image,
  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
    width: 100%;
    height: auto;
  }

  #s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
    
    
  }


.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container {
      position: relative;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-13ebeed1-54a9-4a58-9f5b-eec44f953f65 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-39c591cf-3d59-40ee-b579-1d785fa3cc9d {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-39c591cf-3d59-40ee-b579-1d785fa3cc9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39c591cf-3d59-40ee-b579-1d785fa3cc9d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9324bc21-fcfc-4fca-8bd5-723c9684d0f0 {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 44px;
}

#s-81fc875a-219d-4f40-8940-a31ac0b60744 {
  margin-bottom: 12px;
}

#s-ce1ff53f-b7fc-4e43-a0bc-47a82d2fdb0f {
  margin-bottom: 24px;
text-align: left;
}

#s-ce1ff53f-b7fc-4e43-a0bc-47a82d2fdb0f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-ce1ff53f-b7fc-4e43-a0bc-47a82d2fdb0f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-ce1ff53f-b7fc-4e43-a0bc-47a82d2fdb0f .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-84fd6f3f-93e1-4a20-af75-a86dc05fba83 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 {
  display: none;
}
#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83, #wrap-s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 {
  display: none;
}
#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83, #wrap-s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 {
  display: none;
}
#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83, #wrap-s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 { display: none !important; }}@media (max-width: 767px){#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 {
  display: none;
}
#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83, #wrap-s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 { display: none !important; }}


#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-84fd6f3f-93e1-4a20-af75-a86dc05fba83.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-84fd6f3f-93e1-4a20-af75-a86dc05fba83.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-17d246e2-d45f-48e9-8435-ecb1e03e9ac7.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-2ee6ea5e-dad6-4cc0-a4ae-977313ef98d6 {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 50px;
}








#s-2ee6ea5e-dad6-4cc0-a4ae-977313ef98d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ee6ea5e-dad6-4cc0-a4ae-977313ef98d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf1c6f6e-06d4-493b-b3eb-779356b6f78c {
  margin-bottom: 4px;
}

#s-4a69caf7-e1e0-4dae-8b76-1f0ff0fc1fed {
  margin-top: -6px;
margin-bottom: -6px;
}

#s-4a69caf7-e1e0-4dae-8b76-1f0ff0fc1fed hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-fa62edab-2afd-4394-b48d-e54bddd4b3fe {
  margin-bottom: 4px;
}

#s-5af60078-cbc4-47b1-a174-68a4597b5037 {
  margin-bottom: 100px;
min-height: 50px;
}








#s-5af60078-cbc4-47b1-a174-68a4597b5037 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5af60078-cbc4-47b1-a174-68a4597b5037.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ee49f90-a5c1-4274-8b2e-e4dda2f4925e {
  margin-top: 60px;
margin-bottom: 32px;
}

@media (min-width: 0px) {
[id="s-9a78cb21-bb11-4b51-ad72-313c2a4ed163"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9a78cb21-bb11-4b51-ad72-313c2a4ed163"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9a78cb21-bb11-4b51-ad72-313c2a4ed163"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9a78cb21-bb11-4b51-ad72-313c2a4ed163"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-24d84e68-4a19-456f-9494-4adc14798ae4 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-24d84e68-4a19-456f-9494-4adc14798ae4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-24d84e68-4a19-456f-9494-4adc14798ae4 {
  cursor: pointer;
}#s-24d84e68-4a19-456f-9494-4adc14798ae4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97afc054-9ada-4414-924d-9dd45ce85840 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-25a39697-9578-4767-a47a-594b4c15d2cb {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-25a39697-9578-4767-a47a-594b4c15d2cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-25a39697-9578-4767-a47a-594b4c15d2cb {
  cursor: pointer;
}#s-25a39697-9578-4767-a47a-594b4c15d2cb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba7f74f2-fc5b-4f0e-83f9-0bed63535a07 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-54adb945-4aed-4065-83f9-e364079258da {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-54adb945-4aed-4065-83f9-e364079258da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54adb945-4aed-4065-83f9-e364079258da {
  cursor: pointer;
}#s-54adb945-4aed-4065-83f9-e364079258da.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-017a4b0d-4309-4fa8-aad1-299263aaef3a {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-03c68680-6338-4534-b5d6-59426b94d4ad {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-03c68680-6338-4534-b5d6-59426b94d4ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03c68680-6338-4534-b5d6-59426b94d4ad {
  cursor: pointer;
}#s-03c68680-6338-4534-b5d6-59426b94d4ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce67e49e-9ba4-421b-8586-3d9da44d7158 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-caa8915c-804f-46ba-879f-72255d0ae727 {
  margin-top: 32px;
}

@media (min-width: 0px) {
[id="s-caa8915c-804f-46ba-879f-72255d0ae727"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-caa8915c-804f-46ba-879f-72255d0ae727"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-caa8915c-804f-46ba-879f-72255d0ae727"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-caa8915c-804f-46ba-879f-72255d0ae727"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-36a80aba-ae87-4bb6-a611-b1c72f2f8d95 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-36a80aba-ae87-4bb6-a611-b1c72f2f8d95 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36a80aba-ae87-4bb6-a611-b1c72f2f8d95 {
  cursor: pointer;
}#s-36a80aba-ae87-4bb6-a611-b1c72f2f8d95.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1366f96c-e9df-4ee7-b7bf-64acc4a5087f {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-7d068248-ba60-404c-8eb2-cf2e2d781eb9 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-7d068248-ba60-404c-8eb2-cf2e2d781eb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d068248-ba60-404c-8eb2-cf2e2d781eb9 {
  cursor: pointer;
}#s-7d068248-ba60-404c-8eb2-cf2e2d781eb9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-eb6962d8-0f7f-4d36-a10e-1e26ef597b79 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-194bb3ae-2c3e-4667-b282-5b975c87bc46 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-194bb3ae-2c3e-4667-b282-5b975c87bc46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-194bb3ae-2c3e-4667-b282-5b975c87bc46 {
  cursor: pointer;
}#s-194bb3ae-2c3e-4667-b282-5b975c87bc46.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-736fede4-37e1-4797-90c0-e3153e9be4df {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-8b3b9084-1828-4367-83d4-4c49ab5928c2 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 1);
border-style: solid;
border-radius: 5px;
min-height: 50px;
}








#s-8b3b9084-1828-4367-83d4-4c49ab5928c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b3b9084-1828-4367-83d4-4c49ab5928c2 {
  cursor: pointer;
}#s-8b3b9084-1828-4367-83d4-4c49ab5928c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f7596ff-07e2-4964-8b81-ea8379462ea5 {
  margin-top: 16px;
margin-left: 16px;
margin-bottom: 16px;
margin-right: 16px;
}

#s-0601881c-6350-4e0c-9ba0-538003de5b6c {
  margin-top: 60px;
}

@media (min-width: 0px) {
[id="s-0601881c-6350-4e0c-9ba0-538003de5b6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0601881c-6350-4e0c-9ba0-538003de5b6c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0601881c-6350-4e0c-9ba0-538003de5b6c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0601881c-6350-4e0c-9ba0-538003de5b6c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}








#s-3951c6e5-c48b-47f0-b04e-714f41420ce2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3951c6e5-c48b-47f0-b04e-714f41420ce2.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
  max-width: 400px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image,
  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
    width: 100%;
    height: auto;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
    
    
  }


.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
      position: relative;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image,
  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
    width: 100%;
    height: auto;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
    
    
  }


.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
      position: relative;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image,
  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
    width: 100%;
    height: auto;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
    
    
  }


.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
      position: relative;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image,
  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
    width: 100%;
    height: auto;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
    
    
  }


.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
      position: relative;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image,
  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
    width: 100%;
    height: auto;
  }

  #s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
    
    
  }


.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container {
      position: relative;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1bbe334-7bd2-4cdb-98e8-011f57930e60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-75978445-14d7-4006-9d36-432767612006 {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-75978445-14d7-4006-9d36-432767612006 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75978445-14d7-4006-9d36-432767612006.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6b15ff5c-b177-4345-ae3e-950672e1e185 {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 44px;
}

#s-75f8333c-0052-4cde-a576-2d6864927b34 {
  margin-bottom: 12px;
}

#s-611bf448-aa4f-48a2-b384-db5979c55a3d {
  margin-bottom: 24px;
}

#s-9366ffe8-c3bf-4425-8932-e17a56e15c76 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-9366ffe8-c3bf-4425-8932-e17a56e15c76:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9366ffe8-c3bf-4425-8932-e17a56e15c76:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9366ffe8-c3bf-4425-8932-e17a56e15c76 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9366ffe8-c3bf-4425-8932-e17a56e15c76.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9366ffe8-c3bf-4425-8932-e17a56e15c76.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-9366ffe8-c3bf-4425-8932-e17a56e15c76.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-9366ffe8-c3bf-4425-8932-e17a56e15c76.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-691fce55-35db-43ab-a8cb-920418efcb06 {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 50px;
}








#s-691fce55-35db-43ab-a8cb-920418efcb06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-691fce55-35db-43ab-a8cb-920418efcb06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-827f0fde-09b6-4870-88b5-955f6c7888cf {
  margin-bottom: 4px;
}

#s-9886b58e-0af1-4c5c-bed7-44c5014b8989 {
  margin-top: -8px;
margin-bottom: -8px;
}

#s-9886b58e-0af1-4c5c-bed7-44c5014b8989 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-ad349fc8-1719-484b-8e3c-082cd2640960 {
  margin-bottom: 4px;
}








#s-c755376d-c4b2-429d-a44f-aae4d2a8d392 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c755376d-c4b2-429d-a44f-aae4d2a8d392.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f576637a-1402-4969-899e-973e082e03e6 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image,
  #s-f576637a-1402-4969-899e-973e082e03e6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 {
    width: 100%;
    height: auto;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
    
    
  }


.s-f576637a-1402-4969-899e-973e082e03e6 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-f576637a-1402-4969-899e-973e082e03e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f576637a-1402-4969-899e-973e082e03e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
      position: relative;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image,
  #s-f576637a-1402-4969-899e-973e082e03e6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 {
    width: 100%;
    height: auto;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
    
    
  }


.s-f576637a-1402-4969-899e-973e082e03e6 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-f576637a-1402-4969-899e-973e082e03e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f576637a-1402-4969-899e-973e082e03e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
      position: relative;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image,
  #s-f576637a-1402-4969-899e-973e082e03e6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 {
    width: 100%;
    height: auto;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
    
    
  }


.s-f576637a-1402-4969-899e-973e082e03e6 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-f576637a-1402-4969-899e-973e082e03e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f576637a-1402-4969-899e-973e082e03e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
      position: relative;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image,
  #s-f576637a-1402-4969-899e-973e082e03e6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 {
    width: 100%;
    height: auto;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
    
    
  }


.s-f576637a-1402-4969-899e-973e082e03e6 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-f576637a-1402-4969-899e-973e082e03e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f576637a-1402-4969-899e-973e082e03e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
      position: relative;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image,
  #s-f576637a-1402-4969-899e-973e082e03e6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 {
    width: 100%;
    height: auto;
  }

  #s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
    
    
  }


.s-f576637a-1402-4969-899e-973e082e03e6 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-f576637a-1402-4969-899e-973e082e03e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f576637a-1402-4969-899e-973e082e03e6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f576637a-1402-4969-899e-973e082e03e6 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container {
      position: relative;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f576637a-1402-4969-899e-973e082e03e6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f576637a-1402-4969-899e-973e082e03e6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8238f2b0-1309-4a52-bd3e-74a4a54f55d4 {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-8238f2b0-1309-4a52-bd3e-74a4a54f55d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8238f2b0-1309-4a52-bd3e-74a4a54f55d4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bf3b0cb-c713-4572-9b2c-a05b723acc61 {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 44px;
}

#s-508bf4c5-b098-4d43-9309-915c81f1acc5 {
  margin-bottom: 12px;
}

#s-83631ca6-44fd-40b1-b999-8a2d044f207e {
  margin-bottom: 24px;
text-align: left;
}

#s-83631ca6-44fd-40b1-b999-8a2d044f207e .shg-product-sold-out {
  display: none;
  color: rgba(255, 68, 0, 1);
  font-size: 14px;
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
}

#s-83631ca6-44fd-40b1-b999-8a2d044f207e .shg-product-price {
  color: rgba(255, 68, 0, 1);
  font-weight:   ;
  font-family: Noto Sans;
  font-style:  normal ;
  font-size: 14px;
}

#s-83631ca6-44fd-40b1-b999-8a2d044f207e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Futura;
  font-style:  normal ;
  font-size: 14px;
  padding-left: 10px;
}

#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 5px;
background-color: rgba(117, 117, 117, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d {
  display: none;
}
#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d, #wrap-s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d {
  display: none;
}
#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d, #wrap-s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d {
  display: none;
}
#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d, #wrap-s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d { display: none !important; }}@media (max-width: 767px){#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d {
  display: none;
}
#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d, #wrap-s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d { display: none !important; }}

  #s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d-root {
    text-align: center;
  }


#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
@media (min-width: 1200px){
  #s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d-root {
    text-align: center;
  }


#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d-root {
    text-align: center;
  }


#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d-root {
    text-align: center;
  }


#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}@media (max-width: 767px){
  #s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d-root {
    text-align: center;
  }


#s-87899f9b-fe38-4f6c-956b-7ec5ae9f8a4d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}
}
#s-9e7a4171-24a9-4d66-81af-c0d427015dbe {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-9e7a4171-24a9-4d66-81af-c0d427015dbe:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9e7a4171-24a9-4d66-81af-c0d427015dbe:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-9e7a4171-24a9-4d66-81af-c0d427015dbe {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9e7a4171-24a9-4d66-81af-c0d427015dbe {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9e7a4171-24a9-4d66-81af-c0d427015dbe {
  
}
}@media (max-width: 767px){#s-9e7a4171-24a9-4d66-81af-c0d427015dbe {
  display: none;
}
#s-9e7a4171-24a9-4d66-81af-c0d427015dbe, #wrap-s-9e7a4171-24a9-4d66-81af-c0d427015dbe { display: none !important; }}


#s-9e7a4171-24a9-4d66-81af-c0d427015dbe {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9e7a4171-24a9-4d66-81af-c0d427015dbe.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9e7a4171-24a9-4d66-81af-c0d427015dbe.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-9e7a4171-24a9-4d66-81af-c0d427015dbe.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-9e7a4171-24a9-4d66-81af-c0d427015dbe.shg-btn.shg-product-atc-success {
    
    
    
    
    color: rgba(255, 255, 255, 1);
  }


#s-ca4989b6-6508-4e83-aaa6-40ac8468fefb {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 50px;
}








#s-ca4989b6-6508-4e83-aaa6-40ac8468fefb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca4989b6-6508-4e83-aaa6-40ac8468fefb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4fe4bde-d528-4a77-9df5-246761a3f07f {
  margin-bottom: 4px;
}

#s-62881566-a6ed-489c-9597-09428a488939 {
  margin-top: -6px;
margin-bottom: -6px;
}

#s-62881566-a6ed-489c-9597-09428a488939 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-981478db-2867-4848-9570-e53363d6d916 {
  margin-bottom: 4px;
}

#s-14c9a9e3-fdef-4b60-961b-ff1c8a1f13f9 {
  min-height: 50px;
}








#s-14c9a9e3-fdef-4b60-961b-ff1c8a1f13f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-14c9a9e3-fdef-4b60-961b-ff1c8a1f13f9.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
  max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image,
  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
    width: 100%;
    height: auto;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
    
    
  }


.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
      position: relative;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image,
  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
    width: 100%;
    height: auto;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
    
    
  }


.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
      position: relative;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image,
  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
    width: 100%;
    height: auto;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
    
    
  }


.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
      position: relative;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image,
  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
    width: 100%;
    height: auto;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
    
    
  }


.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
      position: relative;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image,
  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
    width: 100%;
    height: auto;
  }

  #s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
    
    
  }


.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shg-align-container {
  display: flex;
  justify-content: center
}

.s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container {
      position: relative;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-205bff10-6c17-4a15-ba8c-ca50de2a1d17 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-cd88f71d-bd1a-4a30-97c8-b748b212fa30 {
  padding-left: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-cd88f71d-bd1a-4a30-97c8-b748b212fa30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd88f71d-bd1a-4a30-97c8-b748b212fa30.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0eb9616e-fdfd-4fae-a5b7-53bda5d362eb {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 44px;
}

#s-b29eb0c3-c2d5-4c68-867d-25b3e8165c60 {
  margin-bottom: 12px;
}

#s-dd310b9d-1292-4da0-8e5f-872e8620625c {
  margin-bottom: 24px;
}

#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2 {
  padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  font-family: Futura;
  display:  block ;
}

#s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2.shg-btn.shg-product-atc-error {
  
  font-family: Futura;
  
  font-size: 16px;
  color: rgba(212, 212, 212, 1);
}


  #s-d51eb1a9-16f1-423f-8826-aa8a37d2b8a2.shg-btn.shg-product-atc-success {
    
    font-family: Futura;
    
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
  }


#s-55738dd2-0da6-45e0-908a-87ecbc9ee2af {
  margin-top: 24px;
margin-bottom: 24px;
min-height: 50px;
}








#s-55738dd2-0da6-45e0-908a-87ecbc9ee2af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-55738dd2-0da6-45e0-908a-87ecbc9ee2af.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-008288a6-9b26-41f5-abd1-e3a6e73ca74d {
  margin-bottom: 4px;
}

#s-072bed46-9848-4469-9248-b1520436a6b1 {
  margin-top: -6px;
margin-bottom: -6px;
}

#s-072bed46-9848-4469-9248-b1520436a6b1 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-db882bff-6e7a-48d2-bb8a-4400785fcbfb {
  margin-bottom: 4px;
}

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