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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-32d1c112-c9f7-4774-93f0-51a057f29fd4 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-32d1c112-c9f7-4774-93f0-51a057f29fd4 {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-32d1c112-c9f7-4774-93f0-51a057f29fd4 {
  padding-left: 22px;
padding-right: 22px;
}
}







#s-32d1c112-c9f7-4774-93f0-51a057f29fd4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32d1c112-c9f7-4774-93f0-51a057f29fd4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-a3288214-4ef1-4caf-b47e-7c2469e3ba36 {
  margin-top: 24px;
margin-bottom: 24px;
max-width: 903.33px;
text-align: center;
}







  #s-a3288214-4ef1-4caf-b47e-7c2469e3ba36 img.shogun-image {
    

    
    
    
  }


#s-a3288214-4ef1-4caf-b47e-7c2469e3ba36 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-f5fc3893-8709-4e3f-bd7d-d28260100c3b {
  margin-top: 0px;
margin-bottom: 19px;
}

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

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

#s-9bc2d4f5-6864-4175-8f45-347f056d5d34 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9bc2d4f5-6864-4175-8f45-347f056d5d34 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-3a53b391-6887-4a41-9451-a91e4b820b4b {
  margin-bottom: 10px;
}

.shg-social-alignable {
  display: inline-block;
}

.shg-social-container {
  display: flex;
}

.shg-social-element {
  display: inline-block;
  border: none !important;
  padding: 0px !important;
}

#s-c28c3d84-5a34-4c1f-bca1-033d4204841b {
  margin-top: 0px;
margin-bottom: 10px;
text-align: left;
}

#s-f93fc85f-366f-4ddf-849b-ad9aabc4002e {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f93fc85f-366f-4ddf-849b-ad9aabc4002e {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-f93fc85f-366f-4ddf-849b-ad9aabc4002e {
  padding-left: 22px;
padding-right: 22px;
}
}







#s-f93fc85f-366f-4ddf-849b-ad9aabc4002e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f93fc85f-366f-4ddf-849b-ad9aabc4002e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5dae68ad-6ede-4941-b2f7-2f72b8d3a405 {
  margin-top: 24px;
margin-bottom: 24px;
max-width: 903.33px;
text-align: center;
}







  #s-5dae68ad-6ede-4941-b2f7-2f72b8d3a405 img.shogun-image {
    

    
    
    
  }


#s-5dae68ad-6ede-4941-b2f7-2f72b8d3a405 .shogun-image-content {
  
    align-items: center;
  
}

#s-3779befe-f064-494e-a9d0-58650ce5dca3 {
  margin-bottom: 34px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3779befe-f064-494e-a9d0-58650ce5dca3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-88fb8121-8558-4f0d-b847-2ac234059eb5 {
  margin-top: 0px;
margin-bottom: 0px;
}

.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-9b23d921-0ba1-4595-8826-077ce1c2dc8b {
  margin-top: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b {
  margin-bottom: 0px;
}
}

  #s-9b23d921-0ba1-4595-8826-077ce1c2dc8b-root {
    text-align: center;
  }


#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9b23d921-0ba1-4595-8826-077ce1c2dc8b-root {
    text-align: center;
  }


#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9b23d921-0ba1-4595-8826-077ce1c2dc8b-root {
    text-align: center;
  }


#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9b23d921-0ba1-4595-8826-077ce1c2dc8b-root {
    text-align: center;
  }


#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9b23d921-0ba1-4595-8826-077ce1c2dc8b-root {
    text-align: center;
  }


#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-9b23d921-0ba1-4595-8826-077ce1c2dc8b-root {
    text-align: center;
  }


#s-9b23d921-0ba1-4595-8826-077ce1c2dc8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-aab89da6-7561-457f-9cc0-6993afbb8318 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-aab89da6-7561-457f-9cc0-6993afbb8318 {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-aab89da6-7561-457f-9cc0-6993afbb8318 {
  padding-left: 22px;
padding-right: 22px;
}
}







#s-aab89da6-7561-457f-9cc0-6993afbb8318 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aab89da6-7561-457f-9cc0-6993afbb8318.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b976901b-0132-4ae4-810b-e11e3ff92e3c {
  padding-top: 24px;
padding-bottom: 24px;
max-width: 903.33px;
text-align: center;
}
@media (max-width: 767px){#s-b976901b-0132-4ae4-810b-e11e3ff92e3c {
  margin-top: 10px;
margin-bottom: 10px;
}
}






  #s-b976901b-0132-4ae4-810b-e11e3ff92e3c img.shogun-image {
    

    
    
    
  }


#s-b976901b-0132-4ae4-810b-e11e3ff92e3c .shogun-image-content {
  
    align-items: center;
  
}

#s-49617d1c-2d99-40c8-9c83-45d31ece96b0 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-49617d1c-2d99-40c8-9c83-45d31ece96b0 {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-49617d1c-2d99-40c8-9c83-45d31ece96b0 {
  padding-left: 22px;
padding-right: 22px;
}
}







#s-49617d1c-2d99-40c8-9c83-45d31ece96b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49617d1c-2d99-40c8-9c83-45d31ece96b0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

#s-85c95635-7a12-4470-838f-70d6d17fb479 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-85c95635-7a12-4470-838f-70d6d17fb479"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-85c95635-7a12-4470-838f-70d6d17fb479"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-85c95635-7a12-4470-838f-70d6d17fb479"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-85c95635-7a12-4470-838f-70d6d17fb479"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-80b4589e-f007-4ef8-9455-137eea6ea63e {
  margin-bottom: 30px;
}
}
#s-80b4589e-f007-4ef8-9455-137eea6ea63e {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 {
  text-align: left;
}



.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4705cb03-ce75-4c57-95b0-3c695bf745f2 img.shogun-image {
  width: 100%;
}



}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  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-f85d65da-a737-43f3-8af2-bf229f9a5dfe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f85d65da-a737-43f3-8af2-bf229f9a5dfe .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-a299042b-c373-4691-9ac3-41f64d4f4a16 {
  text-align: left;
}

#s-a299042b-c373-4691-9ac3-41f64d4f4a16 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a299042b-c373-4691-9ac3-41f64d4f4a16 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a299042b-c373-4691-9ac3-41f64d4f4a16 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-b4cd12ca-17f1-4ed4-a5d4-1b2ca8b607f8 {
  margin-bottom: 30px;
}
}
#s-b4cd12ca-17f1-4ed4-a5d4-1b2ca8b607f8 {
  display: none;
}
#s-958788c1-8002-4041-ad71-94a3287fccaa {
  text-align: left;
}



.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-958788c1-8002-4041-ad71-94a3287fccaa img.shogun-image {
  width: 100%;
}



}
#s-c8baafda-7b81-45b0-b166-fecde9205cac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c8baafda-7b81-45b0-b166-fecde9205cac .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-fb4968d7-0687-4c08-bf12-c20240697abe {
  text-align: left;
}

#s-fb4968d7-0687-4c08-bf12-c20240697abe .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-fb4968d7-0687-4c08-bf12-c20240697abe .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-fb4968d7-0687-4c08-bf12-c20240697abe .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-28be65f3-79be-4743-85d3-cb9dbc346f02 {
  display: none;
}
#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f {
  text-align: left;
}



.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e5be3f0a-33a2-40ac-bd9e-d91d1383e73f img.shogun-image {
  width: 100%;
}



}
#s-233d666f-14e2-4a85-8a5f-fcefecfd0704 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-233d666f-14e2-4a85-8a5f-fcefecfd0704 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-5f76df9b-2fd8-4967-9a15-3bb5b078074b {
  text-align: left;
}

#s-5f76df9b-2fd8-4967-9a15-3bb5b078074b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5f76df9b-2fd8-4967-9a15-3bb5b078074b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-5f76df9b-2fd8-4967-9a15-3bb5b078074b .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-252a15e2-5c3c-4dff-b318-5214b0cebe66 {
  display: none;
}
#s-b039d521-13df-481e-8fc6-c2478e1402ef {
  text-align: left;
}



.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b039d521-13df-481e-8fc6-c2478e1402ef img.shogun-image {
  width: 100%;
}



}
#s-8f9e43b7-a471-43a7-9a6b-78506ae2c26d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8f9e43b7-a471-43a7-9a6b-78506ae2c26d .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-8d47e7cb-ae84-42be-adb4-230fe608ba95 {
  text-align: left;
}

#s-8d47e7cb-ae84-42be-adb4-230fe608ba95 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8d47e7cb-ae84-42be-adb4-230fe608ba95 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8d47e7cb-ae84-42be-adb4-230fe608ba95 .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-025da858-f4ca-4bb2-a4ff-8dfbc46c8c08 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-025da858-f4ca-4bb2-a4ff-8dfbc46c8c08"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-025da858-f4ca-4bb2-a4ff-8dfbc46c8c08"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-025da858-f4ca-4bb2-a4ff-8dfbc46c8c08"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-025da858-f4ca-4bb2-a4ff-8dfbc46c8c08"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-b0f95f1f-5867-4471-a3b8-1b69a58e59f8 {
  margin-bottom: 30px;
}
}
#s-b0f95f1f-5867-4471-a3b8-1b69a58e59f8 {
  display: none;
}
#s-a3e96f9b-1781-43d7-93f4-9373baeab263 {
  text-align: left;
}



.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3e96f9b-1781-43d7-93f4-9373baeab263 img.shogun-image {
  width: 100%;
}



}
#s-f08ed02f-87bc-47b2-88cd-88ff61d76ec9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f08ed02f-87bc-47b2-88cd-88ff61d76ec9 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-f0fb9487-a1cc-4bb3-9f41-06f0284588f7 {
  text-align: left;
}

#s-f0fb9487-a1cc-4bb3-9f41-06f0284588f7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f0fb9487-a1cc-4bb3-9f41-06f0284588f7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f0fb9487-a1cc-4bb3-9f41-06f0284588f7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-9e1aac74-ddca-492d-91db-4da2a90b49e8 {
  margin-bottom: 30px;
}
}
#s-9e1aac74-ddca-492d-91db-4da2a90b49e8 {
  display: none;
}
#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 {
  text-align: left;
}



.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1b6c27d4-0bc6-44da-89dc-2e99bbabb1e0 img.shogun-image {
  width: 100%;
}



}
#s-8ee95db0-6384-4f25-b1d3-c60bbf39cba4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8ee95db0-6384-4f25-b1d3-c60bbf39cba4 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-9c6c9e84-f646-4500-a289-863c79038e6a {
  text-align: left;
}

#s-9c6c9e84-f646-4500-a289-863c79038e6a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9c6c9e84-f646-4500-a289-863c79038e6a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9c6c9e84-f646-4500-a289-863c79038e6a .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-4d0b5d93-0318-49cb-b2fc-43feb9bc95b0 {
  display: none;
}
#s-402849a1-21ff-4906-a627-eaf26606a33d {
  text-align: left;
}



.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-402849a1-21ff-4906-a627-eaf26606a33d img.shogun-image {
  width: 100%;
}



}
#s-84219728-75e2-4c7c-a9f9-21361746e52f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-84219728-75e2-4c7c-a9f9-21361746e52f .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-709a86a4-8112-4385-95b3-20cd30de24c1 {
  text-align: left;
}

#s-709a86a4-8112-4385-95b3-20cd30de24c1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-709a86a4-8112-4385-95b3-20cd30de24c1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-709a86a4-8112-4385-95b3-20cd30de24c1 .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-c449382c-2723-493d-882e-7f40a58757fd {
  display: none;
}
#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd {
  text-align: left;
}



.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb18de5e-b5f9-44c8-961e-7fdc0c407ebd img.shogun-image {
  width: 100%;
}



}
#s-1477362d-8dd9-4b90-a538-04a77295d496 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-1477362d-8dd9-4b90-a538-04a77295d496 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-bff9a4f8-5aae-46fe-b5a8-0c275f9e1f26 {
  text-align: left;
}

#s-bff9a4f8-5aae-46fe-b5a8-0c275f9e1f26 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-bff9a4f8-5aae-46fe-b5a8-0c275f9e1f26 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-bff9a4f8-5aae-46fe-b5a8-0c275f9e1f26 .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-67eca01c-ed3c-47df-832e-42884aba9fbc {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-67eca01c-ed3c-47df-832e-42884aba9fbc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-67eca01c-ed3c-47df-832e-42884aba9fbc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-67eca01c-ed3c-47df-832e-42884aba9fbc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-67eca01c-ed3c-47df-832e-42884aba9fbc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-392b14db-7315-42e3-898b-0cd43f52ece2 {
  margin-bottom: 30px;
}
}
#s-392b14db-7315-42e3-898b-0cd43f52ece2 {
  display: none;
}
#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf {
  text-align: left;
}



.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9bad5adc-9be7-46c8-aa13-b0b1ddaf1bdf img.shogun-image {
  width: 100%;
}



}
#s-5559c723-59b9-4a33-9ed2-97fd9cdb31b5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5559c723-59b9-4a33-9ed2-97fd9cdb31b5 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-36b75ca7-666b-4333-bc4d-64686988871a {
  text-align: left;
}

#s-36b75ca7-666b-4333-bc4d-64686988871a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-36b75ca7-666b-4333-bc4d-64686988871a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-36b75ca7-666b-4333-bc4d-64686988871a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-bee6b2ce-ae60-40f9-8957-0b70c9976b30 {
  margin-bottom: 30px;
}
}
#s-bee6b2ce-ae60-40f9-8957-0b70c9976b30 {
  display: none;
}
#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 {
  text-align: left;
}



.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ebb91ec9-ae41-4b45-a243-3c38e876f6e0 img.shogun-image {
  width: 100%;
}



}
#s-792b5b30-52b3-4964-bd29-ada8b15de672 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-792b5b30-52b3-4964-bd29-ada8b15de672 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-a2edfa16-943d-4c42-8e57-a4005817c869 {
  text-align: left;
}

#s-a2edfa16-943d-4c42-8e57-a4005817c869 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a2edfa16-943d-4c42-8e57-a4005817c869 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a2edfa16-943d-4c42-8e57-a4005817c869 .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-63b0f94e-9e28-416c-91e6-d49741e513c8 {
  display: none;
}
#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 {
  text-align: left;
}



.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-297feec6-dc60-43d0-bcf1-6fcdf81f2d00 img.shogun-image {
  width: 100%;
}



}
#s-a8c039a0-2445-42f1-a83b-8aadfc2a52ed {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a8c039a0-2445-42f1-a83b-8aadfc2a52ed .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-8776ebd1-f446-4124-82d9-71fd0a7a047f {
  text-align: left;
}

#s-8776ebd1-f446-4124-82d9-71fd0a7a047f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8776ebd1-f446-4124-82d9-71fd0a7a047f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8776ebd1-f446-4124-82d9-71fd0a7a047f .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-6e845c90-9c8e-4aae-881b-bb3f26268365 {
  display: none;
}
#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 {
  text-align: left;
}



.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68691951-0911-4ca9-81cc-b4559bd4dcb0 img.shogun-image {
  width: 100%;
}



}
#s-d4a584bc-17ab-42eb-bd93-865428eaeee1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d4a584bc-17ab-42eb-bd93-865428eaeee1 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-b6921b5a-2064-4835-a879-849f9109266d {
  text-align: left;
}

#s-b6921b5a-2064-4835-a879-849f9109266d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b6921b5a-2064-4835-a879-849f9109266d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b6921b5a-2064-4835-a879-849f9109266d .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-4cf90404-af20-4ebb-91ae-24cf1437da15 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-4cf90404-af20-4ebb-91ae-24cf1437da15"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4cf90404-af20-4ebb-91ae-24cf1437da15"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4cf90404-af20-4ebb-91ae-24cf1437da15"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4cf90404-af20-4ebb-91ae-24cf1437da15"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-e8f0d17c-69cc-488c-8c64-851a68e9bcfb {
  margin-bottom: 30px;
}
}
#s-e8f0d17c-69cc-488c-8c64-851a68e9bcfb {
  display: none;
}
#s-d3aa0cd0-d711-45c8-a804-029262a8d156 {
  text-align: left;
}



.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d3aa0cd0-d711-45c8-a804-029262a8d156 img.shogun-image {
  width: 100%;
}



}
#s-46f62fbb-1368-4c76-8e7c-783ce3835ca6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-46f62fbb-1368-4c76-8e7c-783ce3835ca6 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-570b2d15-5d1e-4073-8394-05cc57931bee {
  text-align: left;
}

#s-570b2d15-5d1e-4073-8394-05cc57931bee .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-570b2d15-5d1e-4073-8394-05cc57931bee .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-570b2d15-5d1e-4073-8394-05cc57931bee .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-88b4b293-c6c5-48f7-aa87-4cc481cb00f3 {
  margin-bottom: 30px;
}
}
#s-88b4b293-c6c5-48f7-aa87-4cc481cb00f3 {
  display: none;
}
#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 {
  text-align: left;
}



.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-58f2d01f-d204-4faf-9842-b78d0a0d60d8 img.shogun-image {
  width: 100%;
}



}
#s-5bc8c6d6-b074-48b1-9b29-4f77fe3cc6fb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5bc8c6d6-b074-48b1-9b29-4f77fe3cc6fb .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-09db7f0c-7e8d-4816-a635-8b37e5d02124 {
  text-align: left;
}

#s-09db7f0c-7e8d-4816-a635-8b37e5d02124 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-09db7f0c-7e8d-4816-a635-8b37e5d02124 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-09db7f0c-7e8d-4816-a635-8b37e5d02124 .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-884dace5-d41b-4eb9-b47d-0265ceb5e479 {
  display: none;
}
#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 {
  text-align: left;
}



.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f06fefe-ef2e-4f07-b4fa-02c678612de0 img.shogun-image {
  width: 100%;
}



}
#s-47dd71b6-6eef-4068-bf5a-d9d8e6623ba9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-47dd71b6-6eef-4068-bf5a-d9d8e6623ba9 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-c21c9b65-2549-4c7e-b145-43f61dcbb49c {
  text-align: left;
}

#s-c21c9b65-2549-4c7e-b145-43f61dcbb49c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c21c9b65-2549-4c7e-b145-43f61dcbb49c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c21c9b65-2549-4c7e-b145-43f61dcbb49c .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-46178540-bd98-4881-937f-fb80e1ed36c7 {
  display: none;
}
#s-a9af2382-bc8c-494a-888f-760d5b7872a2 {
  text-align: left;
}



.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a9af2382-bc8c-494a-888f-760d5b7872a2 img.shogun-image {
  width: 100%;
}



}
#s-0449a087-3865-4653-a064-3a8c0d295c99 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0449a087-3865-4653-a064-3a8c0d295c99 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-9619e5c1-7906-47ea-9450-7c1c158be871 {
  text-align: left;
}

#s-9619e5c1-7906-47ea-9450-7c1c158be871 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9619e5c1-7906-47ea-9450-7c1c158be871 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9619e5c1-7906-47ea-9450-7c1c158be871 .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-eea635fe-d509-4eee-98b5-f17fd2347e2f {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-eea635fe-d509-4eee-98b5-f17fd2347e2f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-eea635fe-d509-4eee-98b5-f17fd2347e2f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-eea635fe-d509-4eee-98b5-f17fd2347e2f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-eea635fe-d509-4eee-98b5-f17fd2347e2f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-a7fdeb7d-4686-4d3e-81cf-168f1ca1c394 {
  margin-bottom: 30px;
}
}
#s-a7fdeb7d-4686-4d3e-81cf-168f1ca1c394 {
  display: none;
}
#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 {
  text-align: left;
}



.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-db7ff002-fdcf-4ddb-8ddd-93cbe2c937d5 img.shogun-image {
  width: 100%;
}



}
#s-e7cb00ab-4668-42bd-ab0d-cbcc61c43754 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e7cb00ab-4668-42bd-ab0d-cbcc61c43754 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-e243028e-48ee-4bd5-acdd-45963f9da57b {
  text-align: left;
}

#s-e243028e-48ee-4bd5-acdd-45963f9da57b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e243028e-48ee-4bd5-acdd-45963f9da57b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e243028e-48ee-4bd5-acdd-45963f9da57b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-a7c58ba9-d497-49b0-b7e2-024a7e01f5d8 {
  margin-bottom: 30px;
}
}
#s-a7c58ba9-d497-49b0-b7e2-024a7e01f5d8 {
  display: none;
}
#s-c196e864-3279-4051-9149-a3ccfa0c761c {
  text-align: left;
}



.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c196e864-3279-4051-9149-a3ccfa0c761c img.shogun-image {
  width: 100%;
}



}
#s-9aa59b15-dc7f-4a07-892a-f7dfcb4c88b8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-9aa59b15-dc7f-4a07-892a-f7dfcb4c88b8 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-fb1ad7f5-c70c-425a-9dff-d4d555779e40 {
  text-align: left;
}

#s-fb1ad7f5-c70c-425a-9dff-d4d555779e40 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-fb1ad7f5-c70c-425a-9dff-d4d555779e40 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-fb1ad7f5-c70c-425a-9dff-d4d555779e40 .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-32cfbe99-0560-445a-b91f-1cfbf49f16e0 {
  display: none;
}
#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f {
  text-align: left;
}



.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af9a82b4-f891-4f6f-b55b-1f730e9e866f img.shogun-image {
  width: 100%;
}



}
#s-c7be36b8-93d7-4229-8a0c-7ddba3111bc2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c7be36b8-93d7-4229-8a0c-7ddba3111bc2 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-092c100d-0f00-45b2-83a5-901a582709b0 {
  text-align: left;
}

#s-092c100d-0f00-45b2-83a5-901a582709b0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-092c100d-0f00-45b2-83a5-901a582709b0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-092c100d-0f00-45b2-83a5-901a582709b0 .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-4ee72042-2ade-43a2-a568-909b220c47ba {
  display: none;
}
#s-4544c0eb-ad36-43cb-8005-54918ff37883 {
  text-align: left;
}



.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4544c0eb-ad36-43cb-8005-54918ff37883 img.shogun-image {
  width: 100%;
}



}
#s-93400b9a-2504-4904-97ae-32c5e859c495 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-93400b9a-2504-4904-97ae-32c5e859c495 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-55f3cba5-7c6f-4cf7-ba24-bce1297ac9b7 {
  text-align: left;
}

#s-55f3cba5-7c6f-4cf7-ba24-bce1297ac9b7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-55f3cba5-7c6f-4cf7-ba24-bce1297ac9b7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-55f3cba5-7c6f-4cf7-ba24-bce1297ac9b7 .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-3e3cf9e7-253e-4542-9d6e-d998c8629b07 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-3e3cf9e7-253e-4542-9d6e-d998c8629b07"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3e3cf9e7-253e-4542-9d6e-d998c8629b07"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-3e3cf9e7-253e-4542-9d6e-d998c8629b07"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-3e3cf9e7-253e-4542-9d6e-d998c8629b07"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-c5eb2ee0-c87c-46d7-9a6d-4bccd27cea66 {
  margin-bottom: 30px;
}
}
#s-c5eb2ee0-c87c-46d7-9a6d-4bccd27cea66 {
  display: none;
}
#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 {
  text-align: left;
}



.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4a17c65a-f38f-4da5-b6c6-63f722f5f8f3 img.shogun-image {
  width: 100%;
}



}
#s-f7fae273-f08b-4b2e-aded-748f88790504 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f7fae273-f08b-4b2e-aded-748f88790504 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-d2dc5370-8937-40f9-9e66-52f3fb6cb844 {
  text-align: left;
}

#s-d2dc5370-8937-40f9-9e66-52f3fb6cb844 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d2dc5370-8937-40f9-9e66-52f3fb6cb844 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d2dc5370-8937-40f9-9e66-52f3fb6cb844 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-f324a14e-1b3c-4e37-93fc-8bfdd66e3a1b {
  margin-bottom: 30px;
}
}
#s-f324a14e-1b3c-4e37-93fc-8bfdd66e3a1b {
  display: none;
}
#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f {
  text-align: left;
}



.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd4a1cb6-44cc-4f72-b182-15d9c949e85f img.shogun-image {
  width: 100%;
}



}
#s-e460bc58-b9cc-4730-9bfb-dea01cd2c664 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e460bc58-b9cc-4730-9bfb-dea01cd2c664 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-4f6a9c8d-f02a-4f49-a285-f590e5b6053f {
  text-align: left;
}

#s-4f6a9c8d-f02a-4f49-a285-f590e5b6053f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4f6a9c8d-f02a-4f49-a285-f590e5b6053f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4f6a9c8d-f02a-4f49-a285-f590e5b6053f .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-bbcff2df-9a1e-444f-b8db-cc3c84d7b5bd {
  display: none;
}
#s-c472fb2a-ef19-492d-aed2-63a77b929241 {
  text-align: left;
}



.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c472fb2a-ef19-492d-aed2-63a77b929241 img.shogun-image {
  width: 100%;
}



}
#s-09f70d26-3022-4bc9-91d9-6732d31db26b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-09f70d26-3022-4bc9-91d9-6732d31db26b .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-c40b62ff-12af-4674-9ac5-c61e26df3322 {
  text-align: left;
}

#s-c40b62ff-12af-4674-9ac5-c61e26df3322 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c40b62ff-12af-4674-9ac5-c61e26df3322 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c40b62ff-12af-4674-9ac5-c61e26df3322 .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-b30652c8-ea19-491a-b1a3-9fae26ad7c2b {
  display: none;
}
#s-4499c249-4b5a-436f-81c6-82c0cf1be974 {
  text-align: left;
}



.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4499c249-4b5a-436f-81c6-82c0cf1be974 img.shogun-image {
  width: 100%;
}



}
#s-f7cc0673-0f1d-4dfe-a385-a00a4f4f3af3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f7cc0673-0f1d-4dfe-a385-a00a4f4f3af3 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-c8cc1bb2-2603-4828-8523-fa6cd71d7e1f {
  text-align: left;
}

#s-c8cc1bb2-2603-4828-8523-fa6cd71d7e1f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c8cc1bb2-2603-4828-8523-fa6cd71d7e1f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c8cc1bb2-2603-4828-8523-fa6cd71d7e1f .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-d7e89b45-aadd-4280-81c6-c85e9a884e93 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-d7e89b45-aadd-4280-81c6-c85e9a884e93"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-d7e89b45-aadd-4280-81c6-c85e9a884e93"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d7e89b45-aadd-4280-81c6-c85e9a884e93"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d7e89b45-aadd-4280-81c6-c85e9a884e93"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-01644c08-298d-4fe5-a35e-d17bee9bb101 {
  margin-bottom: 30px;
}
}
#s-01644c08-298d-4fe5-a35e-d17bee9bb101 {
  display: none;
}
#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e {
  text-align: left;
}



.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc17f4f7-878f-4ef3-872a-d3f3e216873e img.shogun-image {
  width: 100%;
}



}
#s-df7ec03b-f006-412e-b8a3-73f04e640508 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-df7ec03b-f006-412e-b8a3-73f04e640508 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-549ea5f9-5ffc-47a0-95c0-d550665d9970 {
  text-align: left;
}

#s-549ea5f9-5ffc-47a0-95c0-d550665d9970 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-549ea5f9-5ffc-47a0-95c0-d550665d9970 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-549ea5f9-5ffc-47a0-95c0-d550665d9970 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-430c4584-4188-4760-9ce4-b20261dcc8c7 {
  margin-bottom: 30px;
}
}
#s-430c4584-4188-4760-9ce4-b20261dcc8c7 {
  display: none;
}
#s-c14b0505-b762-4948-bfe7-13862b445cf5 {
  text-align: left;
}



.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c14b0505-b762-4948-bfe7-13862b445cf5 img.shogun-image {
  width: 100%;
}



}
#s-f88c2236-93d6-4239-a4ad-944c6f58d370 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f88c2236-93d6-4239-a4ad-944c6f58d370 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-2ac460c0-198c-4688-9149-e2012b7fa37f {
  text-align: left;
}

#s-2ac460c0-198c-4688-9149-e2012b7fa37f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2ac460c0-198c-4688-9149-e2012b7fa37f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2ac460c0-198c-4688-9149-e2012b7fa37f .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-7ac8834e-cb08-46da-a69b-0774fa6ea685 {
  display: none;
}
#s-1554a318-db37-4b77-9f4f-7b0aac101e09 {
  text-align: left;
}



.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1554a318-db37-4b77-9f4f-7b0aac101e09 img.shogun-image {
  width: 100%;
}



}
#s-94b43817-fc9c-4029-95b7-11aff46b7e54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-94b43817-fc9c-4029-95b7-11aff46b7e54 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-3d497791-9441-41e5-b8f8-27684614e83f {
  text-align: left;
}

#s-3d497791-9441-41e5-b8f8-27684614e83f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3d497791-9441-41e5-b8f8-27684614e83f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3d497791-9441-41e5-b8f8-27684614e83f .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-ae6bc0e7-71cf-4384-b298-17be8ce9bac5 {
  display: none;
}
#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 {
  text-align: left;
}



.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50ee75ff-f4fe-4cb9-a687-2402e914db45 img.shogun-image {
  width: 100%;
}



}
#s-fbe24c1b-e060-4f78-96fe-9eed357a9745 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fbe24c1b-e060-4f78-96fe-9eed357a9745 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-b1feb006-1d80-4fb4-87de-36c2a46e9908 {
  text-align: left;
}

#s-b1feb006-1d80-4fb4-87de-36c2a46e9908 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b1feb006-1d80-4fb4-87de-36c2a46e9908 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b1feb006-1d80-4fb4-87de-36c2a46e9908 .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-f8d1d5a4-3633-49a5-874c-e95a28da8477 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-f8d1d5a4-3633-49a5-874c-e95a28da8477"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f8d1d5a4-3633-49a5-874c-e95a28da8477"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-f8d1d5a4-3633-49a5-874c-e95a28da8477"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-f8d1d5a4-3633-49a5-874c-e95a28da8477"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-485d1be1-f880-4043-bb08-1cb19b711045 {
  margin-bottom: 30px;
}
}
#s-485d1be1-f880-4043-bb08-1cb19b711045 {
  display: none;
}
#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 {
  text-align: left;
}



.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-44c37ba7-3acc-4460-97d8-80bb1cb38788 img.shogun-image {
  width: 100%;
}



}
#s-d54aa993-9c52-426c-b358-847e1dadc264 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d54aa993-9c52-426c-b358-847e1dadc264 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-6c552b0a-29f5-4051-a204-49653dfb57d5 {
  text-align: left;
}

#s-6c552b0a-29f5-4051-a204-49653dfb57d5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6c552b0a-29f5-4051-a204-49653dfb57d5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6c552b0a-29f5-4051-a204-49653dfb57d5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-a7f2d715-3e94-46b3-b142-91a2646e61d8 {
  margin-bottom: 30px;
}
}
#s-a7f2d715-3e94-46b3-b142-91a2646e61d8 {
  display: none;
}
#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb {
  text-align: left;
}



.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cb452c9a-84b5-46aa-83ca-7aa9012f40eb img.shogun-image {
  width: 100%;
}



}
#s-163c844c-8abd-4525-8281-9912fe283a99 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-163c844c-8abd-4525-8281-9912fe283a99 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-8c524294-669c-44f8-b6ce-7b0a8fad14d1 {
  text-align: left;
}

#s-8c524294-669c-44f8-b6ce-7b0a8fad14d1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8c524294-669c-44f8-b6ce-7b0a8fad14d1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8c524294-669c-44f8-b6ce-7b0a8fad14d1 .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-8630fc99-d3ed-4413-928c-3c95f37209ea {
  display: none;
}
#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 {
  text-align: left;
}



.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a27a7b32-c0da-4e05-aeda-f3db384d8311 img.shogun-image {
  width: 100%;
}



}
#s-10e792f6-09c3-408c-b600-dc79d51f7eed {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-10e792f6-09c3-408c-b600-dc79d51f7eed .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-e7a804a9-b086-4feb-88ce-d59b32b05ded {
  text-align: left;
}

#s-e7a804a9-b086-4feb-88ce-d59b32b05ded .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e7a804a9-b086-4feb-88ce-d59b32b05ded .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e7a804a9-b086-4feb-88ce-d59b32b05ded .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-ce892973-dcd5-4522-8ff5-2855de9f0a28 {
  display: none;
}
#s-0343cd79-f3f0-4040-875b-924310cb724e {
  text-align: left;
}



.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0343cd79-f3f0-4040-875b-924310cb724e img.shogun-image {
  width: 100%;
}



}
#s-0211f6a6-3821-4503-acd8-851ed916d835 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0211f6a6-3821-4503-acd8-851ed916d835 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-ff638222-3b53-4bd1-8b71-32531ddc77bd {
  text-align: left;
}

#s-ff638222-3b53-4bd1-8b71-32531ddc77bd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ff638222-3b53-4bd1-8b71-32531ddc77bd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ff638222-3b53-4bd1-8b71-32531ddc77bd .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-897bb6e3-753e-4be7-907f-35bf0a87135c {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-897bb6e3-753e-4be7-907f-35bf0a87135c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-897bb6e3-753e-4be7-907f-35bf0a87135c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-897bb6e3-753e-4be7-907f-35bf0a87135c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-897bb6e3-753e-4be7-907f-35bf0a87135c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-2d3a8569-3851-4d94-a765-f05c1acd199c {
  margin-bottom: 30px;
}
}
#s-2d3a8569-3851-4d94-a765-f05c1acd199c {
  display: none;
}
#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a {
  text-align: left;
}



.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1baa3f08-be8c-4014-b684-e12ea9c01e8a img.shogun-image {
  width: 100%;
}



}
#s-6fd803e3-cc10-45ba-a30b-712a4cc29405 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6fd803e3-cc10-45ba-a30b-712a4cc29405 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-13571688-8842-4686-bd7e-d7c5c2424d3b {
  text-align: left;
}

#s-13571688-8842-4686-bd7e-d7c5c2424d3b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-13571688-8842-4686-bd7e-d7c5c2424d3b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-13571688-8842-4686-bd7e-d7c5c2424d3b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

@media (max-width: 767px){#s-62fe1a86-14bb-44e4-a674-09fe90de5b00 {
  margin-bottom: 30px;
}
}
#s-62fe1a86-14bb-44e4-a674-09fe90de5b00 {
  display: none;
}
#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba {
  text-align: left;
}



.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8b6edecf-dbba-42a3-b94e-e3d4097591ba img.shogun-image {
  width: 100%;
}



}
#s-49f7db75-d647-4037-b073-e1009f5ed22a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-49f7db75-d647-4037-b073-e1009f5ed22a .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-dfdf3539-8905-430e-b0ac-41ba60a6e036 {
  text-align: left;
}

#s-dfdf3539-8905-430e-b0ac-41ba60a6e036 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-dfdf3539-8905-430e-b0ac-41ba60a6e036 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-dfdf3539-8905-430e-b0ac-41ba60a6e036 .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-1114ad0e-495c-471d-9c15-a1915240b1d5 {
  display: none;
}
#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 {
  text-align: left;
}



.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4cc652c6-7b89-488d-b3ff-a6f678a38072 img.shogun-image {
  width: 100%;
}



}
#s-cd6d5cd9-29da-4f82-8ed7-2a43007a22a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cd6d5cd9-29da-4f82-8ed7-2a43007a22a7 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-71bcd1be-d48b-47ae-afa7-ccaf2896b13b {
  text-align: left;
}

#s-71bcd1be-d48b-47ae-afa7-ccaf2896b13b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-71bcd1be-d48b-47ae-afa7-ccaf2896b13b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-71bcd1be-d48b-47ae-afa7-ccaf2896b13b .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-a35455ce-5496-4c65-907a-c8887b014800 {
  display: none;
}
#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b {
  text-align: left;
}



.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f173b81b-ff54-4d98-bbcb-4fd08e87d69b img.shogun-image {
  width: 100%;
}



}
#s-aaa2b49b-0313-422f-bd8b-799ebfa3148f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-aaa2b49b-0313-422f-bd8b-799ebfa3148f .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-f07f47f1-df43-43c2-b0b7-410eb00a339b {
  text-align: left;
}

#s-f07f47f1-df43-43c2-b0b7-410eb00a339b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f07f47f1-df43-43c2-b0b7-410eb00a339b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f07f47f1-df43-43c2-b0b7-410eb00a339b .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-b916e14f-c8c8-4ecd-b1e1-9487e24a6486 {
  margin-top: 0px;
margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-b916e14f-c8c8-4ecd-b1e1-9487e24a6486"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b916e14f-c8c8-4ecd-b1e1-9487e24a6486"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-b916e14f-c8c8-4ecd-b1e1-9487e24a6486"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-b916e14f-c8c8-4ecd-b1e1-9487e24a6486"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-aed92ad5-de5f-4b54-97b2-32ffe8f9ff41 {
  margin-bottom: 30px;
}
}
#s-aed92ad5-de5f-4b54-97b2-32ffe8f9ff41 {
  display: none;
}
#s-a879a068-bab4-469c-955b-485886320c33 {
  text-align: left;
}



.shg-c#s-a879a068-bab4-469c-955b-485886320c33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a879a068-bab4-469c-955b-485886320c33 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a879a068-bab4-469c-955b-485886320c33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a879a068-bab4-469c-955b-485886320c33 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a879a068-bab4-469c-955b-485886320c33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a879a068-bab4-469c-955b-485886320c33 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a879a068-bab4-469c-955b-485886320c33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a879a068-bab4-469c-955b-485886320c33 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a879a068-bab4-469c-955b-485886320c33 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a879a068-bab4-469c-955b-485886320c33 img.shogun-image {
  width: 100%;
}



}
#s-c3816de7-d29b-4b5d-8098-cfbe20387f45 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c3816de7-d29b-4b5d-8098-cfbe20387f45 .shg-product-title-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-4e1d7524-515d-4c0a-a6c4-3562912f1f1e {
  text-align: left;
}

#s-4e1d7524-515d-4c0a-a6c4-3562912f1f1e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4e1d7524-515d-4c0a-a6c4-3562912f1f1e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4e1d7524-515d-4c0a-a6c4-3562912f1f1e .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-fcd12819-37b1-4fea-bc99-e213f1c088e5 {
  margin-top: 0px;
margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-fcd12819-37b1-4fea-bc99-e213f1c088e5:hover {background-color: rgba(66, 66, 66, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-fcd12819-37b1-4fea-bc99-e213f1c088e5:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fcd12819-37b1-4fea-bc99-e213f1c088e5-root {
    text-align: center;
  }


#s-fcd12819-37b1-4fea-bc99-e213f1c088e5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fcd12819-37b1-4fea-bc99-e213f1c088e5-root {
    text-align: center;
  }


#s-fcd12819-37b1-4fea-bc99-e213f1c088e5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fcd12819-37b1-4fea-bc99-e213f1c088e5-root {
    text-align: center;
  }


#s-fcd12819-37b1-4fea-bc99-e213f1c088e5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fcd12819-37b1-4fea-bc99-e213f1c088e5-root {
    text-align: center;
  }


#s-fcd12819-37b1-4fea-bc99-e213f1c088e5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fcd12819-37b1-4fea-bc99-e213f1c088e5-root {
    text-align: center;
  }


#s-fcd12819-37b1-4fea-bc99-e213f1c088e5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
#s-e70ac21c-4d5b-42e3-b525-0fb6eda57de6 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e70ac21c-4d5b-42e3-b525-0fb6eda57de6 {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-e70ac21c-4d5b-42e3-b525-0fb6eda57de6 {
  padding-left: 22px;
padding-right: 22px;
}
}







#s-e70ac21c-4d5b-42e3-b525-0fb6eda57de6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e70ac21c-4d5b-42e3-b525-0fb6eda57de6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f95141d-ba38-4e89-84e3-2e5f672faa9d {
  margin-top: 24px;
margin-bottom: 24px;
max-width: 903.33px;
text-align: center;
}







  #s-0f95141d-ba38-4e89-84e3-2e5f672faa9d img.shogun-image {
    

    
    
    
  }


#s-0f95141d-ba38-4e89-84e3-2e5f672faa9d .shogun-image-content {
  
    align-items: center;
  
}

#s-de5655d2-f28c-4072-a783-7cd20b671fd3 {
  margin-bottom: 34px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-de5655d2-f28c-4072-a783-7cd20b671fd3 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-0148d0f1-55ff-4f79-a2cb-b7c134e25333 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69 {
  margin-top: 24px;
margin-bottom: 24px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69-root {
    text-align: center;
  }


#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69-root {
    text-align: center;
  }


#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69-root {
    text-align: center;
  }


#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69-root {
    text-align: center;
  }


#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69-root {
    text-align: center;
  }


#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  block ;
}
}
  #s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69-root {
    text-align: center;
  }


#s-4e611dac-6013-4b5b-ac15-b1b4f30b8a69.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-24da78b6-7ef3-481a-8e19-191f761f730e {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-24da78b6-7ef3-481a-8e19-191f761f730e {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-24da78b6-7ef3-481a-8e19-191f761f730e {
  padding-left: 24px;
padding-right: 24px;
}
}







#s-24da78b6-7ef3-481a-8e19-191f761f730e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-24da78b6-7ef3-481a-8e19-191f761f730e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f25c6a60-49bc-4900-b62f-b0fba75af6f2 {
  margin-top: 0px;
margin-bottom: 0px;
background-color: rgba(201, 201, 201, 1);
}

@media (min-width: 0px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f25c6a60-49bc-4900-b62f-b0fba75af6f2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
text-align: center;
}
@media (max-width: 767px){#s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 {
  padding-bottom: 0px;
}
}






  #s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 img.shogun-image {
    

    
    
    
  }


#s-1cb05004-ee52-4b40-af5c-6a9e3bdc7a57 .shogun-image-content {
  
    align-items: center;
  
}

#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  margin-top: 15px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-233315b4-5cd0-49f6-8225-c3a4853b60ae {
  padding-left: 0px;
padding-right: 30px;
}
}
#s-233315b4-5cd0-49f6-8225-c3a4853b60ae .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-8873a92e-d078-4dc6-8165-966a20b8cd69 {
  padding-bottom: 40px;
padding-right: 40px;
}
@media (max-width: 767px){#s-8873a92e-d078-4dc6-8165-966a20b8cd69 {
  padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}
}
#s-43e7b313-a245-410b-a55d-42ffc7e3aa40 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-43e7b313-a245-410b-a55d-42ffc7e3aa40:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-43e7b313-a245-410b-a55d-42ffc7e3aa40:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-43e7b313-a245-410b-a55d-42ffc7e3aa40-root {
    text-align: center;
  }


#s-43e7b313-a245-410b-a55d-42ffc7e3aa40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-43e7b313-a245-410b-a55d-42ffc7e3aa40-root {
    text-align: center;
  }


#s-43e7b313-a245-410b-a55d-42ffc7e3aa40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-43e7b313-a245-410b-a55d-42ffc7e3aa40-root {
    text-align: center;
  }


#s-43e7b313-a245-410b-a55d-42ffc7e3aa40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-43e7b313-a245-410b-a55d-42ffc7e3aa40-root {
    text-align: center;
  }


#s-43e7b313-a245-410b-a55d-42ffc7e3aa40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-43e7b313-a245-410b-a55d-42ffc7e3aa40-root {
    text-align: center;
  }


#s-43e7b313-a245-410b-a55d-42ffc7e3aa40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-43e7b313-a245-410b-a55d-42ffc7e3aa40-root {
    text-align: center;
  }


#s-43e7b313-a245-410b-a55d-42ffc7e3aa40.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ce3640be-951b-45e9-a59c-4514a75be248 {
  margin-top: 30px;
margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
min-height: 50px;
max-width: 903.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ce3640be-951b-45e9-a59c-4514a75be248 {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-ce3640be-951b-45e9-a59c-4514a75be248 {
  padding-left: 24px;
padding-right: 24px;
}
}







#s-ce3640be-951b-45e9-a59c-4514a75be248 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce3640be-951b-45e9-a59c-4514a75be248.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78cec0bb-a922-4a2b-ae16-9ac851f78d98 {
  margin-top: 0px;
margin-bottom: 0px;
background-color: rgba(201, 201, 201, 1);
}

@media (min-width: 0px) {
[id="s-78cec0bb-a922-4a2b-ae16-9ac851f78d98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78cec0bb-a922-4a2b-ae16-9ac851f78d98"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-78cec0bb-a922-4a2b-ae16-9ac851f78d98"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-78cec0bb-a922-4a2b-ae16-9ac851f78d98"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7e98ce26-d04e-4628-9423-a00e8c6e35d6 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
text-align: center;
}
@media (max-width: 767px){#s-7e98ce26-d04e-4628-9423-a00e8c6e35d6 {
  padding-bottom: 0px;
}
}






  #s-7e98ce26-d04e-4628-9423-a00e8c6e35d6 img.shogun-image {
    

    
    
    
  }


#s-7e98ce26-d04e-4628-9423-a00e8c6e35d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-90ac48c7-9db0-4bb9-8392-9cc496f7c23d {
  margin-top: 15px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}
@media (min-width: 1200px){#s-90ac48c7-9db0-4bb9-8392-9cc496f7c23d {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-90ac48c7-9db0-4bb9-8392-9cc496f7c23d {
  padding-left: 0px;
padding-right: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-90ac48c7-9db0-4bb9-8392-9cc496f7c23d {
  padding-left: 0px;
padding-right: 30px;
}
}
#s-90ac48c7-9db0-4bb9-8392-9cc496f7c23d .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-5c09d582-83b0-41f2-84c1-f672e055fc80 {
  padding-bottom: 40px;
padding-right: 40px;
}
@media (max-width: 767px){#s-5c09d582-83b0-41f2-84c1-f672e055fc80 {
  padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}
}
#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(84, 130, 104, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24-root {
    text-align: center;
  }


#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24-root {
    text-align: center;
  }


#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24-root {
    text-align: center;
  }


#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24-root {
    text-align: center;
  }


#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24-root {
    text-align: center;
  }


#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24-root {
    text-align: center;
  }


#s-6fcb11ee-9dee-4e7c-95c3-825d6ee2cf24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e779f68f-f97b-468a-9014-70eb47522db4 {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1000.33px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e779f68f-f97b-468a-9014-70eb47522db4 {
  padding-left: 22px;
padding-right: 22px;
}
}@media (max-width: 767px){#s-e779f68f-f97b-468a-9014-70eb47522db4 {
  padding-left: 22px;
padding-right: 22px;
}
}







#s-e779f68f-f97b-468a-9014-70eb47522db4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e779f68f-f97b-468a-9014-70eb47522db4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec4a119f-1cc8-4306-903b-85b1a0fa32e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ec4a119f-1cc8-4306-903b-85b1a0fa32e0 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-2aef7ec2-d9dd-4a2d-8387-eb3f2a010ac0 {
  margin-bottom: 40px;
}

@media (min-width: 0px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-212f985d-c732-45bb-af01-490708bd4063"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-731b3888-bbe4-445e-9807-4fadb457f234 {
  text-align: center;
}







  #s-731b3888-bbe4-445e-9807-4fadb457f234 img.shogun-image {
    

    
    
    
  }


#s-731b3888-bbe4-445e-9807-4fadb457f234 .shogun-image-content {
  
    align-items: center;
  
}

#s-6bb02c7b-21c7-43b5-8530-dd1d10140451 {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-7f7badbc-aefd-4a02-b629-6f4921d9e316 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-2df7cbca-dc8e-4409-ac79-c146fdc03155 {
  text-align: center;
}







  #s-2df7cbca-dc8e-4409-ac79-c146fdc03155 img.shogun-image {
    

    
    
    
  }


#s-2df7cbca-dc8e-4409-ac79-c146fdc03155 .shogun-image-content {
  
    align-items: center;
  
}

#s-6bd5ad35-058a-4259-9344-5cad5f2c7f7d {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-151f5148-0817-461d-901b-445fd19428c7 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-4a528c11-dbe1-4561-b60f-f8502ae2f223 {
  text-align: center;
}







  #s-4a528c11-dbe1-4561-b60f-f8502ae2f223 img.shogun-image {
    

    
    
    
  }


#s-4a528c11-dbe1-4561-b60f-f8502ae2f223 .shogun-image-content {
  
    align-items: center;
  
}

#s-bcd3d2f0-6283-4588-9a1d-88be176d2e76 {
  margin-top: 15px;
margin-bottom: 15px;
}

#s-375d5f22-f71f-4d73-81f6-8cdf9d377847 {
  margin-top: 10px;
margin-bottom: 10px;
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

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

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

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{background-attachment:scroll!important}}@media only screen and (min-width:1024px) and (max-height:1366px) and (-webkit-min-device-pixel-ratio:1.5) and (hover:none) and (orientation:landscape){.shg-box{background-attachment:scroll!important}}#mc_embed_signup .clear{width:auto!important;height:auto!important;visibility:visible!important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline!important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,.85)}.shg-lightbox.hidden{display:none!important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:focus,.shg-lightbox .shg-lightbox-close:hover{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0,-50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none!important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width:769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity .3s}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}