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

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

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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-40fdce99-cfc0-4bd3-ae60-845724a1c481 {
  min-height: 50px;
}

#s-40fdce99-cfc0-4bd3-ae60-845724a1c481 {
  background-image: url();
}








#s-40fdce99-cfc0-4bd3-ae60-845724a1c481 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-40fdce99-cfc0-4bd3-ae60-845724a1c481.shg-box.shg-c {
  justify-content: center;
}

#s-8eaf7b60-63fd-44c5-a3e0-3b69246b76b7 {
  text-align: left;
}

#s-58bdd2d3-50bb-4547-9752-7b1274b9f9bc {
  text-align: left;
}

#s-324959a8-fe4c-47e0-a8c2-13bdbf90cb0f {
  min-height: 50px;
}








#s-324959a8-fe4c-47e0-a8c2-13bdbf90cb0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-324959a8-fe4c-47e0-a8c2-13bdbf90cb0f.shg-box.shg-c {
  justify-content: center;
}

#s-03b8c9f0-ef58-42d5-93e9-a17685981d9d {
  text-align: left;
}

#s-b54b25e7-754a-4a86-8c16-e58256024890 {
  text-align: left;
}

#s-9df57a27-89e9-4d87-a632-5ad87829677c {
  text-align: left;
}

#s-a768299c-2461-4277-9aa5-de4639092c51 {
  text-align: left;
}

#s-12e42870-ec7a-4870-905e-0eb75dc449ff {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}








#s-12e42870-ec7a-4870-905e-0eb75dc449ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12e42870-ec7a-4870-905e-0eb75dc449ff.shg-box.shg-c {
  justify-content: center;
}

#s-946ccc06-f440-4568-938f-c4449985bb9c {
  margin-left: 0%;
margin-right: 0%;
min-height: 50px;
}








#s-946ccc06-f440-4568-938f-c4449985bb9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-946ccc06-f440-4568-938f-c4449985bb9c.shg-box.shg-c {
  justify-content: center;
}

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

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

.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;
  flex-direction: column;
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

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

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  max-width: 1201px;
aspect-ratio: 1201/93;
text-align: center;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  margin: 0 !important;
  overflow: visible;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add background color handling */
  
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }

    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-link {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1201px;
  }



  img.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
    
    
    
    max-height: 1201px;
  }


.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
  box-sizing: border-box;
}



.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
      --shg-aspect-ratio: calc(1201/93); 
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
      position: relative;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1201px;
    }
  }

@media (min-width: 1200px){#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  margin: 0 !important;
  overflow: visible;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add background color handling */
  
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }

    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-link {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1201px;
  }



  img.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
    
    
    
    max-height: 1201px;
  }


.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
  box-sizing: border-box;
}



.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
      --shg-aspect-ratio: calc(1201/93); 
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
      position: relative;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1201px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  margin: 0 !important;
  overflow: visible;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add background color handling */
  
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }

    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-link {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1201px;
  }



  img.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
    
    
    
    max-height: 1201px;
  }


.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
  box-sizing: border-box;
}



.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
      --shg-aspect-ratio: calc(1201/93); 
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
      position: relative;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1201px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  margin: 0 !important;
  overflow: visible;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add background color handling */
  
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }

    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-link {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1201px;
  }



  img.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
    
    
    
    max-height: 1201px;
  }


.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
  box-sizing: border-box;
}



.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
      --shg-aspect-ratio: calc(1201/93); 
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
      position: relative;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1201px;
    }
  }

}@media (max-width: 767px){#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  margin: 0 !important;
  overflow: visible;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add background color handling */
  
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }

    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-link {
      aspect-ratio: 1201/93;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1201px;
  }



  img.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
    
    
    
    max-height: 1201px;
  }


.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b .shogun-image-content {
  
    justify-content: center;
  
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image {
  box-sizing: border-box;
}



.s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b {
      --shg-aspect-ratio: calc(1201/93); 
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container {
      position: relative;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a0dbad5a-bff1-48d5-bddb-b6df06d9f25b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1201px;
    }
  }

}
.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 {
  margin-top: 40px;
margin-left: 20%;
margin-bottom: 40px;
margin-right: 20%;
}
@media (max-width: 767px){#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 {
  display: none;
}
#s-5ab5d043-e912-4226-8922-dab1ea2c7c59, #wrap-s-5ab5d043-e912-4226-8922-dab1ea2c7c59, #wrap-content-s-5ab5d043-e912-4226-8922-dab1ea2c7c59 { display: none !important; }}
#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-5ab5d043-e912-4226-8922-dab1ea2c7c59 td.shogun-table-column, #s-5ab5d043-e912-4226-8922-dab1ea2c7c59 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  text-align: center;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  margin: 0 !important;
  overflow: visible;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add background color handling */
  
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
    
    
    
    
  }


.s-d520667a-a717-4f4b-a439-7a03e503d8bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
  box-sizing: border-box;
}



.s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  
}


@media (min-width: 1200px){#s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  margin: 0 !important;
  overflow: visible;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add background color handling */
  
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
    
    
    
    
  }


.s-d520667a-a717-4f4b-a439-7a03e503d8bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
  box-sizing: border-box;
}



.s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  margin: 0 !important;
  overflow: visible;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add background color handling */
  
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
    
    
    
    
  }


.s-d520667a-a717-4f4b-a439-7a03e503d8bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
  box-sizing: border-box;
}



.s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  margin: 0 !important;
  overflow: visible;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add background color handling */
  
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
    
    
    
    
  }


.s-d520667a-a717-4f4b-a439-7a03e503d8bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
  box-sizing: border-box;
}



.s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  
}


}@media (max-width: 767px){#s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  margin: 0 !important;
  overflow: visible;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d520667a-a717-4f4b-a439-7a03e503d8bc {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add background color handling */
  
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
    
    
    
    
  }


.s-d520667a-a717-4f4b-a439-7a03e503d8bc .shogun-image-content {
  
    justify-content: center;
  
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d520667a-a717-4f4b-a439-7a03e503d8bc.shogun-image {
  box-sizing: border-box;
}



.s-d520667a-a717-4f4b-a439-7a03e503d8bc img.shogun-image {
  
}


}
#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  text-align: center;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  margin: 0 !important;
  overflow: visible;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add background color handling */
  
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
    
    
    
    
  }


.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
  box-sizing: border-box;
}



.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  
}


@media (min-width: 1200px){#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  margin: 0 !important;
  overflow: visible;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add background color handling */
  
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
    
    
    
    
  }


.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
  box-sizing: border-box;
}



.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  margin: 0 !important;
  overflow: visible;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add background color handling */
  
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
    
    
    
    
  }


.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
  box-sizing: border-box;
}



.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  margin: 0 !important;
  overflow: visible;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add background color handling */
  
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
    
    
    
    
  }


.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
  box-sizing: border-box;
}



.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  
}


}@media (max-width: 767px){#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  margin: 0 !important;
  overflow: visible;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add background color handling */
  
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
    
    
    
    
  }


.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 .shogun-image-content {
  
    justify-content: center;
  
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shg-align-container {
  display: flex;
  justify-content: center
}

.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-515de3e7-f7c3-43a0-a599-c9983d1c6f26.shogun-image {
  box-sizing: border-box;
}



.s-515de3e7-f7c3-43a0-a599-c9983d1c6f26 img.shogun-image {
  
}


}
#s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  text-align: center;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
    
    
    
    
  }


.s-de20e598-9841-4d24-a155-6a44d0d2b0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
  box-sizing: border-box;
}



.s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  
}


@media (min-width: 1200px){#s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
    
    
    
    
  }


.s-de20e598-9841-4d24-a155-6a44d0d2b0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
  box-sizing: border-box;
}



.s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
    
    
    
    
  }


.s-de20e598-9841-4d24-a155-6a44d0d2b0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
  box-sizing: border-box;
}



.s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
    
    
    
    
  }


.s-de20e598-9841-4d24-a155-6a44d0d2b0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
  box-sizing: border-box;
}



.s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  
}


}@media (max-width: 767px){#s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  margin: 0 !important;
  overflow: visible;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-de20e598-9841-4d24-a155-6a44d0d2b0ad {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add background color handling */
  
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
    
    
    
    
  }


.s-de20e598-9841-4d24-a155-6a44d0d2b0ad .shogun-image-content {
  
    justify-content: center;
  
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shg-align-container {
  display: flex;
  justify-content: center
}

.s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-de20e598-9841-4d24-a155-6a44d0d2b0ad.shogun-image {
  box-sizing: border-box;
}



.s-de20e598-9841-4d24-a155-6a44d0d2b0ad img.shogun-image {
  
}


}
#s-769867e3-0a5a-4421-8b57-c4fe4a54848e {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}
@media (min-width: 1200px){#s-769867e3-0a5a-4421-8b57-c4fe4a54848e {
  display: none;
}
#s-769867e3-0a5a-4421-8b57-c4fe4a54848e, #wrap-s-769867e3-0a5a-4421-8b57-c4fe4a54848e, #wrap-content-s-769867e3-0a5a-4421-8b57-c4fe4a54848e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-769867e3-0a5a-4421-8b57-c4fe4a54848e {
  display: none;
}
#s-769867e3-0a5a-4421-8b57-c4fe4a54848e, #wrap-s-769867e3-0a5a-4421-8b57-c4fe4a54848e, #wrap-content-s-769867e3-0a5a-4421-8b57-c4fe4a54848e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-769867e3-0a5a-4421-8b57-c4fe4a54848e {
  display: none;
}
#s-769867e3-0a5a-4421-8b57-c4fe4a54848e, #wrap-s-769867e3-0a5a-4421-8b57-c4fe4a54848e, #wrap-content-s-769867e3-0a5a-4421-8b57-c4fe4a54848e { display: none !important; }}
#s-769867e3-0a5a-4421-8b57-c4fe4a54848e .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-769867e3-0a5a-4421-8b57-c4fe4a54848e table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-769867e3-0a5a-4421-8b57-c4fe4a54848e td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-769867e3-0a5a-4421-8b57-c4fe4a54848e td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-769867e3-0a5a-4421-8b57-c4fe4a54848e td.shogun-table-column, #s-769867e3-0a5a-4421-8b57-c4fe4a54848e td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  text-align: center;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  margin: 0 !important;
  overflow: visible;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add background color handling */
  
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
    
    
    
    
  }


.s-e507c18f-7a6d-46bf-8d96-9f545559f58c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
  box-sizing: border-box;
}



.s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  
}


@media (min-width: 1200px){#s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  margin: 0 !important;
  overflow: visible;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add background color handling */
  
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
    
    
    
    
  }


.s-e507c18f-7a6d-46bf-8d96-9f545559f58c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
  box-sizing: border-box;
}



.s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  margin: 0 !important;
  overflow: visible;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add background color handling */
  
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
    
    
    
    
  }


.s-e507c18f-7a6d-46bf-8d96-9f545559f58c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
  box-sizing: border-box;
}



.s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  margin: 0 !important;
  overflow: visible;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add background color handling */
  
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
    
    
    
    
  }


.s-e507c18f-7a6d-46bf-8d96-9f545559f58c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
  box-sizing: border-box;
}



.s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  
}


}@media (max-width: 767px){#s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  margin: 0 !important;
  overflow: visible;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-e507c18f-7a6d-46bf-8d96-9f545559f58c {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add background color handling */
  
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
    
    
    
    
  }


.s-e507c18f-7a6d-46bf-8d96-9f545559f58c .shogun-image-content {
  
    justify-content: center;
  
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e507c18f-7a6d-46bf-8d96-9f545559f58c.shogun-image {
  box-sizing: border-box;
}



.s-e507c18f-7a6d-46bf-8d96-9f545559f58c img.shogun-image {
  
}


}
#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  text-align: center;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  margin: 0 !important;
  overflow: visible;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add background color handling */
  
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
    
    
    
    
  }


.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
  box-sizing: border-box;
}



.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  
}


@media (min-width: 1200px){#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  margin: 0 !important;
  overflow: visible;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add background color handling */
  
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
    
    
    
    
  }


.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
  box-sizing: border-box;
}



.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  margin: 0 !important;
  overflow: visible;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add background color handling */
  
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
    
    
    
    
  }


.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
  box-sizing: border-box;
}



.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  margin: 0 !important;
  overflow: visible;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add background color handling */
  
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
    
    
    
    
  }


.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
  box-sizing: border-box;
}



.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  
}


}@media (max-width: 767px){#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  margin: 0 !important;
  overflow: visible;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add background color handling */
  
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
    
    
    
    
  }


.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b .shogun-image-content {
  
    justify-content: center;
  
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b.shogun-image {
  box-sizing: border-box;
}



.s-ef1d48df-c9f8-4ba8-ace5-e567683aa78b img.shogun-image {
  
}


}
#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  text-align: center;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
    
    
    
    
  }


.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
  box-sizing: border-box;
}



.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  
}


@media (min-width: 1200px){#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
    
    
    
    
  }


.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
  box-sizing: border-box;
}



.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
    
    
    
    
  }


.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
  box-sizing: border-box;
}



.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
    
    
    
    
  }


.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
  box-sizing: border-box;
}



.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  
}


}@media (max-width: 767px){#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  margin: 0 !important;
  overflow: visible;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add background color handling */
  
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
    
    
    
    
  }


.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 .shogun-image-content {
  
    justify-content: center;
  
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8.shogun-image {
  box-sizing: border-box;
}



.s-9c02d20c-c69c-4f17-8ec6-96cf0e27f9e8 img.shogun-image {
  
}


}
#s-2c37f118-8e56-4ace-ab1b-d025ec70c883 {
  min-height: 50px;
}








#s-2c37f118-8e56-4ace-ab1b-d025ec70c883 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2c37f118-8e56-4ace-ab1b-d025ec70c883.shg-box.shg-c {
  justify-content: center;
}

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

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

#s-37505b8b-9ac6-432a-b2cc-2aa92b7d73c4 hr {
  border-top: 2px solid #000;
}

#s-6c1890df-afcf-48ff-85b9-6d091f5ad0e1 {
  text-align: left;
}

#s-2129480f-33e4-4f64-a642-bb192d101275 {
  min-height: 50px;
}








#s-2129480f-33e4-4f64-a642-bb192d101275 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2129480f-33e4-4f64-a642-bb192d101275.shg-box.shg-c {
  justify-content: center;
}

#s-b8da7a57-785c-460a-89fc-5b1ded7115aa {
  min-height: 50px;
}
@media (max-width: 767px){#s-b8da7a57-785c-460a-89fc-5b1ded7115aa {
  
}
}







#s-b8da7a57-785c-460a-89fc-5b1ded7115aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b8da7a57-785c-460a-89fc-5b1ded7115aa.shg-box.shg-c {
  justify-content: center;
}

#s-0a2a733b-fb8a-4f8a-805b-9374144bfe2d {
  min-height: 50px;
}








#s-0a2a733b-fb8a-4f8a-805b-9374144bfe2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0a2a733b-fb8a-4f8a-805b-9374144bfe2d.shg-box.shg-c {
  justify-content: center;
}

#s-a896caef-795c-454c-93d9-664ce92647c5 {
  text-align: left;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  margin: 0 !important;
  overflow: visible;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add background color handling */
  
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
    
    
    
    
  }


.s-f6d8e2f6-10ca-4046-8431-b64b618e906e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
  box-sizing: border-box;
}



.s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  
}


@media (min-width: 1200px){#s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  margin: 0 !important;
  overflow: visible;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add background color handling */
  
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
    
    
    
    
  }


.s-f6d8e2f6-10ca-4046-8431-b64b618e906e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
  box-sizing: border-box;
}



.s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  margin: 0 !important;
  overflow: visible;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add background color handling */
  
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
    
    
    
    
  }


.s-f6d8e2f6-10ca-4046-8431-b64b618e906e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
  box-sizing: border-box;
}



.s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  margin: 0 !important;
  overflow: visible;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add background color handling */
  
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
    
    
    
    
  }


.s-f6d8e2f6-10ca-4046-8431-b64b618e906e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
  box-sizing: border-box;
}



.s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  
}


}@media (max-width: 767px){#s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  margin: 0 !important;
  overflow: visible;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f6d8e2f6-10ca-4046-8431-b64b618e906e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add background color handling */
  
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
    
    
    
    
  }


.s-f6d8e2f6-10ca-4046-8431-b64b618e906e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f6d8e2f6-10ca-4046-8431-b64b618e906e.shogun-image {
  box-sizing: border-box;
}



.s-f6d8e2f6-10ca-4046-8431-b64b618e906e img.shogun-image {
  
}


}
#s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}
@media (max-width: 767px){#s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6 {
  display: none;
}
#s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6, #wrap-s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6, #wrap-content-s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6 { display: none !important; }}







#s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f00284d6-3b8e-4e21-b5e1-58f39a9b9ee6.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  justify-content: space-between;
}

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

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

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

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

#s-753bd168-9dd5-4866-8a30-246dbd9b9191 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-753bd168-9dd5-4866-8a30-246dbd9b9191"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-753bd168-9dd5-4866-8a30-246dbd9b9191"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-753bd168-9dd5-4866-8a30-246dbd9b9191"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-753bd168-9dd5-4866-8a30-246dbd9b9191"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-0155b777-242a-46e4-8eaa-2983aad979d6 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-0155b777-242a-46e4-8eaa-2983aad979d6 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0155b777-242a-46e4-8eaa-2983aad979d6 .shg-sld-nav-button.shg-sld-left,
#s-0155b777-242a-46e4-8eaa-2983aad979d6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  text-align: center;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
    
    
    
    
  }


.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
  box-sizing: border-box;
}



.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  
}


@media (min-width: 1200px){#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
    
    
    
    
  }


.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
  box-sizing: border-box;
}



.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
    
    
    
    
  }


.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
  box-sizing: border-box;
}



.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
    
    
    
    
  }


.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
  box-sizing: border-box;
}



.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  
}


}@media (max-width: 767px){#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  margin: 0 !important;
  overflow: visible;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add background color handling */
  
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
    
    
    
    
  }


.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 .shogun-image-content {
  
    justify-content: center;
  
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f53666ca-af3f-4996-bc27-5f7de54a4bc1.shogun-image {
  box-sizing: border-box;
}



.s-f53666ca-af3f-4996-bc27-5f7de54a4bc1 img.shogun-image {
  
}


}
#s-806ae3d7-129a-4c24-af34-02336397da5e {
  text-align: center;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e {
  margin: 0 !important;
  overflow: visible;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add background color handling */
  
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
    
    
    
    
  }


.s-806ae3d7-129a-4c24-af34-02336397da5e .shogun-image-content {
  
    justify-content: center;
  
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
  box-sizing: border-box;
}



.s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  
}


@media (min-width: 1200px){#s-806ae3d7-129a-4c24-af34-02336397da5e {
  margin: 0 !important;
  overflow: visible;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add background color handling */
  
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
    
    
    
    
  }


.s-806ae3d7-129a-4c24-af34-02336397da5e .shogun-image-content {
  
    justify-content: center;
  
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
  box-sizing: border-box;
}



.s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-806ae3d7-129a-4c24-af34-02336397da5e {
  margin: 0 !important;
  overflow: visible;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add background color handling */
  
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
    
    
    
    
  }


.s-806ae3d7-129a-4c24-af34-02336397da5e .shogun-image-content {
  
    justify-content: center;
  
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
  box-sizing: border-box;
}



.s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-806ae3d7-129a-4c24-af34-02336397da5e {
  margin: 0 !important;
  overflow: visible;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add background color handling */
  
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
    
    
    
    
  }


.s-806ae3d7-129a-4c24-af34-02336397da5e .shogun-image-content {
  
    justify-content: center;
  
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
  box-sizing: border-box;
}



.s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  
}


}@media (max-width: 767px){#s-806ae3d7-129a-4c24-af34-02336397da5e {
  margin: 0 !important;
  overflow: visible;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-806ae3d7-129a-4c24-af34-02336397da5e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add background color handling */
  
}

#s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
    
    
    
    
  }


.s-806ae3d7-129a-4c24-af34-02336397da5e .shogun-image-content {
  
    justify-content: center;
  
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-806ae3d7-129a-4c24-af34-02336397da5e.shogun-image {
  box-sizing: border-box;
}



.s-806ae3d7-129a-4c24-af34-02336397da5e img.shogun-image {
  
}


}
#s-8d36de4f-67c4-4c38-9b03-7bf4eadbbb52 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-8d36de4f-67c4-4c38-9b03-7bf4eadbbb52 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8d36de4f-67c4-4c38-9b03-7bf4eadbbb52 .shg-sld-nav-button.shg-sld-left,
#s-8d36de4f-67c4-4c38-9b03-7bf4eadbbb52 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-a954bf8d-797e-4e86-8b1d-db927ad96f15 {
  text-align: left;
}

#s-272e73d3-2653-43cb-b6ee-3fcee10f79bb {
  text-align: left;
}

#s-84a074c8-dee2-46f6-8a94-d4cd93425b4c {
  min-height: 50px;
}








#s-84a074c8-dee2-46f6-8a94-d4cd93425b4c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-84a074c8-dee2-46f6-8a94-d4cd93425b4c.shg-box.shg-c {
  justify-content: center;
}

.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-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2 {
  margin-left: 25%;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2-root {
    text-align: center;
  }


#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2-root {
    text-align: center;
  }


#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2-root {
    text-align: center;
  }


#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2-root {
    text-align: center;
  }


#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2-root {
    text-align: center;
  }


#s-eca01ee8-9c38-4fa8-80d4-5c2b2e975af2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-3f4ee055-ec12-4534-a8bf-a2b2b62b5d7d {
  min-height: 50px;
}








#s-3f4ee055-ec12-4534-a8bf-a2b2b62b5d7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3f4ee055-ec12-4534-a8bf-a2b2b62b5d7d.shg-box.shg-c {
  justify-content: center;
}

#s-1b6dbcaf-3e3e-4466-9840-7fc953b01e44 {
  min-height: 50px;
}
@media (max-width: 767px){#s-1b6dbcaf-3e3e-4466-9840-7fc953b01e44 {
  
}
}







#s-1b6dbcaf-3e3e-4466-9840-7fc953b01e44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1b6dbcaf-3e3e-4466-9840-7fc953b01e44.shg-box.shg-c {
  justify-content: center;
}

#s-3eead540-4859-460a-97f7-a00ecc32c376 {
  min-height: 50px;
}








#s-3eead540-4859-460a-97f7-a00ecc32c376 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3eead540-4859-460a-97f7-a00ecc32c376.shg-box.shg-c {
  justify-content: center;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  margin: 0 !important;
  overflow: visible;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add background color handling */
  
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
    
    
    
    
  }


.s-26992bf1-b633-48ae-ad65-1a56fa5c86df .shogun-image-content {
  
    justify-content: center;
  
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
  box-sizing: border-box;
}



.s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  
}


@media (min-width: 1200px){#s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  margin: 0 !important;
  overflow: visible;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add background color handling */
  
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
    
    
    
    
  }


.s-26992bf1-b633-48ae-ad65-1a56fa5c86df .shogun-image-content {
  
    justify-content: center;
  
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
  box-sizing: border-box;
}



.s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  margin: 0 !important;
  overflow: visible;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add background color handling */
  
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
    
    
    
    
  }


.s-26992bf1-b633-48ae-ad65-1a56fa5c86df .shogun-image-content {
  
    justify-content: center;
  
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
  box-sizing: border-box;
}



.s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  margin: 0 !important;
  overflow: visible;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add background color handling */
  
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
    
    
    
    
  }


.s-26992bf1-b633-48ae-ad65-1a56fa5c86df .shogun-image-content {
  
    justify-content: center;
  
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
  box-sizing: border-box;
}



.s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  
}


}@media (max-width: 767px){#s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  margin: 0 !important;
  overflow: visible;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-26992bf1-b633-48ae-ad65-1a56fa5c86df {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add background color handling */
  
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
    
    
    
    
  }


.s-26992bf1-b633-48ae-ad65-1a56fa5c86df .shogun-image-content {
  
    justify-content: center;
  
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26992bf1-b633-48ae-ad65-1a56fa5c86df.shogun-image {
  box-sizing: border-box;
}



.s-26992bf1-b633-48ae-ad65-1a56fa5c86df img.shogun-image {
  
}


}
#s-c81ee1bb-e699-4092-9c4a-d49243381618 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}
@media (max-width: 767px){#s-c81ee1bb-e699-4092-9c4a-d49243381618 {
  display: none;
}
#s-c81ee1bb-e699-4092-9c4a-d49243381618, #wrap-s-c81ee1bb-e699-4092-9c4a-d49243381618, #wrap-content-s-c81ee1bb-e699-4092-9c4a-d49243381618 { display: none !important; }}







#s-c81ee1bb-e699-4092-9c4a-d49243381618 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c81ee1bb-e699-4092-9c4a-d49243381618.shg-box.shg-c {
  justify-content: center;
}

#s-beee2158-e155-4711-8382-c7a52a33ddc9 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-beee2158-e155-4711-8382-c7a52a33ddc9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-beee2158-e155-4711-8382-c7a52a33ddc9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-beee2158-e155-4711-8382-c7a52a33ddc9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-beee2158-e155-4711-8382-c7a52a33ddc9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a5dbfb7b-3478-4313-93ff-e80ee5629b9d {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-a5dbfb7b-3478-4313-93ff-e80ee5629b9d .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-a5dbfb7b-3478-4313-93ff-e80ee5629b9d .shg-sld-nav-button.shg-sld-left,
#s-a5dbfb7b-3478-4313-93ff-e80ee5629b9d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  text-align: center;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  margin: 0 !important;
  overflow: visible;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add background color handling */
  
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
    
    
    
    
  }


.s-29130e0b-8eb3-4288-8e28-bc586f142143 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
  box-sizing: border-box;
}



.s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  
}


@media (min-width: 1200px){#s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  margin: 0 !important;
  overflow: visible;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add background color handling */
  
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
    
    
    
    
  }


.s-29130e0b-8eb3-4288-8e28-bc586f142143 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
  box-sizing: border-box;
}



.s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  margin: 0 !important;
  overflow: visible;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add background color handling */
  
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
    
    
    
    
  }


.s-29130e0b-8eb3-4288-8e28-bc586f142143 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
  box-sizing: border-box;
}



.s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  margin: 0 !important;
  overflow: visible;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add background color handling */
  
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
    
    
    
    
  }


.s-29130e0b-8eb3-4288-8e28-bc586f142143 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
  box-sizing: border-box;
}



.s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  
}


}@media (max-width: 767px){#s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  margin: 0 !important;
  overflow: visible;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-29130e0b-8eb3-4288-8e28-bc586f142143 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add background color handling */
  
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
    
    
    
    
  }


.s-29130e0b-8eb3-4288-8e28-bc586f142143 .shogun-image-content {
  
    justify-content: center;
  
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shg-align-container {
  display: flex;
  justify-content: center
}

.s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-29130e0b-8eb3-4288-8e28-bc586f142143.shogun-image {
  box-sizing: border-box;
}



.s-29130e0b-8eb3-4288-8e28-bc586f142143 img.shogun-image {
  
}


}
#s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  text-align: center;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  margin: 0 !important;
  overflow: visible;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add background color handling */
  
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
    
    
    
    
  }


.s-0976e494-e822-4ba0-80c9-bfa6795abd48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
  box-sizing: border-box;
}



.s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  
}


@media (min-width: 1200px){#s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  margin: 0 !important;
  overflow: visible;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add background color handling */
  
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
    
    
    
    
  }


.s-0976e494-e822-4ba0-80c9-bfa6795abd48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
  box-sizing: border-box;
}



.s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  margin: 0 !important;
  overflow: visible;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add background color handling */
  
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
    
    
    
    
  }


.s-0976e494-e822-4ba0-80c9-bfa6795abd48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
  box-sizing: border-box;
}



.s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  margin: 0 !important;
  overflow: visible;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add background color handling */
  
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
    
    
    
    
  }


.s-0976e494-e822-4ba0-80c9-bfa6795abd48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
  box-sizing: border-box;
}



.s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  
}


}@media (max-width: 767px){#s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  margin: 0 !important;
  overflow: visible;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0976e494-e822-4ba0-80c9-bfa6795abd48 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add background color handling */
  
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
    
    
    
    
  }


.s-0976e494-e822-4ba0-80c9-bfa6795abd48 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0976e494-e822-4ba0-80c9-bfa6795abd48.shogun-image {
  box-sizing: border-box;
}



.s-0976e494-e822-4ba0-80c9-bfa6795abd48 img.shogun-image {
  
}


}
#s-3ce95e2d-1499-4187-b502-2662d2583427 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-3ce95e2d-1499-4187-b502-2662d2583427 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-3ce95e2d-1499-4187-b502-2662d2583427 .shg-sld-nav-button.shg-sld-left,
#s-3ce95e2d-1499-4187-b502-2662d2583427 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-53da936e-03f8-46c3-b560-0eb2de711e74 {
  text-align: left;
}

#s-538d4097-ba86-4531-b90f-f38bcfe5fef2 {
  text-align: left;
}

#s-94f3d5b6-b4ca-47f5-8da0-f3bb9e31a491 {
  min-height: 50px;
}








#s-94f3d5b6-b4ca-47f5-8da0-f3bb9e31a491 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-94f3d5b6-b4ca-47f5-8da0-f3bb9e31a491.shg-box.shg-c {
  justify-content: center;
}

#s-92900701-379a-4228-8942-f291ef2f303e {
  margin-left: 25%;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-92900701-379a-4228-8942-f291ef2f303e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-92900701-379a-4228-8942-f291ef2f303e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-92900701-379a-4228-8942-f291ef2f303e-root {
    text-align: center;
  }


#s-92900701-379a-4228-8942-f291ef2f303e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-92900701-379a-4228-8942-f291ef2f303e-root {
    text-align: center;
  }


#s-92900701-379a-4228-8942-f291ef2f303e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-92900701-379a-4228-8942-f291ef2f303e-root {
    text-align: center;
  }


#s-92900701-379a-4228-8942-f291ef2f303e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-92900701-379a-4228-8942-f291ef2f303e-root {
    text-align: center;
  }


#s-92900701-379a-4228-8942-f291ef2f303e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-92900701-379a-4228-8942-f291ef2f303e-root {
    text-align: center;
  }


#s-92900701-379a-4228-8942-f291ef2f303e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-fc6f07b6-f98e-41e4-be2e-4e239dc58e48 {
  min-height: 50px;
}








#s-fc6f07b6-f98e-41e4-be2e-4e239dc58e48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc6f07b6-f98e-41e4-be2e-4e239dc58e48.shg-box.shg-c {
  justify-content: center;
}

#s-5d82c245-6ec1-4943-a902-5bb41188de9e {
  min-height: 50px;
}
@media (max-width: 767px){#s-5d82c245-6ec1-4943-a902-5bb41188de9e {
  
}
}







#s-5d82c245-6ec1-4943-a902-5bb41188de9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5d82c245-6ec1-4943-a902-5bb41188de9e.shg-box.shg-c {
  justify-content: center;
}

#s-62744370-ef94-4c0c-8715-6ffa3ad72c19 {
  min-height: 50px;
}








#s-62744370-ef94-4c0c-8715-6ffa3ad72c19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-62744370-ef94-4c0c-8715-6ffa3ad72c19.shg-box.shg-c {
  justify-content: center;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
text-align: center;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
    
    
    
    
  }


.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
  box-sizing: border-box;
}



.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  
}


@media (min-width: 1200px){#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
    
    
    
    
  }


.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
  box-sizing: border-box;
}



.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
    
    
    
    
  }


.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
  box-sizing: border-box;
}



.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
    
    
    
    
  }


.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
  box-sizing: border-box;
}



.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  
}


}@media (max-width: 767px){#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  margin: 0 !important;
  overflow: visible;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-0a3b4843-045e-41e7-89dd-44bd159a4a83 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add background color handling */
  
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
    
    
    
    
  }


.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 .shogun-image-content {
  
    justify-content: center;
  
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0a3b4843-045e-41e7-89dd-44bd159a4a83.shogun-image {
  box-sizing: border-box;
}



.s-0a3b4843-045e-41e7-89dd-44bd159a4a83 img.shogun-image {
  
}


}
#s-d405c66e-8dfe-4ef0-94a3-1c008dea75df {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 50px;
}
@media (max-width: 767px){#s-d405c66e-8dfe-4ef0-94a3-1c008dea75df {
  display: none;
}
#s-d405c66e-8dfe-4ef0-94a3-1c008dea75df, #wrap-s-d405c66e-8dfe-4ef0-94a3-1c008dea75df, #wrap-content-s-d405c66e-8dfe-4ef0-94a3-1c008dea75df { display: none !important; }}







#s-d405c66e-8dfe-4ef0-94a3-1c008dea75df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d405c66e-8dfe-4ef0-94a3-1c008dea75df.shg-box.shg-c {
  justify-content: center;
}

#s-112c2752-9471-4b66-b3ea-cbeeeb93dce7 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-112c2752-9471-4b66-b3ea-cbeeeb93dce7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-112c2752-9471-4b66-b3ea-cbeeeb93dce7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-112c2752-9471-4b66-b3ea-cbeeeb93dce7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-112c2752-9471-4b66-b3ea-cbeeeb93dce7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ff04edc1-69ef-4621-857e-ad20c5fa6779 {
  padding-top: 0px;
padding-bottom: 0px;
}

#s-ff04edc1-69ef-4621-857e-ad20c5fa6779 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ff04edc1-69ef-4621-857e-ad20c5fa6779 .shg-sld-nav-button.shg-sld-left,
#s-ff04edc1-69ef-4621-857e-ad20c5fa6779 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b {
  text-align: center;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b {
  margin: 0 !important;
  overflow: visible;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add background color handling */
  
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
    
    
    
    
  }


.s-cea45aec-5893-42ef-999a-373dbc87f33b .shogun-image-content {
  
    justify-content: center;
  
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
  box-sizing: border-box;
}



.s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  
}


@media (min-width: 1200px){#s-cea45aec-5893-42ef-999a-373dbc87f33b {
  margin: 0 !important;
  overflow: visible;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add background color handling */
  
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
    
    
    
    
  }


.s-cea45aec-5893-42ef-999a-373dbc87f33b .shogun-image-content {
  
    justify-content: center;
  
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
  box-sizing: border-box;
}



.s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cea45aec-5893-42ef-999a-373dbc87f33b {
  margin: 0 !important;
  overflow: visible;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add background color handling */
  
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
    
    
    
    
  }


.s-cea45aec-5893-42ef-999a-373dbc87f33b .shogun-image-content {
  
    justify-content: center;
  
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
  box-sizing: border-box;
}



.s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-cea45aec-5893-42ef-999a-373dbc87f33b {
  margin: 0 !important;
  overflow: visible;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add background color handling */
  
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
    
    
    
    
  }


.s-cea45aec-5893-42ef-999a-373dbc87f33b .shogun-image-content {
  
    justify-content: center;
  
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
  box-sizing: border-box;
}



.s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  
}


}@media (max-width: 767px){#s-cea45aec-5893-42ef-999a-373dbc87f33b {
  margin: 0 !important;
  overflow: visible;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cea45aec-5893-42ef-999a-373dbc87f33b {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add background color handling */
  
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
    
    
    
    
  }


.s-cea45aec-5893-42ef-999a-373dbc87f33b .shogun-image-content {
  
    justify-content: center;
  
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cea45aec-5893-42ef-999a-373dbc87f33b.shogun-image {
  box-sizing: border-box;
}



.s-cea45aec-5893-42ef-999a-373dbc87f33b img.shogun-image {
  
}


}
#s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  text-align: center;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
    
    
    
    
  }


.s-3ea5d566-7474-4895-ac53-495b8a6f1308 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
  box-sizing: border-box;
}



.s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  
}


@media (min-width: 1200px){#s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
    
    
    
    
  }


.s-3ea5d566-7474-4895-ac53-495b8a6f1308 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
  box-sizing: border-box;
}



.s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
    
    
    
    
  }


.s-3ea5d566-7474-4895-ac53-495b8a6f1308 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
  box-sizing: border-box;
}



.s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
    
    
    
    
  }


.s-3ea5d566-7474-4895-ac53-495b8a6f1308 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
  box-sizing: border-box;
}



.s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  
}


}@media (max-width: 767px){#s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  margin: 0 !important;
  overflow: visible;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-3ea5d566-7474-4895-ac53-495b8a6f1308 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add background color handling */
  
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
    
    
    
    
  }


.s-3ea5d566-7474-4895-ac53-495b8a6f1308 .shogun-image-content {
  
    justify-content: center;
  
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ea5d566-7474-4895-ac53-495b8a6f1308.shogun-image {
  box-sizing: border-box;
}



.s-3ea5d566-7474-4895-ac53-495b8a6f1308 img.shogun-image {
  
}


}
#s-ddbb0c02-4761-4dcb-8934-35ab76080549 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-ddbb0c02-4761-4dcb-8934-35ab76080549 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ddbb0c02-4761-4dcb-8934-35ab76080549 .shg-sld-nav-button.shg-sld-left,
#s-ddbb0c02-4761-4dcb-8934-35ab76080549 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-63567bdc-9c4b-4728-aaad-c286bf5127d5 {
  text-align: left;
}

#s-afb3cc0f-ff15-4a3b-9c2e-f84505828258 {
  text-align: left;
}

#s-8cc4bc8c-d138-4ae5-a088-f2910e6380a9 {
  min-height: 50px;
}








#s-8cc4bc8c-d138-4ae5-a088-f2910e6380a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8cc4bc8c-d138-4ae5-a088-f2910e6380a9.shg-box.shg-c {
  justify-content: center;
}

#s-a3197789-a688-400e-a234-3a41e9d14ebb {
  margin-left: 25%;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-a3197789-a688-400e-a234-3a41e9d14ebb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a3197789-a688-400e-a234-3a41e9d14ebb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a3197789-a688-400e-a234-3a41e9d14ebb-root {
    text-align: center;
  }


#s-a3197789-a688-400e-a234-3a41e9d14ebb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-a3197789-a688-400e-a234-3a41e9d14ebb-root {
    text-align: center;
  }


#s-a3197789-a688-400e-a234-3a41e9d14ebb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a3197789-a688-400e-a234-3a41e9d14ebb-root {
    text-align: center;
  }


#s-a3197789-a688-400e-a234-3a41e9d14ebb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a3197789-a688-400e-a234-3a41e9d14ebb-root {
    text-align: center;
  }


#s-a3197789-a688-400e-a234-3a41e9d14ebb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-a3197789-a688-400e-a234-3a41e9d14ebb-root {
    text-align: center;
  }


#s-a3197789-a688-400e-a234-3a41e9d14ebb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-123a7753-a468-44b5-9ffc-b701b763c188 {
  min-height: 50px;
}








#s-123a7753-a468-44b5-9ffc-b701b763c188 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-123a7753-a468-44b5-9ffc-b701b763c188.shg-box.shg-c {
  justify-content: center;
}

#s-c8f31421-7dec-4324-9c30-709b81510dc9 {
  min-height: 50px;
}








#s-c8f31421-7dec-4324-9c30-709b81510dc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c8f31421-7dec-4324-9c30-709b81510dc9.shg-box.shg-c {
  justify-content: center;
}

#s-126777b3-8ee5-40c0-9547-5b04aa2c2726 {
  min-height: 50px;
}








#s-126777b3-8ee5-40c0-9547-5b04aa2c2726 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-126777b3-8ee5-40c0-9547-5b04aa2c2726.shg-box.shg-c {
  justify-content: center;
}

#s-e50596e6-30d7-404a-9437-02645a262192 {
  margin-top: 30px;
margin-bottom: 30px;
text-align: left;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  text-align: center;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  margin: 0 !important;
  overflow: visible;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add background color handling */
  
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
    
    
    
    
  }


.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
  box-sizing: border-box;
}



.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  
}


@media (min-width: 1200px){#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  margin: 0 !important;
  overflow: visible;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add background color handling */
  
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
    
    
    
    
  }


.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
  box-sizing: border-box;
}



.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  margin: 0 !important;
  overflow: visible;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add background color handling */
  
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
    
    
    
    
  }


.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
  box-sizing: border-box;
}



.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  margin: 0 !important;
  overflow: visible;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add background color handling */
  
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
    
    
    
    
  }


.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
  box-sizing: border-box;
}



.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  
}


}@media (max-width: 767px){#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  margin: 0 !important;
  overflow: visible;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-120b6082-8e9a-4aa8-885d-35276a5d72a9 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add background color handling */
  
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
    
    
    
    
  }


.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 .shogun-image-content {
  
    justify-content: center;
  
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-120b6082-8e9a-4aa8-885d-35276a5d72a9.shogun-image {
  box-sizing: border-box;
}



.s-120b6082-8e9a-4aa8-885d-35276a5d72a9 img.shogun-image {
  
}


}
#s-4084455f-b4d6-4ab8-98d7-e9725f4b08b6 {
  min-height: 50px;
}








#s-4084455f-b4d6-4ab8-98d7-e9725f4b08b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4084455f-b4d6-4ab8-98d7-e9725f4b08b6.shg-box.shg-c {
  justify-content: center;
}

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

.shg-category-root {
  display: grid;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}

.shg-default-column-count-2 {
  grid-template-columns: repeat(2, 1fr);
}

.shg-default-column-count-3 {
  grid-template-columns: repeat(3, 1fr);
}

.shg-default-column-count-4 {
  grid-template-columns: repeat(4, 1fr);
}

.shg-default-column-count-5 {
  grid-template-columns: repeat(5, 1fr);
}

.shg-default-column-count-6 {
  grid-template-columns: repeat(6, 1fr);
}

.shg-category-grid .shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

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

/* Swiper CSS - Duplicated from SliderV3 base.css */

.shg-swiper-container {
  --arrow-button-size: 35px;
  --pagination-height: 32px;
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bottom: 8px;

  position: relative;
  /*
  * In case you are wondering, why it's set to grid, please see the links below:
   * https://github.com/nolimits4web/swiper/issues/3599
   * https://github.com/nolimits4web/swiper/issues/3599#issuecomment-1290283431
   */
  display: grid;
  padding: 8px var(--arrow-button-size) var(--pagination-height)
    var(--arrow-button-size);
}

.shg-swiper:not(.swiper-initialized) {
  visibility: hidden;
  display: flex;
  overflow-x: hidden;
}

.shg-swiper-container > .shg-swiper {
  margin-left: 0;
  margin-right: 0;
}

.shg-swiper:not(.swiper-initialized) ~ .swiper-pagination,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-prev,
.shg-swiper:not(.swiper-initialized) ~ .swiper-button-next {
  visibility: hidden;
}

.shg-swiper-container > .swiper-button-prev,
.shg-swiper-container > .swiper-button-next {
  top: 0;
  height: calc(100% - var(--pagination-height));
  width: var(--arrow-button-size);
  margin: 0;
}

.shg-swiper-container > .swiper-button-prev {
  left: 0;
}

.shg-swiper-container > .swiper-button-next {
  right: 0;
}

.shg-swiper-container > .swiper-button-next:after,
.shg-swiper-container > .swiper-button-prev:after {
  /* Ditch default Swiper arrow */
  display: none;
}

.shg-swiper-container > .swiper-button-next svg,
.shg-swiper-container > .swiper-button-prev svg {
  width: var(--arrow-button-size);
  height: var(--arrow-button-size);
}

#s-46e26f30-0418-403e-bb20-79e69e7413d9 {
  padding-top: 20px;
padding-bottom: 0px;
}

#s-46e26f30-0418-403e-bb20-79e69e7413d9 .shg-dynamic-column-count {
  grid-template-columns: repeat(3, 1fr);
}


#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-prev,
#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-next {
  
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-prev svg,
#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-46e26f30-0418-403e-bb20-79e69e7413d9 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

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

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

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

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

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

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

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

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

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

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

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

#s-73b2caef-be1d-4f55-92da-482279a6a04c {
  text-align: left;
}



.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-73b2caef-be1d-4f55-92da-482279a6a04c img.shogun-image {
  width: 100%;
  height: auto;
}





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

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

#s-73364cd8-f7c3-445f-8609-69abe606a514 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73364cd8-f7c3-445f-8609-69abe606a514 .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-9bd5e32d-40c3-447a-9f7a-582d83b5ea29 {
  text-align: left;
}

#s-9bd5e32d-40c3-447a-9f7a-582d83b5ea29 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9bd5e32d-40c3-447a-9f7a-582d83b5ea29 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-9bd5e32d-40c3-447a-9f7a-582d83b5ea29 .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-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 {
  text-align: left;
}



.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2b2ec9f9-95eb-464c-bc92-108cb0f222d8 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-e0e2cca3-df40-47a6-96a6-39f34130cc17 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e0e2cca3-df40-47a6-96a6-39f34130cc17 .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-4b622692-36e2-467e-86ee-1eacf0d6deac {
  text-align: left;
}

#s-4b622692-36e2-467e-86ee-1eacf0d6deac .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4b622692-36e2-467e-86ee-1eacf0d6deac .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-4b622692-36e2-467e-86ee-1eacf0d6deac .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-c9f33c0d-c782-420b-b627-4bc46028e465 {
  text-align: left;
}



.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9f33c0d-c782-420b-b627-4bc46028e465 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-fb065749-c292-4945-a701-4103b5f4c37c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fb065749-c292-4945-a701-4103b5f4c37c .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-89c9cec6-4d5e-4eb0-8f7e-387cdc11193b {
  text-align: left;
}

#s-89c9cec6-4d5e-4eb0-8f7e-387cdc11193b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-89c9cec6-4d5e-4eb0-8f7e-387cdc11193b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-89c9cec6-4d5e-4eb0-8f7e-387cdc11193b .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-686a1d3b-c2b3-47a1-87b2-ab67ec10097a {
  text-align: left;
}



.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-686a1d3b-c2b3-47a1-87b2-ab67ec10097a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-4aebb5aa-2f9d-49cb-a25f-8d17fd3c8a8c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4aebb5aa-2f9d-49cb-a25f-8d17fd3c8a8c .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-31afa564-eaa7-4de2-846e-d809cef2f3d3 {
  text-align: left;
}

#s-31afa564-eaa7-4de2-846e-d809cef2f3d3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-31afa564-eaa7-4de2-846e-d809cef2f3d3 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-31afa564-eaa7-4de2-846e-d809cef2f3d3 .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-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 {
  text-align: left;
}



.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d95b8fe-c645-4ab8-9ae5-4f7d30570d74 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-991dc1c2-c531-438c-b2a7-ecfca6d03611 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-991dc1c2-c531-438c-b2a7-ecfca6d03611 .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-ca2e28bc-5d4d-478c-9102-9d313c0498f8 {
  text-align: left;
}

#s-ca2e28bc-5d4d-478c-9102-9d313c0498f8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ca2e28bc-5d4d-478c-9102-9d313c0498f8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-ca2e28bc-5d4d-478c-9102-9d313c0498f8 .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-e7d2b4a2-ff55-416c-889a-2706b4f4b716 {
  text-align: left;
}



.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e7d2b4a2-ff55-416c-889a-2706b4f4b716 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-837d6ecb-bc55-4f23-af07-a58d44f515e9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-837d6ecb-bc55-4f23-af07-a58d44f515e9 .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-7b3184ce-3c5e-4d98-893f-03172de80983 {
  text-align: left;
}

#s-7b3184ce-3c5e-4d98-893f-03172de80983 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7b3184ce-3c5e-4d98-893f-03172de80983 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-7b3184ce-3c5e-4d98-893f-03172de80983 .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-dafafde1-0d81-49a6-90f8-abbe161aa37f {
  margin-top: 60px;
margin-left: 25%;
margin-bottom: 60px;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-dafafde1-0d81-49a6-90f8-abbe161aa37f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-dafafde1-0d81-49a6-90f8-abbe161aa37f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-dafafde1-0d81-49a6-90f8-abbe161aa37f-root {
    text-align: center;
  }


#s-dafafde1-0d81-49a6-90f8-abbe161aa37f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
@media (min-width: 1200px){
  #s-dafafde1-0d81-49a6-90f8-abbe161aa37f-root {
    text-align: center;
  }


#s-dafafde1-0d81-49a6-90f8-abbe161aa37f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-dafafde1-0d81-49a6-90f8-abbe161aa37f-root {
    text-align: center;
  }


#s-dafafde1-0d81-49a6-90f8-abbe161aa37f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-dafafde1-0d81-49a6-90f8-abbe161aa37f-root {
    text-align: center;
  }


#s-dafafde1-0d81-49a6-90f8-abbe161aa37f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (max-width: 767px){
  #s-dafafde1-0d81-49a6-90f8-abbe161aa37f-root {
    text-align: center;
  }


#s-dafafde1-0d81-49a6-90f8-abbe161aa37f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}
#s-b3bf61d5-c19c-4d88-80cd-f215d6b54b36 {
  min-height: 50px;
}








#s-b3bf61d5-c19c-4d88-80cd-f215d6b54b36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b3bf61d5-c19c-4d88-80cd-f215d6b54b36.shg-box.shg-c {
  justify-content: center;
}

#s-08471d39-b927-41ee-bd79-01817a9a00bd {
  margin-top: 30px;
margin-bottom: 30px;
text-align: left;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  text-align: center;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  margin: 0 !important;
  overflow: visible;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add background color handling */
  
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
    
    
    
    
  }


.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
  box-sizing: border-box;
}



.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  
}


@media (min-width: 1200px){#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  margin: 0 !important;
  overflow: visible;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add background color handling */
  
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
    
    
    
    
  }


.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
  box-sizing: border-box;
}



.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  margin: 0 !important;
  overflow: visible;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add background color handling */
  
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
    
    
    
    
  }


.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
  box-sizing: border-box;
}



.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  margin: 0 !important;
  overflow: visible;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add background color handling */
  
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
    
    
    
    
  }


.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
  box-sizing: border-box;
}



.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  
}


}@media (max-width: 767px){#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  margin: 0 !important;
  overflow: visible;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-cebf7aed-440e-47f2-b3b5-a801ed82a28e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add background color handling */
  
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
    
    
    
    
  }


.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e .shogun-image-content {
  
    justify-content: center;
  
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cebf7aed-440e-47f2-b3b5-a801ed82a28e.shogun-image {
  box-sizing: border-box;
}



.s-cebf7aed-440e-47f2-b3b5-a801ed82a28e img.shogun-image {
  
}


}
#s-850504f8-96e0-4d81-a223-a1135222cb09 {
  min-height: 50px;
}








#s-850504f8-96e0-4d81-a223-a1135222cb09 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-850504f8-96e0-4d81-a223-a1135222cb09.shg-box.shg-c {
  justify-content: center;
}

#s-dc30348f-8acb-4eae-97b1-8408399bf2e2 {
  padding-top: 20px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

#s-dc30348f-8acb-4eae-97b1-8408399bf2e2 .shg-dynamic-column-count {
  grid-template-columns: repeat(3, 1fr);
}


#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 {
  --swiper-pagination-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-inactive-color: rgba(113, 113, 113, 1) !important;
  --swiper-pagination-bullet-active-color: rgba(113, 113, 113, 1) !important;
  --arrow-button-size: 35px !important;
  --swiper-pagination-bullet-size: 14px !important;
  
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-prev,
#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-next {
  
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-prev svg,
#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-next svg {
  fill: rgba(113, 113, 113, 1) !important;
  stroke: rgba(113, 113, 113, 1) !important;
  
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-prev {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-next {
  
  display:  flex ;
  align-items: center;
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 > .swiper-button-lock {
  display: none !important;
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 .swiper-pagination-bullet-active {
  background-color: rgba(113, 113, 113, 1) !important;
  width: calc(14px * 1) !important;
  height: 14px !important;
  border-radius:  50px  !important;
}

#slider-v3-s-dc30348f-8acb-4eae-97b1-8408399bf2e2 .swiper-pagination {
  position:  initial ;
  display: flex;
  margin-top:  8px ;
  justify-content:  center
                   ;
  align-items: center;
  gap: 8px !important;
}

#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 {
  text-align: left;
}



.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a183473c-35fd-4890-9358-2e1b0f06ddc1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6e210e19-4d5b-467d-86dc-f872c9791f67 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e210e19-4d5b-467d-86dc-f872c9791f67 .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  
}

#s-14a8449f-02fd-42d9-8a77-99687ff19a1a {
  text-align: left;
}

#s-14a8449f-02fd-42d9-8a77-99687ff19a1a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-14a8449f-02fd-42d9-8a77-99687ff19a1a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-14a8449f-02fd-42d9-8a77-99687ff19a1a .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-194d39ee-8967-4d35-a817-1d91646b7619 {
  text-align: left;
}



.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-194d39ee-8967-4d35-a817-1d91646b7619 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-36b880b8-18ef-46d1-bbe3-3ff14892b01c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-36b880b8-18ef-46d1-bbe3-3ff14892b01c .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  
}

#s-9200d8d4-9103-45a5-9591-47fe9de1670f {
  text-align: left;
}

#s-9200d8d4-9103-45a5-9591-47fe9de1670f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9200d8d4-9103-45a5-9591-47fe9de1670f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-9200d8d4-9103-45a5-9591-47fe9de1670f .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-66f9967d-28ad-46bd-8c94-a79f0e2127c3 {
  text-align: left;
}



.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-66f9967d-28ad-46bd-8c94-a79f0e2127c3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6c867a45-fdec-4283-847c-267dfec9cd49 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c867a45-fdec-4283-847c-267dfec9cd49 .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  
}

#s-f6ac1a37-478d-4379-9b96-c7e55618aa91 {
  text-align: left;
}

#s-f6ac1a37-478d-4379-9b96-c7e55618aa91 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f6ac1a37-478d-4379-9b96-c7e55618aa91 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-f6ac1a37-478d-4379-9b96-c7e55618aa91 .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-c47c2379-7dc9-4c35-b982-6d0c658d59c4 {
  text-align: left;
}



.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c47c2379-7dc9-4c35-b982-6d0c658d59c4 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-b2798c3f-b383-461d-a840-a0c2bde152ea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b2798c3f-b383-461d-a840-a0c2bde152ea .shg-product-title-component h3 span {
  color: ;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  
}

#s-9c5d1775-f6f3-44dd-950c-1ad43bdad1b9 {
  text-align: left;
}

#s-9c5d1775-f6f3-44dd-950c-1ad43bdad1b9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 14px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9c5d1775-f6f3-44dd-950c-1ad43bdad1b9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 14px;
}

#s-9c5d1775-f6f3-44dd-950c-1ad43bdad1b9 .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-1383f0bd-4ea8-49d7-a165-3346595f5acd {
  margin-top: 60px;
margin-left: 25%;
margin-bottom: 60px;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-1383f0bd-4ea8-49d7-a165-3346595f5acd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1383f0bd-4ea8-49d7-a165-3346595f5acd:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-1383f0bd-4ea8-49d7-a165-3346595f5acd-root {
    text-align: center;
  }


#s-1383f0bd-4ea8-49d7-a165-3346595f5acd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
@media (min-width: 1200px){
  #s-1383f0bd-4ea8-49d7-a165-3346595f5acd-root {
    text-align: center;
  }


#s-1383f0bd-4ea8-49d7-a165-3346595f5acd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1383f0bd-4ea8-49d7-a165-3346595f5acd-root {
    text-align: center;
  }


#s-1383f0bd-4ea8-49d7-a165-3346595f5acd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1383f0bd-4ea8-49d7-a165-3346595f5acd-root {
    text-align: center;
  }


#s-1383f0bd-4ea8-49d7-a165-3346595f5acd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (max-width: 767px){
  #s-1383f0bd-4ea8-49d7-a165-3346595f5acd-root {
    text-align: center;
  }


#s-1383f0bd-4ea8-49d7-a165-3346595f5acd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}
#s-6b12690a-5b16-494f-88e5-ce5a53d839ab {
  margin-top: 30px;
margin-left: 25%;
margin-bottom: 100px;
margin-right: 25%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-6b12690a-5b16-494f-88e5-ce5a53d839ab:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6b12690a-5b16-494f-88e5-ce5a53d839ab:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6b12690a-5b16-494f-88e5-ce5a53d839ab-root {
    text-align: center;
  }


#s-6b12690a-5b16-494f-88e5-ce5a53d839ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
@media (min-width: 1200px){
  #s-6b12690a-5b16-494f-88e5-ce5a53d839ab-root {
    text-align: center;
  }


#s-6b12690a-5b16-494f-88e5-ce5a53d839ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6b12690a-5b16-494f-88e5-ce5a53d839ab-root {
    text-align: center;
  }


#s-6b12690a-5b16-494f-88e5-ce5a53d839ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6b12690a-5b16-494f-88e5-ce5a53d839ab-root {
    text-align: center;
  }


#s-6b12690a-5b16-494f-88e5-ce5a53d839ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}@media (max-width: 767px){
  #s-6b12690a-5b16-494f-88e5-ce5a53d839ab-root {
    text-align: center;
  }


#s-6b12690a-5b16-494f-88e5-ce5a53d839ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Noto Sans JP;
  display:  block ;
}
}
#s-6b70aa48-f38e-4859-8372-419cba0d1618 {
  min-height: 50px;
}
@media (max-width: 767px){#s-6b70aa48-f38e-4859-8372-419cba0d1618 {
  display: none;
}
#s-6b70aa48-f38e-4859-8372-419cba0d1618, #wrap-s-6b70aa48-f38e-4859-8372-419cba0d1618, #wrap-content-s-6b70aa48-f38e-4859-8372-419cba0d1618 { display: none !important; }}







#s-6b70aa48-f38e-4859-8372-419cba0d1618 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6b70aa48-f38e-4859-8372-419cba0d1618.shg-box.shg-c {
  justify-content: center;
}

#s-5cb77dda-bab2-4d11-b840-f65f1d77f3d7 {
  min-height: 50px;
}








#s-5cb77dda-bab2-4d11-b840-f65f1d77f3d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5cb77dda-bab2-4d11-b840-f65f1d77f3d7.shg-box.shg-c {
  justify-content: center;
}

#s-349a4765-2317-468c-a396-c18c51f23d97 {
  min-height: 50px;
}








#s-349a4765-2317-468c-a396-c18c51f23d97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-349a4765-2317-468c-a396-c18c51f23d97.shg-box.shg-c {
  justify-content: center;
}

#s-85d794e0-389f-4e54-a975-9cd3bb0d09e5 {
  min-height: 50px;
}








#s-85d794e0-389f-4e54-a975-9cd3bb0d09e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-85d794e0-389f-4e54-a975-9cd3bb0d09e5.shg-box.shg-c {
  justify-content: center;
}

#s-c7dd6891-6d88-4728-a093-06dd1bdd4298 {
  margin-top: 80px;
min-height: 50px;
}








#s-c7dd6891-6d88-4728-a093-06dd1bdd4298 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c7dd6891-6d88-4728-a093-06dd1bdd4298.shg-box.shg-c {
  justify-content: center;
}

#s-87ab2afb-5cd2-4cd1-87d6-a9a40ef05445 {
  text-align: left;
}

@media (min-width: 0px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f23d9a1-b68a-4410-8a7a-48641ff84251"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-974dfef5-6948-4def-b18f-7517963d998b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-974dfef5-6948-4def-b18f-7517963d998b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-column, #s-974dfef5-6948-4def-b18f-7517963d998b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae {
  max-width: 1040px;
text-align: center;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae {
  margin: 0 !important;
  overflow: visible;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add background color handling */
  
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d7965885-dda5-4a38-9847-39e293b12dae .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image {
  box-sizing: border-box;
}



.s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  
}


@media (min-width: 1200px){#s-d7965885-dda5-4a38-9847-39e293b12dae {
  margin: 0 !important;
  overflow: visible;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add background color handling */
  
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d7965885-dda5-4a38-9847-39e293b12dae .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image {
  box-sizing: border-box;
}



.s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-d7965885-dda5-4a38-9847-39e293b12dae {
  margin: 0 !important;
  overflow: visible;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add background color handling */
  
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d7965885-dda5-4a38-9847-39e293b12dae .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image {
  box-sizing: border-box;
}



.s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-d7965885-dda5-4a38-9847-39e293b12dae {
  margin: 0 !important;
  overflow: visible;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add background color handling */
  
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d7965885-dda5-4a38-9847-39e293b12dae .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image {
  box-sizing: border-box;
}



.s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  
}


}@media (max-width: 767px){#s-d7965885-dda5-4a38-9847-39e293b12dae {
  margin: 0 !important;
  overflow: visible;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-d7965885-dda5-4a38-9847-39e293b12dae {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add background color handling */
  
}

#s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-d7965885-dda5-4a38-9847-39e293b12dae .shogun-image-content {
  
    justify-content: center;
  
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d7965885-dda5-4a38-9847-39e293b12dae.shogun-image {
  box-sizing: border-box;
}



.s-d7965885-dda5-4a38-9847-39e293b12dae img.shogun-image {
  
}


}
#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  max-width: 1040px;
text-align: center;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image {
  box-sizing: border-box;
}



.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  
}


@media (min-width: 1200px){#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image {
  box-sizing: border-box;
}



.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image {
  box-sizing: border-box;
}



.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image {
  box-sizing: border-box;
}



.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  
}


}@media (max-width: 767px){#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  margin: 0 !important;
  overflow: visible;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add background color handling */
  
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 .shogun-image-content {
  
    justify-content: center;
  
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2.shogun-image {
  box-sizing: border-box;
}



.s-6b69c63c-e054-4a78-8dea-4f3cc42f27d2 img.shogun-image {
  
}


}
#s-b2922f9d-fea9-4f18-9297-b674fa2852cd {
  text-align: left;
}

#s-69e5cf06-3b45-42d8-b7d1-e4002f985422 {
  text-align: left;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-column, #s-ab874114-c9fc-4c3d-a213-91c806aa015b td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  max-width: 1040px;
text-align: center;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  margin: 0 !important;
  overflow: visible;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add background color handling */
  
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image {
  box-sizing: border-box;
}



.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  
}


@media (min-width: 1200px){#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  margin: 0 !important;
  overflow: visible;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add background color handling */
  
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image {
  box-sizing: border-box;
}



.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  margin: 0 !important;
  overflow: visible;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add background color handling */
  
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image {
  box-sizing: border-box;
}



.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  margin: 0 !important;
  overflow: visible;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add background color handling */
  
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image {
  box-sizing: border-box;
}



.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  
}


}@media (max-width: 767px){#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  margin: 0 !important;
  overflow: visible;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add background color handling */
  
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e .shogun-image-content {
  
    justify-content: center;
  
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e.shogun-image {
  box-sizing: border-box;
}



.s-f13ab4b5-505f-48e8-8fe0-5b49e20d707e img.shogun-image {
  
}


}
#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  max-width: 1040px;
text-align: center;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image {
  box-sizing: border-box;
}



.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  
}


@media (min-width: 1200px){#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image {
  box-sizing: border-box;
}



.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image {
  box-sizing: border-box;
}



.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image {
  box-sizing: border-box;
}



.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  
}


}@media (max-width: 767px){#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  margin: 0 !important;
  overflow: visible;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add background color handling */
  
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 .shogun-image-content {
  
    justify-content: center;
  
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723.shogun-image {
  box-sizing: border-box;
}



.s-5e7c06f2-23a4-4bcf-8e77-1bf8a28e1723 img.shogun-image {
  
}


}
#s-2e2e9ef6-30d0-472e-8c01-20890f767698 {
  text-align: left;
}

#s-454e3450-4ca5-4040-ad4b-90dfca83ae2e {
  text-align: left;
}

#s-4ed30d3b-8d13-411e-94e8-351549bfd177 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
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, 1);
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-4ed30d3b-8d13-411e-94e8-351549bfd177:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-4ed30d3b-8d13-411e-94e8-351549bfd177:active {background-color: rgba(255, 204, 204, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}

  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4ed30d3b-8d13-411e-94e8-351549bfd177-root {
    text-align: center;
  }


#s-4ed30d3b-8d13-411e-94e8-351549bfd177.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ef37f3f9-47db-4568-b7dc-61fcfca9e002 {
  min-height: 50px;
}








#s-ef37f3f9-47db-4568-b7dc-61fcfca9e002 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ef37f3f9-47db-4568-b7dc-61fcfca9e002.shg-box.shg-c {
  justify-content: center;
}

#s-881ec222-f3e5-4264-a05c-8e9be736bbac {
  text-align: left;
}

#s-3f7e815b-97fa-4ac3-85f9-f2d9f70d9271 {
  min-height: 50px;
}








#s-3f7e815b-97fa-4ac3-85f9-f2d9f70d9271 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3f7e815b-97fa-4ac3-85f9-f2d9f70d9271.shg-box.shg-c {
  justify-content: center;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* <-- User Content Animations */

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

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

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