.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-c162fd05-ea4c-46e4-b5ea-4d9789c970b2 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 49px;
max-width: 1000px;
background-attachment: scroll;
}
@media (min-width: 768px) and (max-width: 991px){#s-c162fd05-ea4c-46e4-b5ea-4d9789c970b2 {
  padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-c162fd05-ea4c-46e4-b5ea-4d9789c970b2 {
  margin-right: 1%;
}
}







#s-c162fd05-ea4c-46e4-b5ea-4d9789c970b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c162fd05-ea4c-46e4-b5ea-4d9789c970b2.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-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 {
  text-align: center;
}
@media (min-width: 1200px){#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 {
  display: none;
}
#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59, #wrap-s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 {
  display: none;
}
#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59, #wrap-s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 {
  display: none;
}
#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59, #wrap-s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 { display: none !important; }}@media (max-width: 767px){#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 {
  display: none;
}
#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59, #wrap-s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 { display: none !important; }}






  #s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 img.shogun-image {
    

    
    
    
  }


#s-e872c25b-a6ba-4d7d-9fb0-aab07289eb59 .shogun-image-content {
  
    align-items: 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;
}

@media (min-width: 0px) {
[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-1b137644-c7d9-44fa-9bf8-559dd7994d3a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 200px;
aspect-ratio: 200/130;
text-align: center;
}
@media (max-width: 767px){#s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b {
  max-width: 160px;
}
}




  #s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b img.shogun-image,
  #s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b {
    width: 100%;
    height: auto;
  }



  #s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b img.shogun-image {
    

    
    
    
  }


#s-5dfe331c-b5e5-430b-ada0-ab22a3ec832b .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-703a4222-2f06-42ab-b2cc-b66219b68b09 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-703a4222-2f06-42ab-b2cc-b66219b68b09 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-703a4222-2f06-42ab-b2cc-b66219b68b09 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-703a4222-2f06-42ab-b2cc-b66219b68b09 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  text-align: left;
}


}
#s-3f00eb3d-f2ec-4520-8858-f424495ab179 {
  margin-top: 10px;
margin-bottom: 10px;
}
@media (min-width: 1200px){#s-3f00eb3d-f2ec-4520-8858-f424495ab179 {
  display: none;
}
#s-3f00eb3d-f2ec-4520-8858-f424495ab179, #wrap-s-3f00eb3d-f2ec-4520-8858-f424495ab179 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3f00eb3d-f2ec-4520-8858-f424495ab179 {
  display: none;
}
#s-3f00eb3d-f2ec-4520-8858-f424495ab179, #wrap-s-3f00eb3d-f2ec-4520-8858-f424495ab179 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3f00eb3d-f2ec-4520-8858-f424495ab179 {
  display: none;
}
#s-3f00eb3d-f2ec-4520-8858-f424495ab179, #wrap-s-3f00eb3d-f2ec-4520-8858-f424495ab179 { display: none !important; }}
@media (min-width: 0px) {
[id="s-3f00eb3d-f2ec-4520-8858-f424495ab179"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3f00eb3d-f2ec-4520-8858-f424495ab179"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3f00eb3d-f2ec-4520-8858-f424495ab179"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f00eb3d-f2ec-4520-8858-f424495ab179"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.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-eaee3219-66b0-477b-be57-a9a33dc09f6d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-eaee3219-66b0-477b-be57-a9a33dc09f6d:hover {background-color: rgba(225, 36, 58, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-eaee3219-66b0-477b-be57-a9a33dc09f6d:active {background-color: rgba(225, 36, 58, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-eaee3219-66b0-477b-be57-a9a33dc09f6d {
  margin-top: 0px;
margin-bottom: 15px;
text-align: center;
}
}

  #s-eaee3219-66b0-477b-be57-a9a33dc09f6d-root {
    text-align: left;
  }


#s-eaee3219-66b0-477b-be57-a9a33dc09f6d.shg-btn {
  color: #ffffff;
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eaee3219-66b0-477b-be57-a9a33dc09f6d-root {
    text-align: left;
  }


#s-eaee3219-66b0-477b-be57-a9a33dc09f6d.shg-btn {
  color: #ffffff;
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eaee3219-66b0-477b-be57-a9a33dc09f6d-root {
    text-align: left;
  }


#s-eaee3219-66b0-477b-be57-a9a33dc09f6d.shg-btn {
  color: #ffffff;
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eaee3219-66b0-477b-be57-a9a33dc09f6d-root {
    text-align: left;
  }


#s-eaee3219-66b0-477b-be57-a9a33dc09f6d.shg-btn {
  color: #ffffff;
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eaee3219-66b0-477b-be57-a9a33dc09f6d-root {
    text-align: center;
  }


#s-eaee3219-66b0-477b-be57-a9a33dc09f6d.shg-btn {
  color: #ffffff;
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(204, 7, 30, 1);
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(204, 7, 30, 1);
}
#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(204, 7, 30, 1) !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(204, 7, 30, 1) !important;}#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(204, 7, 30, 1) !important;}@media (max-width: 767px){#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae {
  margin-bottom: 15px;
text-align: center;
}
}

  #s-4285ecd5-7e34-4714-a56f-83ba7dc305ae-root {
    text-align: left;
  }


#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae.shg-btn {
  color: rgba(204, 7, 30, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4285ecd5-7e34-4714-a56f-83ba7dc305ae-root {
    text-align: left;
  }


#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae.shg-btn {
  color: rgba(204, 7, 30, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4285ecd5-7e34-4714-a56f-83ba7dc305ae-root {
    text-align: left;
  }


#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae.shg-btn {
  color: rgba(204, 7, 30, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4285ecd5-7e34-4714-a56f-83ba7dc305ae-root {
    text-align: left;
  }


#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae.shg-btn {
  color: rgba(204, 7, 30, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4285ecd5-7e34-4714-a56f-83ba7dc305ae-root {
    text-align: center;
  }


#s-4285ecd5-7e34-4714-a56f-83ba7dc305ae.shg-btn {
  color: rgba(204, 7, 30, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
.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-c87ef242-1732-4fab-b016-deac2e5156b5 {
  margin-top: 10px;
margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
}
@media (max-width: 767px){#s-c87ef242-1732-4fab-b016-deac2e5156b5 {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-46c6132c-0c97-4244-ae29-dec5b9737391 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-46c6132c-0c97-4244-ae29-dec5b9737391:hover {background-color: rgba(225, 36, 58, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-46c6132c-0c97-4244-ae29-dec5b9737391:active {background-color: rgba(225, 36, 58, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-46c6132c-0c97-4244-ae29-dec5b9737391 {
  margin-top: 0px;
margin-bottom: 15px;
text-align: center;
display: none;
}
#s-46c6132c-0c97-4244-ae29-dec5b9737391, #wrap-s-46c6132c-0c97-4244-ae29-dec5b9737391 { display: none !important; }}

  #s-46c6132c-0c97-4244-ae29-dec5b9737391-root {
    text-align: left;
  }


#s-46c6132c-0c97-4244-ae29-dec5b9737391.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-46c6132c-0c97-4244-ae29-dec5b9737391-root {
    text-align: left;
  }


#s-46c6132c-0c97-4244-ae29-dec5b9737391.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-46c6132c-0c97-4244-ae29-dec5b9737391-root {
    text-align: left;
  }


#s-46c6132c-0c97-4244-ae29-dec5b9737391.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-46c6132c-0c97-4244-ae29-dec5b9737391-root {
    text-align: left;
  }


#s-46c6132c-0c97-4244-ae29-dec5b9737391.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-46c6132c-0c97-4244-ae29-dec5b9737391-root {
    text-align: center;
  }


#s-46c6132c-0c97-4244-ae29-dec5b9737391.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-b0746ad0-3032-43e0-9732-a65f8e8fa567 hr {
  border-top: 1px solid #ddd;
}

#s-5563caf8-a327-41db-8764-2ab133d35589 {
  margin-top: 15px;
}

#s-f048236a-6b46-47de-a318-cfc7c123fa17 {
  margin-top: 10px;
margin-bottom: 40px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(181, 183, 189, 1);
border-style: solid;
}
@media (max-width: 767px){#s-f048236a-6b46-47de-a318-cfc7c123fa17 {
  margin-left: auto;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-f048236a-6b46-47de-a318-cfc7c123fa17"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f048236a-6b46-47de-a318-cfc7c123fa17"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-f048236a-6b46-47de-a318-cfc7c123fa17"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-f048236a-6b46-47de-a318-cfc7c123fa17"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-39a03017-a278-4841-9385-eac93e39d427 {
  min-height: 50px;
}








#s-39a03017-a278-4841-9385-eac93e39d427 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39a03017-a278-4841-9385-eac93e39d427.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4f69cb3-e00f-4b73-a31e-8cab15966806 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
@media (max-width: 767px){#s-b4f69cb3-e00f-4b73-a31e-8cab15966806 {
  border-style: solid;
margin-top: 5px;
margin-bottom: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(229, 222, 222, 1);
}
}
.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-imageV2-content {
  text-align: initial;
}

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
  max-width: 1358px;
aspect-ratio: 1358/1949;
text-align: center;
}





  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image,
  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
    width: 100%;
    height: auto;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
    
    
  }


.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shogun-image-content {
  
    align-items: center;
  
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
      position: relative;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image,
  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
    width: 100%;
    height: auto;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
    
    
  }


.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shogun-image-content {
  
    align-items: center;
  
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
      position: relative;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image,
  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
    width: 100%;
    height: auto;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
    
    
  }


.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shogun-image-content {
  
    align-items: center;
  
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
      position: relative;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image,
  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
    width: 100%;
    height: auto;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
    
    
  }


.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shogun-image-content {
  
    align-items: center;
  
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
      position: relative;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image,
  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
    width: 100%;
    height: auto;
  }

  #s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
    
    
  }


.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e .shogun-image-content {
  
    align-items: center;
  
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container {
      position: relative;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e4da298c-5d7e-4f14-8d46-1d97c1e7683e img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.shg-variant-btn {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  letter-spacing: normal;
}

.shg-variant-btn.hidden {
  display: none;
}

.shg-variant-btn.disabled {
  cursor: not-allowed;
}

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

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

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

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

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 {
  margin-left: -8%;
margin-right: -8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: Lato;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  




  #s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7-btn-wrapper {
    text-align: center;
  }


#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-variant-btn:hover {
  background: #252525;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-variant-btn:active, #s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-227fcb4b-c176-42af-bcab-8abdb4eaf6b7 .shg-variant-btn.disabled {
  background: #252525;
}

#s-d0e68135-7572-4a01-8aca-cfad0d90c4cc {
  margin-top: 10px;
margin-left: -10%;
margin-bottom: 10px;
margin-right: -10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-d0e68135-7572-4a01-8aca-cfad0d90c4cc .shg-product-quantity-wrapper {
  display: flex;
}

#s-d0e68135-7572-4a01-8aca-cfad0d90c4cc .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-d0e68135-7572-4a01-8aca-cfad0d90c4cc .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-d0e68135-7572-4a01-8aca-cfad0d90c4cc .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-d0e68135-7572-4a01-8aca-cfad0d90c4cc .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-d0e68135-7572-4a01-8aca-cfad0d90c4cc label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-d0e68135-7572-4a01-8aca-cfad0d90c4cc label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  


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

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

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

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

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

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

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

#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: center;
cursor: pointer;
}
#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-34ea0277-4bbe-43e1-9a6a-9f4fcf154301.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (max-width: 767px){#s-7bb6107b-9df1-4ad6-a071-5e947a03b22a {
  margin-top: 5px;
margin-bottom: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(229, 222, 222, 1);
border-style: solid;
}
}
#s-1f5da92b-a294-4235-b2e3-42051ff418ea {
  max-width: 1358px;
aspect-ratio: 1358/1949;
text-align: center;
}





  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image,
  #s-1f5da92b-a294-4235-b2e3-42051ff418ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea {
    width: 100%;
    height: auto;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
    
    
  }


.s-1f5da92b-a294-4235-b2e3-42051ff418ea .shogun-image-content {
  
    align-items: center;
  
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f5da92b-a294-4235-b2e3-42051ff418ea {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
      position: relative;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image,
  #s-1f5da92b-a294-4235-b2e3-42051ff418ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea {
    width: 100%;
    height: auto;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
    
    
  }


.s-1f5da92b-a294-4235-b2e3-42051ff418ea .shogun-image-content {
  
    align-items: center;
  
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f5da92b-a294-4235-b2e3-42051ff418ea {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
      position: relative;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image,
  #s-1f5da92b-a294-4235-b2e3-42051ff418ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea {
    width: 100%;
    height: auto;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
    
    
  }


.s-1f5da92b-a294-4235-b2e3-42051ff418ea .shogun-image-content {
  
    align-items: center;
  
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f5da92b-a294-4235-b2e3-42051ff418ea {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
      position: relative;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image,
  #s-1f5da92b-a294-4235-b2e3-42051ff418ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea {
    width: 100%;
    height: auto;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
    
    
  }


.s-1f5da92b-a294-4235-b2e3-42051ff418ea .shogun-image-content {
  
    align-items: center;
  
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f5da92b-a294-4235-b2e3-42051ff418ea {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
      position: relative;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image,
  #s-1f5da92b-a294-4235-b2e3-42051ff418ea .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea {
    width: 100%;
    height: auto;
  }

  #s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
    
    
  }


.s-1f5da92b-a294-4235-b2e3-42051ff418ea .shogun-image-content {
  
    align-items: center;
  
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1f5da92b-a294-4235-b2e3-42051ff418ea {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container {
      position: relative;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1f5da92b-a294-4235-b2e3-42051ff418ea img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-09095673-3f94-47ae-a4d7-7479d10ef3ba {
  margin-left: -8%;
margin-right: -8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  




  #s-09095673-3f94-47ae-a4d7-7479d10ef3ba-btn-wrapper {
    text-align: center;
  }


#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-variant-btn:hover {
  background: #252525;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-variant-btn:active, #s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-09095673-3f94-47ae-a4d7-7479d10ef3ba .shg-variant-btn.disabled {
  background: #252525;
}

#s-5526693a-bf29-4bf3-ac48-d9f799096f38 {
  margin-top: 10px;
margin-left: -10%;
margin-bottom: 10px;
margin-right: -10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-5526693a-bf29-4bf3-ac48-d9f799096f38 .shg-product-quantity-wrapper {
  display: flex;
}

#s-5526693a-bf29-4bf3-ac48-d9f799096f38 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-5526693a-bf29-4bf3-ac48-d9f799096f38 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-5526693a-bf29-4bf3-ac48-d9f799096f38 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-5526693a-bf29-4bf3-ac48-d9f799096f38 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-5526693a-bf29-4bf3-ac48-d9f799096f38 label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-5526693a-bf29-4bf3-ac48-d9f799096f38 label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  


#s-49113054-a68f-4325-83aa-2642d9826e4b {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: center;
cursor: pointer;
}
#s-49113054-a68f-4325-83aa-2642d9826e4b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-49113054-a68f-4325-83aa-2642d9826e4b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-49113054-a68f-4325-83aa-2642d9826e4b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-49113054-a68f-4325-83aa-2642d9826e4b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-49113054-a68f-4325-83aa-2642d9826e4b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-49113054-a68f-4325-83aa-2642d9826e4b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (max-width: 767px){#s-e136806a-5ff1-49a4-bd8c-1d48fa19547f {
  margin-top: 5px;
margin-bottom: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(229, 222, 222, 1);
border-style: solid;
}
}
#s-dadb862d-d441-4d68-a81d-fd0349354d6c {
  max-width: 1358px;
aspect-ratio: 1358/1949;
text-align: center;
}





  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image,
  #s-dadb862d-d441-4d68-a81d-fd0349354d6c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c {
    width: 100%;
    height: auto;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
    
    
  }


.s-dadb862d-d441-4d68-a81d-fd0349354d6c .shogun-image-content {
  
    align-items: center;
  
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dadb862d-d441-4d68-a81d-fd0349354d6c {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
      position: relative;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image,
  #s-dadb862d-d441-4d68-a81d-fd0349354d6c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c {
    width: 100%;
    height: auto;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
    
    
  }


.s-dadb862d-d441-4d68-a81d-fd0349354d6c .shogun-image-content {
  
    align-items: center;
  
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dadb862d-d441-4d68-a81d-fd0349354d6c {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
      position: relative;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image,
  #s-dadb862d-d441-4d68-a81d-fd0349354d6c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c {
    width: 100%;
    height: auto;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
    
    
  }


.s-dadb862d-d441-4d68-a81d-fd0349354d6c .shogun-image-content {
  
    align-items: center;
  
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dadb862d-d441-4d68-a81d-fd0349354d6c {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
      position: relative;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image,
  #s-dadb862d-d441-4d68-a81d-fd0349354d6c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c {
    width: 100%;
    height: auto;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
    
    
  }


.s-dadb862d-d441-4d68-a81d-fd0349354d6c .shogun-image-content {
  
    align-items: center;
  
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dadb862d-d441-4d68-a81d-fd0349354d6c {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
      position: relative;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image,
  #s-dadb862d-d441-4d68-a81d-fd0349354d6c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c {
    width: 100%;
    height: auto;
  }

  #s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
    
    
  }


.s-dadb862d-d441-4d68-a81d-fd0349354d6c .shogun-image-content {
  
    align-items: center;
  
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-dadb862d-d441-4d68-a81d-fd0349354d6c {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container {
      position: relative;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-dadb862d-d441-4d68-a81d-fd0349354d6c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-859baa2a-107f-4937-b893-b2c813ad6571 {
  margin-left: -8%;
margin-right: -8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  




  #s-859baa2a-107f-4937-b893-b2c813ad6571-btn-wrapper {
    text-align: center;
  }


#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-variant-btn:hover {
  background: #252525;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-variant-btn:active, #s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-859baa2a-107f-4937-b893-b2c813ad6571 .shg-variant-btn.disabled {
  background: #252525;
}

#s-473481b3-3c0b-49dd-afe4-76644f6b4433 {
  margin-top: 10px;
margin-left: -10%;
margin-bottom: 10px;
margin-right: -10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-473481b3-3c0b-49dd-afe4-76644f6b4433 .shg-product-quantity-wrapper {
  display: flex;
}

#s-473481b3-3c0b-49dd-afe4-76644f6b4433 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-473481b3-3c0b-49dd-afe4-76644f6b4433 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-473481b3-3c0b-49dd-afe4-76644f6b4433 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-473481b3-3c0b-49dd-afe4-76644f6b4433 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-473481b3-3c0b-49dd-afe4-76644f6b4433 label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-473481b3-3c0b-49dd-afe4-76644f6b4433 label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  


#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: center;
cursor: pointer;
}
#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8d4dd59a-0321-46d3-9988-94ee4ee877e6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (max-width: 767px){#s-7bf532f9-8367-4b8d-8a57-f607285652fa {
  margin-top: 5px;
margin-bottom: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(229, 222, 222, 1);
border-style: solid;
}
}
#s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
  max-width: 1358px;
aspect-ratio: 1358/1949;
text-align: center;
}





  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image,
  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
    width: 100%;
    height: auto;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
    
    
  }


.s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
      position: relative;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image,
  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
    width: 100%;
    height: auto;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
    
    
  }


.s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
      position: relative;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image,
  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
    width: 100%;
    height: auto;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
    
    
  }


.s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
      position: relative;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image,
  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
    width: 100%;
    height: auto;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
    
    
  }


.s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
      position: relative;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image,
  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
    width: 100%;
    height: auto;
  }

  #s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
    
    
  }


.s-ee3475e0-d2b0-417a-af14-d7b89018de77 .shogun-image-content {
  
    align-items: center;
  
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container {
      position: relative;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ee3475e0-d2b0-417a-af14-d7b89018de77 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-94de9f57-4f2b-446c-8ced-47779ee5a819 {
  margin-top: 0px;
margin-left: -8%;
margin-bottom: 0px;
margin-right: -8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  




  #s-94de9f57-4f2b-446c-8ced-47779ee5a819-btn-wrapper {
    text-align: center;
  }


#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-variant-btn:hover {
  background: #252525;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-variant-btn:active, #s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-94de9f57-4f2b-446c-8ced-47779ee5a819 .shg-variant-btn.disabled {
  background: #252525;
}

#s-c7224d49-7e79-4389-96bb-818ddc98a5eb {
  margin-top: 10px;
margin-left: -10%;
margin-bottom: 10px;
margin-right: -10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-c7224d49-7e79-4389-96bb-818ddc98a5eb .shg-product-quantity-wrapper {
  display: flex;
}

#s-c7224d49-7e79-4389-96bb-818ddc98a5eb .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-c7224d49-7e79-4389-96bb-818ddc98a5eb .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-c7224d49-7e79-4389-96bb-818ddc98a5eb .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-c7224d49-7e79-4389-96bb-818ddc98a5eb .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-c7224d49-7e79-4389-96bb-818ddc98a5eb label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-c7224d49-7e79-4389-96bb-818ddc98a5eb label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  


#s-990caa62-3f66-4354-a4b0-c189037b23ab {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: center;
cursor: pointer;
}
#s-990caa62-3f66-4354-a4b0-c189037b23ab:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-990caa62-3f66-4354-a4b0-c189037b23ab:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-990caa62-3f66-4354-a4b0-c189037b23ab {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-990caa62-3f66-4354-a4b0-c189037b23ab.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-990caa62-3f66-4354-a4b0-c189037b23ab.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-990caa62-3f66-4354-a4b0-c189037b23ab.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (max-width: 767px){#s-41842554-dfeb-43d8-85a8-2fc4c2ad1ce8 {
  margin-top: 5px;
margin-bottom: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(229, 222, 222, 1);
border-style: solid;
}
}
#s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
  max-width: 1358px;
aspect-ratio: 1358/1949;
text-align: center;
}





  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image,
  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
    width: 100%;
    height: auto;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
    
    
  }


.s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
      position: relative;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image,
  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
    width: 100%;
    height: auto;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
    
    
  }


.s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
      position: relative;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image,
  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
    width: 100%;
    height: auto;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
    
    
  }


.s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
      position: relative;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image,
  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
    width: 100%;
    height: auto;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
    
    
  }


.s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
      position: relative;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image,
  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
    width: 100%;
    height: auto;
  }

  #s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
    
    
  }


.s-8bf427b3-7219-4072-96e6-0c3bebb52513 .shogun-image-content {
  
    align-items: center;
  
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container {
      position: relative;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8bf427b3-7219-4072-96e6-0c3bebb52513 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-997328da-ef95-4118-8d31-110799f5b274 {
  margin-top: 0px;
margin-left: -8%;
margin-bottom: 0px;
margin-right: -8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-997328da-ef95-4118-8d31-110799f5b274 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  




  #s-997328da-ef95-4118-8d31-110799f5b274-btn-wrapper {
    text-align: center;
  }


#s-997328da-ef95-4118-8d31-110799f5b274 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-variant-btn:hover {
  background: #252525;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-variant-btn:active, #s-997328da-ef95-4118-8d31-110799f5b274 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-997328da-ef95-4118-8d31-110799f5b274 .shg-variant-btn.disabled {
  background: #252525;
}

#s-e88b2bee-f36f-40e6-8616-73866937ee45 {
  margin-top: 10px;
margin-left: -10%;
margin-bottom: 10px;
margin-right: -10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-e88b2bee-f36f-40e6-8616-73866937ee45 .shg-product-quantity-wrapper {
  display: flex;
}

#s-e88b2bee-f36f-40e6-8616-73866937ee45 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-e88b2bee-f36f-40e6-8616-73866937ee45 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-e88b2bee-f36f-40e6-8616-73866937ee45 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-e88b2bee-f36f-40e6-8616-73866937ee45 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-e88b2bee-f36f-40e6-8616-73866937ee45 label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-e88b2bee-f36f-40e6-8616-73866937ee45 label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  


#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: center;
cursor: pointer;
}
#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2cfdc659-d1f2-4009-926d-798a4f28b0ae.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (max-width: 767px){#s-147f06cf-3f36-451b-b150-43c16f0d2900 {
  margin-top: 5px;
margin-bottom: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(229, 222, 222, 1);
border-style: solid;
}
}
#s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
  max-width: 1358px;
aspect-ratio: 1358/1949;
text-align: center;
}





  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image,
  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
    width: 100%;
    height: auto;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
    
    
  }


.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shogun-image-content {
  
    align-items: center;
  
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
      position: relative;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image,
  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
    width: 100%;
    height: auto;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
    
    
  }


.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shogun-image-content {
  
    align-items: center;
  
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
      position: relative;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image,
  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
    width: 100%;
    height: auto;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
    
    
  }


.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shogun-image-content {
  
    align-items: center;
  
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
      position: relative;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image,
  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
    width: 100%;
    height: auto;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
    
    
  }


.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shogun-image-content {
  
    align-items: center;
  
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
      position: relative;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image,
  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
    width: 100%;
    height: auto;
  }

  #s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
    
    
  }


.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 .shogun-image-content {
  
    align-items: center;
  
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 {
      --shg-aspect-ratio: calc(1358/1949); 
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container {
      position: relative;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-379a5d8d-bea7-4c3f-a316-d35f668ffc64 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f {
  margin-top: 0px;
margin-left: -8%;
margin-bottom: 0px;
margin-right: -8%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-decoration: none;
text-align: left;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}


  #s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  




  #s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f-btn-wrapper {
    text-align: center;
  }


#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-variant-btn:hover {
  background: #252525;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-variant-btn:active, #s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-e68246ba-1c7a-4d2e-9de5-cbbd47e7668f .shg-variant-btn.disabled {
  background: #252525;
}

#s-37c56020-2850-4e66-9e31-2d87e7faece6 {
  margin-top: 10px;
margin-left: -10%;
margin-bottom: 10px;
margin-right: -10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
text-align: left;
}

#s-37c56020-2850-4e66-9e31-2d87e7faece6 .shg-product-quantity-wrapper {
  display: flex;
}

#s-37c56020-2850-4e66-9e31-2d87e7faece6 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-37c56020-2850-4e66-9e31-2d87e7faece6 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-37c56020-2850-4e66-9e31-2d87e7faece6 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-37c56020-2850-4e66-9e31-2d87e7faece6 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }



  #s-37c56020-2850-4e66-9e31-2d87e7faece6 label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: ;
  }

  
    #s-37c56020-2850-4e66-9e31-2d87e7faece6 label:after {
      display: block;
      content: ' ';
      margin-bottom: 1px;
    }
  


#s-bb50a95d-5faf-4c65-a87f-32592b6469ca {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-radius: 2px;
background-color: rgba(204, 7, 30, 1);
text-align: center;
cursor: pointer;
}
#s-bb50a95d-5faf-4c65-a87f-32592b6469ca:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bb50a95d-5faf-4c65-a87f-32592b6469ca:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bb50a95d-5faf-4c65-a87f-32592b6469ca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bb50a95d-5faf-4c65-a87f-32592b6469ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bb50a95d-5faf-4c65-a87f-32592b6469ca.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-bb50a95d-5faf-4c65-a87f-32592b6469ca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e295a199-4fff-408c-8c4d-3dc8c25fe829 {
  padding-top: 20px;
padding-left: 30px;
padding-bottom: 20px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-e295a199-4fff-408c-8c4d-3dc8c25fe829 {
  display: none;
}
#s-e295a199-4fff-408c-8c4d-3dc8c25fe829, #wrap-s-e295a199-4fff-408c-8c4d-3dc8c25fe829 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e295a199-4fff-408c-8c4d-3dc8c25fe829 {
  display: none;
}
#s-e295a199-4fff-408c-8c4d-3dc8c25fe829, #wrap-s-e295a199-4fff-408c-8c4d-3dc8c25fe829 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e295a199-4fff-408c-8c4d-3dc8c25fe829 {
  display: none;
}
#s-e295a199-4fff-408c-8c4d-3dc8c25fe829, #wrap-s-e295a199-4fff-408c-8c4d-3dc8c25fe829 { display: none !important; }}@media (max-width: 767px){#s-e295a199-4fff-408c-8c4d-3dc8c25fe829 {
  display: none;
}
#s-e295a199-4fff-408c-8c4d-3dc8c25fe829, #wrap-s-e295a199-4fff-408c-8c4d-3dc8c25fe829 { display: none !important; }}







#s-e295a199-4fff-408c-8c4d-3dc8c25fe829 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e295a199-4fff-408c-8c4d-3dc8c25fe829.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba1c0adc-04ec-41f6-8845-36c37266efca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ba1c0adc-04ec-41f6-8845-36c37266efca .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  
  
}



@media (min-width: 0px) {
[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d9764061-3d20-4b64-b64e-346c6e7d5c15"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-c77155d7-a52c-4aa2-9707-d0a7c4a6f4a7 {
  margin-top: 15px;
text-align: center;
}
@media (max-width: 767px){#s-c77155d7-a52c-4aa2-9707-d0a7c4a6f4a7 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
}
}






  #s-c77155d7-a52c-4aa2-9707-d0a7c4a6f4a7 img.shogun-image {
    

    
    
    
  }


#s-c77155d7-a52c-4aa2-9707-d0a7c4a6f4a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 22px;
padding-left: 26px;
padding-bottom: 22px;
padding-right: 26px;
min-height: 50px;
background-color: rgba(242, 242, 242, 1);
}
@media (min-width: 1200px){#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a {
  display: none;
}
#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a, #wrap-s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a {
  display: none;
}
#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a, #wrap-s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a {
  display: none;
}
#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a, #wrap-s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a { display: none !important; }}@media (max-width: 767px){#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a {
  display: none;
}
#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a, #wrap-s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a { display: none !important; }}







#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ed71bf1a-efd1-4470-b5a6-5d9df83ee34a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-add28a06-045a-4db8-bae0-c570c6214d1e {
  margin-top: 5px;
padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-add28a06-045a-4db8-bae0-c570c6214d1e .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



@media (min-width: 0px) {
[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-9ea12f60-fcb3-49ca-bf3f-c6a8daed987e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-b640cb18-a627-4392-8921-d15d956e0b61 {
  margin-top: 15px;
margin-bottom: 15px;
max-width: 200px;
text-align: center;
}







  img.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
    
    
  }


.s-b640cb18-a627-4392-8921-d15d956e0b61 .shogun-image-content {
  
    align-items: center;
  
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
    
    
  }


.s-b640cb18-a627-4392-8921-d15d956e0b61 .shogun-image-content {
  
    align-items: center;
  
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
    
    
  }


.s-b640cb18-a627-4392-8921-d15d956e0b61 .shogun-image-content {
  
    align-items: center;
  
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
    
    
  }


.s-b640cb18-a627-4392-8921-d15d956e0b61 .shogun-image-content {
  
    align-items: center;
  
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
    
    
  }


.s-b640cb18-a627-4392-8921-d15d956e0b61 .shogun-image-content {
  
    align-items: center;
  
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b640cb18-a627-4392-8921-d15d956e0b61.shogun-image {
  box-sizing: border-box;
}



}
#s-c8128aad-7776-456c-98dd-466441c6083c {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-c8128aad-7776-456c-98dd-466441c6083c {
  display: none;
}
#s-c8128aad-7776-456c-98dd-466441c6083c, #wrap-s-c8128aad-7776-456c-98dd-466441c6083c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c8128aad-7776-456c-98dd-466441c6083c {
  display: none;
}
#s-c8128aad-7776-456c-98dd-466441c6083c, #wrap-s-c8128aad-7776-456c-98dd-466441c6083c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c8128aad-7776-456c-98dd-466441c6083c {
  display: none;
}
#s-c8128aad-7776-456c-98dd-466441c6083c, #wrap-s-c8128aad-7776-456c-98dd-466441c6083c { display: none !important; }}@media (max-width: 767px){#s-c8128aad-7776-456c-98dd-466441c6083c {
  display: none;
}
#s-c8128aad-7776-456c-98dd-466441c6083c, #wrap-s-c8128aad-7776-456c-98dd-466441c6083c { display: none !important; }}
#s-c8128aad-7776-456c-98dd-466441c6083c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
