.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-cbe8790f-a62d-444d-97dc-8a056ea88394 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-cbe8790f-a62d-444d-97dc-8a056ea88394 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cbe8790f-a62d-444d-97dc-8a056ea88394.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-e7349e51-a157-4674-a42b-78089c67c746 {
  margin-top: 3px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e7349e51-a157-4674-a42b-78089c67c746 .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-322af492-4a19-4234-873b-0db45508735f .shogun-tabs {
  justify-content: flex-start;
}

#s-322af492-4a19-4234-873b-0db45508735f .shogun-tabs > li > .shogun-tab-box {
    background: none;
    border: none;
  }
  #s-322af492-4a19-4234-873b-0db45508735f .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: none;
    border: none;
  }
  #s-322af492-4a19-4234-873b-0db45508735f .shogun-tabs > li > .shogun-tab-box::after {
    background: #fff;
    border: 1px solid rgba(215, 215, 215, 1);
  }
  #s-322af492-4a19-4234-873b-0db45508735f .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-322af492-4a19-4234-873b-0db45508735f .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-322af492-4a19-4234-873b-0db45508735f .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-322af492-4a19-4234-873b-0db45508735f .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(40, 53, 66, 1);
}

#s-322af492-4a19-4234-873b-0db45508735f .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-44954417-5b8e-442f-852a-b0939b2f9460 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-44954417-5b8e-442f-852a-b0939b2f9460 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-44954417-5b8e-442f-852a-b0939b2f9460 .shg-sld-nav-button.shg-sld-left,
#s-44954417-5b8e-442f-852a-b0939b2f9460 .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-3f44f2c6-4ab0-42b0-9ef2-7434f002a19d {
  text-align: center;
}




  #s-3f44f2c6-4ab0-42b0-9ef2-7434f002a19d img.shogun-image {
    
    width: px;
  }


#s-3f44f2c6-4ab0-42b0-9ef2-7434f002a19d .shogun-image-content {
  
    align-items: center;
  
}

#s-683aadb8-1be9-4423-865b-73f8577683bb {
  text-align: center;
}




  #s-683aadb8-1be9-4423-865b-73f8577683bb img.shogun-image {
    
    width: px;
  }


#s-683aadb8-1be9-4423-865b-73f8577683bb .shogun-image-content {
  
    align-items: center;
  
}

#s-90462a23-6012-4c05-b4fc-d398ff60800f {
  text-align: center;
}




  #s-90462a23-6012-4c05-b4fc-d398ff60800f img.shogun-image {
    
    width: px;
  }


#s-90462a23-6012-4c05-b4fc-d398ff60800f .shogun-image-content {
  
    align-items: center;
  
}

#s-4db9e786-a0d3-4708-b3d2-7c331d6547c7 {
  text-align: center;
}




  #s-4db9e786-a0d3-4708-b3d2-7c331d6547c7 img.shogun-image {
    
    width: px;
  }


#s-4db9e786-a0d3-4708-b3d2-7c331d6547c7 .shogun-image-content {
  
    align-items: center;
  
}

#s-017e2572-c032-485a-a04c-ef19af0feb54 {
  text-align: center;
}




  #s-017e2572-c032-485a-a04c-ef19af0feb54 img.shogun-image {
    
    width: px;
  }


#s-017e2572-c032-485a-a04c-ef19af0feb54 .shogun-image-content {
  
    align-items: center;
  
}

#s-60d497bd-30cb-468f-bab7-edd0573b0d9b {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-60d497bd-30cb-468f-bab7-edd0573b0d9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60d497bd-30cb-468f-bab7-edd0573b0d9b.shg-box.shg-c {
  justify-content: center;
}

#s-07d823eb-d231-46a6-88f7-562642e23faa {
  margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-07d823eb-d231-46a6-88f7-562642e23faa .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-96a702f0-afae-4da0-839f-3439a813a32f {
  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-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 {
  text-align: left;
}


.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 {
  max-width: 100%;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom,
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  
  min-height:  !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 {
  max-width: 100%;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom,
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  
  min-height:  !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 {
  max-width: 100%;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom,
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  
  min-height:  !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 {
  max-width: 100%;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom,
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  
  min-height:  !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 {
  max-width: 100%;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .shg-image-zoom,
.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 img.shogun-image {
  
  min-height:  !important;
}

.shg-c#s-1756eeaf-b241-4ce7-abf5-c2ac18bb90e1 .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-fbed0804-0083-4f41-af43-59e9cb5a1613 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fbed0804-0083-4f41-af43-59e9cb5a1613 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-4970e23d-00c0-421f-b4cb-a5e5fc46e44c {
  text-align: center;
}

#s-4970e23d-00c0-421f-b4cb-a5e5fc46e44c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-4970e23d-00c0-421f-b4cb-a5e5fc46e44c .shg-product-price {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-4970e23d-00c0-421f-b4cb-a5e5fc46e44c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ea192751-9ce4-4fb0-bccc-60fff1eb820d {
  display: none;
}
#s-2bd9b778-66b9-426c-9280-2105f651fada {
  text-align: left;
}


.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada {
  max-width: 100%;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom,
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada {
  max-width: 100%;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom,
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada {
  max-width: 100%;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom,
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada {
  max-width: 100%;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom,
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada {
  max-width: 100%;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom,
.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2bd9b778-66b9-426c-9280-2105f651fada .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-5584a1dd-bfd7-4865-b23c-41902b255784 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5584a1dd-bfd7-4865-b23c-41902b255784 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-f80386fb-1b78-4250-81ef-16fda40449c2 {
  text-align: center;
}

#s-f80386fb-1b78-4250-81ef-16fda40449c2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-f80386fb-1b78-4250-81ef-16fda40449c2 .shg-product-price {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-f80386fb-1b78-4250-81ef-16fda40449c2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-3b8968b4-d587-4f78-b39e-a3441c2f1556 {
  display: none;
}
#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc {
  text-align: left;
}


.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc {
  max-width: 100%;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom,
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc {
  max-width: 100%;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom,
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc {
  max-width: 100%;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom,
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc {
  max-width: 100%;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom,
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc {
  max-width: 100%;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom,
.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-2098c820-351e-4c09-a9d0-aa94ee3f54fc .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-60aa0e76-0016-4d84-9036-4d5754d64be3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60aa0e76-0016-4d84-9036-4d5754d64be3 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-1e68d7d1-6e50-46df-a397-db765b960cd2 {
  text-align: center;
}

#s-1e68d7d1-6e50-46df-a397-db765b960cd2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-1e68d7d1-6e50-46df-a397-db765b960cd2 .shg-product-price {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-1e68d7d1-6e50-46df-a397-db765b960cd2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2f633a4e-4e63-485c-8679-e0e1e305b5a5 {
  display: none;
}
#s-b6092635-0b87-416f-9db6-83efa4121709 {
  text-align: left;
}


.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 {
  max-width: 100%;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom,
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 {
  max-width: 100%;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom,
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 {
  max-width: 100%;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom,
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 {
  max-width: 100%;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom,
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 {
  max-width: 100%;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom,
.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b6092635-0b87-416f-9db6-83efa4121709 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2600da91-6b03-44f5-9db9-b723b3bd2884 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2600da91-6b03-44f5-9db9-b723b3bd2884 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Cutive Mono;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-9b1ce9bf-fc33-46b8-9ed2-798655892348 {
  text-align: center;
}

#s-9b1ce9bf-fc33-46b8-9ed2-798655892348 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
}

#s-9b1ce9bf-fc33-46b8-9ed2-798655892348 .shg-product-price {
  color: #000;
  font-weight:  700 ;
  font-family: Roboto Condensed;
  font-style:  normal ;
  font-size: 18px;
}

#s-9b1ce9bf-fc33-46b8-9ed2-798655892348 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-d406e831-37f4-4a55-b691-9b0784dc88d5 {
  display: none;
}
#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe {
  text-align: left;
}


.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe {
  max-width: 100%;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom,
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe {
  max-width: 100%;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom,
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe {
  max-width: 100%;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom,
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe {
  max-width: 100%;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom,
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe {
  max-width: 100%;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom,
.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-cf828e8a-a0bc-4f27-b001-a15d80a09afe .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-0f5029be-4d6d-4d6e-9d86-18f59cc31cbf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0f5029be-4d6d-4d6e-9d86-18f59cc31cbf .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d894aa14-0155-4204-9396-ff8595f393c6 {
  text-align: left;
}

#s-d894aa14-0155-4204-9396-ff8595f393c6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d894aa14-0155-4204-9396-ff8595f393c6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d894aa14-0155-4204-9396-ff8595f393c6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-588288e6-6ece-4a87-bf99-670bef28024d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-588288e6-6ece-4a87-bf99-670bef28024d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-588288e6-6ece-4a87-bf99-670bef28024d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-588288e6-6ece-4a87-bf99-670bef28024d {
  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-588288e6-6ece-4a87-bf99-670bef28024d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-588288e6-6ece-4a87-bf99-670bef28024d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-588288e6-6ece-4a87-bf99-670bef28024d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6676bf8c-4d8d-4c7b-866c-74915905cb3a {
  display: none;
}
#s-0eec6402-0cf8-47d8-903c-22bea84c9108 {
  text-align: left;
}


.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 {
  max-width: 100%;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom,
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 {
  max-width: 100%;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom,
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 {
  max-width: 100%;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom,
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 {
  max-width: 100%;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom,
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 {
  max-width: 100%;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom,
.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0eec6402-0cf8-47d8-903c-22bea84c9108 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2435e65c-24cc-4542-940e-13fb4d5c804d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2435e65c-24cc-4542-940e-13fb4d5c804d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a47f0865-b6f3-4e1e-ae0b-4f5833f47ef6 {
  text-align: left;
}

#s-a47f0865-b6f3-4e1e-ae0b-4f5833f47ef6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a47f0865-b6f3-4e1e-ae0b-4f5833f47ef6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a47f0865-b6f3-4e1e-ae0b-4f5833f47ef6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-3b67fe61-de9b-4fe6-863a-e15a7b263681 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-3b67fe61-de9b-4fe6-863a-e15a7b263681:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3b67fe61-de9b-4fe6-863a-e15a7b263681:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3b67fe61-de9b-4fe6-863a-e15a7b263681 {
  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-3b67fe61-de9b-4fe6-863a-e15a7b263681.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3b67fe61-de9b-4fe6-863a-e15a7b263681.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-3b67fe61-de9b-4fe6-863a-e15a7b263681.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-109c0b03-1829-479e-bb84-6118da8b2aa0 {
  display: none;
}
#s-efd55453-ce1e-4b81-bb44-e223d0255b0e {
  text-align: left;
}


.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e {
  max-width: 100%;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom,
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e {
  max-width: 100%;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom,
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e {
  max-width: 100%;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom,
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e {
  max-width: 100%;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom,
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e {
  max-width: 100%;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom,
.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-efd55453-ce1e-4b81-bb44-e223d0255b0e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-df07f0d4-11bf-4d11-bb0e-d0b0b3d00ecc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df07f0d4-11bf-4d11-bb0e-d0b0b3d00ecc .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-6c944442-a9b3-4a30-a4d3-b3657b8ad196 {
  text-align: left;
}

#s-6c944442-a9b3-4a30-a4d3-b3657b8ad196 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6c944442-a9b3-4a30-a4d3-b3657b8ad196 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6c944442-a9b3-4a30-a4d3-b3657b8ad196 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e {
  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-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e51dbf4a-8e61-4dc6-b315-587dd1d2e23e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c703b7b7-5b7c-45a0-aa41-98cacd942ad3 {
  display: none;
}
#s-e2bef5dd-084f-4958-8da3-576c73771fc6 {
  text-align: left;
}


.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 {
  max-width: 100%;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom,
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 {
  max-width: 100%;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom,
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 {
  max-width: 100%;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom,
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 {
  max-width: 100%;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom,
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 {
  max-width: 100%;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom,
.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e2bef5dd-084f-4958-8da3-576c73771fc6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3722405e-ae6b-4f9c-8668-45938615ebbf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3722405e-ae6b-4f9c-8668-45938615ebbf .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-8ddeec9b-4660-499b-b354-a495bc067c80 {
  text-align: left;
}

#s-8ddeec9b-4660-499b-b354-a495bc067c80 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8ddeec9b-4660-499b-b354-a495bc067c80 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8ddeec9b-4660-499b-b354-a495bc067c80 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-45c9044a-4388-4028-b693-dd9ffedd31f5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-45c9044a-4388-4028-b693-dd9ffedd31f5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-45c9044a-4388-4028-b693-dd9ffedd31f5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-45c9044a-4388-4028-b693-dd9ffedd31f5 {
  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-45c9044a-4388-4028-b693-dd9ffedd31f5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-45c9044a-4388-4028-b693-dd9ffedd31f5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-45c9044a-4388-4028-b693-dd9ffedd31f5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e2f275b8-c4f3-48ef-bbdf-985a997ccf3f {
  display: none;
}
#s-233a1a6b-de27-426a-bf02-7e68f9172391 {
  text-align: left;
}


.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 {
  max-width: 100%;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom,
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 {
  max-width: 100%;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom,
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 {
  max-width: 100%;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom,
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 {
  max-width: 100%;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom,
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 {
  max-width: 100%;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom,
.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-233a1a6b-de27-426a-bf02-7e68f9172391 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-8cbddf03-abdf-4b74-a4a9-920bcb91ed79 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8cbddf03-abdf-4b74-a4a9-920bcb91ed79 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-aecec262-6147-4e4e-bea8-2f3d931ee99f {
  text-align: left;
}

#s-aecec262-6147-4e4e-bea8-2f3d931ee99f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-aecec262-6147-4e4e-bea8-2f3d931ee99f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-aecec262-6147-4e4e-bea8-2f3d931ee99f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9ab3c85d-a4ba-448d-b4e5-389076f3e890 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9ab3c85d-a4ba-448d-b4e5-389076f3e890:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9ab3c85d-a4ba-448d-b4e5-389076f3e890:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9ab3c85d-a4ba-448d-b4e5-389076f3e890 {
  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-9ab3c85d-a4ba-448d-b4e5-389076f3e890.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9ab3c85d-a4ba-448d-b4e5-389076f3e890.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9ab3c85d-a4ba-448d-b4e5-389076f3e890.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7332192d-4dbc-483c-8889-b95bb5e29332 {
  display: none;
}
#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 {
  text-align: left;
}


.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 {
  max-width: 100%;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom,
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 {
  max-width: 100%;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom,
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 {
  max-width: 100%;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom,
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 {
  max-width: 100%;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom,
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 {
  max-width: 100%;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom,
.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6705f5e7-163e-4695-9dad-ce5a2a4af5d2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-308d92fd-975e-4824-9027-e3b71e43d0f4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-308d92fd-975e-4824-9027-e3b71e43d0f4 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a14f0387-66fb-4a30-9dcc-0f4bf39fd425 {
  text-align: left;
}

#s-a14f0387-66fb-4a30-9dcc-0f4bf39fd425 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a14f0387-66fb-4a30-9dcc-0f4bf39fd425 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a14f0387-66fb-4a30-9dcc-0f4bf39fd425 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-534e9a62-598b-4380-af36-c3a9b05b24fa {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-534e9a62-598b-4380-af36-c3a9b05b24fa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-534e9a62-598b-4380-af36-c3a9b05b24fa:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-534e9a62-598b-4380-af36-c3a9b05b24fa {
  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-534e9a62-598b-4380-af36-c3a9b05b24fa.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-534e9a62-598b-4380-af36-c3a9b05b24fa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-534e9a62-598b-4380-af36-c3a9b05b24fa.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-85e53a92-0a7a-48f3-81bf-4473e696f879 {
  display: none;
}
#s-a83ca66f-edea-4d83-b689-fddac782541f {
  text-align: left;
}


.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f {
  max-width: 100%;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom,
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f {
  max-width: 100%;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom,
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f {
  max-width: 100%;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom,
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f {
  max-width: 100%;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom,
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f {
  max-width: 100%;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom,
.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a83ca66f-edea-4d83-b689-fddac782541f .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-402336ef-9a11-4619-a88e-72d539928459 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-402336ef-9a11-4619-a88e-72d539928459 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-494061bf-2a44-4e7c-9937-6ccb01bddc06 {
  text-align: left;
}

#s-494061bf-2a44-4e7c-9937-6ccb01bddc06 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-494061bf-2a44-4e7c-9937-6ccb01bddc06 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-494061bf-2a44-4e7c-9937-6ccb01bddc06 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-44ea36b5-3a67-48bc-9cb8-4534bdbac75b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-44ea36b5-3a67-48bc-9cb8-4534bdbac75b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-44ea36b5-3a67-48bc-9cb8-4534bdbac75b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-44ea36b5-3a67-48bc-9cb8-4534bdbac75b {
  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-44ea36b5-3a67-48bc-9cb8-4534bdbac75b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-44ea36b5-3a67-48bc-9cb8-4534bdbac75b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-44ea36b5-3a67-48bc-9cb8-4534bdbac75b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d665cd65-c039-40c1-8a83-239405abf54f {
  display: none;
}
#s-b02c24fa-fafe-4356-839b-3892d7c98493 {
  text-align: left;
}


.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 {
  max-width: 100%;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom,
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 {
  max-width: 100%;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom,
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 {
  max-width: 100%;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom,
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 {
  max-width: 100%;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom,
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 {
  max-width: 100%;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom,
.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b02c24fa-fafe-4356-839b-3892d7c98493 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2a86e322-ad61-4ab5-ba22-d7195472634e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2a86e322-ad61-4ab5-ba22-d7195472634e .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-4ed4e736-8d33-47cb-9a22-fa75dea93eb9 {
  text-align: left;
}

#s-4ed4e736-8d33-47cb-9a22-fa75dea93eb9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4ed4e736-8d33-47cb-9a22-fa75dea93eb9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4ed4e736-8d33-47cb-9a22-fa75dea93eb9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-dad449e6-e5d9-4272-82b5-d4f3aed3435b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-dad449e6-e5d9-4272-82b5-d4f3aed3435b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-dad449e6-e5d9-4272-82b5-d4f3aed3435b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-dad449e6-e5d9-4272-82b5-d4f3aed3435b {
  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-dad449e6-e5d9-4272-82b5-d4f3aed3435b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-dad449e6-e5d9-4272-82b5-d4f3aed3435b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-dad449e6-e5d9-4272-82b5-d4f3aed3435b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-892772d3-bb46-49b9-b793-4e509a5e3b16 {
  display: none;
}
#s-47097827-04a3-4841-8c4b-59fc0a063e1b {
  text-align: left;
}


.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b {
  max-width: 100%;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom,
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b {
  max-width: 100%;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom,
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b {
  max-width: 100%;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom,
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b {
  max-width: 100%;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom,
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b {
  max-width: 100%;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom,
.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-47097827-04a3-4841-8c4b-59fc0a063e1b .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d3ee4ea2-3a1f-4b42-adc8-dba4e87b7e0b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d3ee4ea2-3a1f-4b42-adc8-dba4e87b7e0b .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-b1bbb7e2-8a49-49bc-a11e-77d37fd360ce {
  text-align: left;
}

#s-b1bbb7e2-8a49-49bc-a11e-77d37fd360ce .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b1bbb7e2-8a49-49bc-a11e-77d37fd360ce .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b1bbb7e2-8a49-49bc-a11e-77d37fd360ce .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-acb70f8b-efc6-46aa-986a-655a119faa92 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-acb70f8b-efc6-46aa-986a-655a119faa92:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-acb70f8b-efc6-46aa-986a-655a119faa92:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-acb70f8b-efc6-46aa-986a-655a119faa92 {
  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-acb70f8b-efc6-46aa-986a-655a119faa92.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-acb70f8b-efc6-46aa-986a-655a119faa92.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-acb70f8b-efc6-46aa-986a-655a119faa92.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d67b632a-aaa5-4acc-9aae-31350b5bc379 {
  display: none;
}
#s-f7b7a652-b001-4271-9358-5ba030e34d38 {
  text-align: left;
}


.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 {
  max-width: 100%;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom,
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 {
  max-width: 100%;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom,
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 {
  max-width: 100%;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom,
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 {
  max-width: 100%;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom,
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 {
  max-width: 100%;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom,
.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f7b7a652-b001-4271-9358-5ba030e34d38 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-02f89381-1621-41d6-a31b-bf544652fd8a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-02f89381-1621-41d6-a31b-bf544652fd8a .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-eba5863f-e9c7-4123-aad8-e1db620f9f2b {
  text-align: left;
}

#s-eba5863f-e9c7-4123-aad8-e1db620f9f2b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-eba5863f-e9c7-4123-aad8-e1db620f9f2b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-eba5863f-e9c7-4123-aad8-e1db620f9f2b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ddc50cdc-e70e-41c2-aab2-65d188d9997b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ddc50cdc-e70e-41c2-aab2-65d188d9997b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ddc50cdc-e70e-41c2-aab2-65d188d9997b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ddc50cdc-e70e-41c2-aab2-65d188d9997b {
  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-ddc50cdc-e70e-41c2-aab2-65d188d9997b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ddc50cdc-e70e-41c2-aab2-65d188d9997b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ddc50cdc-e70e-41c2-aab2-65d188d9997b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a6d473b4-37c2-4583-9022-9801cc0b01f5 {
  display: none;
}
#s-d075264f-852f-4a88-904b-cf4066a5380a {
  text-align: left;
}


.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a {
  max-width: 100%;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom,
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a {
  max-width: 100%;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom,
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a {
  max-width: 100%;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom,
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a {
  max-width: 100%;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom,
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a {
  max-width: 100%;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom,
.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d075264f-852f-4a88-904b-cf4066a5380a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-291f2575-37c0-4578-bf2f-4188caf86851 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-291f2575-37c0-4578-bf2f-4188caf86851 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-b6c36252-fa85-4d61-9312-b8232909bc79 {
  text-align: left;
}

#s-b6c36252-fa85-4d61-9312-b8232909bc79 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b6c36252-fa85-4d61-9312-b8232909bc79 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b6c36252-fa85-4d61-9312-b8232909bc79 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad {
  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-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8e208b29-9611-4ab4-8ab3-0e9cd379e8ad.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1f53e0cb-a0ef-46fc-9e0b-07bb070d0957 {
  display: none;
}
#s-5adf29f4-870b-4257-b72c-52f965566a8a {
  text-align: left;
}


.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a {
  max-width: 100%;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom,
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a {
  max-width: 100%;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom,
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a {
  max-width: 100%;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom,
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a {
  max-width: 100%;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom,
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a {
  max-width: 100%;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom,
.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-5adf29f4-870b-4257-b72c-52f965566a8a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3bb4be3a-7da1-43c1-8d31-b0821471931d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3bb4be3a-7da1-43c1-8d31-b0821471931d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-511f6ef3-256b-4fca-8bec-1aaceb014f37 {
  text-align: left;
}

#s-511f6ef3-256b-4fca-8bec-1aaceb014f37 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-511f6ef3-256b-4fca-8bec-1aaceb014f37 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-511f6ef3-256b-4fca-8bec-1aaceb014f37 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-098b91dc-9f64-4969-819a-454e08f31c3a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-098b91dc-9f64-4969-819a-454e08f31c3a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-098b91dc-9f64-4969-819a-454e08f31c3a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-098b91dc-9f64-4969-819a-454e08f31c3a {
  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-098b91dc-9f64-4969-819a-454e08f31c3a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-098b91dc-9f64-4969-819a-454e08f31c3a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-098b91dc-9f64-4969-819a-454e08f31c3a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c031e40e-5036-4ff8-b7e3-3ea5f9399205 {
  display: none;
}
#s-ea7ed648-031f-46c9-8921-dca734d173d4 {
  text-align: left;
}


.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 {
  max-width: 100%;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom,
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 {
  max-width: 100%;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom,
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 {
  max-width: 100%;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom,
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 {
  max-width: 100%;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom,
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 {
  max-width: 100%;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom,
.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ea7ed648-031f-46c9-8921-dca734d173d4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-13d35f1f-30ae-4ead-91e6-cc98da40529a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-13d35f1f-30ae-4ead-91e6-cc98da40529a .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-21c9e0a5-a704-47e3-9fc9-54a5ef9032ad {
  text-align: left;
}

#s-21c9e0a5-a704-47e3-9fc9-54a5ef9032ad .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-21c9e0a5-a704-47e3-9fc9-54a5ef9032ad .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-21c9e0a5-a704-47e3-9fc9-54a5ef9032ad .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6c8a4cda-3e31-4720-84ee-63e43e37ff3e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6c8a4cda-3e31-4720-84ee-63e43e37ff3e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6c8a4cda-3e31-4720-84ee-63e43e37ff3e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6c8a4cda-3e31-4720-84ee-63e43e37ff3e {
  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-6c8a4cda-3e31-4720-84ee-63e43e37ff3e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6c8a4cda-3e31-4720-84ee-63e43e37ff3e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6c8a4cda-3e31-4720-84ee-63e43e37ff3e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-fafb9fef-9d6a-4671-bb68-aad6f68351e2 {
  display: none;
}
#s-94a09098-cae2-4a93-b213-4093bc353d41 {
  text-align: left;
}


.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 {
  max-width: 100%;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom,
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 {
  max-width: 100%;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom,
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 {
  max-width: 100%;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom,
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 {
  max-width: 100%;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom,
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 {
  max-width: 100%;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom,
.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-94a09098-cae2-4a93-b213-4093bc353d41 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-9855cf51-4d18-4e1c-ba3e-90b0b0aa77c2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9855cf51-4d18-4e1c-ba3e-90b0b0aa77c2 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-ead0f511-8245-48b9-9456-27802112e1a7 {
  text-align: left;
}

#s-ead0f511-8245-48b9-9456-27802112e1a7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ead0f511-8245-48b9-9456-27802112e1a7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ead0f511-8245-48b9-9456-27802112e1a7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1a0b8a28-856f-425b-97e2-ff8d682e71a8 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1a0b8a28-856f-425b-97e2-ff8d682e71a8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1a0b8a28-856f-425b-97e2-ff8d682e71a8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1a0b8a28-856f-425b-97e2-ff8d682e71a8 {
  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-1a0b8a28-856f-425b-97e2-ff8d682e71a8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1a0b8a28-856f-425b-97e2-ff8d682e71a8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1a0b8a28-856f-425b-97e2-ff8d682e71a8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-fe4e08bd-c095-4b6a-9320-959fef8f72bf {
  display: none;
}
#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 {
  text-align: left;
}


.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 {
  max-width: 100%;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom,
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 {
  max-width: 100%;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom,
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 {
  max-width: 100%;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom,
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 {
  max-width: 100%;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom,
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 {
  max-width: 100%;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom,
.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-4f68e1b8-d2a8-4a50-945d-15ebce8561a4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-6b8f85c4-1ee5-4066-ab6a-71f229c278da {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6b8f85c4-1ee5-4066-ab6a-71f229c278da .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-21b2cf13-7d13-4983-afc5-85a4531f4a27 {
  text-align: left;
}

#s-21b2cf13-7d13-4983-afc5-85a4531f4a27 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-21b2cf13-7d13-4983-afc5-85a4531f4a27 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-21b2cf13-7d13-4983-afc5-85a4531f4a27 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a9794d83-de6c-4ce2-9b29-c385e17dccd1 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a9794d83-de6c-4ce2-9b29-c385e17dccd1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a9794d83-de6c-4ce2-9b29-c385e17dccd1:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a9794d83-de6c-4ce2-9b29-c385e17dccd1 {
  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-a9794d83-de6c-4ce2-9b29-c385e17dccd1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a9794d83-de6c-4ce2-9b29-c385e17dccd1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a9794d83-de6c-4ce2-9b29-c385e17dccd1.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-56d136a5-2514-483e-8c16-464dde783e7b {
  display: none;
}
#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c {
  text-align: left;
}


.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c {
  max-width: 100%;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom,
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c {
  max-width: 100%;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom,
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c {
  max-width: 100%;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom,
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c {
  max-width: 100%;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom,
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c {
  max-width: 100%;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom,
.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-0cfe2f85-4802-4e3a-926b-d981e0a9340c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-5bae2cff-c8d1-4be5-a895-3814e1605240 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5bae2cff-c8d1-4be5-a895-3814e1605240 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c7156e32-5c04-4c8a-8a24-c3d72e12e7f8 {
  text-align: left;
}

#s-c7156e32-5c04-4c8a-8a24-c3d72e12e7f8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c7156e32-5c04-4c8a-8a24-c3d72e12e7f8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c7156e32-5c04-4c8a-8a24-c3d72e12e7f8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-47372f07-3ed5-41b0-9aaa-710de6def2bd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-47372f07-3ed5-41b0-9aaa-710de6def2bd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-47372f07-3ed5-41b0-9aaa-710de6def2bd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-47372f07-3ed5-41b0-9aaa-710de6def2bd {
  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-47372f07-3ed5-41b0-9aaa-710de6def2bd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-47372f07-3ed5-41b0-9aaa-710de6def2bd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-47372f07-3ed5-41b0-9aaa-710de6def2bd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9e252748-3208-4c55-9622-4d32f200e424 {
  display: none;
}
#s-9a5c3307-e629-432e-b9a4-067ee9dea285 {
  text-align: left;
}


.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 {
  max-width: 100%;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom,
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 {
  max-width: 100%;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom,
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 {
  max-width: 100%;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom,
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 {
  max-width: 100%;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom,
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 {
  max-width: 100%;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom,
.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9a5c3307-e629-432e-b9a4-067ee9dea285 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-311a2bdb-2edc-4b6e-a3fd-52226c1cbabd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-311a2bdb-2edc-4b6e-a3fd-52226c1cbabd .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c8ce8981-f967-4c74-a3db-601d143d5df6 {
  text-align: left;
}

#s-c8ce8981-f967-4c74-a3db-601d143d5df6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c8ce8981-f967-4c74-a3db-601d143d5df6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c8ce8981-f967-4c74-a3db-601d143d5df6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9c0cb2b8-6a98-4a9a-b119-611f075d51d1 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9c0cb2b8-6a98-4a9a-b119-611f075d51d1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9c0cb2b8-6a98-4a9a-b119-611f075d51d1:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9c0cb2b8-6a98-4a9a-b119-611f075d51d1 {
  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-9c0cb2b8-6a98-4a9a-b119-611f075d51d1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9c0cb2b8-6a98-4a9a-b119-611f075d51d1.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9c0cb2b8-6a98-4a9a-b119-611f075d51d1.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a7357ddb-2d2b-48b2-bab4-9b4e576c3b79 {
  display: none;
}
#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 {
  text-align: left;
}


.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 {
  max-width: 100%;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom,
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 {
  max-width: 100%;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom,
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 {
  max-width: 100%;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom,
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 {
  max-width: 100%;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom,
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 {
  max-width: 100%;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom,
.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d9adbdd3-1cf3-4de7-aa4d-0e8d2f173464 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e3594360-1d33-4f58-bef6-6963245f67e5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e3594360-1d33-4f58-bef6-6963245f67e5 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-6cf02237-69f2-4376-9c2d-f7763b54411c {
  text-align: left;
}

#s-6cf02237-69f2-4376-9c2d-f7763b54411c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6cf02237-69f2-4376-9c2d-f7763b54411c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6cf02237-69f2-4376-9c2d-f7763b54411c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a1d47595-0945-4b6c-b0c5-974e26e16718 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a1d47595-0945-4b6c-b0c5-974e26e16718:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a1d47595-0945-4b6c-b0c5-974e26e16718:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a1d47595-0945-4b6c-b0c5-974e26e16718 {
  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-a1d47595-0945-4b6c-b0c5-974e26e16718.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a1d47595-0945-4b6c-b0c5-974e26e16718.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a1d47595-0945-4b6c-b0c5-974e26e16718.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b2b02c24-20ea-4bfe-8b4b-1ea109a1d7be {
  display: none;
}
#s-f6b148cb-7302-444c-b676-a6aebfdbe012 {
  text-align: left;
}


.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 {
  max-width: 100%;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom,
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 {
  max-width: 100%;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom,
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 {
  max-width: 100%;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom,
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 {
  max-width: 100%;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom,
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 {
  max-width: 100%;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom,
.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f6b148cb-7302-444c-b676-a6aebfdbe012 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e8fd6a8f-bd65-4f8c-ba95-f20763d24ca3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e8fd6a8f-bd65-4f8c-ba95-f20763d24ca3 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-c710c34d-8afc-4c63-a1c2-eacaaa5b7180 {
  text-align: left;
}

#s-c710c34d-8afc-4c63-a1c2-eacaaa5b7180 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c710c34d-8afc-4c63-a1c2-eacaaa5b7180 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c710c34d-8afc-4c63-a1c2-eacaaa5b7180 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ca4f39a4-75d8-4d86-a764-71956c6847a6 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ca4f39a4-75d8-4d86-a764-71956c6847a6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ca4f39a4-75d8-4d86-a764-71956c6847a6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ca4f39a4-75d8-4d86-a764-71956c6847a6 {
  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-ca4f39a4-75d8-4d86-a764-71956c6847a6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ca4f39a4-75d8-4d86-a764-71956c6847a6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ca4f39a4-75d8-4d86-a764-71956c6847a6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8a6691fa-80eb-41a8-b0c1-d9c3ba062871 {
  display: none;
}
#s-73e595a2-6cdd-4624-a10d-27401962a306 {
  text-align: left;
}


.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 {
  max-width: 100%;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom,
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 {
  max-width: 100%;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom,
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 {
  max-width: 100%;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom,
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 {
  max-width: 100%;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom,
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 {
  max-width: 100%;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom,
.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-73e595a2-6cdd-4624-a10d-27401962a306 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-fed4108d-20bb-4a5f-90dc-219ac522b21d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fed4108d-20bb-4a5f-90dc-219ac522b21d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-b5144751-79d3-4375-9dfb-ebece82d14bf {
  text-align: left;
}

#s-b5144751-79d3-4375-9dfb-ebece82d14bf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-b5144751-79d3-4375-9dfb-ebece82d14bf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-b5144751-79d3-4375-9dfb-ebece82d14bf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-bfcd06c3-02b9-4256-826a-89045a59dc71 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-bfcd06c3-02b9-4256-826a-89045a59dc71:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bfcd06c3-02b9-4256-826a-89045a59dc71:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bfcd06c3-02b9-4256-826a-89045a59dc71 {
  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-bfcd06c3-02b9-4256-826a-89045a59dc71.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bfcd06c3-02b9-4256-826a-89045a59dc71.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-bfcd06c3-02b9-4256-826a-89045a59dc71.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8925d53e-ed3a-4cd1-9fe1-a857b664dff4 {
  display: none;
}
#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 {
  text-align: left;
}


.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 {
  max-width: 100%;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom,
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 {
  max-width: 100%;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom,
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 {
  max-width: 100%;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom,
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 {
  max-width: 100%;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom,
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 {
  max-width: 100%;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom,
.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-325e2aef-3ab4-49ed-a30c-cfb3f8668a12 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b42ef8e1-8de0-48ee-b2aa-5438fb87d771 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b42ef8e1-8de0-48ee-b2aa-5438fb87d771 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-08120983-a90d-428c-b987-3be65ba60921 {
  text-align: left;
}

#s-08120983-a90d-428c-b987-3be65ba60921 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-08120983-a90d-428c-b987-3be65ba60921 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-08120983-a90d-428c-b987-3be65ba60921 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-cfefed02-437c-4d8b-84b6-b7cbaaee11e2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-cfefed02-437c-4d8b-84b6-b7cbaaee11e2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cfefed02-437c-4d8b-84b6-b7cbaaee11e2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-cfefed02-437c-4d8b-84b6-b7cbaaee11e2 {
  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-cfefed02-437c-4d8b-84b6-b7cbaaee11e2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cfefed02-437c-4d8b-84b6-b7cbaaee11e2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-cfefed02-437c-4d8b-84b6-b7cbaaee11e2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-baee71a0-ab47-47e9-9d09-b855375c6dd9 {
  display: none;
}
#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d {
  text-align: left;
}


.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d {
  max-width: 100%;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom,
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d {
  max-width: 100%;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom,
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d {
  max-width: 100%;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom,
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d {
  max-width: 100%;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom,
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d {
  max-width: 100%;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom,
.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-91ca5820-6e5e-41dc-9dad-c930d5d5e07d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-594b7ce4-718a-4def-a275-a159cb6ff6c8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-594b7ce4-718a-4def-a275-a159cb6ff6c8 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-f5022433-e036-4717-a71f-ab61936346a1 {
  text-align: left;
}

#s-f5022433-e036-4717-a71f-ab61936346a1 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f5022433-e036-4717-a71f-ab61936346a1 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f5022433-e036-4717-a71f-ab61936346a1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b69f54df-a033-46b5-92c8-70792cb5c9df {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-b69f54df-a033-46b5-92c8-70792cb5c9df:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b69f54df-a033-46b5-92c8-70792cb5c9df:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b69f54df-a033-46b5-92c8-70792cb5c9df {
  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-b69f54df-a033-46b5-92c8-70792cb5c9df.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b69f54df-a033-46b5-92c8-70792cb5c9df.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b69f54df-a033-46b5-92c8-70792cb5c9df.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0043fe38-30e1-4a7b-9a2a-3193864b5378 {
  display: none;
}
#s-a5e03858-2542-463f-8e39-66a2f39d2b9e {
  text-align: left;
}


.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e {
  max-width: 100%;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom,
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e {
  max-width: 100%;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom,
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e {
  max-width: 100%;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom,
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e {
  max-width: 100%;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom,
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e {
  max-width: 100%;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom,
.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a5e03858-2542-463f-8e39-66a2f39d2b9e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a19b3664-c56b-410e-a67d-09e812218e1e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a19b3664-c56b-410e-a67d-09e812218e1e .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-5a8931af-9046-4f95-9939-7d6fe2f3bbcf {
  text-align: left;
}

#s-5a8931af-9046-4f95-9939-7d6fe2f3bbcf .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5a8931af-9046-4f95-9939-7d6fe2f3bbcf .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-5a8931af-9046-4f95-9939-7d6fe2f3bbcf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-2cd45c2c-fe05-4d79-91f4-7901ca791cb0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-2cd45c2c-fe05-4d79-91f4-7901ca791cb0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2cd45c2c-fe05-4d79-91f4-7901ca791cb0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2cd45c2c-fe05-4d79-91f4-7901ca791cb0 {
  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-2cd45c2c-fe05-4d79-91f4-7901ca791cb0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2cd45c2c-fe05-4d79-91f4-7901ca791cb0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2cd45c2c-fe05-4d79-91f4-7901ca791cb0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e6c3585f-7fd1-4b1f-ace9-945749463631 {
  display: none;
}
#s-db647180-29a8-436b-b2f1-38ba564122c7 {
  text-align: left;
}


.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 {
  max-width: 100%;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom,
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 {
  max-width: 100%;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom,
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 {
  max-width: 100%;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom,
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 {
  max-width: 100%;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom,
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 {
  max-width: 100%;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom,
.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-db647180-29a8-436b-b2f1-38ba564122c7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-de7b6cda-fce4-45a2-aa78-862e9296a1af {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-de7b6cda-fce4-45a2-aa78-862e9296a1af .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-f12c68b4-388a-4f0c-8ac5-fdba2a98ec17 {
  text-align: left;
}

#s-f12c68b4-388a-4f0c-8ac5-fdba2a98ec17 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f12c68b4-388a-4f0c-8ac5-fdba2a98ec17 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f12c68b4-388a-4f0c-8ac5-fdba2a98ec17 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b {
  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-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-fa60f5bb-2cd4-4444-b637-d6ccbe8caf6b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c4d0a61d-dcfc-4bbc-8cc1-f7b26a9f6945 {
  display: none;
}
#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce {
  text-align: left;
}


.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce {
  max-width: 100%;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom,
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce {
  max-width: 100%;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom,
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce {
  max-width: 100%;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom,
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce {
  max-width: 100%;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom,
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce {
  max-width: 100%;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom,
.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f9d4faee-81b1-49c9-b2cf-a642af0004ce .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-44f4e6b6-6077-407c-96ce-196c78f6a49d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-44f4e6b6-6077-407c-96ce-196c78f6a49d .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-ef887af1-edf6-4211-b4b9-8548a52424de {
  text-align: left;
}

#s-ef887af1-edf6-4211-b4b9-8548a52424de .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ef887af1-edf6-4211-b4b9-8548a52424de .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ef887af1-edf6-4211-b4b9-8548a52424de .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-163d3917-971b-4c7f-875f-201fd067813f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-163d3917-971b-4c7f-875f-201fd067813f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-163d3917-971b-4c7f-875f-201fd067813f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-163d3917-971b-4c7f-875f-201fd067813f {
  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-163d3917-971b-4c7f-875f-201fd067813f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-163d3917-971b-4c7f-875f-201fd067813f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-163d3917-971b-4c7f-875f-201fd067813f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-eed68017-d6ba-45c4-8526-5c61384f7dd8 {
  display: none;
}
#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e {
  text-align: left;
}


.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e {
  max-width: 100%;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom,
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e {
  max-width: 100%;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom,
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e {
  max-width: 100%;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom,
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e {
  max-width: 100%;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom,
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e {
  max-width: 100%;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom,
.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-55f77a11-7da7-44a5-88cb-dfc682cfc17e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-aee0a19d-3a4b-4854-a623-efe7d48be91f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aee0a19d-3a4b-4854-a623-efe7d48be91f .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-32d8b4ab-c577-4ee9-922e-47f8baf3eeff {
  text-align: left;
}

#s-32d8b4ab-c577-4ee9-922e-47f8baf3eeff .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-32d8b4ab-c577-4ee9-922e-47f8baf3eeff .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-32d8b4ab-c577-4ee9-922e-47f8baf3eeff .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-97bda775-d11b-485c-9ebb-90e36f260212 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-97bda775-d11b-485c-9ebb-90e36f260212:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-97bda775-d11b-485c-9ebb-90e36f260212:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-97bda775-d11b-485c-9ebb-90e36f260212 {
  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-97bda775-d11b-485c-9ebb-90e36f260212.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-97bda775-d11b-485c-9ebb-90e36f260212.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-97bda775-d11b-485c-9ebb-90e36f260212.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2d3a7967-a4bc-4ddd-b6cf-e1e5fc0244ef {
  display: none;
}
#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 {
  text-align: left;
}


.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 {
  max-width: 100%;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom,
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 {
  max-width: 100%;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom,
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 {
  max-width: 100%;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom,
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 {
  max-width: 100%;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom,
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 {
  max-width: 100%;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom,
.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-f818d477-5eb1-4205-8da7-3baa4cd504c0 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-72401318-121e-4ddc-814c-53e09888b244 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-72401318-121e-4ddc-814c-53e09888b244 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a2eec2d2-2e83-4502-9f04-8282a38830bb {
  text-align: left;
}

#s-a2eec2d2-2e83-4502-9f04-8282a38830bb .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a2eec2d2-2e83-4502-9f04-8282a38830bb .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a2eec2d2-2e83-4502-9f04-8282a38830bb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92 {
  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-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1ce21d4c-8fa7-428c-adb0-9f8f1ceb1c92.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-01b4cd37-7597-43ab-bf21-1919563491c9 {
  display: none;
}
#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd {
  text-align: left;
}


.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd {
  max-width: 100%;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom,
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd {
  max-width: 100%;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom,
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd {
  max-width: 100%;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom,
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd {
  max-width: 100%;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom,
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd {
  max-width: 100%;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom,
.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1c2fa95d-be87-4ea7-aa58-0f9aa0b93ddd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-e0ba91de-fdcd-488b-877c-bcfedcc310fa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e0ba91de-fdcd-488b-877c-bcfedcc310fa .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-32a8e69c-186e-4001-a514-92be883c72cd {
  text-align: left;
}

#s-32a8e69c-186e-4001-a514-92be883c72cd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-32a8e69c-186e-4001-a514-92be883c72cd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-32a8e69c-186e-4001-a514-92be883c72cd .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-bfbd69fc-2b76-43d3-b471-bd35e364809b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-bfbd69fc-2b76-43d3-b471-bd35e364809b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bfbd69fc-2b76-43d3-b471-bd35e364809b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bfbd69fc-2b76-43d3-b471-bd35e364809b {
  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-bfbd69fc-2b76-43d3-b471-bd35e364809b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bfbd69fc-2b76-43d3-b471-bd35e364809b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-bfbd69fc-2b76-43d3-b471-bd35e364809b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d8a6edcf-d468-442e-aa6e-496d47516e49 {
  display: none;
}
#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 {
  text-align: left;
}


.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 {
  max-width: 100%;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom,
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 {
  max-width: 100%;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom,
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 {
  max-width: 100%;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom,
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 {
  max-width: 100%;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom,
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 {
  max-width: 100%;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom,
.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d1cb799-bf55-4b50-aaac-de49f09c40f4 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-9185f233-d0fd-412e-b3e1-8b8859f18751 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9185f233-d0fd-412e-b3e1-8b8859f18751 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-20bed7df-e3fc-4895-bb94-34f52494ba71 {
  text-align: left;
}

#s-20bed7df-e3fc-4895-bb94-34f52494ba71 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-20bed7df-e3fc-4895-bb94-34f52494ba71 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-20bed7df-e3fc-4895-bb94-34f52494ba71 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6a0a0c42-192c-492e-a7b4-d525f1a8c521 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6a0a0c42-192c-492e-a7b4-d525f1a8c521:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6a0a0c42-192c-492e-a7b4-d525f1a8c521:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6a0a0c42-192c-492e-a7b4-d525f1a8c521 {
  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-6a0a0c42-192c-492e-a7b4-d525f1a8c521.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6a0a0c42-192c-492e-a7b4-d525f1a8c521.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-6a0a0c42-192c-492e-a7b4-d525f1a8c521.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-039566ae-c99a-41c1-99c0-973c2f83dfd4 {
  display: none;
}
#s-1f50caec-52ba-4760-9afa-d2174ed6900c {
  text-align: left;
}


.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c {
  max-width: 100%;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom,
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c {
  max-width: 100%;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom,
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c {
  max-width: 100%;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom,
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c {
  max-width: 100%;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom,
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c {
  max-width: 100%;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom,
.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1f50caec-52ba-4760-9afa-d2174ed6900c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-92cd0aec-b294-44a2-872c-72b39879bd25 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-92cd0aec-b294-44a2-872c-72b39879bd25 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-a4368a29-749a-45f6-a0e7-ce76158a63ef {
  text-align: left;
}

#s-a4368a29-749a-45f6-a0e7-ce76158a63ef .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a4368a29-749a-45f6-a0e7-ce76158a63ef .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a4368a29-749a-45f6-a0e7-ce76158a63ef .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-55319d13-51e5-48f2-9f36-7d1258a4d6ae {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-55319d13-51e5-48f2-9f36-7d1258a4d6ae:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-55319d13-51e5-48f2-9f36-7d1258a4d6ae:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-55319d13-51e5-48f2-9f36-7d1258a4d6ae {
  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-55319d13-51e5-48f2-9f36-7d1258a4d6ae.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-55319d13-51e5-48f2-9f36-7d1258a4d6ae.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-55319d13-51e5-48f2-9f36-7d1258a4d6ae.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2061fb44-d013-484e-82f2-5b80755b42ce {
  display: none;
}
#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d {
  text-align: left;
}


.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d {
  max-width: 100%;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom,
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d {
  max-width: 100%;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom,
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d {
  max-width: 100%;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom,
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d {
  max-width: 100%;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom,
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d {
  max-width: 100%;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom,
.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d5d505b6-78c3-49d2-8360-bf5ba18c3d0d .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-57b6c23d-5354-4d55-aa9b-b53585e5bf62 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-57b6c23d-5354-4d55-aa9b-b53585e5bf62 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-8a5a0528-1eb2-44cf-a77c-54634d3c43f4 {
  text-align: left;
}

#s-8a5a0528-1eb2-44cf-a77c-54634d3c43f4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8a5a0528-1eb2-44cf-a77c-54634d3c43f4 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8a5a0528-1eb2-44cf-a77c-54634d3c43f4 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-15a14410-5bce-4f56-ac53-11315b5bdf5e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-15a14410-5bce-4f56-ac53-11315b5bdf5e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-15a14410-5bce-4f56-ac53-11315b5bdf5e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-15a14410-5bce-4f56-ac53-11315b5bdf5e {
  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-15a14410-5bce-4f56-ac53-11315b5bdf5e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-15a14410-5bce-4f56-ac53-11315b5bdf5e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-15a14410-5bce-4f56-ac53-11315b5bdf5e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2359aa9b-cb0a-4e1a-a805-8db8c59cd356 {
  display: none;
}
#s-3431514f-9a7e-491b-a577-0b7ae229cc04 {
  text-align: left;
}


.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 {
  max-width: 100%;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom,
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 {
  max-width: 100%;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom,
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 {
  max-width: 100%;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom,
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 {
  max-width: 100%;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom,
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 {
  max-width: 100%;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom,
.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-3431514f-9a7e-491b-a577-0b7ae229cc04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a8a121ca-3391-4b0c-a630-488b5f5523b8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8a121ca-3391-4b0c-a630-488b5f5523b8 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d5ef433d-06f4-4ea1-9df2-b95c4ff7fcbc {
  text-align: left;
}

#s-d5ef433d-06f4-4ea1-9df2-b95c4ff7fcbc .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d5ef433d-06f4-4ea1-9df2-b95c4ff7fcbc .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d5ef433d-06f4-4ea1-9df2-b95c4ff7fcbc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c {
  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-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7a033a5f-ce4a-4de9-af3b-1a769ba75c4c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bfdb4ef6-4767-49d1-9be2-0875130e6f86 {
  display: none;
}
#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 {
  text-align: left;
}


.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 {
  max-width: 100%;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom,
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 {
  max-width: 100%;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom,
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 {
  max-width: 100%;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom,
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 {
  max-width: 100%;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom,
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 {
  max-width: 100%;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom,
.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9e424fa0-b2d0-478c-be1e-5c9ebe670526 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-0aa4c526-dd77-46cd-9c95-5610f6e8ee20 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0aa4c526-dd77-46cd-9c95-5610f6e8ee20 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d1f380c6-e63d-4726-8dfb-85505a527bad {
  text-align: left;
}

#s-d1f380c6-e63d-4726-8dfb-85505a527bad .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d1f380c6-e63d-4726-8dfb-85505a527bad .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d1f380c6-e63d-4726-8dfb-85505a527bad .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5 {
  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-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-621f1de7-aa3d-43a5-9c8f-78c6cfc159c5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-406e6eff-b74d-4460-a177-38505bdaf12b {
  display: none;
}
#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 {
  text-align: left;
}


.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 {
  max-width: 100%;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom,
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 {
  max-width: 100%;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom,
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 {
  max-width: 100%;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom,
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 {
  max-width: 100%;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom,
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 {
  max-width: 100%;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom,
.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-71e62cb3-cfa9-47b0-9a65-d18bd96603b3 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-0b4700db-bfba-4d4b-90e6-3136e61b65d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0b4700db-bfba-4d4b-90e6-3136e61b65d4 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-88688350-f434-491a-8f1c-b7951f0033aa {
  text-align: left;
}

#s-88688350-f434-491a-8f1c-b7951f0033aa .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-88688350-f434-491a-8f1c-b7951f0033aa .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-88688350-f434-491a-8f1c-b7951f0033aa .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-af4a96d4-58de-47c7-a06e-4969e1132595 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-af4a96d4-58de-47c7-a06e-4969e1132595:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-af4a96d4-58de-47c7-a06e-4969e1132595:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-af4a96d4-58de-47c7-a06e-4969e1132595 {
  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-af4a96d4-58de-47c7-a06e-4969e1132595.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-af4a96d4-58de-47c7-a06e-4969e1132595.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-af4a96d4-58de-47c7-a06e-4969e1132595.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ca31e43d-1575-4bd2-95e9-06e5cc60d95f {
  display: none;
}
#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 {
  text-align: left;
}


.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 {
  max-width: 100%;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom,
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 {
  max-width: 100%;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom,
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 {
  max-width: 100%;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom,
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 {
  max-width: 100%;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom,
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 {
  max-width: 100%;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom,
.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c1e0002f-33f9-41b7-9cd7-e3f8cafa87f8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d85c8caa-3632-4af3-b2bc-d201a5ba9c88 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d85c8caa-3632-4af3-b2bc-d201a5ba9c88 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-28d8e398-53f9-4cb4-9454-5417b5a4344e {
  text-align: left;
}

#s-28d8e398-53f9-4cb4-9454-5417b5a4344e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-28d8e398-53f9-4cb4-9454-5417b5a4344e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-28d8e398-53f9-4cb4-9454-5417b5a4344e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1eb66208-9eb4-4690-9795-973f96cae582 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-1eb66208-9eb4-4690-9795-973f96cae582:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1eb66208-9eb4-4690-9795-973f96cae582:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1eb66208-9eb4-4690-9795-973f96cae582 {
  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-1eb66208-9eb4-4690-9795-973f96cae582.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1eb66208-9eb4-4690-9795-973f96cae582.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-1eb66208-9eb4-4690-9795-973f96cae582.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2cb296cb-f730-49f8-97e4-a9952514d4a3 {
  display: none;
}
#s-dcb3facf-c9d0-467a-b60a-57583f198b97 {
  text-align: left;
}


.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 {
  max-width: 100%;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom,
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 {
  max-width: 100%;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom,
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 {
  max-width: 100%;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom,
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 {
  max-width: 100%;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom,
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 {
  max-width: 100%;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom,
.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-dcb3facf-c9d0-467a-b60a-57583f198b97 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d90db64c-f85d-4fe9-8cf5-f1659fdb45cd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d90db64c-f85d-4fe9-8cf5-f1659fdb45cd .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-dc912fd6-897b-481d-94ff-36caaa869226 {
  text-align: left;
}

#s-dc912fd6-897b-481d-94ff-36caaa869226 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-dc912fd6-897b-481d-94ff-36caaa869226 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-dc912fd6-897b-481d-94ff-36caaa869226 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e5423db2-2188-40b0-9804-d514ff3e2b48 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-e5423db2-2188-40b0-9804-d514ff3e2b48:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e5423db2-2188-40b0-9804-d514ff3e2b48:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e5423db2-2188-40b0-9804-d514ff3e2b48 {
  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-e5423db2-2188-40b0-9804-d514ff3e2b48.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e5423db2-2188-40b0-9804-d514ff3e2b48.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e5423db2-2188-40b0-9804-d514ff3e2b48.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-067f3630-b6d1-452f-81fa-805ee110cc3f {
  display: none;
}
#s-e861f30f-b83a-4748-bc9c-1d0feb268220 {
  text-align: left;
}


.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 {
  max-width: 100%;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom,
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 {
  max-width: 100%;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom,
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 {
  max-width: 100%;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom,
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 {
  max-width: 100%;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom,
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 {
  max-width: 100%;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom,
.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e861f30f-b83a-4748-bc9c-1d0feb268220 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-83063a6e-d758-4eb5-88c6-33a9f282c500 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-83063a6e-d758-4eb5-88c6-33a9f282c500 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-e81d8ac0-2841-478e-a628-e728331c7264 {
  text-align: left;
}

#s-e81d8ac0-2841-478e-a628-e728331c7264 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e81d8ac0-2841-478e-a628-e728331c7264 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-e81d8ac0-2841-478e-a628-e728331c7264 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a0678cd7-9c21-42e8-8d6c-82d83206d885 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-a0678cd7-9c21-42e8-8d6c-82d83206d885:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a0678cd7-9c21-42e8-8d6c-82d83206d885:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a0678cd7-9c21-42e8-8d6c-82d83206d885 {
  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-a0678cd7-9c21-42e8-8d6c-82d83206d885.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a0678cd7-9c21-42e8-8d6c-82d83206d885.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a0678cd7-9c21-42e8-8d6c-82d83206d885.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



                /*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion: reduce), print{.animate__animated{-webkit-animation-duration:1ms !important;animation-duration:1ms !important;transition-duration:1ms !important;-webkit-animation-iteration-count:1 !important;animation-iteration-count:1 !important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -30px, 0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -15px, 0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0) scaleY(0.95)}90%{transform:translate3d(0, -4px, 0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -30px, 0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -15px, 0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0) scaleY(0.95)}90%{transform:translate3d(0, -4px, 0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05, 1.05, 1.05)}to{transform:scaleX(1)}}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05, 1.05, 1.05)}to{transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25, 0.75, 1)}40%{transform:scale3d(0.75, 1.25, 1)}50%{transform:scale3d(1.15, 0.85, 1)}65%{transform:scale3d(0.95, 1.05, 1)}75%{transform:scale3d(1.05, 0.95, 1)}to{transform:scaleX(1)}}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25, 0.75, 1)}40%{transform:scale3d(0.75, 1.25, 1)}50%{transform:scale3d(1.15, 0.85, 1)}65%{transform:scale3d(0.95, 1.05, 1)}75%{transform:scale3d(1.05, 0.95, 1)}to{transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{transform:translate3d(10px, 0, 0)}}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{transform:translate3d(10px, 0, 0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{transform:translate3d(0, 10px, 0)}}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{transform:translate3d(0, 10px, 0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(0.9, 0.9, 0.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1, 1.1, 1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg)}to{transform:scaleX(1)}}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(0.9, 0.9, 0.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1, 1.1, 1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%, 0, 0) rotate(-5deg)}30%{transform:translate3d(20%, 0, 0) rotate(3deg)}45%{transform:translate3d(-15%, 0, 0) rotate(-3deg)}60%{transform:translate3d(10%, 0, 0) rotate(2deg)}75%{transform:translate3d(-5%, 0, 0) rotate(-1deg)}to{transform:translateZ(0)}}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%, 0, 0) rotate(-5deg)}30%{transform:translate3d(20%, 0, 0) rotate(3deg)}45%{transform:translate3d(-15%, 0, 0) rotate(-3deg)}60%{transform:translate3d(10%, 0, 0) rotate(2deg)}75%{transform:translate3d(-5%, 0, 0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;transform-origin:center}@-webkit-keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{transform:translateY(-1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInDown{0%{transform:translateY(-1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{transform:translateX(-2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{transform:translateX(2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInRight{0%{transform:translateX(2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{transform:translateY(1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInUp{0%{transform:translateY(1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(700px) scale(0.7);opacity:.7}}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(700px) scale(0.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(-2000px) scale(0.7);opacity:.7}}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(-2000px) scale(0.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(2000px) scale(0.7);opacity:.7}}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(2000px) scale(0.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(-700px) scale(0.7);opacity:.7}}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(-700px) scale(0.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0) scaleY(3)}60%{opacity:1;transform:translate3d(0, 25px, 0) scaleY(0.9)}75%{transform:translate3d(0, -10px, 0) scaleY(0.95)}90%{transform:translate3d(0, 5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0) scaleY(3)}60%{opacity:1;transform:translate3d(0, 25px, 0) scaleY(0.9)}75%{transform:translate3d(0, -10px, 0) scaleY(0.95)}90%{transform:translate3d(0, 5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(25px, 0, 0) scaleX(1)}75%{transform:translate3d(-10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(25px, 0, 0) scaleX(1)}75%{transform:translate3d(-10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px, 0, 0) scaleX(1)}75%{transform:translate3d(10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(-5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px, 0, 0) scaleX(1)}75%{transform:translate3d(10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(-5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, 3000px, 0) scaleY(5)}60%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}75%{transform:translate3d(0, 10px, 0) scaleY(0.95)}90%{transform:translate3d(0, -5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, 3000px, 0) scaleY(5)}60%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}75%{transform:translate3d(0, 10px, 0) scaleY(0.95)}90%{transform:translate3d(0, -5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{transform:scale3d(0.9, 0.9, 0.9)}50%,55%{opacity:1;transform:scale3d(1.1, 1.1, 1.1)}to{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}}@keyframes bounceOut{20%{transform:scale3d(0.9, 0.9, 0.9)}50%,55%{opacity:1;transform:scale3d(1.1, 1.1, 1.1)}to{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{transform:translate3d(0, 10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, 2000px, 0) scaleY(3)}}@keyframes bounceOutDown{20%{transform:translate3d(0, 10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, 2000px, 0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(-2000px, 0, 0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(-2000px, 0, 0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(2000px, 0, 0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(2000px, 0, 0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{transform:translate3d(0, -10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, -2000px, 0) scaleY(3)}}@keyframes bounceOutUp{20%{transform:translate3d(0, -10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, -2000px, 0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0, 100%, 0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0, 100%, 0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, 2000px, 0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, 2000px, 0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%, 0, 0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%, 0, 0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px, 0, 0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px, 0, 0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0, -100%, 0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0, -100%, 0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, -2000px, 0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, -2000px, 0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, -100%, 0)}}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, -100%, 0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, -100%, 0)}}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, -100%, 0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, 100%, 0)}}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, 100%, 0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, 100%, 0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, 100%, 0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}@-webkit-keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{transform:translate3d(100%, 0, 0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{transform:translate3d(100%, 0, 0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{transform:translate3d(-100%, 0, 0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%, 0, 0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%, 0, 0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%, 0, 0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%, 0, 0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%, 0, 0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0, 700px, 0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0, 700px, 0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;transform:scale(0.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;transform:scale(0.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;transform:translate3d(-100%, 0, 0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%, 0, 0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(-2000px, 0, 0)}}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(-2000px, 0, 0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(2000px, 0, 0)}}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(2000px, 0, 0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{transform:translate3d(0, -100%, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInDown{0%{transform:translate3d(0, -100%, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{transform:translate3d(-100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInLeft{0%{transform:translate3d(-100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{transform:translate3d(100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInRight{0%{transform:translate3d(100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{transform:translate3d(0, 100%, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInUp{0%{transform:translate3d(0, 100%, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, 100%, 0)}}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, 100%, 0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%, 0, 0)}}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%, 0, 0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%, 0, 0)}}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%, 0, 0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, -100%, 0)}}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, -100%, 0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}

/*
  $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: inline-block;
}

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

.shogun-form-error-msg {
  display: none;
  margin-top: 16px;
  line-height: 16px;
  font-size: 14px;
  color: #dc143c;
}
