.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 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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.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 {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  margin-bottom: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 0;
  -webkit-padding-start: 40px;
          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-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * 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: flex;
  width: 100%;
}

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

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

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

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

.shg-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-2a044093-0c54-44ec-8480-9b0622dd595a {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-2a044093-0c54-44ec-8480-9b0622dd595a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2a044093-0c54-44ec-8480-9b0622dd595a.shg-box.shg-c {
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000;
  text-transform: none;
  font-weight: normal;
  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-a4bd466b-21cb-4b9b-9ec6-fb68f53531a0 {
  margin-top: 3px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a4bd466b-21cb-4b9b-9ec6-fb68f53531a0 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs {
  justify-content: flex-start;
}

#s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li > .shogun-tab-box::after {
    background: #fff;
    border: 1px solid rgba(215, 215, 215, 1);
  }
  #s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box::after  {
    background: rgba(40, 53, 66, 1);
    border: 1px solid rgba(40, 53, 66, 1);
  }
#s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(40, 53, 66, 1);
  font-family: Cutive Mono;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(40, 53, 66, 1);
}

#s-ad67e768-5edd-41a4-8a14-eb994730ea95 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(40, 53, 66, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-sld-fade {
  -webkit-animation-name: shg-sld-fade;
          animation-name: shg-sld-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  image-rendering: -webkit-optimize-contrast;
}

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

#s-f2d12de5-f6fd-4276-896b-90373404a358 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f2d12de5-f6fd-4276-896b-90373404a358 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-f2d12de5-f6fd-4276-896b-90373404a358 .shg-sld-nav-button.shg-sld-left,
#s-f2d12de5-f6fd-4276-896b-90373404a358 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

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

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

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

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;
}
#s-9eefab20-70d7-420a-95bb-2de41ef142f6 {
  text-align: center;
}




  #s-9eefab20-70d7-420a-95bb-2de41ef142f6 img.shogun-image {
    
    width: px;
  }


#s-9eefab20-70d7-420a-95bb-2de41ef142f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-33e17d9e-7625-4cba-87cd-8f9aa8942c00 {
  text-align: center;
}




  #s-33e17d9e-7625-4cba-87cd-8f9aa8942c00 img.shogun-image {
    
    width: px;
  }


#s-33e17d9e-7625-4cba-87cd-8f9aa8942c00 .shogun-image-content {
  
    align-items: center;
  
}

#s-722e1177-6bf3-4dc6-8fd6-efac49bae4a2 {
  text-align: center;
}




  #s-722e1177-6bf3-4dc6-8fd6-efac49bae4a2 img.shogun-image {
    
    width: px;
  }


#s-722e1177-6bf3-4dc6-8fd6-efac49bae4a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-afd4dc8b-0901-4edf-9783-b8c18477d97b {
  text-align: center;
}




  #s-afd4dc8b-0901-4edf-9783-b8c18477d97b img.shogun-image {
    
    width: px;
  }


#s-afd4dc8b-0901-4edf-9783-b8c18477d97b .shogun-image-content {
  
    align-items: center;
  
}

#s-574a016f-1e3b-449f-a13e-ef5cb30e361e {
  text-align: center;
}




  #s-574a016f-1e3b-449f-a13e-ef5cb30e361e img.shogun-image {
    
    width: px;
  }


#s-574a016f-1e3b-449f-a13e-ef5cb30e361e .shogun-image-content {
  
    align-items: center;
  
}

#s-0fd74f19-6a67-407b-a537-61b733455138 {
  text-align: center;
}




  #s-0fd74f19-6a67-407b-a537-61b733455138 img.shogun-image {
    
    width: px;
  }


#s-0fd74f19-6a67-407b-a537-61b733455138 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc702651-9fe6-42a0-9618-a5860753abb0 {
  text-align: center;
}




  #s-fc702651-9fe6-42a0-9618-a5860753abb0 img.shogun-image {
    
    width: px;
  }


#s-fc702651-9fe6-42a0-9618-a5860753abb0 .shogun-image-content {
  
    align-items: center;
  
}

#s-7f26318b-d214-485a-80e2-a0e8beb89612 {
  text-align: center;
}




  #s-7f26318b-d214-485a-80e2-a0e8beb89612 img.shogun-image {
    
    width: px;
  }


#s-7f26318b-d214-485a-80e2-a0e8beb89612 .shogun-image-content {
  
    align-items: center;
  
}

#s-4c46fe48-034d-4b00-b76c-8865b7dafae9 {
  text-align: center;
}




  #s-4c46fe48-034d-4b00-b76c-8865b7dafae9 img.shogun-image {
    
    width: px;
  }


#s-4c46fe48-034d-4b00-b76c-8865b7dafae9 .shogun-image-content {
  
    align-items: center;
  
}

#s-7f674e2d-5843-4074-b622-2c6aca8c8edc {
  text-align: center;
}




  #s-7f674e2d-5843-4074-b622-2c6aca8c8edc img.shogun-image {
    
    width: px;
  }


#s-7f674e2d-5843-4074-b622-2c6aca8c8edc .shogun-image-content {
  
    align-items: center;
  
}

#s-936be96f-f3ad-478a-b87d-91a90c2b3251 {
  text-align: center;
}




  #s-936be96f-f3ad-478a-b87d-91a90c2b3251 img.shogun-image {
    
    width: px;
  }


#s-936be96f-f3ad-478a-b87d-91a90c2b3251 .shogun-image-content {
  
    align-items: center;
  
}

#s-e49b9367-fb52-4d5d-bbc1-8a972bc041cb {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e49b9367-fb52-4d5d-bbc1-8a972bc041cb .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-e49b9367-fb52-4d5d-bbc1-8a972bc041cb .shg-sld-nav-button.shg-sld-left,
#s-e49b9367-fb52-4d5d-bbc1-8a972bc041cb .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-29b5e554-8109-4eae-b85f-c25d0fa1e4d1 {
  text-align: center;
}




  #s-29b5e554-8109-4eae-b85f-c25d0fa1e4d1 img.shogun-image {
    
    width: px;
  }


#s-29b5e554-8109-4eae-b85f-c25d0fa1e4d1 .shogun-image-content {
  
    align-items: center;
  
}

#s-3836cdf5-668d-4ca3-9cb2-6353e979d365 {
  text-align: center;
}




  #s-3836cdf5-668d-4ca3-9cb2-6353e979d365 img.shogun-image {
    
    width: px;
  }


#s-3836cdf5-668d-4ca3-9cb2-6353e979d365 .shogun-image-content {
  
    align-items: center;
  
}

#s-297a4ded-0f51-48a7-bf80-9aa150190e02 {
  text-align: center;
}




  #s-297a4ded-0f51-48a7-bf80-9aa150190e02 img.shogun-image {
    
    width: px;
  }


#s-297a4ded-0f51-48a7-bf80-9aa150190e02 .shogun-image-content {
  
    align-items: center;
  
}

#s-44945d1c-860e-4723-8a44-30a2e3da531d {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-44945d1c-860e-4723-8a44-30a2e3da531d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44945d1c-860e-4723-8a44-30a2e3da531d.shg-box.shg-c {
  justify-content: center;
}

#s-a39942dc-3d5c-4c5d-949e-1ef69d6c62f6 {
  margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a39942dc-3d5c-4c5d-949e-1ef69d6c62f6 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: 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;
  }
}

@media (max-width: 480px) {
  .shg-category-row-hor {
    display: flex;
    flex-wrap: wrap;
  }

  .shg-category-row-hor .shg-category-col,
  .shg-category-row-hor .shg-category-col:first-child,
  .shg-category-row-hor .shg-category-col:last-child {
    min-width: 50%;
    max-width: 50%;
    padding-top: 0;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
  }
}

#s-56bc896a-e980-42c0-995e-cb692d77eed7 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

.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;
  width: 100%;
  height: 100%;
  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-9253c59a-d8ac-4fe5-b999-ee61dfcec648 {
  text-align: left;
}


.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 {
  max-width: 100%;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom,
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 {
  max-width: 100%;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom,
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 {
  max-width: 100%;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom,
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 {
  max-width: 100%;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom,
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 {
  max-width: 100%;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom,
.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9253c59a-d8ac-4fe5-b999-ee61dfcec648 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
.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: #000;
  text-transform: none;
  font-weight: normal;
  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-37e80ca2-c21d-4ece-aaf0-0bb7a17da912 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-37e80ca2-c21d-4ece-aaf0-0bb7a17da912 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-0465b1a4-464f-49b7-b496-634d0a759a7e {
  text-align: center;
}

#s-0465b1a4-464f-49b7-b496-634d0a759a7e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-0465b1a4-464f-49b7-b496-634d0a759a7e .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-0465b1a4-464f-49b7-b496-634d0a759a7e .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c492bddc-10a2-472e-a84e-3eac52b9511e {
  display: none;
}
#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 {
  text-align: left;
}


.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 {
  max-width: 100%;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom,
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 {
  max-width: 100%;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom,
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 {
  max-width: 100%;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom,
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 {
  max-width: 100%;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom,
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 {
  max-width: 100%;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom,
.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1cc64c96-526b-460b-8d50-a38a0d4bf449 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d2a7f1fa-dff2-41a0-90b7-7761d1e5253c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2a7f1fa-dff2-41a0-90b7-7761d1e5253c .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-bdc306ad-e1a8-4560-ad69-2eef3f6ca341 {
  text-align: center;
}

#s-bdc306ad-e1a8-4560-ad69-2eef3f6ca341 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-bdc306ad-e1a8-4560-ad69-2eef3f6ca341 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-bdc306ad-e1a8-4560-ad69-2eef3f6ca341 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1de98e6e-58fb-491d-bbda-1a50a753b77f {
  display: none;
}
#s-87063654-576c-498c-a73b-8d701b725f1a {
  text-align: left;
}


.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a {
  max-width: 100%;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom,
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a {
  max-width: 100%;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom,
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a {
  max-width: 100%;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom,
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a {
  max-width: 100%;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom,
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a {
  max-width: 100%;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom,
.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-87063654-576c-498c-a73b-8d701b725f1a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b11b1c09-f94f-4e6e-9680-806dddf88ee5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b11b1c09-f94f-4e6e-9680-806dddf88ee5 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-182e86fe-e9f8-42ed-bd25-86d8babce13d {
  text-align: center;
}

#s-182e86fe-e9f8-42ed-bd25-86d8babce13d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-182e86fe-e9f8-42ed-bd25-86d8babce13d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-182e86fe-e9f8-42ed-bd25-86d8babce13d .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ba64ed2f-3eea-44a4-9ddf-f8e96d776fd8 {
  display: none;
}
#s-affbe774-2f66-423d-9e31-21beca5a1e60 {
  text-align: left;
}


.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 {
  max-width: 100%;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom,
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 {
  max-width: 100%;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom,
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 {
  max-width: 100%;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom,
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 {
  max-width: 100%;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom,
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 {
  max-width: 100%;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom,
.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-affbe774-2f66-423d-9e31-21beca5a1e60 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-7b0836c9-7e3c-4ca1-b923-bbe9b7bfdbf8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b0836c9-7e3c-4ca1-b923-bbe9b7bfdbf8 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-62eb5952-e0d1-4cf1-ab26-b8d43ec4e4bd {
  text-align: center;
}

#s-62eb5952-e0d1-4cf1-ab26-b8d43ec4e4bd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-62eb5952-e0d1-4cf1-ab26-b8d43ec4e4bd .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-62eb5952-e0d1-4cf1-ab26-b8d43ec4e4bd .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-15a5f11e-850b-4394-ba95-f09cf2c7675c {
  display: none;
}
#s-dd1c6662-c353-48ed-8449-6b11f6b3514d {
  text-align: left;
}


.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d {
  max-width: 100%;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom,
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d {
  max-width: 100%;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom,
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d {
  max-width: 100%;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom,
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d {
  max-width: 100%;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom,
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d {
  max-width: 100%;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom,
.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dd1c6662-c353-48ed-8449-6b11f6b3514d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a16b8a5d-df11-4767-8e0b-8a6f7fdee91e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a16b8a5d-df11-4767-8e0b-8a6f7fdee91e .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-2a5e6409-6412-431c-8ce7-d66101b8b18c {
  text-align: left;
}

#s-2a5e6409-6412-431c-8ce7-d66101b8b18c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2a5e6409-6412-431c-8ce7-d66101b8b18c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2a5e6409-6412-431c-8ce7-d66101b8b18c .shg-product-compare-price {
  display: none;
  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-2e429b61-b260-4519-8670-d488963ec49f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-2e429b61-b260-4519-8670-d488963ec49f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2e429b61-b260-4519-8670-d488963ec49f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2e429b61-b260-4519-8670-d488963ec49f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2e429b61-b260-4519-8670-d488963ec49f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2e429b61-b260-4519-8670-d488963ec49f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2e429b61-b260-4519-8670-d488963ec49f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a42fcc52-e15c-408e-9a90-3871e0088054 {
  display: none;
}
#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 {
  text-align: left;
}


.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 {
  max-width: 100%;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom,
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 {
  max-width: 100%;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom,
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 {
  max-width: 100%;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom,
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 {
  max-width: 100%;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom,
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 {
  max-width: 100%;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom,
.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4948c1e0-d3e1-470e-af0b-fc7e0b3601d5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a6113206-8265-408e-8a30-42587487c594 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a6113206-8265-408e-8a30-42587487c594 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-4aed9edf-8f26-481f-bf32-cdfaa09190d6 {
  text-align: left;
}

#s-4aed9edf-8f26-481f-bf32-cdfaa09190d6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4aed9edf-8f26-481f-bf32-cdfaa09190d6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4aed9edf-8f26-481f-bf32-cdfaa09190d6 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-dd431932-99f1-4ea8-a8a5-0bb695f77c9e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-f5b7f0c8-d6f7-466b-ab33-d8b1e8ddc4a9 {
  display: none;
}
#s-a371db7e-2e41-4365-93f2-b354dad2b6ee {
  text-align: left;
}


.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee {
  max-width: 100%;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom,
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee {
  max-width: 100%;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom,
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee {
  max-width: 100%;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom,
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee {
  max-width: 100%;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom,
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee {
  max-width: 100%;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom,
.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a371db7e-2e41-4365-93f2-b354dad2b6ee .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c5d537ca-166a-4560-9e21-7f9ca6ffc320 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c5d537ca-166a-4560-9e21-7f9ca6ffc320 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-192b8657-a5d5-4c5c-b924-892dabed2e6c {
  text-align: left;
}

#s-192b8657-a5d5-4c5c-b924-892dabed2e6c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-192b8657-a5d5-4c5c-b924-892dabed2e6c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-192b8657-a5d5-4c5c-b924-892dabed2e6c .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c1ea3338-1505-4359-a8b9-f6227be52944 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c1ea3338-1505-4359-a8b9-f6227be52944:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c1ea3338-1505-4359-a8b9-f6227be52944:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c1ea3338-1505-4359-a8b9-f6227be52944 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c1ea3338-1505-4359-a8b9-f6227be52944.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c1ea3338-1505-4359-a8b9-f6227be52944.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c1ea3338-1505-4359-a8b9-f6227be52944.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-be558fb8-774e-476c-ad38-c1c2e4d75c6c {
  display: none;
}
#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 {
  text-align: left;
}


.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 {
  max-width: 100%;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom,
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 {
  max-width: 100%;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom,
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 {
  max-width: 100%;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom,
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 {
  max-width: 100%;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom,
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 {
  max-width: 100%;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom,
.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-aaedd3aa-3596-4875-9efd-b41a35b288d6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3fa90745-af2b-4bfe-950d-7d7a3bd9f04d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3fa90745-af2b-4bfe-950d-7d7a3bd9f04d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a6b423d9-1907-4742-9c4c-91a1e838af00 {
  text-align: left;
}

#s-a6b423d9-1907-4742-9c4c-91a1e838af00 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a6b423d9-1907-4742-9c4c-91a1e838af00 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a6b423d9-1907-4742-9c4c-91a1e838af00 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-31309771-5350-4d45-9597-872fa4b5925f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-31309771-5350-4d45-9597-872fa4b5925f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-31309771-5350-4d45-9597-872fa4b5925f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-31309771-5350-4d45-9597-872fa4b5925f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-31309771-5350-4d45-9597-872fa4b5925f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-31309771-5350-4d45-9597-872fa4b5925f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-31309771-5350-4d45-9597-872fa4b5925f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7ab464c1-8b81-4237-acd4-e27a6c62c33d {
  display: none;
}
#s-59039bb9-fe3a-4684-8543-abf44caf7853 {
  text-align: left;
}


.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 {
  max-width: 100%;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom,
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 {
  max-width: 100%;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom,
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 {
  max-width: 100%;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom,
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 {
  max-width: 100%;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom,
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 {
  max-width: 100%;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom,
.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-59039bb9-fe3a-4684-8543-abf44caf7853 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2a5d555b-4e75-49da-b623-322f118de8b1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2a5d555b-4e75-49da-b623-322f118de8b1 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c1d59a53-d10b-40c9-9cb0-e406c83cac91 {
  text-align: left;
}

#s-c1d59a53-d10b-40c9-9cb0-e406c83cac91 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c1d59a53-d10b-40c9-9cb0-e406c83cac91 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c1d59a53-d10b-40c9-9cb0-e406c83cac91 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c5e3eeb4-cf4d-44ba-bbf8-f406d8cf8cfd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9fafb5f9-3e80-4780-afad-bbbc6d45269a {
  display: none;
}
#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 {
  text-align: left;
}


.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 {
  max-width: 100%;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom,
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 {
  max-width: 100%;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom,
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 {
  max-width: 100%;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom,
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 {
  max-width: 100%;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom,
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 {
  max-width: 100%;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom,
.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a261f0e6-eea0-4c76-944d-af7a3e8a6563 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-7213bfeb-c72e-48ef-aa4d-2c7df8e9033b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7213bfeb-c72e-48ef-aa4d-2c7df8e9033b .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a96ca53d-c842-40f3-964f-6bbef3091994 {
  text-align: left;
}

#s-a96ca53d-c842-40f3-964f-6bbef3091994 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a96ca53d-c842-40f3-964f-6bbef3091994 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a96ca53d-c842-40f3-964f-6bbef3091994 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6d10cbfe-c08b-4491-a952-e0ce91bcad25.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0c453a37-8b1a-4839-821d-003034e8b9cf {
  display: none;
}
#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 {
  text-align: left;
}


.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 {
  max-width: 100%;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom,
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 {
  max-width: 100%;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom,
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 {
  max-width: 100%;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom,
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 {
  max-width: 100%;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom,
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 {
  max-width: 100%;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom,
.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4d94268e-cf29-4f98-92fe-eb3e441e6236 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-566c525d-a921-45ff-9932-26b5860306da {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-566c525d-a921-45ff-9932-26b5860306da .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-66ce8f5a-6beb-4e72-853c-37a838550698 {
  text-align: left;
}

#s-66ce8f5a-6beb-4e72-853c-37a838550698 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-66ce8f5a-6beb-4e72-853c-37a838550698 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-66ce8f5a-6beb-4e72-853c-37a838550698 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0d4e4d17-ab33-44d1-b3ef-ec1cfeb61f9a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-cff5a33e-e94d-4bfa-95be-cf32f6e95b57 {
  display: none;
}
#s-8ab32044-4b48-4218-b284-eeb370cd04fa {
  text-align: left;
}


.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa {
  max-width: 100%;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom,
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa {
  max-width: 100%;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom,
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa {
  max-width: 100%;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom,
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa {
  max-width: 100%;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom,
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa {
  max-width: 100%;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom,
.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-8ab32044-4b48-4218-b284-eeb370cd04fa .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e2a36106-0663-4089-9724-d80ed1708256 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e2a36106-0663-4089-9724-d80ed1708256 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-133035b0-ccb7-4300-bff1-3d7ee484b4cf {
  text-align: left;
}

#s-133035b0-ccb7-4300-bff1-3d7ee484b4cf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-133035b0-ccb7-4300-bff1-3d7ee484b4cf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-133035b0-ccb7-4300-bff1-3d7ee484b4cf .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-522ab1f6-d3b4-470c-8a5c-2600196293bd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-522ab1f6-d3b4-470c-8a5c-2600196293bd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-522ab1f6-d3b4-470c-8a5c-2600196293bd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-522ab1f6-d3b4-470c-8a5c-2600196293bd {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-522ab1f6-d3b4-470c-8a5c-2600196293bd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-522ab1f6-d3b4-470c-8a5c-2600196293bd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-522ab1f6-d3b4-470c-8a5c-2600196293bd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-02e6156b-e7a4-48fb-80ee-82ddf0338409 {
  display: none;
}
#s-3f6af034-3df0-428c-b44e-9c70d648ce5a {
  text-align: left;
}


.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a {
  max-width: 100%;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom,
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a {
  max-width: 100%;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom,
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a {
  max-width: 100%;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom,
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a {
  max-width: 100%;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom,
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a {
  max-width: 100%;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom,
.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3f6af034-3df0-428c-b44e-9c70d648ce5a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a26195aa-99d6-48a2-ac51-4ec3918cdf0b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a26195aa-99d6-48a2-ac51-4ec3918cdf0b .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-68c61277-d30e-4931-abd7-73d48920909b {
  text-align: left;
}

#s-68c61277-d30e-4931-abd7-73d48920909b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-68c61277-d30e-4931-abd7-73d48920909b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-68c61277-d30e-4931-abd7-73d48920909b .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b290f5b7-acaa-49ca-a9a6-19d486b3cc54.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-852b448d-420a-438a-b298-344c4f40b24d {
  display: none;
}
#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b {
  text-align: left;
}


.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b {
  max-width: 100%;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom,
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b {
  max-width: 100%;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom,
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b {
  max-width: 100%;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom,
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b {
  max-width: 100%;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom,
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b {
  max-width: 100%;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom,
.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d90805cc-15dd-4fa1-8eb3-9b370d3b215b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-9b85dfb3-6f00-4fb8-9ceb-a81d6beecaab {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9b85dfb3-6f00-4fb8-9ceb-a81d6beecaab .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-134314bd-9d0c-4439-a30c-87090902ee64 {
  text-align: left;
}

#s-134314bd-9d0c-4439-a30c-87090902ee64 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-134314bd-9d0c-4439-a30c-87090902ee64 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-134314bd-9d0c-4439-a30c-87090902ee64 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-611c0756-dbc0-4b22-b79c-f4f2cc59abe7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-f7b7496b-8167-4aec-9cc6-cc93d3f013bf {
  display: none;
}
#s-3d3eff79-577c-4763-bc49-2225b78ead26 {
  text-align: left;
}


.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 {
  max-width: 100%;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom,
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 {
  max-width: 100%;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom,
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 {
  max-width: 100%;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom,
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 {
  max-width: 100%;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom,
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 {
  max-width: 100%;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom,
.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3d3eff79-577c-4763-bc49-2225b78ead26 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-16c246fd-8f68-4fba-ab7d-fb7791b2681c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16c246fd-8f68-4fba-ab7d-fb7791b2681c .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-ecd25896-efbe-4cd1-babf-e74bf3d51e54 {
  text-align: left;
}

#s-ecd25896-efbe-4cd1-babf-e74bf3d51e54 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ecd25896-efbe-4cd1-babf-e74bf3d51e54 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ecd25896-efbe-4cd1-babf-e74bf3d51e54 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8a110bc0-800e-4260-b4bc-75d542b053ea {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8a110bc0-800e-4260-b4bc-75d542b053ea:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8a110bc0-800e-4260-b4bc-75d542b053ea:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8a110bc0-800e-4260-b4bc-75d542b053ea {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8a110bc0-800e-4260-b4bc-75d542b053ea.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8a110bc0-800e-4260-b4bc-75d542b053ea.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8a110bc0-800e-4260-b4bc-75d542b053ea.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d8537ee0-1db9-4a2f-9d37-116e5b3a8c3c {
  display: none;
}
#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 {
  text-align: left;
}


.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 {
  max-width: 100%;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom,
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 {
  max-width: 100%;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom,
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 {
  max-width: 100%;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom,
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 {
  max-width: 100%;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom,
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 {
  max-width: 100%;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom,
.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7cfe62f9-39c2-4a1d-9a80-cea1c7aaba24 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d3a92cb9-b7fe-42fd-b364-a498429656cf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d3a92cb9-b7fe-42fd-b364-a498429656cf .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-1903d675-eb8e-4d10-8a9d-4097d0719750 {
  text-align: left;
}

#s-1903d675-eb8e-4d10-8a9d-4097d0719750 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1903d675-eb8e-4d10-8a9d-4097d0719750 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1903d675-eb8e-4d10-8a9d-4097d0719750 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d9aee2a7-2f08-40d1-a47f-0ab12861d0cf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3fccf1fa-17f0-47f6-a8e4-d88e506aea13 {
  display: none;
}
#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 {
  text-align: left;
}


.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 {
  max-width: 100%;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom,
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 {
  max-width: 100%;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom,
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 {
  max-width: 100%;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom,
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 {
  max-width: 100%;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom,
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 {
  max-width: 100%;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom,
.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-29f7d2b1-6a5b-4430-8ba5-1b014677cec4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-4548f03f-096d-4805-b868-248bb47d0fb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4548f03f-096d-4805-b868-248bb47d0fb2 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-285ee96c-9b97-4748-a316-19768c9c8083 {
  text-align: left;
}

#s-285ee96c-9b97-4748-a316-19768c9c8083 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-285ee96c-9b97-4748-a316-19768c9c8083 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-285ee96c-9b97-4748-a316-19768c9c8083 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ab544e9e-d9cd-47dd-9d68-2672526d329f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ab544e9e-d9cd-47dd-9d68-2672526d329f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ab544e9e-d9cd-47dd-9d68-2672526d329f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ab544e9e-d9cd-47dd-9d68-2672526d329f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ab544e9e-d9cd-47dd-9d68-2672526d329f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ab544e9e-d9cd-47dd-9d68-2672526d329f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ab544e9e-d9cd-47dd-9d68-2672526d329f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-27c6a8ec-540c-4a69-ba0f-71d4ccb71035 {
  display: none;
}
#s-0f4e2430-35dd-4f5a-802f-055025fa0749 {
  text-align: left;
}


.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 {
  max-width: 100%;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom,
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 {
  max-width: 100%;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom,
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 {
  max-width: 100%;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom,
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 {
  max-width: 100%;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom,
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 {
  max-width: 100%;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom,
.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0f4e2430-35dd-4f5a-802f-055025fa0749 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a68a5765-5938-4754-9cf6-add0bebd6687 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a68a5765-5938-4754-9cf6-add0bebd6687 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-216ff66a-6bc8-4975-96a1-7e453d9b5ae1 {
  text-align: left;
}

#s-216ff66a-6bc8-4975-96a1-7e453d9b5ae1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-216ff66a-6bc8-4975-96a1-7e453d9b5ae1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-216ff66a-6bc8-4975-96a1-7e453d9b5ae1 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-4fa9deee-1d36-4f8f-a814-86e4baa58a32.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a1ccfb09-4ea4-41c2-beea-9f5cdf3318fb {
  display: none;
}
#s-5c45c204-6586-4139-892f-2acf2386d907 {
  text-align: left;
}


.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 {
  max-width: 100%;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom,
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 {
  max-width: 100%;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom,
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 {
  max-width: 100%;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom,
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 {
  max-width: 100%;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom,
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 {
  max-width: 100%;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom,
.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5c45c204-6586-4139-892f-2acf2386d907 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-69ca877d-d506-4e3f-8011-a9623fa8625e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69ca877d-d506-4e3f-8011-a9623fa8625e .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-015e7386-16d0-4bf6-b9fa-4d977967f281 {
  text-align: left;
}

#s-015e7386-16d0-4bf6-b9fa-4d977967f281 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-015e7386-16d0-4bf6-b9fa-4d977967f281 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-015e7386-16d0-4bf6-b9fa-4d977967f281 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8d3f540f-b9f1-448e-a68b-b71fae6c078a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c2bd8b9c-2970-406b-917b-89a07ecfffb1 {
  display: none;
}
#s-7ef7763b-b270-4364-b10a-2f4c546e634d {
  text-align: left;
}


.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d {
  max-width: 100%;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom,
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d {
  max-width: 100%;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom,
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d {
  max-width: 100%;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom,
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d {
  max-width: 100%;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom,
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d {
  max-width: 100%;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom,
.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7ef7763b-b270-4364-b10a-2f4c546e634d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-27ada775-9952-4cb8-8d20-38056ff1bfb4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27ada775-9952-4cb8-8d20-38056ff1bfb4 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-3efe6513-ce45-49d7-971d-b21a79aa2a04 {
  text-align: left;
}

#s-3efe6513-ce45-49d7-971d-b21a79aa2a04 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3efe6513-ce45-49d7-971d-b21a79aa2a04 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3efe6513-ce45-49d7-971d-b21a79aa2a04 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7d0feb0b-00ea-4eb4-aae1-4059f020e133.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5a52ed42-0340-408c-93c7-48e95a048479 {
  display: none;
}
#s-b4b4f474-beca-4730-8a36-168e431e7ad5 {
  text-align: left;
}


.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 {
  max-width: 100%;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom,
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 {
  max-width: 100%;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom,
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 {
  max-width: 100%;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom,
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 {
  max-width: 100%;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom,
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 {
  max-width: 100%;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom,
.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b4b4f474-beca-4730-8a36-168e431e7ad5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2ca3ec6c-f61a-43a8-8a3f-42c375779a5c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2ca3ec6c-f61a-43a8-8a3f-42c375779a5c .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-0f8699d9-c045-4046-a574-99b1283c9ade {
  text-align: left;
}

#s-0f8699d9-c045-4046-a574-99b1283c9ade .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0f8699d9-c045-4046-a574-99b1283c9ade .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0f8699d9-c045-4046-a574-99b1283c9ade .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-fa828948-6dfc-4365-bb8b-e7239a66e9ff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-64801c8e-e72e-4a58-86ac-a79f43762648 {
  display: none;
}
#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 {
  text-align: left;
}


.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 {
  max-width: 100%;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom,
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 {
  max-width: 100%;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom,
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 {
  max-width: 100%;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom,
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 {
  max-width: 100%;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom,
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 {
  max-width: 100%;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom,
.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1124207f-ddfe-4f69-a16d-59ac50bd2c53 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-7c41aa05-6ea4-44e1-9697-ba566ec7be29 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7c41aa05-6ea4-44e1-9697-ba566ec7be29 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d28967f0-f721-4112-b395-5a2dd17cbd3a {
  text-align: left;
}

#s-d28967f0-f721-4112-b395-5a2dd17cbd3a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d28967f0-f721-4112-b395-5a2dd17cbd3a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d28967f0-f721-4112-b395-5a2dd17cbd3a .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6fe76e0f-9a1d-48c5-bb23-67a198c82e82.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5db0f3d2-01ca-492f-ad8c-e0aea410668b {
  display: none;
}
#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 {
  text-align: left;
}


.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 {
  max-width: 100%;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom,
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 {
  max-width: 100%;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom,
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 {
  max-width: 100%;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom,
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 {
  max-width: 100%;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom,
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 {
  max-width: 100%;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom,
.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0e6e3fa6-3ebf-45cd-88f1-dd1c77b0c787 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b62e48a2-eecd-41c5-b99e-dbc2478bc5b3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b62e48a2-eecd-41c5-b99e-dbc2478bc5b3 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-100fbb43-5d96-4588-b95e-8caeaee0d0c1 {
  text-align: left;
}

#s-100fbb43-5d96-4588-b95e-8caeaee0d0c1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-100fbb43-5d96-4588-b95e-8caeaee0d0c1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-100fbb43-5d96-4588-b95e-8caeaee0d0c1 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e2ba7b48-9a18-48bc-925c-e67b8c3c39c4.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



/*
  $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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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