.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-d8f73353-4ba7-41c4-b9f0-d5bb81543c5d {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 50px;
}








#s-d8f73353-4ba7-41c4-b9f0-d5bb81543c5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8f73353-4ba7-41c4-b9f0-d5bb81543c5d.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-ed31b707-9bfd-4f5e-b36a-e2a5d9f0d0b9 {
  margin-top: 3px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ed31b707-9bfd-4f5e-b36a-e2a5d9f0d0b9 .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-e1c251c4-b603-43e7-931c-823c5fe5388d {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

#s-e1c251c4-b603-43e7-931c-823c5fe5388d .shogun-tabs {
  justify-content: flex-start;
}

#s-e1c251c4-b603-43e7-931c-823c5fe5388d .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-e1c251c4-b603-43e7-931c-823c5fe5388d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-e1c251c4-b603-43e7-931c-823c5fe5388d .shogun-tabs > li > .shogun-tab-box::after {
    background: #fff;
    border: 1px solid rgba(215, 215, 215, 1);
  }
  #s-e1c251c4-b603-43e7-931c-823c5fe5388d .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-e1c251c4-b603-43e7-931c-823c5fe5388d .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-e1c251c4-b603-43e7-931c-823c5fe5388d .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-e1c251c4-b603-43e7-931c-823c5fe5388d .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(40, 53, 66, 1);
}

#s-e1c251c4-b603-43e7-931c-823c5fe5388d .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-6a3a7b67-1c8e-4cb5-8845-6893703f7d45 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-6a3a7b67-1c8e-4cb5-8845-6893703f7d45 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-6a3a7b67-1c8e-4cb5-8845-6893703f7d45 .shg-sld-nav-button.shg-sld-left,
#s-6a3a7b67-1c8e-4cb5-8845-6893703f7d45 .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-e7ddd3ac-03e1-48f1-80d0-1d8548b16a68 {
  text-align: center;
}




  #s-e7ddd3ac-03e1-48f1-80d0-1d8548b16a68 img.shogun-image {
    
    width: px;
  }


#s-e7ddd3ac-03e1-48f1-80d0-1d8548b16a68 .shogun-image-content {
  
    align-items: center;
  
}

#s-f4193545-0b1b-4005-89cb-0ecc45ef03b1 {
  text-align: center;
}




  #s-f4193545-0b1b-4005-89cb-0ecc45ef03b1 img.shogun-image {
    
    width: px;
  }


#s-f4193545-0b1b-4005-89cb-0ecc45ef03b1 .shogun-image-content {
  
    align-items: center;
  
}

#s-fb05e189-a76d-48b0-8167-a275a73d0a66 {
  text-align: center;
}




  #s-fb05e189-a76d-48b0-8167-a275a73d0a66 img.shogun-image {
    
    width: px;
  }


#s-fb05e189-a76d-48b0-8167-a275a73d0a66 .shogun-image-content {
  
    align-items: center;
  
}

#s-4f76b98d-cbea-450c-badb-b468480787ec {
  text-align: center;
}




  #s-4f76b98d-cbea-450c-badb-b468480787ec img.shogun-image {
    
    width: px;
  }


#s-4f76b98d-cbea-450c-badb-b468480787ec .shogun-image-content {
  
    align-items: center;
  
}

#s-c0f81547-bb34-4855-8f3c-7c0ad03466cd {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-c0f81547-bb34-4855-8f3c-7c0ad03466cd .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c0f81547-bb34-4855-8f3c-7c0ad03466cd .shg-sld-nav-button.shg-sld-left,
#s-c0f81547-bb34-4855-8f3c-7c0ad03466cd .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-58387f7a-3237-48b6-8958-4ab9a7bfc604 {
  text-align: center;
}




  #s-58387f7a-3237-48b6-8958-4ab9a7bfc604 img.shogun-image {
    
    width: px;
  }


#s-58387f7a-3237-48b6-8958-4ab9a7bfc604 .shogun-image-content {
  
    align-items: center;
  
}

#s-964d65fc-3fef-4ce6-bbf8-01615fde1dba {
  text-align: center;
}




  #s-964d65fc-3fef-4ce6-bbf8-01615fde1dba img.shogun-image {
    
    width: px;
  }


#s-964d65fc-3fef-4ce6-bbf8-01615fde1dba .shogun-image-content {
  
    align-items: center;
  
}

#s-fd246044-1424-4eef-9995-7893716ec331 {
  text-align: center;
}




  #s-fd246044-1424-4eef-9995-7893716ec331 img.shogun-image {
    
    width: px;
  }


#s-fd246044-1424-4eef-9995-7893716ec331 .shogun-image-content {
  
    align-items: center;
  
}

#s-bd1ecb53-0d54-41a0-8d6b-2b5f0f05e75c {
  text-align: center;
}




  #s-bd1ecb53-0d54-41a0-8d6b-2b5f0f05e75c img.shogun-image {
    
    width: px;
  }


#s-bd1ecb53-0d54-41a0-8d6b-2b5f0f05e75c .shogun-image-content {
  
    align-items: center;
  
}

#s-a049e6bc-55d8-42c9-9c80-edd4c7f42f7d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a049e6bc-55d8-42c9-9c80-edd4c7f42f7d .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-a049e6bc-55d8-42c9-9c80-edd4c7f42f7d .shg-sld-nav-button.shg-sld-left,
#s-a049e6bc-55d8-42c9-9c80-edd4c7f42f7d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7219cf67-a24a-4bf0-a01b-475cecb1b8c1 {
  text-align: center;
}




  #s-7219cf67-a24a-4bf0-a01b-475cecb1b8c1 img.shogun-image {
    
    width: px;
  }


#s-7219cf67-a24a-4bf0-a01b-475cecb1b8c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-09b67cb2-a9b2-4df4-bb18-86531b252576 {
  text-align: center;
}




  #s-09b67cb2-a9b2-4df4-bb18-86531b252576 img.shogun-image {
    
    width: px;
  }


#s-09b67cb2-a9b2-4df4-bb18-86531b252576 .shogun-image-content {
  
    align-items: center;
  
}

#s-40ff2244-73ca-4616-8935-35f2fc94ee33 {
  text-align: center;
}




  #s-40ff2244-73ca-4616-8935-35f2fc94ee33 img.shogun-image {
    
    width: px;
  }


#s-40ff2244-73ca-4616-8935-35f2fc94ee33 .shogun-image-content {
  
    align-items: center;
  
}

#s-56bba1ca-a5b5-484f-9871-cd4fd666f278 {
  text-align: center;
}




  #s-56bba1ca-a5b5-484f-9871-cd4fd666f278 img.shogun-image {
    
    width: px;
  }


#s-56bba1ca-a5b5-484f-9871-cd4fd666f278 .shogun-image-content {
  
    align-items: center;
  
}

#s-10d96f49-639a-4832-a33c-3a00c2df5693 {
  text-align: center;
}




  #s-10d96f49-639a-4832-a33c-3a00c2df5693 img.shogun-image {
    
    width: px;
  }


#s-10d96f49-639a-4832-a33c-3a00c2df5693 .shogun-image-content {
  
    align-items: center;
  
}

#s-853bcafa-62eb-4585-8ded-36c71bfb6564 {
  text-align: center;
}




  #s-853bcafa-62eb-4585-8ded-36c71bfb6564 img.shogun-image {
    
    width: px;
  }


#s-853bcafa-62eb-4585-8ded-36c71bfb6564 .shogun-image-content {
  
    align-items: center;
  
}

#s-03badfa0-4a73-4b7b-8702-ab99ae422ba0 {
  text-align: center;
}




  #s-03badfa0-4a73-4b7b-8702-ab99ae422ba0 img.shogun-image {
    
    width: px;
  }


#s-03badfa0-4a73-4b7b-8702-ab99ae422ba0 .shogun-image-content {
  
    align-items: center;
  
}

#s-ca3b29f5-60c5-4094-a536-f302e3432246 {
  text-align: center;
}




  #s-ca3b29f5-60c5-4094-a536-f302e3432246 img.shogun-image {
    
    width: px;
  }


#s-ca3b29f5-60c5-4094-a536-f302e3432246 .shogun-image-content {
  
    align-items: center;
  
}

#s-ae86a6ec-7d6f-4f73-a6b4-a203ddc32aa8 {
  text-align: center;
}




  #s-ae86a6ec-7d6f-4f73-a6b4-a203ddc32aa8 img.shogun-image {
    
    width: px;
  }


#s-ae86a6ec-7d6f-4f73-a6b4-a203ddc32aa8 .shogun-image-content {
  
    align-items: center;
  
}

#s-c4f453e9-826c-4d91-a21d-e21ab1c14089 {
  text-align: center;
}




  #s-c4f453e9-826c-4d91-a21d-e21ab1c14089 img.shogun-image {
    
    width: px;
  }


#s-c4f453e9-826c-4d91-a21d-e21ab1c14089 .shogun-image-content {
  
    align-items: center;
  
}

#s-59ec5d5c-c103-4423-b038-5bfd14b63830 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-59ec5d5c-c103-4423-b038-5bfd14b63830 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-59ec5d5c-c103-4423-b038-5bfd14b63830 .shg-sld-nav-button.shg-sld-left,
#s-59ec5d5c-c103-4423-b038-5bfd14b63830 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-936cf8e6-cc3d-431b-a4c8-b5c46f46654a {
  text-align: center;
}




  #s-936cf8e6-cc3d-431b-a4c8-b5c46f46654a img.shogun-image {
    
    width: px;
  }


#s-936cf8e6-cc3d-431b-a4c8-b5c46f46654a .shogun-image-content {
  
    align-items: center;
  
}

#s-d921c9c3-aaa7-45c2-806e-95a4556de4d0 {
  text-align: center;
}




  #s-d921c9c3-aaa7-45c2-806e-95a4556de4d0 img.shogun-image {
    
    width: px;
  }


#s-d921c9c3-aaa7-45c2-806e-95a4556de4d0 .shogun-image-content {
  
    align-items: center;
  
}

#s-069790fa-b070-420a-84a2-282e1a74c5c5 {
  text-align: center;
}




  #s-069790fa-b070-420a-84a2-282e1a74c5c5 img.shogun-image {
    
    width: px;
  }


#s-069790fa-b070-420a-84a2-282e1a74c5c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-9bbba241-461b-437a-af31-f92bb3e80e3a {
  text-align: center;
}




  #s-9bbba241-461b-437a-af31-f92bb3e80e3a img.shogun-image {
    
    width: px;
  }


#s-9bbba241-461b-437a-af31-f92bb3e80e3a .shogun-image-content {
  
    align-items: center;
  
}

#s-b1808956-1bd5-47d2-abdf-453241f6bcba {
  text-align: center;
}




  #s-b1808956-1bd5-47d2-abdf-453241f6bcba img.shogun-image {
    
    width: px;
  }


#s-b1808956-1bd5-47d2-abdf-453241f6bcba .shogun-image-content {
  
    align-items: center;
  
}

#s-7c549c5e-4dc8-4d36-b3c2-d4b6b57326dc {
  text-align: center;
}




  #s-7c549c5e-4dc8-4d36-b3c2-d4b6b57326dc img.shogun-image {
    
    width: px;
  }


#s-7c549c5e-4dc8-4d36-b3c2-d4b6b57326dc .shogun-image-content {
  
    align-items: center;
  
}

#s-a6020312-1da8-49f5-978b-810ec5de20d6 {
  text-align: center;
}




  #s-a6020312-1da8-49f5-978b-810ec5de20d6 img.shogun-image {
    
    width: px;
  }


#s-a6020312-1da8-49f5-978b-810ec5de20d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-7d990a07-0b80-42b7-9319-9eb90b561810 {
  text-align: center;
}




  #s-7d990a07-0b80-42b7-9319-9eb90b561810 img.shogun-image {
    
    width: px;
  }


#s-7d990a07-0b80-42b7-9319-9eb90b561810 .shogun-image-content {
  
    align-items: center;
  
}

#s-daaff4e2-882d-44cc-82d8-f47a2acc6d7f {
  text-align: center;
}




  #s-daaff4e2-882d-44cc-82d8-f47a2acc6d7f img.shogun-image {
    
    width: px;
  }


#s-daaff4e2-882d-44cc-82d8-f47a2acc6d7f .shogun-image-content {
  
    align-items: center;
  
}

#s-7e097c1d-e859-464a-827a-6075f0def4fc {
  text-align: center;
}




  #s-7e097c1d-e859-464a-827a-6075f0def4fc img.shogun-image {
    
    width: px;
  }


#s-7e097c1d-e859-464a-827a-6075f0def4fc .shogun-image-content {
  
    align-items: center;
  
}

#s-bb28e62b-c82c-4d10-ab95-c863cc65cdc8 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-bb28e62b-c82c-4d10-ab95-c863cc65cdc8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-bb28e62b-c82c-4d10-ab95-c863cc65cdc8 .shg-sld-nav-button.shg-sld-left,
#s-bb28e62b-c82c-4d10-ab95-c863cc65cdc8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-88ffa183-b941-4e61-a0f7-2f61bee2c4a7 {
  text-align: center;
}




  #s-88ffa183-b941-4e61-a0f7-2f61bee2c4a7 img.shogun-image {
    
    width: px;
  }


#s-88ffa183-b941-4e61-a0f7-2f61bee2c4a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-d4a4d661-9615-483a-b7f4-0d12d721d966 {
  text-align: center;
}




  #s-d4a4d661-9615-483a-b7f4-0d12d721d966 img.shogun-image {
    
    width: px;
  }


#s-d4a4d661-9615-483a-b7f4-0d12d721d966 .shogun-image-content {
  
    align-items: center;
  
}

#s-ba1c61ac-4023-4fd7-9c80-7bfb0c194671 {
  text-align: center;
}




  #s-ba1c61ac-4023-4fd7-9c80-7bfb0c194671 img.shogun-image {
    
    width: px;
  }


#s-ba1c61ac-4023-4fd7-9c80-7bfb0c194671 .shogun-image-content {
  
    align-items: center;
  
}

#s-228c419a-9228-4cf5-9799-e05a25ed74c5 {
  text-align: center;
}




  #s-228c419a-9228-4cf5-9799-e05a25ed74c5 img.shogun-image {
    
    width: px;
  }


#s-228c419a-9228-4cf5-9799-e05a25ed74c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-66c9c266-0211-4dc8-84a0-29754cb859db {
  text-align: center;
}




  #s-66c9c266-0211-4dc8-84a0-29754cb859db img.shogun-image {
    
    width: px;
  }


#s-66c9c266-0211-4dc8-84a0-29754cb859db .shogun-image-content {
  
    align-items: center;
  
}

#s-4dcf3199-4565-48a7-bb37-57b698654910 {
  text-align: center;
}




  #s-4dcf3199-4565-48a7-bb37-57b698654910 img.shogun-image {
    
    width: px;
  }


#s-4dcf3199-4565-48a7-bb37-57b698654910 .shogun-image-content {
  
    align-items: center;
  
}

#s-4451528b-a22c-4e97-95ef-7476f2c08313 {
  text-align: center;
}




  #s-4451528b-a22c-4e97-95ef-7476f2c08313 img.shogun-image {
    
    width: px;
  }


#s-4451528b-a22c-4e97-95ef-7476f2c08313 .shogun-image-content {
  
    align-items: center;
  
}

#s-9956e929-7b96-4626-a21e-bc7730461d90 {
  text-align: center;
}




  #s-9956e929-7b96-4626-a21e-bc7730461d90 img.shogun-image {
    
    width: px;
  }


#s-9956e929-7b96-4626-a21e-bc7730461d90 .shogun-image-content {
  
    align-items: center;
  
}

#s-b61d490b-0593-4327-8f6a-22afa1a5ee36 {
  text-align: center;
}




  #s-b61d490b-0593-4327-8f6a-22afa1a5ee36 img.shogun-image {
    
    width: px;
  }


#s-b61d490b-0593-4327-8f6a-22afa1a5ee36 .shogun-image-content {
  
    align-items: center;
  
}

#s-f61e8a6d-022d-4b25-b45a-c72165a54a5e {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-f61e8a6d-022d-4b25-b45a-c72165a54a5e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f61e8a6d-022d-4b25-b45a-c72165a54a5e.shg-box.shg-c {
  justify-content: center;
}

#s-4ca9a34b-c4f8-4572-89d9-c564c65a2e52 {
  margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4ca9a34b-c4f8-4572-89d9-c564c65a2e52 .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-c153b007-9830-4400-95b8-1b164cd386b6 {
  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-7414535f-dd33-4e26-a3b0-393603d9034c {
  text-align: left;
}


.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c {
  max-width: 100%;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom,
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c {
  max-width: 100%;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom,
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c {
  max-width: 100%;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom,
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c {
  max-width: 100%;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom,
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c {
  max-width: 100%;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .shg-image-zoom,
.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7414535f-dd33-4e26-a3b0-393603d9034c .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-86f95da8-c295-4086-90b7-dccdb539ac4a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-86f95da8-c295-4086-90b7-dccdb539ac4a .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-431d843d-49b8-41eb-9dde-2cdaab259ec9 {
  text-align: center;
}

#s-431d843d-49b8-41eb-9dde-2cdaab259ec9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-431d843d-49b8-41eb-9dde-2cdaab259ec9 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-431d843d-49b8-41eb-9dde-2cdaab259ec9 .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-25915fc8-e0dc-405d-9373-b9894ca8e0d1 {
  display: none;
}
#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 {
  text-align: left;
}


.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 {
  max-width: 100%;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom,
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 {
  max-width: 100%;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom,
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 {
  max-width: 100%;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom,
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 {
  max-width: 100%;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom,
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 {
  max-width: 100%;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom,
.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e20409d1-cc5b-402d-a15a-2cc9da4ae699 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-91383b7d-ac93-4149-825b-19bf680787d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-91383b7d-ac93-4149-825b-19bf680787d4 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-d5dda610-77dd-4cb5-8b9c-5273896d6372 {
  text-align: center;
}

#s-d5dda610-77dd-4cb5-8b9c-5273896d6372 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-d5dda610-77dd-4cb5-8b9c-5273896d6372 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-d5dda610-77dd-4cb5-8b9c-5273896d6372 .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-724a0ac9-d2c0-47b4-bfe7-1666f57be658 {
  display: none;
}
#s-da76d884-cd50-42a7-8abc-9de3364184da {
  text-align: left;
}


.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da {
  max-width: 100%;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom,
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da {
  max-width: 100%;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom,
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da {
  max-width: 100%;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom,
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da {
  max-width: 100%;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom,
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da {
  max-width: 100%;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom,
.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-da76d884-cd50-42a7-8abc-9de3364184da .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3eb9846c-2f1a-472b-ad39-d5bd7bb007c4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3eb9846c-2f1a-472b-ad39-d5bd7bb007c4 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-a52b0fff-7620-4bd7-a978-2e3b99d32122 {
  text-align: center;
}

#s-a52b0fff-7620-4bd7-a978-2e3b99d32122 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-a52b0fff-7620-4bd7-a978-2e3b99d32122 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-a52b0fff-7620-4bd7-a978-2e3b99d32122 .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-2b4ac700-e2d5-48f4-bb94-15e123ce8a32 {
  display: none;
}
#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 {
  text-align: left;
}


.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 {
  max-width: 100%;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom,
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 {
  max-width: 100%;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom,
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 {
  max-width: 100%;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom,
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 {
  max-width: 100%;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom,
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 {
  max-width: 100%;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom,
.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-606feb9f-6939-429a-a663-ccd22f6fdaa7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-30a9cc79-d49a-4e24-9a58-a7fd85571d33 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-30a9cc79-d49a-4e24-9a58-a7fd85571d33 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-ee7a8a40-afde-4241-8546-1d6130ead647 {
  text-align: center;
}

#s-ee7a8a40-afde-4241-8546-1d6130ead647 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-ee7a8a40-afde-4241-8546-1d6130ead647 .shg-product-price {
  color: #000;
  font-weight:  normal ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-ee7a8a40-afde-4241-8546-1d6130ead647 .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-2b00647f-1d8a-44b9-b0c8-7a45e575b5db {
  display: none;
}
#s-3409b2fe-d153-45cf-952f-3a38f1e3057b {
  text-align: left;
}


.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b {
  max-width: 100%;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom,
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b {
  max-width: 100%;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom,
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b {
  max-width: 100%;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom,
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b {
  max-width: 100%;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom,
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b {
  max-width: 100%;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom,
.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3409b2fe-d153-45cf-952f-3a38f1e3057b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d8755667-5216-4068-9d52-cba1fe952be6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d8755667-5216-4068-9d52-cba1fe952be6 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-b406f723-2b33-4bda-8024-ce47fc2b9206 {
  text-align: left;
}

#s-b406f723-2b33-4bda-8024-ce47fc2b9206 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b406f723-2b33-4bda-8024-ce47fc2b9206 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b406f723-2b33-4bda-8024-ce47fc2b9206 .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-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9 {
  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-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b7f99437-1cef-41c4-bf8d-3b51f34f6bc9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e3e1f87b-316b-4a02-a415-7f954e564a21 {
  display: none;
}
#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c {
  text-align: left;
}


.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c {
  max-width: 100%;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom,
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c {
  max-width: 100%;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom,
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c {
  max-width: 100%;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom,
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c {
  max-width: 100%;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom,
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c {
  max-width: 100%;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom,
.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2d35d5a0-74bb-4524-8494-d4a92f5c716c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-064db041-fd96-461b-ba47-e6244fc9c9e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-064db041-fd96-461b-ba47-e6244fc9c9e4 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-9f3e3ab3-7c67-4e88-ad96-eefbc0bdc52c {
  text-align: left;
}

#s-9f3e3ab3-7c67-4e88-ad96-eefbc0bdc52c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-9f3e3ab3-7c67-4e88-ad96-eefbc0bdc52c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-9f3e3ab3-7c67-4e88-ad96-eefbc0bdc52c .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-0ab006ed-a9d4-4921-8290-442ca2250d28 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-0ab006ed-a9d4-4921-8290-442ca2250d28:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0ab006ed-a9d4-4921-8290-442ca2250d28:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0ab006ed-a9d4-4921-8290-442ca2250d28 {
  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-0ab006ed-a9d4-4921-8290-442ca2250d28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0ab006ed-a9d4-4921-8290-442ca2250d28.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0ab006ed-a9d4-4921-8290-442ca2250d28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2fea6646-c0e5-471d-9686-2288fec122c1 {
  display: none;
}
#s-a57c1abc-5d26-4119-89bb-746d75d04b11 {
  text-align: left;
}


.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 {
  max-width: 100%;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom,
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 {
  max-width: 100%;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom,
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 {
  max-width: 100%;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom,
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 {
  max-width: 100%;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom,
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 {
  max-width: 100%;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom,
.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a57c1abc-5d26-4119-89bb-746d75d04b11 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e8154ed7-5a03-40e1-8412-999ef80a2b47 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e8154ed7-5a03-40e1-8412-999ef80a2b47 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d97ed64b-86ef-43eb-a565-5444d74fa682 {
  text-align: left;
}

#s-d97ed64b-86ef-43eb-a565-5444d74fa682 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d97ed64b-86ef-43eb-a565-5444d74fa682 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d97ed64b-86ef-43eb-a565-5444d74fa682 .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-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84 {
  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-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d5c757b7-c568-4f78-96ff-a3b6f3aaeb84.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1f1148d3-d31d-400c-b8e7-52eda99faab5 {
  display: none;
}
#s-28158a26-4637-4915-b41c-d4095e3ae0ef {
  text-align: left;
}


.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef {
  max-width: 100%;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom,
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef {
  max-width: 100%;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom,
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef {
  max-width: 100%;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom,
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef {
  max-width: 100%;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom,
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef {
  max-width: 100%;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom,
.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-28158a26-4637-4915-b41c-d4095e3ae0ef .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-877475c8-0f42-469a-8db4-356fe3e0fc08 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-877475c8-0f42-469a-8db4-356fe3e0fc08 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a663d0ec-cdda-4cd4-b312-e8f78549f126 {
  text-align: left;
}

#s-a663d0ec-cdda-4cd4-b312-e8f78549f126 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a663d0ec-cdda-4cd4-b312-e8f78549f126 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a663d0ec-cdda-4cd4-b312-e8f78549f126 .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-74e0d1b8-7341-41c2-bcfc-9bd855c82dec {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-74e0d1b8-7341-41c2-bcfc-9bd855c82dec:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-74e0d1b8-7341-41c2-bcfc-9bd855c82dec:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-74e0d1b8-7341-41c2-bcfc-9bd855c82dec {
  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-74e0d1b8-7341-41c2-bcfc-9bd855c82dec.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-74e0d1b8-7341-41c2-bcfc-9bd855c82dec.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-74e0d1b8-7341-41c2-bcfc-9bd855c82dec.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8938783d-032c-4ca9-b60b-e4548cb180f4 {
  display: none;
}
#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b {
  text-align: left;
}


.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b {
  max-width: 100%;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom,
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b {
  max-width: 100%;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom,
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b {
  max-width: 100%;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom,
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b {
  max-width: 100%;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom,
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b {
  max-width: 100%;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom,
.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5d3638c5-3327-4dbb-b828-bd891d7dc90b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-7e3ce8ab-f970-4030-a237-80f92b2f7a7c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e3ce8ab-f970-4030-a237-80f92b2f7a7c .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-f4feb370-156c-45da-8d26-c2d8619a3d2f {
  text-align: left;
}

#s-f4feb370-156c-45da-8d26-c2d8619a3d2f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f4feb370-156c-45da-8d26-c2d8619a3d2f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f4feb370-156c-45da-8d26-c2d8619a3d2f .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-29b606d3-ed23-4f15-9e47-74762f2da4e8 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-29b606d3-ed23-4f15-9e47-74762f2da4e8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-29b606d3-ed23-4f15-9e47-74762f2da4e8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-29b606d3-ed23-4f15-9e47-74762f2da4e8 {
  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-29b606d3-ed23-4f15-9e47-74762f2da4e8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-29b606d3-ed23-4f15-9e47-74762f2da4e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-29b606d3-ed23-4f15-9e47-74762f2da4e8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-36985d12-a9ba-45f0-bb19-0eacc5f558dc {
  display: none;
}
#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed {
  text-align: left;
}


.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed {
  max-width: 100%;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom,
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed {
  max-width: 100%;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom,
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed {
  max-width: 100%;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom,
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed {
  max-width: 100%;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom,
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed {
  max-width: 100%;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom,
.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-944c33e8-827f-4a74-bcbd-06a48c2b28ed .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ca59e7d2-098b-4537-886f-beb49f9de1a4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ca59e7d2-098b-4537-886f-beb49f9de1a4 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-3b7905bd-9ea1-443e-8519-7a9ee539745e {
  text-align: left;
}

#s-3b7905bd-9ea1-443e-8519-7a9ee539745e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3b7905bd-9ea1-443e-8519-7a9ee539745e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3b7905bd-9ea1-443e-8519-7a9ee539745e .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-15ac76d7-3cae-4aba-b1e3-b90cd328a73b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-15ac76d7-3cae-4aba-b1e3-b90cd328a73b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-15ac76d7-3cae-4aba-b1e3-b90cd328a73b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-15ac76d7-3cae-4aba-b1e3-b90cd328a73b {
  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-15ac76d7-3cae-4aba-b1e3-b90cd328a73b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-15ac76d7-3cae-4aba-b1e3-b90cd328a73b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-15ac76d7-3cae-4aba-b1e3-b90cd328a73b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6a01dd54-8379-4482-af8d-cd3c3de792b2 {
  display: none;
}
#s-327d3891-756c-4f7d-8f53-d383eb76c2be {
  text-align: left;
}


.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be {
  max-width: 100%;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom,
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be {
  max-width: 100%;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom,
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be {
  max-width: 100%;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom,
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be {
  max-width: 100%;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom,
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be {
  max-width: 100%;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom,
.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-327d3891-756c-4f7d-8f53-d383eb76c2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-950a60d7-410a-4bfc-aa63-f783cb955e33 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-950a60d7-410a-4bfc-aa63-f783cb955e33 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-1c0f8edb-ab5f-4c63-aa27-c52136a213bf {
  text-align: left;
}

#s-1c0f8edb-ab5f-4c63-aa27-c52136a213bf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1c0f8edb-ab5f-4c63-aa27-c52136a213bf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1c0f8edb-ab5f-4c63-aa27-c52136a213bf .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-0980587a-fda2-4b22-99a7-d9cf5ecb752b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-0980587a-fda2-4b22-99a7-d9cf5ecb752b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0980587a-fda2-4b22-99a7-d9cf5ecb752b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0980587a-fda2-4b22-99a7-d9cf5ecb752b {
  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-0980587a-fda2-4b22-99a7-d9cf5ecb752b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0980587a-fda2-4b22-99a7-d9cf5ecb752b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0980587a-fda2-4b22-99a7-d9cf5ecb752b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1db57a52-c2c4-4d79-ad77-ba08d11d7b2d {
  display: none;
}
#s-c30195f0-bae6-49db-bc5b-68110370a499 {
  text-align: left;
}


.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 {
  max-width: 100%;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom,
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 {
  max-width: 100%;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom,
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 {
  max-width: 100%;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom,
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 {
  max-width: 100%;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom,
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 {
  max-width: 100%;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom,
.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c30195f0-bae6-49db-bc5b-68110370a499 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-4de1bf43-cfbc-468a-a8ab-b9a0231277a1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4de1bf43-cfbc-468a-a8ab-b9a0231277a1 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-f33ab885-2f30-49f1-8fef-821d011bc904 {
  text-align: left;
}

#s-f33ab885-2f30-49f1-8fef-821d011bc904 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f33ab885-2f30-49f1-8fef-821d011bc904 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f33ab885-2f30-49f1-8fef-821d011bc904 .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-29aa7464-0895-4ac1-a414-a3e4ba69fb28 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-29aa7464-0895-4ac1-a414-a3e4ba69fb28:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-29aa7464-0895-4ac1-a414-a3e4ba69fb28:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-29aa7464-0895-4ac1-a414-a3e4ba69fb28 {
  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-29aa7464-0895-4ac1-a414-a3e4ba69fb28.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-29aa7464-0895-4ac1-a414-a3e4ba69fb28.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-29aa7464-0895-4ac1-a414-a3e4ba69fb28.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7c48164d-4485-4569-84af-859c7d4bf435 {
  display: none;
}
#s-479fd8d0-04c0-406d-88ea-cdda876642f7 {
  text-align: left;
}


.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 {
  max-width: 100%;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom,
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 {
  max-width: 100%;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom,
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 {
  max-width: 100%;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom,
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 {
  max-width: 100%;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom,
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 {
  max-width: 100%;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom,
.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-479fd8d0-04c0-406d-88ea-cdda876642f7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ae94690e-b981-4073-afb8-cf58197c3ba1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae94690e-b981-4073-afb8-cf58197c3ba1 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-b014e555-95aa-4271-9d06-df1cb453903f {
  text-align: left;
}

#s-b014e555-95aa-4271-9d06-df1cb453903f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b014e555-95aa-4271-9d06-df1cb453903f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b014e555-95aa-4271-9d06-df1cb453903f .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-88e65d3a-f65c-4408-841e-7cc34cfa4f2d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-88e65d3a-f65c-4408-841e-7cc34cfa4f2d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-88e65d3a-f65c-4408-841e-7cc34cfa4f2d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-88e65d3a-f65c-4408-841e-7cc34cfa4f2d {
  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-88e65d3a-f65c-4408-841e-7cc34cfa4f2d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-88e65d3a-f65c-4408-841e-7cc34cfa4f2d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-88e65d3a-f65c-4408-841e-7cc34cfa4f2d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-079549a2-271f-4912-b3a4-ca76ae46e77d {
  display: none;
}
#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 {
  text-align: left;
}


.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 {
  max-width: 100%;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom,
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 {
  max-width: 100%;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom,
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 {
  max-width: 100%;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom,
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 {
  max-width: 100%;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom,
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 {
  max-width: 100%;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom,
.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d49349b0-edfb-4651-ad06-3d0eafdd39c6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3cb1aae8-11c2-4ec5-9753-6ad6020246d0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3cb1aae8-11c2-4ec5-9753-6ad6020246d0 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-0f1f0eb6-e747-4caf-986b-b39442a1541c {
  text-align: left;
}

#s-0f1f0eb6-e747-4caf-986b-b39442a1541c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0f1f0eb6-e747-4caf-986b-b39442a1541c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0f1f0eb6-e747-4caf-986b-b39442a1541c .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-56b1213b-9099-4b4d-838e-934c9618400f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-56b1213b-9099-4b4d-838e-934c9618400f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-56b1213b-9099-4b4d-838e-934c9618400f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-56b1213b-9099-4b4d-838e-934c9618400f {
  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-56b1213b-9099-4b4d-838e-934c9618400f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-56b1213b-9099-4b4d-838e-934c9618400f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-56b1213b-9099-4b4d-838e-934c9618400f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a2254012-57c6-4312-88f1-21de34e0e2a1 {
  display: none;
}
#s-4840defb-3434-4800-94f2-593cdeaa9647 {
  text-align: left;
}


.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 {
  max-width: 100%;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom,
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 {
  max-width: 100%;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom,
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 {
  max-width: 100%;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom,
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 {
  max-width: 100%;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom,
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 {
  max-width: 100%;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom,
.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4840defb-3434-4800-94f2-593cdeaa9647 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-11127e7a-72d5-4566-a825-d555ca5f3e0d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-11127e7a-72d5-4566-a825-d555ca5f3e0d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-23c3171e-8d85-4dac-b7cf-8565e9f39c10 {
  text-align: left;
}

#s-23c3171e-8d85-4dac-b7cf-8565e9f39c10 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-23c3171e-8d85-4dac-b7cf-8565e9f39c10 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-23c3171e-8d85-4dac-b7cf-8565e9f39c10 .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-947f213b-3783-4e61-8689-4f868d132e8d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-947f213b-3783-4e61-8689-4f868d132e8d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-947f213b-3783-4e61-8689-4f868d132e8d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-947f213b-3783-4e61-8689-4f868d132e8d {
  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-947f213b-3783-4e61-8689-4f868d132e8d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-947f213b-3783-4e61-8689-4f868d132e8d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-947f213b-3783-4e61-8689-4f868d132e8d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6678f4b8-a314-46d2-9160-31e9dea75d4c {
  display: none;
}
#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e {
  text-align: left;
}


.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e {
  max-width: 100%;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom,
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e {
  max-width: 100%;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom,
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e {
  max-width: 100%;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom,
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e {
  max-width: 100%;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom,
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e {
  max-width: 100%;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom,
.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7e4dfe78-9973-47c1-a3b6-6ead487ddb1e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-9cddcbcd-40d5-498f-9a98-8533c864e12e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9cddcbcd-40d5-498f-9a98-8533c864e12e .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-da7e09f1-0d4a-4f54-9052-3b0bb04e3a77 {
  text-align: left;
}

#s-da7e09f1-0d4a-4f54-9052-3b0bb04e3a77 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-da7e09f1-0d4a-4f54-9052-3b0bb04e3a77 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-da7e09f1-0d4a-4f54-9052-3b0bb04e3a77 .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-eb721d83-2772-4f5d-bcb8-462828884b3c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-eb721d83-2772-4f5d-bcb8-462828884b3c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-eb721d83-2772-4f5d-bcb8-462828884b3c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-eb721d83-2772-4f5d-bcb8-462828884b3c {
  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-eb721d83-2772-4f5d-bcb8-462828884b3c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-eb721d83-2772-4f5d-bcb8-462828884b3c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-eb721d83-2772-4f5d-bcb8-462828884b3c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b8b71e67-73c6-459c-8cef-93025cbf4cec {
  display: none;
}
#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 {
  text-align: left;
}


.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 {
  max-width: 100%;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom,
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 {
  max-width: 100%;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom,
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 {
  max-width: 100%;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom,
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 {
  max-width: 100%;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom,
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 {
  max-width: 100%;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom,
.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1ce78d40-0377-4bcc-8403-0a3c1f352e20 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-5a509c76-a2c8-4800-a43b-68cd91c1659f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5a509c76-a2c8-4800-a43b-68cd91c1659f .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-ee43a2b6-deb6-4a53-acfa-8d7594b7a227 {
  text-align: left;
}

#s-ee43a2b6-deb6-4a53-acfa-8d7594b7a227 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ee43a2b6-deb6-4a53-acfa-8d7594b7a227 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ee43a2b6-deb6-4a53-acfa-8d7594b7a227 .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-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41 {
  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-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d3c6ae56-ade2-4cdf-b4d7-4514cb726f41.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-459cd20a-9558-471d-a999-a726817959f9 {
  display: none;
}
#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 {
  text-align: left;
}


.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 {
  max-width: 100%;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom,
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 {
  max-width: 100%;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom,
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 {
  max-width: 100%;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom,
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 {
  max-width: 100%;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom,
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 {
  max-width: 100%;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom,
.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7a37a586-c280-40b6-8d63-20a11af6ccd7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-4007d7ff-8767-4895-a318-b5711e7634e9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4007d7ff-8767-4895-a318-b5711e7634e9 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-6f05240f-b5cf-402e-9dca-b11b8975a4be {
  text-align: left;
}

#s-6f05240f-b5cf-402e-9dca-b11b8975a4be .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6f05240f-b5cf-402e-9dca-b11b8975a4be .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6f05240f-b5cf-402e-9dca-b11b8975a4be .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-9608aef8-c742-49c7-a4f9-9c5de56543b6 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9608aef8-c742-49c7-a4f9-9c5de56543b6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9608aef8-c742-49c7-a4f9-9c5de56543b6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9608aef8-c742-49c7-a4f9-9c5de56543b6 {
  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-9608aef8-c742-49c7-a4f9-9c5de56543b6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9608aef8-c742-49c7-a4f9-9c5de56543b6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9608aef8-c742-49c7-a4f9-9c5de56543b6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-28f703b1-6120-401b-970c-4d7f4124bc44 {
  display: none;
}
#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 {
  text-align: left;
}


.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 {
  max-width: 100%;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom,
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 {
  max-width: 100%;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom,
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 {
  max-width: 100%;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom,
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 {
  max-width: 100%;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom,
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 {
  max-width: 100%;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom,
.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-bdae241f-a403-4ce3-b0bf-0a763b084ac9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-f8738001-4f1b-4789-ae42-6118532ea160 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8738001-4f1b-4789-ae42-6118532ea160 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c095c3c5-14db-4de8-b0b3-85f10326fd37 {
  text-align: left;
}

#s-c095c3c5-14db-4de8-b0b3-85f10326fd37 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c095c3c5-14db-4de8-b0b3-85f10326fd37 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c095c3c5-14db-4de8-b0b3-85f10326fd37 .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-0028d9cf-ac03-45aa-8f6e-e7f865beeb10 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-0028d9cf-ac03-45aa-8f6e-e7f865beeb10:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0028d9cf-ac03-45aa-8f6e-e7f865beeb10:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0028d9cf-ac03-45aa-8f6e-e7f865beeb10 {
  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-0028d9cf-ac03-45aa-8f6e-e7f865beeb10.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0028d9cf-ac03-45aa-8f6e-e7f865beeb10.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-0028d9cf-ac03-45aa-8f6e-e7f865beeb10.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-adf984e2-32a1-4a49-bcfa-282a7e38d527 {
  display: none;
}
#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c {
  text-align: left;
}


.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c {
  max-width: 100%;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom,
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c {
  max-width: 100%;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom,
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c {
  max-width: 100%;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom,
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c {
  max-width: 100%;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom,
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c {
  max-width: 100%;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom,
.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4fadf5c0-d10c-41fa-9d60-9f264aec572c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-64f04c84-831b-41c2-88e6-793c832b8265 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-64f04c84-831b-41c2-88e6-793c832b8265 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d2f09ad8-c426-430a-b3f3-ec3f74960bbf {
  text-align: left;
}

#s-d2f09ad8-c426-430a-b3f3-ec3f74960bbf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d2f09ad8-c426-430a-b3f3-ec3f74960bbf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d2f09ad8-c426-430a-b3f3-ec3f74960bbf .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-1ae53152-02be-4532-ac2e-413cde1fbf6c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1ae53152-02be-4532-ac2e-413cde1fbf6c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1ae53152-02be-4532-ac2e-413cde1fbf6c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1ae53152-02be-4532-ac2e-413cde1fbf6c {
  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-1ae53152-02be-4532-ac2e-413cde1fbf6c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1ae53152-02be-4532-ac2e-413cde1fbf6c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1ae53152-02be-4532-ac2e-413cde1fbf6c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a781cad3-a0db-461f-bd6f-5aeefca69990 {
  display: none;
}
#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 {
  text-align: left;
}


.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 {
  max-width: 100%;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom,
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 {
  max-width: 100%;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom,
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 {
  max-width: 100%;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom,
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 {
  max-width: 100%;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom,
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 {
  max-width: 100%;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom,
.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4df86ddd-3c75-4bf8-90b2-701efe5586e9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-4e116b13-1375-4683-859e-d6cb6ed3271c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4e116b13-1375-4683-859e-d6cb6ed3271c .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-2c8551c5-7887-461c-8693-5d3120a1586a {
  text-align: left;
}

#s-2c8551c5-7887-461c-8693-5d3120a1586a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2c8551c5-7887-461c-8693-5d3120a1586a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2c8551c5-7887-461c-8693-5d3120a1586a .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-48319080-1b52-48c3-a7a3-9de5df33b3ff {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-48319080-1b52-48c3-a7a3-9de5df33b3ff:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-48319080-1b52-48c3-a7a3-9de5df33b3ff:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-48319080-1b52-48c3-a7a3-9de5df33b3ff {
  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-48319080-1b52-48c3-a7a3-9de5df33b3ff.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-48319080-1b52-48c3-a7a3-9de5df33b3ff.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-48319080-1b52-48c3-a7a3-9de5df33b3ff.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c0253c5d-73df-4d0c-8a2e-cb2938f080fd {
  display: none;
}
#s-30980c9c-a94e-456f-bc04-bf9d0119e24b {
  text-align: left;
}


.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b {
  max-width: 100%;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom,
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b {
  max-width: 100%;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom,
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b {
  max-width: 100%;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom,
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b {
  max-width: 100%;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom,
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b {
  max-width: 100%;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom,
.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-30980c9c-a94e-456f-bc04-bf9d0119e24b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3c6c1925-b414-49ab-9130-d846dc679222 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c6c1925-b414-49ab-9130-d846dc679222 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-fd56be7b-64f4-448c-83cd-cff2843553d0 {
  text-align: left;
}

#s-fd56be7b-64f4-448c-83cd-cff2843553d0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-fd56be7b-64f4-448c-83cd-cff2843553d0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-fd56be7b-64f4-448c-83cd-cff2843553d0 .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-b4061b5e-836d-4a41-8627-bb2db0cd51f9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b4061b5e-836d-4a41-8627-bb2db0cd51f9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b4061b5e-836d-4a41-8627-bb2db0cd51f9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b4061b5e-836d-4a41-8627-bb2db0cd51f9 {
  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-b4061b5e-836d-4a41-8627-bb2db0cd51f9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b4061b5e-836d-4a41-8627-bb2db0cd51f9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b4061b5e-836d-4a41-8627-bb2db0cd51f9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5bb89db3-09fc-47e9-937c-ab1d261766a1 {
  display: none;
}
#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 {
  text-align: left;
}


.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 {
  max-width: 100%;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom,
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 {
  max-width: 100%;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom,
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 {
  max-width: 100%;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom,
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 {
  max-width: 100%;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom,
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 {
  max-width: 100%;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom,
.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d2b32706-0ec7-408b-9df8-d7716a9b5d22 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-822398ab-15b6-4816-b8f0-79ab15a78326 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-822398ab-15b6-4816-b8f0-79ab15a78326 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-72f7f1e0-4d23-4c72-a1ed-640be7b4455b {
  text-align: left;
}

#s-72f7f1e0-4d23-4c72-a1ed-640be7b4455b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-72f7f1e0-4d23-4c72-a1ed-640be7b4455b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-72f7f1e0-4d23-4c72-a1ed-640be7b4455b .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-40b69de2-1c3a-426d-bd18-efe4558a0f98 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-40b69de2-1c3a-426d-bd18-efe4558a0f98:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-40b69de2-1c3a-426d-bd18-efe4558a0f98:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-40b69de2-1c3a-426d-bd18-efe4558a0f98 {
  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-40b69de2-1c3a-426d-bd18-efe4558a0f98.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-40b69de2-1c3a-426d-bd18-efe4558a0f98.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-40b69de2-1c3a-426d-bd18-efe4558a0f98.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;
}