.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-10d6d11a-bef8-4740-b2c1-3642e6afc5a2 {
  min-height: 50px;
}








#s-10d6d11a-bef8-4740-b2c1-3642e6afc5a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10d6d11a-bef8-4740-b2c1-3642e6afc5a2.shg-box.shg-c {
  justify-content: flex-start;
}

#s-7662663a-b2a4-42bc-98c5-2703a827bd02 {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 0px;
margin-right: 50px;
min-height: 50px;
background-color: rgba(236, 225, 219, 0.5);
}








#s-7662663a-b2a4-42bc-98c5-2703a827bd02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7662663a-b2a4-42bc-98c5-2703a827bd02.shg-box.shg-c {
  justify-content: flex-start;
}

.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-b1b6f8d2-a607-4020-be98-8dbc6a580e56 {
  margin-top: 49px;
margin-left: 50px;
margin-bottom: -18px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b1b6f8d2-a607-4020-be98-8dbc6a580e56 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Open Sans;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-7861b2a6-55b7-467a-b63d-4f1656f2dbbf {
  margin-left: 50px;
margin-right: 50px;
}

#s-7861b2a6-55b7-467a-b63d-4f1656f2dbbf hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-8a50c47c-bf80-4a76-8ab7-7cefcd2c8f81 {
  margin-top: -5px;
margin-left: 50px;
margin-bottom: 45px;
margin-right: 50px;
}

#s-405c0104-cca2-422c-a91e-6de724326817 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 6px;
padding-bottom: 6px;
}

#s-4b4be2c6-0f55-46d5-85ab-2022da3dfc5d {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
min-height: 50px;
}








#s-4b4be2c6-0f55-46d5-85ab-2022da3dfc5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b4be2c6-0f55-46d5-85ab-2022da3dfc5d.shg-box.shg-c {
  justify-content: flex-start;
}

.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-45dda942-ae7e-4248-ae05-ddecc62ee3a4 {
  text-align: right;
}




  #s-45dda942-ae7e-4248-ae05-ddecc62ee3a4 img.shogun-image {
    
    width: px;
  }


#s-45dda942-ae7e-4248-ae05-ddecc62ee3a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-03c409e2-5b64-4f2e-83df-f02f89c1f928 {
  margin-bottom: 20px;
min-height: 50px;
}








#s-03c409e2-5b64-4f2e-83df-f02f89c1f928 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03c409e2-5b64-4f2e-83df-f02f89c1f928.shg-box.shg-c {
  justify-content: flex-start;
}

#s-88591826-ba9b-40e0-8d7d-885352c8b8d7 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-88591826-ba9b-40e0-8d7d-885352c8b8d7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-29b5adab-7c64-483d-894f-80bac955d46c {
  margin-left: 50px;
margin-right: 50px;
}

#s-c5b39c40-d7d4-4b30-8b0d-6f4a6de5ce4b {
  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-d404155b-90af-4363-aebf-4d2d976c5cf3 {
  text-align: center;
}


.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 {
  max-width: 100%;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom,
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 {
  max-width: 100%;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom,
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 {
  max-width: 100%;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom,
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 {
  max-width: 100%;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom,
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 {
  max-width: 100%;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom,
.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d404155b-90af-4363-aebf-4d2d976c5cf3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-6f394d8f-c6e5-4053-a967-c0d042ab2125 {
  text-align: center;
}

#s-6f394d8f-c6e5-4053-a967-c0d042ab2125 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
}

#s-6f394d8f-c6e5-4053-a967-c0d042ab2125 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
  font-size: 18px;
}

#s-6f394d8f-c6e5-4053-a967-c0d042ab2125 .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-f210986e-c3f8-47d1-9ebb-4d94d08d9578 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(94, 195, 174, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-f210986e-c3f8-47d1-9ebb-4d94d08d9578:hover {background-color: rgba(178, 154, 130, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f210986e-c3f8-47d1-9ebb-4d94d08d9578:active {background-color: rgba(238, 245, 109, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-f210986e-c3f8-47d1-9ebb-4d94d08d9578 {
  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-f210986e-c3f8-47d1-9ebb-4d94d08d9578.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f210986e-c3f8-47d1-9ebb-4d94d08d9578.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-f210986e-c3f8-47d1-9ebb-4d94d08d9578.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e0c42d06-be0d-40db-8e5c-930f5711b38e {
  margin-left: 50px;
margin-right: 50px;
}

#s-e0c42d06-be0d-40db-8e5c-930f5711b38e hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-9f175ee2-25d8-401b-9bd1-f24b862d2987 {
  min-height: 50px;
}








#s-9f175ee2-25d8-401b-9bd1-f24b862d2987 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f175ee2-25d8-401b-9bd1-f24b862d2987.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ae2977a5-b045-4ad7-a2db-479b479dba4f {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ae2977a5-b045-4ad7-a2db-479b479dba4f .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e0b09de4-7dee-442a-9c9f-db4253a300ec {
  margin-left: 50px;
margin-right: 50px;
}

#s-52b9c173-b35d-46e0-9a51-684509942840 {
  text-align: center;
}




  #s-52b9c173-b35d-46e0-9a51-684509942840 img.shogun-image {
    
    width: px;
  }


#s-52b9c173-b35d-46e0-9a51-684509942840 .shogun-image-content {
  
    align-items: center;
  
}

#s-58da92db-7ac0-4788-8933-718c47e68030 {
  margin-left: 50px;
margin-right: 50px;
}

#s-58da92db-7ac0-4788-8933-718c47e68030 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-6d0e44cc-58af-4465-b3fb-c5fc39c096bc {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6d0e44cc-58af-4465-b3fb-c5fc39c096bc .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-b914ed2a-ade5-4f07-b86b-9531ee766858 {
  margin-left: 50px;
margin-right: 50px;
}

#s-a0458f7d-607c-4427-ab7d-a7b7be3955a9 {
  display: none;
}
#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c {
  text-align: center;
}


.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c {
  max-width: 100%;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom,
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c {
  max-width: 100%;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom,
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c {
  max-width: 100%;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom,
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c {
  max-width: 100%;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom,
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c {
  max-width: 100%;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom,
.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ef2e69c4-8d17-4e2f-87c9-d6cbe2be101c .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-b8b4e0cf-5e1b-46dc-ad1b-9a463d35a5c5 {
  margin-top: 10px;
text-align: center;
}

#s-b8b4e0cf-5e1b-46dc-ad1b-9a463d35a5c5 .shg-product-sold-out {
  display: none;
  color: rgba(7, 2, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
}

#s-b8b4e0cf-5e1b-46dc-ad1b-9a463d35a5c5 .shg-product-price {
  color: rgba(7, 2, 0, 1);
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
  font-size: 18px;
}

#s-b8b4e0cf-5e1b-46dc-ad1b-9a463d35a5c5 .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-fd803b97-3beb-4dce-8a78-d591d5840055 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(94, 195, 174, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-fd803b97-3beb-4dce-8a78-d591d5840055:hover {background-color: rgba(178, 154, 130, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-fd803b97-3beb-4dce-8a78-d591d5840055:active {background-color: rgba(238, 245, 109, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-fd803b97-3beb-4dce-8a78-d591d5840055 {
  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-fd803b97-3beb-4dce-8a78-d591d5840055.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fd803b97-3beb-4dce-8a78-d591d5840055.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-fd803b97-3beb-4dce-8a78-d591d5840055.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7e3d802c-0e11-4769-8ed3-9622f9b8f66e {
  margin-left: 50px;
margin-right: 50px;
}

#s-7e3d802c-0e11-4769-8ed3-9622f9b8f66e hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-a18e05cc-8642-4c7b-b700-b2e34092c66e {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a18e05cc-8642-4c7b-b700-b2e34092c66e .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-ae77dde9-258b-4497-9456-14fc50befcca {
  margin-left: 50px;
margin-right: 50px;
}

#s-8ad58b0d-1c20-468c-98b1-3bf7f148d665 {
  text-align: center;
}




  #s-8ad58b0d-1c20-468c-98b1-3bf7f148d665 img.shogun-image {
    
    width: px;
  }


#s-8ad58b0d-1c20-468c-98b1-3bf7f148d665 .shogun-image-content {
  
    align-items: center;
  
}

#s-16029ed5-4ad2-4f0e-b729-c89e2c6f2e6b {
  margin-left: 50px;
margin-right: 50px;
}

#s-16029ed5-4ad2-4f0e-b729-c89e2c6f2e6b hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-83ea8e57-dfb9-40d8-957f-8ea75d81e893 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-83ea8e57-dfb9-40d8-957f-8ea75d81e893 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4e261158-b0c4-4416-9cfe-a28ca01b1ff4 {
  margin-left: 50px;
margin-right: 50px;
}

#s-f77d1968-875a-4f92-9a9a-205aacea5ded {
  display: none;
}
#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 {
  text-align: center;
}


.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 {
  max-width: 100%;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom,
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 {
  max-width: 100%;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom,
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 {
  max-width: 100%;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom,
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 {
  max-width: 100%;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom,
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 {
  max-width: 100%;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom,
.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-d95aaf32-944d-48cf-9faf-f67aaa70df43 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-3d6fcb24-b5b8-40e4-a8e4-b089c7c2b56f {
  margin-top: 10px;
text-align: center;
}

#s-3d6fcb24-b5b8-40e4-a8e4-b089c7c2b56f .shg-product-sold-out {
  display: none;
  color: rgba(12, 3, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
}

#s-3d6fcb24-b5b8-40e4-a8e4-b089c7c2b56f .shg-product-price {
  color: rgba(12, 3, 0, 1);
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
  font-size: 18px;
}

#s-3d6fcb24-b5b8-40e4-a8e4-b089c7c2b56f .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-97ac89b2-b515-4834-bba9-6dfc7b87a96b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(94, 195, 174, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-97ac89b2-b515-4834-bba9-6dfc7b87a96b:hover {background-color: rgba(178, 154, 130, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-97ac89b2-b515-4834-bba9-6dfc7b87a96b:active {background-color: rgba(238, 245, 109, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-97ac89b2-b515-4834-bba9-6dfc7b87a96b {
  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-97ac89b2-b515-4834-bba9-6dfc7b87a96b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-97ac89b2-b515-4834-bba9-6dfc7b87a96b.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-97ac89b2-b515-4834-bba9-6dfc7b87a96b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3f148d7b-6c4e-4b3e-98c0-97e96482fc85 {
  margin-left: 50px;
margin-right: 50px;
}

#s-3f148d7b-6c4e-4b3e-98c0-97e96482fc85 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-0c1e5e01-1e26-4105-b54f-17a16d7fbf02 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0c1e5e01-1e26-4105-b54f-17a16d7fbf02 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-c4603b4a-7079-418c-96bd-034053622fa3 {
  margin-left: 50px;
margin-right: 50px;
}

#s-8390f690-62d3-4a62-82d6-5237ab8ca411 {
  display: none;
}
#s-913629e0-8060-4b54-b753-ed3c84f474fe {
  text-align: center;
}


.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe {
  max-width: 100%;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom,
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe {
  max-width: 100%;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom,
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe {
  max-width: 100%;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom,
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe {
  max-width: 100%;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom,
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe {
  max-width: 100%;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom,
.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-913629e0-8060-4b54-b753-ed3c84f474fe .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-a53a304d-b54f-4dbc-9c52-240d730842e1 {
  margin-top: 10px;
text-align: center;
}

#s-a53a304d-b54f-4dbc-9c52-240d730842e1 .shg-product-sold-out {
  display: none;
  color: rgba(8, 2, 1, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
}

#s-a53a304d-b54f-4dbc-9c52-240d730842e1 .shg-product-price {
  color: rgba(8, 2, 1, 1);
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
  font-size: 18px;
}

#s-a53a304d-b54f-4dbc-9c52-240d730842e1 .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-02d62615-9218-4c46-8796-5a664d429fec {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(94, 195, 174, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-02d62615-9218-4c46-8796-5a664d429fec:hover {background-color: rgba(178, 154, 130, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-02d62615-9218-4c46-8796-5a664d429fec:active {background-color: rgba(238, 245, 109, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-02d62615-9218-4c46-8796-5a664d429fec {
  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-02d62615-9218-4c46-8796-5a664d429fec.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-02d62615-9218-4c46-8796-5a664d429fec.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-02d62615-9218-4c46-8796-5a664d429fec.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2e6f0653-e610-4d31-bc29-6ff3db77119d {
  margin-left: 50px;
margin-right: 50px;
}

#s-2e6f0653-e610-4d31-bc29-6ff3db77119d hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-744c542f-d8ea-4cfb-802f-ff0406efe063 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-744c542f-d8ea-4cfb-802f-ff0406efe063 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-5203d5b3-4cad-40a7-a813-724d5fd16abb {
  margin-left: 50px;
margin-right: 50px;
}

#s-9f13580b-e577-4969-ab47-e1736be41766 {
  display: none;
}
#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  text-align: center;
}


.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  max-width: 100%;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom,
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  max-width: 100%;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom,
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  max-width: 100%;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom,
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  max-width: 100%;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom,
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  max-width: 100%;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom,
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa {
  max-width: 100%;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom,
.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa img.shogun-image {
  max-width: 500px !important;
  min-height:  !important;
}

.shg-c#s-ad579822-ccfc-458f-9bc1-873eb1a086fa .shg-image-zoom {
  
    margin: 0 auto;
  
}


#s-9986d93e-57e2-4676-9587-661644559c5d {
  text-align: center;
}

#s-9986d93e-57e2-4676-9587-661644559c5d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
}

#s-9986d93e-57e2-4676-9587-661644559c5d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Redressed;
  font-style:  normal ;
  font-size: 18px;
}

#s-9986d93e-57e2-4676-9587-661644559c5d .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-4b696a12-5d62-4dec-a033-3cefd19ebd46 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(94, 195, 174, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-4b696a12-5d62-4dec-a033-3cefd19ebd46:hover {background-color: rgba(178, 154, 130, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4b696a12-5d62-4dec-a033-3cefd19ebd46:active {background-color: rgba(238, 245, 109, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}


#s-4b696a12-5d62-4dec-a033-3cefd19ebd46 {
  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-4b696a12-5d62-4dec-a033-3cefd19ebd46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4b696a12-5d62-4dec-a033-3cefd19ebd46.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}

#s-4b696a12-5d62-4dec-a033-3cefd19ebd46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-41c8cdb2-6899-42d0-839d-e1ed2ced76f5 {
  margin-left: 50px;
margin-right: 50px;
}

#s-41c8cdb2-6899-42d0-839d-e1ed2ced76f5 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-93db6872-53f4-4cf7-bf60-9de29a614722 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-93db6872-53f4-4cf7-bf60-9de29a614722 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-104ef6bc-d010-415d-b929-4cb2730273e8 {
  margin-left: 50px;
margin-right: 50px;
}

#s-3be27cc2-df5e-4ad5-9b01-f47d0c75cd9e {
  text-align: center;
}




  #s-3be27cc2-df5e-4ad5-9b01-f47d0c75cd9e img.shogun-image {
    
    width: px;
  }


#s-3be27cc2-df5e-4ad5-9b01-f47d0c75cd9e .shogun-image-content {
  
    align-items: center;
  
}

#s-3fca85dc-32bf-4611-a728-483e5c747d23 {
  margin-left: 50px;
margin-right: 50px;
}

#s-3fca85dc-32bf-4611-a728-483e5c747d23 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-08455c7a-36b6-4e03-b81f-7417125afb7d {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-08455c7a-36b6-4e03-b81f-7417125afb7d .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-a8948803-820f-4ffa-ad53-9290e1955450 {
  margin-left: 50px;
margin-right: 50px;
}

#s-ec257c82-06b4-4e55-836f-117f1a353c9e {
  text-align: center;
}




  #s-ec257c82-06b4-4e55-836f-117f1a353c9e img.shogun-image {
    
    width: px;
  }


#s-ec257c82-06b4-4e55-836f-117f1a353c9e .shogun-image-content {
  
    align-items: center;
  
}

#s-44f32d43-66d0-4c2f-a0ae-7d1a9da652ff {
  margin-left: 50px;
margin-right: 50px;
}

#s-44f32d43-66d0-4c2f-a0ae-7d1a9da652ff hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-112d590c-6831-4f7e-9c25-f61b2f6a8236 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-112d590c-6831-4f7e-9c25-f61b2f6a8236 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e911706f-cadb-48ee-8b2f-b25f36c0bcfa {
  margin-left: 50px;
margin-right: 50px;
}

#s-815c2a76-ad49-4d78-bc49-5563f73352ba {
  text-align: center;
}




  #s-815c2a76-ad49-4d78-bc49-5563f73352ba img.shogun-image {
    
    width: px;
  }


#s-815c2a76-ad49-4d78-bc49-5563f73352ba .shogun-image-content {
  
    align-items: center;
  
}

#s-d08fe16d-605d-4043-afe6-c6373e29ea6e {
  margin-left: 50px;
margin-right: 50px;
}

#s-d08fe16d-605d-4043-afe6-c6373e29ea6e hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-15e343fe-2403-4c6f-a48b-fb38e56281bc {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-15e343fe-2403-4c6f-a48b-fb38e56281bc .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-1f87ec23-7b00-470f-aeb7-b256abcbd784 {
  margin-left: 50px;
margin-right: 50px;
}

#s-d81afce0-b680-419d-9cc0-9614f0cb748d {
  text-align: center;
}




  #s-d81afce0-b680-419d-9cc0-9614f0cb748d img.shogun-image {
    
    width: px;
  }


#s-d81afce0-b680-419d-9cc0-9614f0cb748d .shogun-image-content {
  
    align-items: center;
  
}

#s-f13e8e72-559e-4056-a5c8-c22e9c8b9f1e {
  margin-left: 50px;
margin-right: 50px;
}

#s-f13e8e72-559e-4056-a5c8-c22e9c8b9f1e hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-3646868e-eb5a-4bf0-b5ac-c1f1822d8fe6 {
  margin-top: 0px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3646868e-eb5a-4bf0-b5ac-c1f1822d8fe6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-74020e78-fbe3-4988-8400-119447b9bfc1 {
  margin-left: 50px;
margin-right: 50px;
}

#s-dd1725a2-48cb-4e1b-838e-12a81f61beda {
  text-align: center;
}




  #s-dd1725a2-48cb-4e1b-838e-12a81f61beda img.shogun-image {
    
    width: px;
  }


#s-dd1725a2-48cb-4e1b-838e-12a81f61beda .shogun-image-content {
  
    align-items: center;
  
}

#s-27687c5c-ab22-49ca-ae94-73fad42fd5a7 {
  margin-left: 50px;
margin-right: 50px;
}

#s-27687c5c-ab22-49ca-ae94-73fad42fd5a7 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(236, 225, 219, 1);
}

#s-68d55131-be38-49ce-bb44-2c99441c1b0e {
  margin-left: 40px;
margin-right: 40px;
padding-top: 6px;
padding-bottom: 6px;
}

#s-1a10c24f-50a9-4bc5-80fa-4c8792580cbc {
  min-height: 50px;
}








#s-1a10c24f-50a9-4bc5-80fa-4c8792580cbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a10c24f-50a9-4bc5-80fa-4c8792580cbc.shg-box.shg-c {
  justify-content: center;
}

#s-1e93a30c-56f0-4f6c-bb8b-339edf046fe1 {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}




  #s-1e93a30c-56f0-4f6c-bb8b-339edf046fe1 img.shogun-image {
    
    width: px;
  }


#s-1e93a30c-56f0-4f6c-bb8b-339edf046fe1 .shogun-image-content {
  
    align-items: center;
  
}

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