.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-f751808a-43b2-4ed5-b1a0-206808c16cec {
  min-height: 50px;
}








#s-f751808a-43b2-4ed5-b1a0-206808c16cec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f751808a-43b2-4ed5-b1a0-206808c16cec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-225e76c1-fa8a-4287-bfe4-8d466266b51a {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-18216a99-11d7-4918-8519-af49b1063798 {
  opacity: 1;
}

#s-18216a99-11d7-4918-8519-af49b1063798 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-18216a99-11d7-4918-8519-af49b1063798 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-18216a99-11d7-4918-8519-af49b1063798 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(2, 167, 233, 1);
}

#s-18216a99-11d7-4918-8519-af49b1063798 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-18216a99-11d7-4918-8519-af49b1063798 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(2, 167, 233, 1);
  text-align: left;
  font-family: Open Sans;
  font-weight: 700;
  font-style: ;
  font-size: 18px;
}

#s-18216a99-11d7-4918-8519-af49b1063798 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
.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-06d3557d-717d-4aa3-8ece-9ddfbbf74112 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-06d3557d-717d-4aa3-8ece-9ddfbbf74112 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-b4c1450d-4295-4662-a7c3-b88413a79b9e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4c1450d-4295-4662-a7c3-b88413a79b9e .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-ce3f9ff0-9475-495c-a118-32a79c080a88 {
  min-height: 50px;
}








#s-ce3f9ff0-9475-495c-a118-32a79c080a88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce3f9ff0-9475-495c-a118-32a79c080a88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d13c8f59-ed42-4927-9fd3-47410c176484 {
  min-height: 50px;
}








#s-d13c8f59-ed42-4927-9fd3-47410c176484 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d13c8f59-ed42-4927-9fd3-47410c176484.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-4d1c098b-5bd2-4813-8e7b-7265f3f47a17 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-4d1c098b-5bd2-4813-8e7b-7265f3f47a17"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4d1c098b-5bd2-4813-8e7b-7265f3f47a17"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4d1c098b-5bd2-4813-8e7b-7265f3f47a17"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4d1c098b-5bd2-4813-8e7b-7265f3f47a17"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

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

#s-1db06cc5-edc3-4629-818f-d1b71d7402d2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-1db06cc5-edc3-4629-818f-d1b71d7402d2 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



#s-63f0b350-5168-4cd8-aff7-2bff688c620f {
  padding-top: 0px;
padding-bottom: 0px;
}

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

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

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

#s-f6f57cb5-6413-4502-a789-a1ed07efac56 hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-a93c06bb-b44f-43a4-b03b-c0f2079af0e5 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-a93c06bb-b44f-43a4-b03b-c0f2079af0e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a93c06bb-b44f-43a4-b03b-c0f2079af0e5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a93c06bb-b44f-43a4-b03b-c0f2079af0e5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a93c06bb-b44f-43a4-b03b-c0f2079af0e5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-a93c06bb-b44f-43a4-b03b-c0f2079af0e5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-5d8b70ad-dd2d-4e43-8df9-e40fa1872ed2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5d8b70ad-dd2d-4e43-8df9-e40fa1872ed2 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



.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-3bea6d24-53fd-4429-a591-08edc18b2210 {
  text-align: center;
}







  #s-3bea6d24-53fd-4429-a591-08edc18b2210 img.shogun-image {
    

    
    
    
  }


#s-3bea6d24-53fd-4429-a591-08edc18b2210 .shogun-image-content {
  
    align-items: center;
  
}

#s-ca8570ba-7bfc-4bee-bf6e-8a9183d2c35e hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-832a3b6c-c460-4e05-a56f-94f1df711763 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-832a3b6c-c460-4e05-a56f-94f1df711763"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-832a3b6c-c460-4e05-a56f-94f1df711763"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-832a3b6c-c460-4e05-a56f-94f1df711763"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-832a3b6c-c460-4e05-a56f-94f1df711763"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6e004713-5a0a-4b35-b7bf-376e45853b25 {
  text-align: center;
}







  #s-6e004713-5a0a-4b35-b7bf-376e45853b25 img.shogun-image {
    

    
    
    
  }


#s-6e004713-5a0a-4b35-b7bf-376e45853b25 .shogun-image-content {
  
    align-items: center;
  
}

#s-f2c1f2e2-7c58-4401-8e8b-829b9bc0e874 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f2c1f2e2-7c58-4401-8e8b-829b9bc0e874 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-0e45c358-a6ec-4cbb-a7c8-142588390e98 hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-dc058b02-22be-4cda-81c9-6edc5c3d3553 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-dc058b02-22be-4cda-81c9-6edc5c3d3553"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dc058b02-22be-4cda-81c9-6edc5c3d3553"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dc058b02-22be-4cda-81c9-6edc5c3d3553"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dc058b02-22be-4cda-81c9-6edc5c3d3553"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-dc058b02-22be-4cda-81c9-6edc5c3d3553"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f98ca4bd-8b41-4f3b-803c-8caba3220ad4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f98ca4bd-8b41-4f3b-803c-8caba3220ad4 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-671dac36-5c28-4028-af3c-a502e198f920 {
  text-align: center;
}







  #s-671dac36-5c28-4028-af3c-a502e198f920 img.shogun-image {
    

    
    
    
  }


#s-671dac36-5c28-4028-af3c-a502e198f920 .shogun-image-content {
  
    align-items: center;
  
}

#s-e4775223-6887-473b-a78d-26bdff4854ca hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-2eed9d33-ac22-4d14-ac8a-5753673a76f9 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-2eed9d33-ac22-4d14-ac8a-5753673a76f9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2eed9d33-ac22-4d14-ac8a-5753673a76f9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2eed9d33-ac22-4d14-ac8a-5753673a76f9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2eed9d33-ac22-4d14-ac8a-5753673a76f9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a201c50d-b7e6-4701-92e3-896fd9ebbfb3 {
  text-align: center;
}







  #s-a201c50d-b7e6-4701-92e3-896fd9ebbfb3 img.shogun-image {
    

    
    
    
  }


#s-a201c50d-b7e6-4701-92e3-896fd9ebbfb3 .shogun-image-content {
  
    align-items: center;
  
}

#s-2f881c3b-5a69-4473-a23b-729f1f3282a4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2f881c3b-5a69-4473-a23b-729f1f3282a4 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-5b385ac2-4060-4797-8faf-7354c5a70800 hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-4ea6c8d8-bd8a-4ddd-84d5-d51a32b24419 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-4ea6c8d8-bd8a-4ddd-84d5-d51a32b24419"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4ea6c8d8-bd8a-4ddd-84d5-d51a32b24419"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4ea6c8d8-bd8a-4ddd-84d5-d51a32b24419"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ea6c8d8-bd8a-4ddd-84d5-d51a32b24419"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-4ea6c8d8-bd8a-4ddd-84d5-d51a32b24419"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-bca245a1-18db-4edf-aa0e-0c5c56d48a59 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-bca245a1-18db-4edf-aa0e-0c5c56d48a59 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-dbe2a231-a459-443d-be73-3e9fae7d861b {
  min-height: 50px;
}








#s-dbe2a231-a459-443d-be73-3e9fae7d861b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbe2a231-a459-443d-be73-3e9fae7d861b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac64c35e-a82a-469e-9cb2-ec124d2ac50c hr {
  border-top: 2px solid #ddd;
}

#s-76e60fc4-75bf-408c-9fca-443bad212d87 {
  min-height: 50px;
}








#s-76e60fc4-75bf-408c-9fca-443bad212d87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76e60fc4-75bf-408c-9fca-443bad212d87.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b98672c1-d1ff-4afc-aed9-ec75262fa85c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b98672c1-d1ff-4afc-aed9-ec75262fa85c .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-27fd4130-a37e-4903-93fb-285a87eecb71 {
  text-align: center;
}

#s-2288ab9d-09cd-4995-8174-b7a303b0fa6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2288ab9d-09cd-4995-8174-b7a303b0fa6f .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-bf78e7bf-55f1-48f8-91cd-cc5b4f337d15 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf78e7bf-55f1-48f8-91cd-cc5b4f337d15 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-eed6e282-92cd-4e3c-80af-16bd363e2987 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-eed6e282-92cd-4e3c-80af-16bd363e2987 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-3753c64e-b7db-49d1-a4c7-078ad3473dda hr {
  border-top: 2px solid #ddd;
}

#s-4029f1bd-9b52-46cf-9f71-fc0d2c61c386 {
  min-height: 50px;
}








#s-4029f1bd-9b52-46cf-9f71-fc0d2c61c386 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4029f1bd-9b52-46cf-9f71-fc0d2c61c386.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a24e2186-420a-47fc-bb0f-763c262c3bd6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a24e2186-420a-47fc-bb0f-763c262c3bd6 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-f024a18a-cf46-477d-aa45-e51c3cae2ab7 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-d6ffc6df-d4a0-48ae-b498-a4fb6b06f234"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6ffc6df-d4a0-48ae-b498-a4fb6b06f234"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d6ffc6df-d4a0-48ae-b498-a4fb6b06f234"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6ffc6df-d4a0-48ae-b498-a4fb6b06f234"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-61910072-64f3-48f8-96ef-52420c34b904 {
  min-height: 50px;
}








#s-61910072-64f3-48f8-96ef-52420c34b904 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61910072-64f3-48f8-96ef-52420c34b904.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f9d9572a-faaf-4270-9fa6-f4b96927b422"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9d9572a-faaf-4270-9fa6-f4b96927b422"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f9d9572a-faaf-4270-9fa6-f4b96927b422"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9d9572a-faaf-4270-9fa6-f4b96927b422"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a9d11f3a-f4e4-4245-a804-64f10645f687 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a9d11f3a-f4e4-4245-a804-64f10645f687 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-59d7438f-d85c-4637-af07-844dec337202 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-59d7438f-d85c-4637-af07-844dec337202 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-14095b78-7403-4b94-8ca8-749cf8729177 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-14095b78-7403-4b94-8ca8-749cf8729177 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-8b397ce0-4b89-4723-a41b-218c22434244 {
  min-height: 50px;
}








#s-8b397ce0-4b89-4723-a41b-218c22434244 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b397ce0-4b89-4723-a41b-218c22434244.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b239ecd2-1ddd-45c9-b71d-76c94a3c7e79"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b239ecd2-1ddd-45c9-b71d-76c94a3c7e79"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b239ecd2-1ddd-45c9-b71d-76c94a3c7e79"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b239ecd2-1ddd-45c9-b71d-76c94a3c7e79"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-3dfc81b5-4c8d-4ce4-a791-5397a29d9d11 {
  padding-top: 19px;
padding-bottom: 19px;
}

#s-3dfc81b5-4c8d-4ce4-a791-5397a29d9d11 hr {
  border-top: 2px solid #ddd;
}

#s-27d97315-b70d-4fe0-8c3d-c60c25062a4d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27d97315-b70d-4fe0-8c3d-c60c25062a4d .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



.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-167b7b8f-26b7-44f3-976d-42aa719b4447 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
color: rgba(255, 255, 255, 1);
}
#s-167b7b8f-26b7-44f3-976d-42aa719b4447:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-167b7b8f-26b7-44f3-976d-42aa719b4447:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-167b7b8f-26b7-44f3-976d-42aa719b4447-root {
    text-align: center;
  }


#s-167b7b8f-26b7-44f3-976d-42aa719b4447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-167b7b8f-26b7-44f3-976d-42aa719b4447-root {
    text-align: center;
  }


#s-167b7b8f-26b7-44f3-976d-42aa719b4447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-167b7b8f-26b7-44f3-976d-42aa719b4447-root {
    text-align: center;
  }


#s-167b7b8f-26b7-44f3-976d-42aa719b4447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-167b7b8f-26b7-44f3-976d-42aa719b4447-root {
    text-align: center;
  }


#s-167b7b8f-26b7-44f3-976d-42aa719b4447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-167b7b8f-26b7-44f3-976d-42aa719b4447-root {
    text-align: center;
  }


#s-167b7b8f-26b7-44f3-976d-42aa719b4447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-76f1372a-1542-4b86-9f99-e1886e8b5803 {
  padding-top: 19px;
padding-bottom: 19px;
}

#s-76f1372a-1542-4b86-9f99-e1886e8b5803 hr {
  border-top: 2px solid #ddd;
}

#s-4baf3919-cf3b-4aab-9b46-9584ba68c8c0 {
  min-height: 50px;
}








#s-4baf3919-cf3b-4aab-9b46-9584ba68c8c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4baf3919-cf3b-4aab-9b46-9584ba68c8c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8216a435-136d-4262-9e7c-8046e14281ad {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8216a435-136d-4262-9e7c-8046e14281ad .shogun-heading-component h3 {
  color: rgba(85, 85, 85, 1);
  font-weight:  normal ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-5634f959-f616-4dd5-95a9-e707f5d8abd2 hr {
  border-top: 1px solid #ddd;
}

#s-1309d498-099d-4390-9de3-cba314994976 {
  min-height: 50px;
}








#s-1309d498-099d-4390-9de3-cba314994976 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1309d498-099d-4390-9de3-cba314994976.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-8c60dfc0-789c-4094-831c-c11874be8c22 {
  padding-left: 20px;
padding-right: 20px;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 {
  text-align: left;
}



.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96aa877e-49e9-49db-bf0e-c49f11ca2756 img.shogun-image {
  width: 100%;
}



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

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-7dfd5c46-ff35-48de-a52c-5f0620bbbefe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7dfd5c46-ff35-48de-a52c-5f0620bbbefe .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-8cfbb760-6314-40f2-b01e-0cc0b6e6b7be {
  text-align: left;
}

#s-8cfbb760-6314-40f2-b01e-0cc0b6e6b7be .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8cfbb760-6314-40f2-b01e-0cc0b6e6b7be .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8cfbb760-6314-40f2-b01e-0cc0b6e6b7be .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-c64a7387-6edf-42bc-bb9d-c76295a38472 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c64a7387-6edf-42bc-bb9d-c76295a38472:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c64a7387-6edf-42bc-bb9d-c76295a38472:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c64a7387-6edf-42bc-bb9d-c76295a38472 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c64a7387-6edf-42bc-bb9d-c76295a38472.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c64a7387-6edf-42bc-bb9d-c76295a38472.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c64a7387-6edf-42bc-bb9d-c76295a38472.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff {
  text-align: left;
}



.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b76c28df-94a0-4c9c-90ea-3713f07fc5ff img.shogun-image {
  width: 100%;
}



}
#s-1bf68dfb-9ea3-4a3f-b10c-6355514ec3f3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1bf68dfb-9ea3-4a3f-b10c-6355514ec3f3 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-33f6964f-e462-4e6c-be4d-2bd40c9abb15 {
  text-align: left;
}

#s-33f6964f-e462-4e6c-be4d-2bd40c9abb15 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-33f6964f-e462-4e6c-be4d-2bd40c9abb15 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-33f6964f-e462-4e6c-be4d-2bd40c9abb15 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-52076415-0832-4585-a22a-bd73a5825c9d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-52076415-0832-4585-a22a-bd73a5825c9d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-52076415-0832-4585-a22a-bd73a5825c9d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-52076415-0832-4585-a22a-bd73a5825c9d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-52076415-0832-4585-a22a-bd73a5825c9d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-52076415-0832-4585-a22a-bd73a5825c9d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-52076415-0832-4585-a22a-bd73a5825c9d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c {
  text-align: left;
}



.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-255ec20b-da3d-45b0-84d2-ac57f30e4c8c img.shogun-image {
  width: 100%;
}



}
#s-f5b53ef1-ec9b-463c-aec3-98e01d1006af {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f5b53ef1-ec9b-463c-aec3-98e01d1006af .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-2b660853-090c-4f90-853c-60bb510d5715 {
  text-align: left;
}

#s-2b660853-090c-4f90-853c-60bb510d5715 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2b660853-090c-4f90-853c-60bb510d5715 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2b660853-090c-4f90-853c-60bb510d5715 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-104f8105-27b0-4040-baf7-5c5940e4b719 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-104f8105-27b0-4040-baf7-5c5940e4b719:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-104f8105-27b0-4040-baf7-5c5940e4b719:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-104f8105-27b0-4040-baf7-5c5940e4b719 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-104f8105-27b0-4040-baf7-5c5940e4b719.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-104f8105-27b0-4040-baf7-5c5940e4b719.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-104f8105-27b0-4040-baf7-5c5940e4b719.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a7e213f1-4b3a-4232-afb5-95adaeed098a {
  text-align: left;
}



.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a7e213f1-4b3a-4232-afb5-95adaeed098a img.shogun-image {
  width: 100%;
}



}
#s-f18c1dfd-186b-44b0-923a-cb7bb35922f6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f18c1dfd-186b-44b0-923a-cb7bb35922f6 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-78a072ae-fd49-4201-a7b9-6dfd783dbee5 {
  text-align: left;
}

#s-78a072ae-fd49-4201-a7b9-6dfd783dbee5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-78a072ae-fd49-4201-a7b9-6dfd783dbee5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-78a072ae-fd49-4201-a7b9-6dfd783dbee5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2433bfa0-7caf-4dcc-a2cb-17193547a523 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-2433bfa0-7caf-4dcc-a2cb-17193547a523:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2433bfa0-7caf-4dcc-a2cb-17193547a523:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2433bfa0-7caf-4dcc-a2cb-17193547a523 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2433bfa0-7caf-4dcc-a2cb-17193547a523.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2433bfa0-7caf-4dcc-a2cb-17193547a523.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2433bfa0-7caf-4dcc-a2cb-17193547a523.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 {
  text-align: left;
}



.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-27b7b7e0-1fc8-4525-be87-4f845fda0964 img.shogun-image {
  width: 100%;
}



}
#s-b3816bd1-78fb-40a8-b1f8-28303fa51796 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b3816bd1-78fb-40a8-b1f8-28303fa51796 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-40573926-5e21-452a-989c-5ad1fb1e819b {
  text-align: left;
}

#s-40573926-5e21-452a-989c-5ad1fb1e819b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-40573926-5e21-452a-989c-5ad1fb1e819b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-40573926-5e21-452a-989c-5ad1fb1e819b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b5f475df-d66b-4c8b-ac71-f4a1bbab8273.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 {
  text-align: left;
}



.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92a5ade4-cd57-4ff8-b107-857ff43c7c11 img.shogun-image {
  width: 100%;
}



}
#s-01521dc2-0758-41a9-ac2f-bf7fc0b7d706 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-01521dc2-0758-41a9-ac2f-bf7fc0b7d706 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-19d4c1d8-3bcf-4cf2-9d31-da9dd9fa5d28 {
  text-align: left;
}

#s-19d4c1d8-3bcf-4cf2-9d31-da9dd9fa5d28 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-19d4c1d8-3bcf-4cf2-9d31-da9dd9fa5d28 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-19d4c1d8-3bcf-4cf2-9d31-da9dd9fa5d28 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-496ad321-c39f-4409-8b2a-2abca02e1a89 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-496ad321-c39f-4409-8b2a-2abca02e1a89:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-496ad321-c39f-4409-8b2a-2abca02e1a89:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-496ad321-c39f-4409-8b2a-2abca02e1a89 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-496ad321-c39f-4409-8b2a-2abca02e1a89.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-496ad321-c39f-4409-8b2a-2abca02e1a89.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-496ad321-c39f-4409-8b2a-2abca02e1a89.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 {
  text-align: left;
}



.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bfb60be6-d076-4ac9-81f9-90497793b2d3 img.shogun-image {
  width: 100%;
}



}
#s-6cea38cd-5ca5-44a9-8bc6-0ec5d830c2db {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6cea38cd-5ca5-44a9-8bc6-0ec5d830c2db .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c7c8cba2-6b8b-4751-8ce9-19ea0ac23af0 {
  text-align: left;
}

#s-c7c8cba2-6b8b-4751-8ce9-19ea0ac23af0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c7c8cba2-6b8b-4751-8ce9-19ea0ac23af0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c7c8cba2-6b8b-4751-8ce9-19ea0ac23af0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-376ec9bd-5584-403c-8c8c-f05ff1e3bc53.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-959b759f-fc67-43e6-b23e-077c6a10c0bc {
  text-align: left;
}



.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-959b759f-fc67-43e6-b23e-077c6a10c0bc img.shogun-image {
  width: 100%;
}



}
#s-334868a6-73d4-4a51-9381-983e914a45e0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-334868a6-73d4-4a51-9381-983e914a45e0 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-f9a02308-ba90-4ff8-a624-27117f7ef239 {
  text-align: left;
}

#s-f9a02308-ba90-4ff8-a624-27117f7ef239 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f9a02308-ba90-4ff8-a624-27117f7ef239 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f9a02308-ba90-4ff8-a624-27117f7ef239 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7287c596-a0d9-41f5-9514-27c8c49532ec {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7287c596-a0d9-41f5-9514-27c8c49532ec:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7287c596-a0d9-41f5-9514-27c8c49532ec:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7287c596-a0d9-41f5-9514-27c8c49532ec {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7287c596-a0d9-41f5-9514-27c8c49532ec.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7287c596-a0d9-41f5-9514-27c8c49532ec.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7287c596-a0d9-41f5-9514-27c8c49532ec.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 {
  text-align: left;
}



.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-98ee8265-b1a1-41bc-9637-e6e1208c25f0 img.shogun-image {
  width: 100%;
}



}
#s-2fa4c5e8-b461-4893-a54b-f61d3916fe96 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2fa4c5e8-b461-4893-a54b-f61d3916fe96 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-66c8937d-311a-41c6-931f-a5601916dea0 {
  text-align: left;
}

#s-66c8937d-311a-41c6-931f-a5601916dea0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-66c8937d-311a-41c6-931f-a5601916dea0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-66c8937d-311a-41c6-931f-a5601916dea0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1e41dcc4-bcd9-46b6-91b9-e8823a4e855b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-904a2e9b-1225-4d76-a20c-b481e055d747 {
  text-align: left;
}



.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-904a2e9b-1225-4d76-a20c-b481e055d747 img.shogun-image {
  width: 100%;
}



}
#s-943aae46-d79b-44bb-8706-5117327e7608 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-943aae46-d79b-44bb-8706-5117327e7608 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-dbb91d1c-076a-4b04-a093-aff6e10b581d {
  text-align: left;
}

#s-dbb91d1c-076a-4b04-a093-aff6e10b581d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-dbb91d1c-076a-4b04-a093-aff6e10b581d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-dbb91d1c-076a-4b04-a093-aff6e10b581d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c79851e8-5855-4c5c-a919-0b0b94ebdfac.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f {
  text-align: left;
}



.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4ab468e-e44b-44ad-80a1-9dd649cecb9f img.shogun-image {
  width: 100%;
}



}
#s-7d049bef-00a3-4556-b10d-8849dce299fc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d049bef-00a3-4556-b10d-8849dce299fc .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-7d154afb-25eb-447d-b558-c6f8246b7a46 {
  text-align: left;
}

#s-7d154afb-25eb-447d-b558-c6f8246b7a46 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7d154afb-25eb-447d-b558-c6f8246b7a46 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-7d154afb-25eb-447d-b558-c6f8246b7a46 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-83a5fd84-85e7-4a82-9fae-c15e37f25f2d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 {
  text-align: left;
}



.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-15c7cd32-5d2b-41c5-b65f-f20948b02291 img.shogun-image {
  width: 100%;
}



}
#s-2334a5be-f154-46cb-a751-f23dcf104c05 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2334a5be-f154-46cb-a751-f23dcf104c05 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-3483d9bc-449a-4e72-b03c-97069e6498a5 {
  text-align: left;
}

#s-3483d9bc-449a-4e72-b03c-97069e6498a5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3483d9bc-449a-4e72-b03c-97069e6498a5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3483d9bc-449a-4e72-b03c-97069e6498a5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-f9fa5bfa-c4e2-40cc-9008-d800062d0187.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-eb544754-415b-4448-8081-a6cb381da961 {
  text-align: left;
}



.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb544754-415b-4448-8081-a6cb381da961 img.shogun-image {
  width: 100%;
}



}
#s-60321beb-237d-4da3-bf9c-7613d097545a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60321beb-237d-4da3-bf9c-7613d097545a .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d5a48be1-39a0-446a-9d3e-086e2876297a {
  text-align: left;
}

#s-d5a48be1-39a0-446a-9d3e-086e2876297a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d5a48be1-39a0-446a-9d3e-086e2876297a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d5a48be1-39a0-446a-9d3e-086e2876297a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-dc878ce7-675e-4e4c-824b-d66d134cb041 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-dc878ce7-675e-4e4c-824b-d66d134cb041:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-dc878ce7-675e-4e4c-824b-d66d134cb041:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-dc878ce7-675e-4e4c-824b-d66d134cb041 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-dc878ce7-675e-4e4c-824b-d66d134cb041.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-dc878ce7-675e-4e4c-824b-d66d134cb041.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-dc878ce7-675e-4e4c-824b-d66d134cb041.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f {
  text-align: left;
}



.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bd61b3dc-c21a-4394-8e45-496b8fb3748f img.shogun-image {
  width: 100%;
}



}
#s-becdc149-c435-42c3-866c-157c84e2fe18 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-becdc149-c435-42c3-866c-157c84e2fe18 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c9e7ed25-6756-4f89-9934-83433101b500 {
  text-align: left;
}

#s-c9e7ed25-6756-4f89-9934-83433101b500 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c9e7ed25-6756-4f89-9934-83433101b500 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c9e7ed25-6756-4f89-9934-83433101b500 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6e7e5f2a-219b-4ae8-b088-e6d99972ca8b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5fb22690-2471-44a4-b209-6727a71ebdde {
  padding-top: 19px;
padding-bottom: 19px;
opacity: 0;
}

#s-5fb22690-2471-44a4-b209-6727a71ebdde hr {
  border-top: 2px solid #ddd;
}

#s-bc146b28-4904-457b-8998-940363960347 {
  min-height: 50px;
}








#s-bc146b28-4904-457b-8998-940363960347 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc146b28-4904-457b-8998-940363960347.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-da734ed6-2407-41ed-8ff3-7ab967c51670"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-da734ed6-2407-41ed-8ff3-7ab967c51670"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-da734ed6-2407-41ed-8ff3-7ab967c51670"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-da734ed6-2407-41ed-8ff3-7ab967c51670"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-05f76122-bf87-404b-895e-e3adda1c30e0 hr {
  border-top: 1px solid #ddd;
}

#s-52cb8738-ba13-45c9-b4bb-8c38d3e7de00 {
  text-align: center;
}







  #s-52cb8738-ba13-45c9-b4bb-8c38d3e7de00 img.shogun-image {
    

    
    
    
  }


#s-52cb8738-ba13-45c9-b4bb-8c38d3e7de00 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-64832853-3d89-47bd-b1f3-ae47fb5facd3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64832853-3d89-47bd-b1f3-ae47fb5facd3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-64832853-3d89-47bd-b1f3-ae47fb5facd3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-64832853-3d89-47bd-b1f3-ae47fb5facd3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-75e646f8-612a-4264-8409-dba9c326105b {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-75e646f8-612a-4264-8409-dba9c326105b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75e646f8-612a-4264-8409-dba9c326105b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-75e646f8-612a-4264-8409-dba9c326105b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-75e646f8-612a-4264-8409-dba9c326105b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2489a820-1d4b-408a-a4c4-cf1ce66aefa3 {
  max-width: 1110px;
text-align: center;
}

#s-078c9bd7-9206-46e9-9d01-0293feb5f11b {
  min-height: 50px;
background-attachment: scroll;
}








#s-078c9bd7-9206-46e9-9d01-0293feb5f11b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-078c9bd7-9206-46e9-9d01-0293feb5f11b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ca33683-f0a8-4f8a-ae47-afae0652c75c {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-4ca33683-f0a8-4f8a-ae47-afae0652c75c hr {
  border-top: 2px solid #ddd;
}

#s-912004c0-b5f1-46aa-8dd9-014afc430e17 {
  padding-top: 10px;
text-align: center;
}

#s-912004c0-b5f1-46aa-8dd9-014afc430e17 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d {
  
}
}@media (max-width: 767px){#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d {
  
}
}







#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-129232a1-d3d2-44dd-9f5a-873a15b0ca8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2b0409b-93cd-4fa8-b0c7-bed82cc7241a {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-e2b0409b-93cd-4fa8-b0c7-bed82cc7241a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e2b0409b-93cd-4fa8-b0c7-bed82cc7241a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e2b0409b-93cd-4fa8-b0c7-bed82cc7241a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e2b0409b-93cd-4fa8-b0c7-bed82cc7241a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-abb7947b-1bf7-4d8d-bc8d-5b97fcca8ea6 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-abb7947b-1bf7-4d8d-bc8d-5b97fcca8ea6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-abb7947b-1bf7-4d8d-bc8d-5b97fcca8ea6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ee9fc65b-7f7d-4fab-88ba-7a12b440819f {
  margin-left: 20px;
margin-right: 20px;
}

#s-ee9fc65b-7f7d-4fab-88ba-7a12b440819f .shogun-icon-wrapper {
  text-align: center;
}


#s-ee9fc65b-7f7d-4fab-88ba-7a12b440819f .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-51932a90-60c3-40bb-b284-27be4f151c30 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-51932a90-60c3-40bb-b284-27be4f151c30 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-cd64fdc8-45e9-4a18-8609-243162c8913c {
  margin-left: 20px;
margin-right: 20px;
}

#s-4db093f3-48f6-496b-9c96-81c4f531667a {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-4db093f3-48f6-496b-9c96-81c4f531667a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4db093f3-48f6-496b-9c96-81c4f531667a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0be780b8-1cba-469d-8df2-eb007516dc2d {
  margin-left: 20px;
margin-right: 20px;
}

#s-0be780b8-1cba-469d-8df2-eb007516dc2d .shogun-icon-wrapper {
  text-align: center;
}


#s-0be780b8-1cba-469d-8df2-eb007516dc2d .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-b4a05a33-4ab3-43a9-9e84-d442388a0c5b {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4a05a33-4ab3-43a9-9e84-d442388a0c5b .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-6bda5588-8dd0-49bd-bedf-ed2dedfbd795 {
  margin-left: 20px;
margin-right: 20px;
}

#s-6230fb8c-6c84-4f91-aafa-31d7b5e40378 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-6230fb8c-6c84-4f91-aafa-31d7b5e40378 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6230fb8c-6c84-4f91-aafa-31d7b5e40378.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fad7feb0-0154-4e71-8655-8a5c492a14c4 {
  margin-left: 20px;
margin-right: 20px;
}

#s-fad7feb0-0154-4e71-8655-8a5c492a14c4 .shogun-icon-wrapper {
  text-align: center;
}


#s-fad7feb0-0154-4e71-8655-8a5c492a14c4 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-cfb6c3e8-809f-49ca-93d5-0f661f7239ee {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cfb6c3e8-809f-49ca-93d5-0f661f7239ee .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-ca028ae7-50ea-43d7-900a-cef9c3a5a3f5 {
  margin-left: 20px;
margin-right: 20px;
}

#s-47b683d0-8d6a-40a9-9c32-307d2ceca180 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-47b683d0-8d6a-40a9-9c32-307d2ceca180 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47b683d0-8d6a-40a9-9c32-307d2ceca180.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-fda984d1-5642-43bd-b596-9138877274ef {
  margin-left: 20px;
margin-right: 20px;
}

#s-fda984d1-5642-43bd-b596-9138877274ef .shogun-icon-wrapper {
  text-align: center;
}


#s-fda984d1-5642-43bd-b596-9138877274ef .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-7eea6649-e9fe-4db0-b296-4f3a193784a8 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7eea6649-e9fe-4db0-b296-4f3a193784a8 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-85fc6336-98ca-47eb-99bf-0cb4b5ea962b {
  margin-left: 20px;
margin-right: 20px;
}

#s-6975bfcb-d9e1-46c5-acfb-8e5d821133f4 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-6975bfcb-d9e1-46c5-acfb-8e5d821133f4 hr {
  border-top: 2px solid #ddd;
}

/*
  $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}
