#s-bdddf542-3a11-4312-96b9-e6f87a497f10 {
  text-align: left;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

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

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

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

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked, .shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-cfb8cae4-df01-4add-b943-7eae88923c3e {
  text-align: center;
}







  #s-cfb8cae4-df01-4add-b943-7eae88923c3e img.shogun-image {
    

    
    
    
  }


#s-cfb8cae4-df01-4add-b943-7eae88923c3e .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-45eb07fc-393f-4b6d-bb54-1a713be94909 hr {
  border-top: 2px solid #ddd;
}

.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

.shg-box-video-wrapper {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-2b3f9072-893a-4798-930e-f116854e1fa9 {
  min-height: 50px;
}








#s-2b3f9072-893a-4798-930e-f116854e1fa9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b3f9072-893a-4798-930e-f116854e1fa9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-22037d7f-3004-49bd-8666-906e7a6ff62e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-22037d7f-3004-49bd-8666-906e7a6ff62e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-22037d7f-3004-49bd-8666-906e7a6ff62e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-22037d7f-3004-49bd-8666-906e7a6ff62e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7ac032e6-a0ce-4d00-a78e-7dcca7c4c814 {
  display: none;
}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-a583bfc9-f8a8-4af8-9484-5f00ff97dc76 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a583bfc9-f8a8-4af8-9484-5f00ff97dc76 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

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

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

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

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

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

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

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

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

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

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

#s-9215b788-f5a4-4a60-b275-882929bd5d5c {
  text-align: left;
}



.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9215b788-f5a4-4a60-b275-882929bd5d5c img.shogun-image {
  width: 100%;
}



}
.shg-gallery-root {
}

.shg-gallery-arrows-container {
  display: flex;
  align-items: center;
  position: relative;
}

.shg-gallery-dots-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.shg-gallery-scroll-container {
  position: relative;
}

.shg-gallery-thumb-list {
  display: flex;
  flex-wrap: wrap;
}

.shg-gallery-thumb-image {
  max-width: 100%;
  display: inline-block;
  cursor: pointer;
}

.shg-gallery-thumb-image:hover {
  opacity: 0.6;
}

.shg-gallery-thumb-image-square {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.shg-gallery-image-hidden {
  display: none;
}

.shg-gallery-scroll-button {
  position: absolute;
  width: 3%;
  max-width: 48px;
  max-height: 48px;
}

.left {
  left: 0;
  margin-left: 1%;
}

.right {
  right: 0;
  margin-right: 1%;
}

.shg-gallery-dot {
  height: 14px;
  width: 14px;
  opacity: 0.5;
  border-radius: 100%;
  margin: 0 8px;
}

.selected {
  opacity: 1;
}
#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e .shg-gallery-scroll-button {
  color: #FFF;
}

#s-293b7711-1c5b-49fe-b16c-0dbdd6f8b62e .shg-gallery-dot {
  background-color: #FFF;
}

#s-23b99d5c-2f92-4837-9380-1db4c5ce9708 {
  display: none;
}
#s-24d6a360-7816-402e-8676-0b8edc7d9ac6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-24d6a360-7816-402e-8676-0b8edc7d9ac6 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-e04fbe4d-88ab-487b-b5a8-4ed4139dc262 {
  display: none;
}
#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: left;
}



.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-774f1740-3fa1-41fb-ad82-44da2f5c9022 img.shogun-image {
  width: 100%;
}



}
#s-dd168304-5318-4225-a757-acd8868a366d {
  margin-top: 4px;
margin-bottom: 4px;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-dd168304-5318-4225-a757-acd8868a366d .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-dd168304-5318-4225-a757-acd8868a366d .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-dd168304-5318-4225-a757-acd8868a366d .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-dd168304-5318-4225-a757-acd8868a366d .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-dd168304-5318-4225-a757-acd8868a366d .shg-gallery-scroll-button {
  color: #FFF;
}

#s-dd168304-5318-4225-a757-acd8868a366d .shg-gallery-dot {
  background-color: #FFF;
}

#s-7866a099-61ce-4ffe-a95d-702e9d52031e {
  display: none;
}
#s-7b278081-3b89-4df9-bdee-d46df73a74d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b278081-3b89-4df9-bdee-d46df73a74d4 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 {
  text-align: left;
}



.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d1908af0-76ba-4622-a208-5a07ebfb49a2 img.shogun-image {
  width: 100%;
}



}
#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-0d4c396d-1917-43f1-8ac5-e22c4a970ff2 .shg-gallery-dot {
  background-color: #FFF;
}

#s-358112cf-49ef-4258-b859-cda8439f0cb8 {
  min-height: 50px;
}








#s-358112cf-49ef-4258-b859-cda8439f0cb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-358112cf-49ef-4258-b859-cda8439f0cb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3b198fb9-fe16-4cf3-ab2c-c9270fe00644"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b198fb9-fe16-4cf3-ab2c-c9270fe00644"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3b198fb9-fe16-4cf3-ab2c-c9270fe00644"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b198fb9-fe16-4cf3-ab2c-c9270fe00644"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-746706d8-71f0-4525-9600-20eca201cc76 {
  margin-top: 7px;
margin-bottom: 7px;
}

#s-d57d410f-9cfb-4375-88f3-dcc54916e762 {
  margin-top: 9px;
margin-bottom: 9px;
}

#s-b2f8f403-7b6e-4478-978c-9cda561be0df {
  margin-top: 9px;
margin-bottom: 9px;
}

@media (min-width: 0px) {
[id="s-848684f2-438d-4b60-b6f6-f0f43d167038"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-848684f2-438d-4b60-b6f6-f0f43d167038"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-848684f2-438d-4b60-b6f6-f0f43d167038"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-848684f2-438d-4b60-b6f6-f0f43d167038"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

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

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

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

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

#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9 {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9-btn-wrapper {
    text-align: center;
  }


#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9-btn-wrapper {
    text-align: center;
  }


#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9-btn-wrapper {
    text-align: center;
  }


#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9-btn-wrapper {
    text-align: center;
  }


#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9-btn-wrapper {
    text-align: center;
  }


#s-4aa20d37-b867-4bf7-9aee-3d4c8bd601e9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c05095ff-fe0d-45f2-a378-86a408189e54 {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c05095ff-fe0d-45f2-a378-86a408189e54:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c05095ff-fe0d-45f2-a378-86a408189e54:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c05095ff-fe0d-45f2-a378-86a408189e54-btn-wrapper {
    text-align: center;
  }


#s-c05095ff-fe0d-45f2-a378-86a408189e54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c05095ff-fe0d-45f2-a378-86a408189e54-btn-wrapper {
    text-align: center;
  }


#s-c05095ff-fe0d-45f2-a378-86a408189e54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c05095ff-fe0d-45f2-a378-86a408189e54-btn-wrapper {
    text-align: center;
  }


#s-c05095ff-fe0d-45f2-a378-86a408189e54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c05095ff-fe0d-45f2-a378-86a408189e54-btn-wrapper {
    text-align: center;
  }


#s-c05095ff-fe0d-45f2-a378-86a408189e54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c05095ff-fe0d-45f2-a378-86a408189e54-btn-wrapper {
    text-align: center;
  }


#s-c05095ff-fe0d-45f2-a378-86a408189e54.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a58152a5-d112-4c4c-a7e7-f17504dbe21d-btn-wrapper {
    text-align: center;
  }


#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a58152a5-d112-4c4c-a7e7-f17504dbe21d-btn-wrapper {
    text-align: center;
  }


#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a58152a5-d112-4c4c-a7e7-f17504dbe21d-btn-wrapper {
    text-align: center;
  }


#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a58152a5-d112-4c4c-a7e7-f17504dbe21d-btn-wrapper {
    text-align: center;
  }


#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a58152a5-d112-4c4c-a7e7-f17504dbe21d-btn-wrapper {
    text-align: center;
  }


#s-a58152a5-d112-4c4c-a7e7-f17504dbe21d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-615887c3-5fbc-4c2e-bec5-a93406d8a8fc {
  margin-top: 9px;
margin-bottom: 9px;
opacity: 1;
}

#s-615887c3-5fbc-4c2e-bec5-a93406d8a8fc hr {
  border-top: 2px solid rgba(250, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-b7bbfa24-65ec-4b5b-b820-2579b4d69cbe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b7bbfa24-65ec-4b5b-b820-2579b4d69cbe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b7bbfa24-65ec-4b5b-b820-2579b4d69cbe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b7bbfa24-65ec-4b5b-b820-2579b4d69cbe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-570020d2-0f4d-4a75-9bb4-54f879b15c06 {
  display: none;
}
#s-e5077d99-d768-495d-b013-55cc316aad11 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e5077d99-d768-495d-b013-55cc316aad11 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-e40b2c29-3b49-4eef-a6ad-341d932763af {
  text-align: left;
}



.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e40b2c29-3b49-4eef-a6ad-341d932763af img.shogun-image {
  width: 100%;
}



}
#s-227a430a-77d7-4225-a28a-926357427a04 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-227a430a-77d7-4225-a28a-926357427a04 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-227a430a-77d7-4225-a28a-926357427a04 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-227a430a-77d7-4225-a28a-926357427a04 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-227a430a-77d7-4225-a28a-926357427a04 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-227a430a-77d7-4225-a28a-926357427a04 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-227a430a-77d7-4225-a28a-926357427a04 .shg-gallery-dot {
  background-color: #FFF;
}

#s-2b76d5f1-b47a-4493-8470-ae4d369fa26c {
  margin-top: 9px;
margin-bottom: 9px;
}

#s-2d73fe2e-af26-4643-a9ee-3f09e11f355c {
  display: none;
}
#s-67e9f818-5f9c-41ca-85ae-c218f221aa8e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-67e9f818-5f9c-41ca-85ae-c218f221aa8e .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-25850294-1ba7-49b2-92f7-b02b431ddd12 {
  display: none;
}
#s-11ed4273-accc-47d2-85d2-afe1d0772944 {
  text-align: left;
}



.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4273-accc-47d2-85d2-afe1d0772944 img.shogun-image {
  width: 100%;
}



}
#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-ffc9865d-83e0-4a75-a8b1-f9e00f9ecef1 .shg-gallery-dot {
  background-color: #FFF;
}

#s-0b1f8a0f-9390-4c8d-8e8a-2264d51b07c6 {
  margin-top: 7px;
margin-bottom: 7px;
}

#s-50b3d557-399f-4b99-b789-3a36e76e00c4 {
  display: none;
}
#s-df26ec89-0f8a-4e40-88f2-163d4bb43763 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df26ec89-0f8a-4e40-88f2-163d4bb43763 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc {
  text-align: left;
}



.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7aaa4058-9e1a-4fe7-9104-52f09dac5adc img.shogun-image {
  width: 100%;
}



}
#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b .shg-gallery-scroll-button {
  color: #FFF;
}

#s-b4f03022-f959-4e67-9f02-2afdfcdfd93b .shg-gallery-dot {
  background-color: #FFF;
}

#s-f056e46d-a08c-49ed-854d-e6938cbfa8c7 {
  margin-top: 9px;
margin-bottom: 9px;
}

#s-4e92bf95-6056-45f9-8b2b-2bc07a0a4a76 {
  min-height: 50px;
}








#s-4e92bf95-6056-45f9-8b2b-2bc07a0a4a76 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e92bf95-6056-45f9-8b2b-2bc07a0a4a76.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-65252cb8-d647-4e5e-8f5a-8bfa25c8b5bd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65252cb8-d647-4e5e-8f5a-8bfa25c8b5bd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-65252cb8-d647-4e5e-8f5a-8bfa25c8b5bd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-65252cb8-d647-4e5e-8f5a-8bfa25c8b5bd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-77337bcd-d5c2-482e-8054-2cea935f9145 {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-77337bcd-d5c2-482e-8054-2cea935f9145:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-77337bcd-d5c2-482e-8054-2cea935f9145:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-77337bcd-d5c2-482e-8054-2cea935f9145-btn-wrapper {
    text-align: center;
  }


#s-77337bcd-d5c2-482e-8054-2cea935f9145.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-77337bcd-d5c2-482e-8054-2cea935f9145-btn-wrapper {
    text-align: center;
  }


#s-77337bcd-d5c2-482e-8054-2cea935f9145.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-77337bcd-d5c2-482e-8054-2cea935f9145-btn-wrapper {
    text-align: center;
  }


#s-77337bcd-d5c2-482e-8054-2cea935f9145.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-77337bcd-d5c2-482e-8054-2cea935f9145-btn-wrapper {
    text-align: center;
  }


#s-77337bcd-d5c2-482e-8054-2cea935f9145.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-77337bcd-d5c2-482e-8054-2cea935f9145-btn-wrapper {
    text-align: center;
  }


#s-77337bcd-d5c2-482e-8054-2cea935f9145.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-00d50dda-fa3c-4317-9255-519d5acec92f {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-00d50dda-fa3c-4317-9255-519d5acec92f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-00d50dda-fa3c-4317-9255-519d5acec92f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-00d50dda-fa3c-4317-9255-519d5acec92f-btn-wrapper {
    text-align: center;
  }


#s-00d50dda-fa3c-4317-9255-519d5acec92f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-00d50dda-fa3c-4317-9255-519d5acec92f-btn-wrapper {
    text-align: center;
  }


#s-00d50dda-fa3c-4317-9255-519d5acec92f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-00d50dda-fa3c-4317-9255-519d5acec92f-btn-wrapper {
    text-align: center;
  }


#s-00d50dda-fa3c-4317-9255-519d5acec92f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-00d50dda-fa3c-4317-9255-519d5acec92f-btn-wrapper {
    text-align: center;
  }


#s-00d50dda-fa3c-4317-9255-519d5acec92f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-00d50dda-fa3c-4317-9255-519d5acec92f-btn-wrapper {
    text-align: center;
  }


#s-00d50dda-fa3c-4317-9255-519d5acec92f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-35e0754a-33c8-4c0b-9967-0e2c28ba930c-btn-wrapper {
    text-align: center;
  }


#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-35e0754a-33c8-4c0b-9967-0e2c28ba930c-btn-wrapper {
    text-align: center;
  }


#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-35e0754a-33c8-4c0b-9967-0e2c28ba930c-btn-wrapper {
    text-align: center;
  }


#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-35e0754a-33c8-4c0b-9967-0e2c28ba930c-btn-wrapper {
    text-align: center;
  }


#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-35e0754a-33c8-4c0b-9967-0e2c28ba930c-btn-wrapper {
    text-align: center;
  }


#s-35e0754a-33c8-4c0b-9967-0e2c28ba930c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-7a9863d1-a11b-4a2a-8033-7a342c562961 {
  margin-top: 9px;
margin-bottom: 9px;
opacity: 1;
}

#s-7a9863d1-a11b-4a2a-8033-7a342c562961 hr {
  border-top: 2px solid rgba(250, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-10c2a349-9e8c-4392-a11e-cdf9ef236ba3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-10c2a349-9e8c-4392-a11e-cdf9ef236ba3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-10c2a349-9e8c-4392-a11e-cdf9ef236ba3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-10c2a349-9e8c-4392-a11e-cdf9ef236ba3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c9f44dcd-6e46-4855-841b-77712ce91c96 {
  display: none;
}
#s-77029613-7944-4295-b540-a03feab1b9f5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-77029613-7944-4295-b540-a03feab1b9f5 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-f601dc07-9a69-421b-a033-60f7037cc7da {
  display: none;
}
#s-54855159-9d55-48df-8903-d73215214aaf {
  text-align: left;
}



.shg-c#s-54855159-9d55-48df-8903-d73215214aaf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-54855159-9d55-48df-8903-d73215214aaf img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-54855159-9d55-48df-8903-d73215214aaf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-54855159-9d55-48df-8903-d73215214aaf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-54855159-9d55-48df-8903-d73215214aaf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-54855159-9d55-48df-8903-d73215214aaf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-54855159-9d55-48df-8903-d73215214aaf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-54855159-9d55-48df-8903-d73215214aaf img.shogun-image {
  width: 100%;
}



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

.shg-c#s-54855159-9d55-48df-8903-d73215214aaf .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-54855159-9d55-48df-8903-d73215214aaf img.shogun-image {
  width: 100%;
}



}
#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b .shg-gallery-scroll-button {
  color: #FFF;
}

#s-9dabe7d4-dbbf-4ab4-a013-bcc9be261c4b .shg-gallery-dot {
  background-color: #FFF;
}

#s-2e29b4a6-9532-43ee-8f1c-adabb8d1a83f {
  display: none;
}
#s-8ced4d21-38f3-4ded-ae19-784adbde196a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8ced4d21-38f3-4ded-ae19-784adbde196a .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-2b69fbac-8800-4627-904a-c44d6cb7327e {
  display: none;
}
#s-9e9be1aa-3730-43c4-b434-bf94bc553740 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: left;
}



.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9e9be1aa-3730-43c4-b434-bf94bc553740 img.shogun-image {
  width: 100%;
}



}
#s-00240edf-e798-4878-af49-8b69cdbd4b6d {
  margin-top: 4px;
margin-bottom: 4px;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-00240edf-e798-4878-af49-8b69cdbd4b6d .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-00240edf-e798-4878-af49-8b69cdbd4b6d .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-00240edf-e798-4878-af49-8b69cdbd4b6d .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-00240edf-e798-4878-af49-8b69cdbd4b6d .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-00240edf-e798-4878-af49-8b69cdbd4b6d .shg-gallery-scroll-button {
  color: #FFF;
}

#s-00240edf-e798-4878-af49-8b69cdbd4b6d .shg-gallery-dot {
  background-color: #FFF;
}

#s-08b430ef-e3bb-4b71-ba9c-288410178cb8 {
  display: none;
}
#s-265c9349-e863-4ab2-a2e6-30cb7da3d876 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-265c9349-e863-4ab2-a2e6-30cb7da3d876 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-b863c288-313b-44ec-b0a7-3a47775afcd7 {
  text-align: left;
}



.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b863c288-313b-44ec-b0a7-3a47775afcd7 img.shogun-image {
  width: 100%;
}



}
#s-1215ad1a-0976-4812-befb-607afc226dd8 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-1215ad1a-0976-4812-befb-607afc226dd8 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-1215ad1a-0976-4812-befb-607afc226dd8 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-1215ad1a-0976-4812-befb-607afc226dd8 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-1215ad1a-0976-4812-befb-607afc226dd8 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-1215ad1a-0976-4812-befb-607afc226dd8 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-1215ad1a-0976-4812-befb-607afc226dd8 .shg-gallery-dot {
  background-color: #FFF;
}

#s-4552b9ab-7e61-464c-8b83-6a2d46eb76f5 {
  min-height: 50px;
}








#s-4552b9ab-7e61-464c-8b83-6a2d46eb76f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4552b9ab-7e61-464c-8b83-6a2d46eb76f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-31a14fde-2243-4b29-b834-bcb341a80613 {
  min-height: 50px;
}








#s-31a14fde-2243-4b29-b834-bcb341a80613 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31a14fde-2243-4b29-b834-bcb341a80613.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-1e08827a-69b8-46b6-95bb-880b2fd9471c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e08827a-69b8-46b6-95bb-880b2fd9471c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1e08827a-69b8-46b6-95bb-880b2fd9471c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e08827a-69b8-46b6-95bb-880b2fd9471c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c3fc6249-ac37-4817-ad57-dbc2fa88fd09 {
  margin-top: 7px;
margin-bottom: 7px;
}

#s-68e9f7f2-501f-445a-b34e-0866b68334fe {
  margin-top: 7px;
margin-bottom: 7px;
}

#s-258fbf2b-2d38-41d7-bfbe-ed9c9b7944d5 {
  margin-top: 9px;
margin-bottom: 9px;
}

@media (min-width: 0px) {
[id="s-2eaa3b60-1518-4a9f-a724-214bb7a8b3cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2eaa3b60-1518-4a9f-a724-214bb7a8b3cd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2eaa3b60-1518-4a9f-a724-214bb7a8b3cd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2eaa3b60-1518-4a9f-a724-214bb7a8b3cd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e74b02af-d996-42df-8071-c87f099540bf {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e74b02af-d996-42df-8071-c87f099540bf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e74b02af-d996-42df-8071-c87f099540bf:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e74b02af-d996-42df-8071-c87f099540bf-btn-wrapper {
    text-align: center;
  }


#s-e74b02af-d996-42df-8071-c87f099540bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e74b02af-d996-42df-8071-c87f099540bf-btn-wrapper {
    text-align: center;
  }


#s-e74b02af-d996-42df-8071-c87f099540bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e74b02af-d996-42df-8071-c87f099540bf-btn-wrapper {
    text-align: center;
  }


#s-e74b02af-d996-42df-8071-c87f099540bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e74b02af-d996-42df-8071-c87f099540bf-btn-wrapper {
    text-align: center;
  }


#s-e74b02af-d996-42df-8071-c87f099540bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e74b02af-d996-42df-8071-c87f099540bf-btn-wrapper {
    text-align: center;
  }


#s-e74b02af-d996-42df-8071-c87f099540bf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ad9df8d4-0c35-4219-84fb-968ba06d255a {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ad9df8d4-0c35-4219-84fb-968ba06d255a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ad9df8d4-0c35-4219-84fb-968ba06d255a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ad9df8d4-0c35-4219-84fb-968ba06d255a-btn-wrapper {
    text-align: center;
  }


#s-ad9df8d4-0c35-4219-84fb-968ba06d255a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ad9df8d4-0c35-4219-84fb-968ba06d255a-btn-wrapper {
    text-align: center;
  }


#s-ad9df8d4-0c35-4219-84fb-968ba06d255a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ad9df8d4-0c35-4219-84fb-968ba06d255a-btn-wrapper {
    text-align: center;
  }


#s-ad9df8d4-0c35-4219-84fb-968ba06d255a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ad9df8d4-0c35-4219-84fb-968ba06d255a-btn-wrapper {
    text-align: center;
  }


#s-ad9df8d4-0c35-4219-84fb-968ba06d255a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ad9df8d4-0c35-4219-84fb-968ba06d255a-btn-wrapper {
    text-align: center;
  }


#s-ad9df8d4-0c35-4219-84fb-968ba06d255a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a58c5817-64eb-438a-aca6-f0ffad089a9f {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-a58c5817-64eb-438a-aca6-f0ffad089a9f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a58c5817-64eb-438a-aca6-f0ffad089a9f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a58c5817-64eb-438a-aca6-f0ffad089a9f-btn-wrapper {
    text-align: center;
  }


#s-a58c5817-64eb-438a-aca6-f0ffad089a9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a58c5817-64eb-438a-aca6-f0ffad089a9f-btn-wrapper {
    text-align: center;
  }


#s-a58c5817-64eb-438a-aca6-f0ffad089a9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a58c5817-64eb-438a-aca6-f0ffad089a9f-btn-wrapper {
    text-align: center;
  }


#s-a58c5817-64eb-438a-aca6-f0ffad089a9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a58c5817-64eb-438a-aca6-f0ffad089a9f-btn-wrapper {
    text-align: center;
  }


#s-a58c5817-64eb-438a-aca6-f0ffad089a9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a58c5817-64eb-438a-aca6-f0ffad089a9f-btn-wrapper {
    text-align: center;
  }


#s-a58c5817-64eb-438a-aca6-f0ffad089a9f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-d09ab2bc-4e2f-473a-8751-5a8ab9af0234 {
  margin-top: 9px;
margin-bottom: 9px;
opacity: 1;
}

#s-d09ab2bc-4e2f-473a-8751-5a8ab9af0234 hr {
  border-top: 2px solid rgba(250, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-dce86832-8912-49cc-bab6-9c44a487d79a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dce86832-8912-49cc-bab6-9c44a487d79a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-dce86832-8912-49cc-bab6-9c44a487d79a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-dce86832-8912-49cc-bab6-9c44a487d79a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-ad04fd3d-7a36-41fa-a102-5c12ae09539a {
  display: none;
}
#s-ad2b86ee-b780-4630-97cf-87926d9ccdba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad2b86ee-b780-4630-97cf-87926d9ccdba .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 {
  text-align: left;
}



.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-724e06e4-759b-46e7-bcac-5ccdf201d1d6 img.shogun-image {
  width: 100%;
}



}
#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa .shg-gallery-scroll-button {
  color: #FFF;
}

#s-f7a1706d-95d0-4cd7-96d0-8f5c2684e4fa .shg-gallery-dot {
  background-color: #FFF;
}

#s-0e79920f-7e68-410b-a470-541184319a48 {
  display: none;
}
#s-917f51e3-9c20-4dae-bac7-6d3ca1100e01 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-917f51e3-9c20-4dae-bac7-6d3ca1100e01 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-45058a05-3f1c-4aee-aa0a-814abee0f449 {
  display: none;
}
#s-3c09ea11-91a1-437f-802b-2786fba53b50 {
  margin-top: 0px;
margin-bottom: 0px;
text-align: left;
}



.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3c09ea11-91a1-437f-802b-2786fba53b50 img.shogun-image {
  width: 100%;
}



}
#s-6701722b-a408-4657-8e2c-8ffb50259907 {
  margin-top: 4px;
margin-bottom: 4px;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-6701722b-a408-4657-8e2c-8ffb50259907 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-6701722b-a408-4657-8e2c-8ffb50259907 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-6701722b-a408-4657-8e2c-8ffb50259907 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-6701722b-a408-4657-8e2c-8ffb50259907 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-6701722b-a408-4657-8e2c-8ffb50259907 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-6701722b-a408-4657-8e2c-8ffb50259907 .shg-gallery-dot {
  background-color: #FFF;
}

#s-043a6913-1bf9-46d8-ab7d-d1ea3fadbda4 {
  display: none;
}
#s-ff115937-8c95-4198-b6d6-c02885ea4c2f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff115937-8c95-4198-b6d6-c02885ea4c2f .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-74f673a1-c972-42d5-ba1d-889b69e268e0 {
  text-align: left;
}



.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-74f673a1-c972-42d5-ba1d-889b69e268e0 img.shogun-image {
  width: 100%;
}



}
#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e .shg-gallery-scroll-button {
  color: #FFF;
}

#s-5308c8c7-1164-4432-b0ec-5ea15cb0055e .shg-gallery-dot {
  background-color: #FFF;
}

@media (min-width: 0px) {
[id="s-93d45ff5-830f-4dbe-8ac7-0152d2c7e3f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-93d45ff5-830f-4dbe-8ac7-0152d2c7e3f1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-93d45ff5-830f-4dbe-8ac7-0152d2c7e3f1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-93d45ff5-830f-4dbe-8ac7-0152d2c7e3f1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-e00f2252-c31f-4923-b697-b050924bfb6f {
  margin-top: 9px;
margin-bottom: 9px;
}

#s-823c2e4a-38e0-4cf8-bf54-a960693ad063 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-e6a44d7d-2786-4bcf-a7ae-5d9a12383e0a {
  margin-top: 9px;
margin-bottom: 9px;
}

#s-d68da149-064a-4f9f-951b-044381707086 {
  min-height: 50px;
}








#s-d68da149-064a-4f9f-951b-044381707086 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d68da149-064a-4f9f-951b-044381707086.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-0207995d-9074-4d9d-886c-260c150cf6e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0207995d-9074-4d9d-886c-260c150cf6e6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0207995d-9074-4d9d-886c-260c150cf6e6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0207995d-9074-4d9d-886c-260c150cf6e6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49 {
  margin-top: 44px;
margin-bottom: 44px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5a3b2eb8-4b7d-42d0-a602-81e372757e49-btn-wrapper {
    text-align: center;
  }


#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5a3b2eb8-4b7d-42d0-a602-81e372757e49-btn-wrapper {
    text-align: center;
  }


#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5a3b2eb8-4b7d-42d0-a602-81e372757e49-btn-wrapper {
    text-align: center;
  }


#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5a3b2eb8-4b7d-42d0-a602-81e372757e49-btn-wrapper {
    text-align: center;
  }


#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5a3b2eb8-4b7d-42d0-a602-81e372757e49-btn-wrapper {
    text-align: center;
  }


#s-5a3b2eb8-4b7d-42d0-a602-81e372757e49.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-86b9077d-53a7-4674-8194-8a480aba9270 {
  margin-top: 44px;
margin-bottom: 44px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-86b9077d-53a7-4674-8194-8a480aba9270:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-86b9077d-53a7-4674-8194-8a480aba9270:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-86b9077d-53a7-4674-8194-8a480aba9270-btn-wrapper {
    text-align: center;
  }


#s-86b9077d-53a7-4674-8194-8a480aba9270.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-86b9077d-53a7-4674-8194-8a480aba9270-btn-wrapper {
    text-align: center;
  }


#s-86b9077d-53a7-4674-8194-8a480aba9270.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-86b9077d-53a7-4674-8194-8a480aba9270-btn-wrapper {
    text-align: center;
  }


#s-86b9077d-53a7-4674-8194-8a480aba9270.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-86b9077d-53a7-4674-8194-8a480aba9270-btn-wrapper {
    text-align: center;
  }


#s-86b9077d-53a7-4674-8194-8a480aba9270.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-86b9077d-53a7-4674-8194-8a480aba9270-btn-wrapper {
    text-align: center;
  }


#s-86b9077d-53a7-4674-8194-8a480aba9270.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713 {
  margin-top: 44px;
margin-bottom: 44px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713-btn-wrapper {
    text-align: center;
  }


#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713-btn-wrapper {
    text-align: center;
  }


#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713-btn-wrapper {
    text-align: center;
  }


#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713-btn-wrapper {
    text-align: center;
  }


#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713-btn-wrapper {
    text-align: center;
  }


#s-c44e0cc2-bcc4-4c9d-b6d6-88e59c29a713.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-b7718149-bbdf-483f-b206-02070152f202 {
  margin-top: 2px;
margin-bottom: 2px;
opacity: 1;
}

#s-b7718149-bbdf-483f-b206-02070152f202 hr {
  border-top: 2px solid rgba(250, 245, 245, 1);
}

#s-1ddfd8c2-0942-424b-b66a-5940a294abf5 {
  min-height: 50px;
}








#s-1ddfd8c2-0942-424b-b66a-5940a294abf5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ddfd8c2-0942-424b-b66a-5940a294abf5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-6b1f3891-92b7-4ead-8267-fa95978d67eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6b1f3891-92b7-4ead-8267-fa95978d67eb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6b1f3891-92b7-4ead-8267-fa95978d67eb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6b1f3891-92b7-4ead-8267-fa95978d67eb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3574f2e7-a279-4438-abff-c606bc728556 {
  display: none;
}
#s-57d4e70e-9b0d-4d8f-a017-bafb8642f558 {
  display: none;
}
#s-18bea4ad-f845-4c00-9aea-b18d3c771fb5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-18bea4ad-f845-4c00-9aea-b18d3c771fb5 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 {
  text-align: left;
}



.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8255729a-beb3-4948-a26e-1cadc1b2fc48 img.shogun-image {
  width: 100%;
}



}
#s-69d6f8cb-0550-4501-9d75-08f777b0160f {
  margin-top: 4px;
margin-bottom: 4px;
padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-69d6f8cb-0550-4501-9d75-08f777b0160f .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-69d6f8cb-0550-4501-9d75-08f777b0160f .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-69d6f8cb-0550-4501-9d75-08f777b0160f .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-69d6f8cb-0550-4501-9d75-08f777b0160f .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-69d6f8cb-0550-4501-9d75-08f777b0160f .shg-gallery-scroll-button {
  color: #FFF;
}

#s-69d6f8cb-0550-4501-9d75-08f777b0160f .shg-gallery-dot {
  background-color: #FFF;
}

#s-990be289-8950-43de-b054-263144a6b088 {
  margin-top: 9px;
margin-bottom: 9px;
}

#s-27fc8fdc-77cf-411e-88bb-7031aca4483e {
  display: none;
}
#s-b1b7336c-50fd-44ec-b977-5bf371f58568 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b1b7336c-50fd-44ec-b977-5bf371f58568 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 {
  text-align: left;
}



.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26bfbe55-77c2-4b7d-8ccb-cc23c5051639 img.shogun-image {
  width: 100%;
}



}
#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-9c326f8f-1acb-4839-9b3c-2f3fbab53088 .shg-gallery-dot {
  background-color: #FFF;
}

#s-b6027790-ceb9-4204-8b5b-6e01192188c5 {
  margin-top: 7px;
margin-bottom: 7px;
}

#s-148a2bec-77c1-4388-a5bb-76b23ed2d035 {
  display: none;
}
#s-808c1a33-7a43-44b4-8c11-1925c055a888 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-808c1a33-7a43-44b4-8c11-1925c055a888 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-c9550621-8aca-4825-9f3d-d632356a0145 {
  text-align: left;
}



.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c9550621-8aca-4825-9f3d-d632356a0145 img.shogun-image {
  width: 100%;
}



}
#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-ace572eb-6888-4661-b6b4-4cb51616c6b4 .shg-gallery-dot {
  background-color: #FFF;
}

@media (min-width: 0px) {
[id="s-64553cad-e379-4f92-8518-87cf990a7559"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64553cad-e379-4f92-8518-87cf990a7559"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-64553cad-e379-4f92-8518-87cf990a7559"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-64553cad-e379-4f92-8518-87cf990a7559"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5454a494-8565-4d0b-a4e7-def8bb80829d {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5454a494-8565-4d0b-a4e7-def8bb80829d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5454a494-8565-4d0b-a4e7-def8bb80829d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5454a494-8565-4d0b-a4e7-def8bb80829d-btn-wrapper {
    text-align: center;
  }


#s-5454a494-8565-4d0b-a4e7-def8bb80829d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5454a494-8565-4d0b-a4e7-def8bb80829d-btn-wrapper {
    text-align: center;
  }


#s-5454a494-8565-4d0b-a4e7-def8bb80829d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5454a494-8565-4d0b-a4e7-def8bb80829d-btn-wrapper {
    text-align: center;
  }


#s-5454a494-8565-4d0b-a4e7-def8bb80829d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5454a494-8565-4d0b-a4e7-def8bb80829d-btn-wrapper {
    text-align: center;
  }


#s-5454a494-8565-4d0b-a4e7-def8bb80829d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5454a494-8565-4d0b-a4e7-def8bb80829d-btn-wrapper {
    text-align: center;
  }


#s-5454a494-8565-4d0b-a4e7-def8bb80829d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b {
  margin-top: 44px;
margin-bottom: 44px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b-btn-wrapper {
    text-align: center;
  }


#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b-btn-wrapper {
    text-align: center;
  }


#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b-btn-wrapper {
    text-align: center;
  }


#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b-btn-wrapper {
    text-align: center;
  }


#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b-btn-wrapper {
    text-align: center;
  }


#s-7a00f0fa-1fa3-4707-9b5b-a8ca99b3153b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367 {
  margin-top: 44px;
margin-bottom: 44px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2d9ad688-d103-4ca9-98fb-ae7d370ab367-btn-wrapper {
    text-align: center;
  }


#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2d9ad688-d103-4ca9-98fb-ae7d370ab367-btn-wrapper {
    text-align: center;
  }


#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2d9ad688-d103-4ca9-98fb-ae7d370ab367-btn-wrapper {
    text-align: center;
  }


#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2d9ad688-d103-4ca9-98fb-ae7d370ab367-btn-wrapper {
    text-align: center;
  }


#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2d9ad688-d103-4ca9-98fb-ae7d370ab367-btn-wrapper {
    text-align: center;
  }


#s-2d9ad688-d103-4ca9-98fb-ae7d370ab367.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-805b32b4-6601-481e-a27c-dabd02d7b4db {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-805b32b4-6601-481e-a27c-dabd02d7b4db hr {
  border-top: 1px solid #ddd;
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

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

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

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

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.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-76768348-86d5-4272-b32d-22009a472fe4 {
  text-align: center;
}







  img.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
    
    
  }


.s-76768348-86d5-4272-b32d-22009a472fe4 .shogun-image-content {
  
    align-items: center;
  
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shg-align-container {
  text-align: center
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
    
    
  }


.s-76768348-86d5-4272-b32d-22009a472fe4 .shogun-image-content {
  
    align-items: center;
  
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shg-align-container {
  text-align: center
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
    
    
  }


.s-76768348-86d5-4272-b32d-22009a472fe4 .shogun-image-content {
  
    align-items: center;
  
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shg-align-container {
  text-align: center
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
    
    
  }


.s-76768348-86d5-4272-b32d-22009a472fe4 .shogun-image-content {
  
    align-items: center;
  
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shg-align-container {
  text-align: center
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
  box-sizing: border-box;
}


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





  img.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
    
    
  }


.s-76768348-86d5-4272-b32d-22009a472fe4 .shogun-image-content {
  
    align-items: center;
  
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shg-align-container {
  text-align: center
}

.s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76768348-86d5-4272-b32d-22009a472fe4.shogun-image {
  box-sizing: border-box;
}


}
#s-f6f4761d-5178-480b-8a12-24872f412a90 {
  margin-top: -10px;
margin-bottom: -10px;
}

#s-f6f4761d-5178-480b-8a12-24872f412a90 hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-250e1af7-55db-45af-bdb6-ade4ca782d20"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-250e1af7-55db-45af-bdb6-ade4ca782d20"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-250e1af7-55db-45af-bdb6-ade4ca782d20"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-250e1af7-55db-45af-bdb6-ade4ca782d20"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-01fba8ac-2509-42b0-a8b0-6b8e3ddc2296 {
  display: none;
}
#s-55d82b95-a465-475b-b4b5-3f424cf12c47 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55d82b95-a465-475b-b4b5-3f424cf12c47 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-76cc7023-2e1b-45fd-b862-eac766c7ed41 {
  display: none;
}
#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb {
  text-align: left;
}



.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7d5e9b4c-0cb4-4e68-82d1-e96ede1b16bb img.shogun-image {
  width: 100%;
}



}
#s-c27953e8-c85c-4512-9888-383e4a1177a7 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-c27953e8-c85c-4512-9888-383e4a1177a7 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-c27953e8-c85c-4512-9888-383e4a1177a7 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-c27953e8-c85c-4512-9888-383e4a1177a7 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-c27953e8-c85c-4512-9888-383e4a1177a7 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-c27953e8-c85c-4512-9888-383e4a1177a7 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-c27953e8-c85c-4512-9888-383e4a1177a7 .shg-gallery-dot {
  background-color: #FFF;
}

#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c-btn-wrapper {
    text-align: center;
  }


#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c-btn-wrapper {
    text-align: center;
  }


#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c-btn-wrapper {
    text-align: center;
  }


#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c-btn-wrapper {
    text-align: center;
  }


#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c-btn-wrapper {
    text-align: center;
  }


#s-6bb6a3f2-62d7-454e-ae8f-f32ecb0e993c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-de67a5b6-8a78-4350-b25d-31206afcbcb7 {
  display: none;
}
#s-ff64784b-d7d8-4628-926a-7fc6e03ea2d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ff64784b-d7d8-4628-926a-7fc6e03ea2d3 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-affece56-bcc9-490b-8215-7edd770faa24 {
  text-align: left;
}



.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-affece56-bcc9-490b-8215-7edd770faa24 img.shogun-image {
  width: 100%;
}



}
#s-546860cb-2337-45b3-bd42-617288a51e88 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-546860cb-2337-45b3-bd42-617288a51e88 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-546860cb-2337-45b3-bd42-617288a51e88 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-546860cb-2337-45b3-bd42-617288a51e88 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-546860cb-2337-45b3-bd42-617288a51e88 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-546860cb-2337-45b3-bd42-617288a51e88 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-546860cb-2337-45b3-bd42-617288a51e88 .shg-gallery-dot {
  background-color: #FFF;
}

#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-5014d8c6-e8f7-4c09-9707-62bea6b864e4-btn-wrapper {
    text-align: center;
  }


#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5014d8c6-e8f7-4c09-9707-62bea6b864e4-btn-wrapper {
    text-align: center;
  }


#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5014d8c6-e8f7-4c09-9707-62bea6b864e4-btn-wrapper {
    text-align: center;
  }


#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5014d8c6-e8f7-4c09-9707-62bea6b864e4-btn-wrapper {
    text-align: center;
  }


#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5014d8c6-e8f7-4c09-9707-62bea6b864e4-btn-wrapper {
    text-align: center;
  }


#s-5014d8c6-e8f7-4c09-9707-62bea6b864e4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-df1603ba-e5e2-4b74-a19f-521c12c09a7b {
  display: none;
}
#s-a6c8adf4-2a23-4a31-8355-2205c01a7e37 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a6c8adf4-2a23-4a31-8355-2205c01a7e37 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-4e5d89cf-6957-4086-ad82-3609dffb621e {
  text-align: left;
}



.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4e5d89cf-6957-4086-ad82-3609dffb621e img.shogun-image {
  width: 100%;
}



}
#s-aefa9051-329a-48c3-a9a7-b917c5051c21 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-aefa9051-329a-48c3-a9a7-b917c5051c21 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-aefa9051-329a-48c3-a9a7-b917c5051c21 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-aefa9051-329a-48c3-a9a7-b917c5051c21 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-aefa9051-329a-48c3-a9a7-b917c5051c21 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-aefa9051-329a-48c3-a9a7-b917c5051c21 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-aefa9051-329a-48c3-a9a7-b917c5051c21 .shg-gallery-dot {
  background-color: #FFF;
}

#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2-btn-wrapper {
    text-align: center;
  }


#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2-btn-wrapper {
    text-align: center;
  }


#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2-btn-wrapper {
    text-align: center;
  }


#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2-btn-wrapper {
    text-align: center;
  }


#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2-btn-wrapper {
    text-align: center;
  }


#s-e17f68fe-8db0-45c4-8cb2-c98dd44cbff2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-90c55e59-f8e9-4664-a48c-ad2416b41295 {
  min-height: 50px;
}








#s-90c55e59-f8e9-4664-a48c-ad2416b41295 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90c55e59-f8e9-4664-a48c-ad2416b41295.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f287055d-dee5-47f9-a1c1-40899d312d7a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f287055d-dee5-47f9-a1c1-40899d312d7a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f287055d-dee5-47f9-a1c1-40899d312d7a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f287055d-dee5-47f9-a1c1-40899d312d7a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc {
  text-align: center;
}







  img.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
    
    
  }


.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc .shogun-image-content {
  
    align-items: center;
  
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shg-align-container {
  text-align: center
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
    
    
  }


.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc .shogun-image-content {
  
    align-items: center;
  
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shg-align-container {
  text-align: center
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
    
    
  }


.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc .shogun-image-content {
  
    align-items: center;
  
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shg-align-container {
  text-align: center
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
    
    
  }


.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc .shogun-image-content {
  
    align-items: center;
  
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shg-align-container {
  text-align: center
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
  box-sizing: border-box;
}


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





  img.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
    
    
  }


.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc .shogun-image-content {
  
    align-items: center;
  
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shg-align-container {
  text-align: center
}

.s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c588e4c-9bb6-40cc-b09b-08f9f8da4fdc.shogun-image {
  box-sizing: border-box;
}


}
#s-8dbc5b31-8792-463c-bb6b-e999d110b7b8 {
  display: none;
}
#s-e9647d4b-6591-4145-a55c-9240218a5ca4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e9647d4b-6591-4145-a55c-9240218a5ca4 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-567cd940-94c1-4543-bc72-2cc962f769a0 {
  text-align: left;
}



.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-567cd940-94c1-4543-bc72-2cc962f769a0 img.shogun-image {
  width: 100%;
}



}
#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-010f3f08-2a50-4b98-9f82-df3aa1978d98 .shg-gallery-dot {
  background-color: #FFF;
}

#s-436f4e64-2e4a-480d-91f3-60e819cee038 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-436f4e64-2e4a-480d-91f3-60e819cee038:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-436f4e64-2e4a-480d-91f3-60e819cee038:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-436f4e64-2e4a-480d-91f3-60e819cee038-btn-wrapper {
    text-align: center;
  }


#s-436f4e64-2e4a-480d-91f3-60e819cee038.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-436f4e64-2e4a-480d-91f3-60e819cee038-btn-wrapper {
    text-align: center;
  }


#s-436f4e64-2e4a-480d-91f3-60e819cee038.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-436f4e64-2e4a-480d-91f3-60e819cee038-btn-wrapper {
    text-align: center;
  }


#s-436f4e64-2e4a-480d-91f3-60e819cee038.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-436f4e64-2e4a-480d-91f3-60e819cee038-btn-wrapper {
    text-align: center;
  }


#s-436f4e64-2e4a-480d-91f3-60e819cee038.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-436f4e64-2e4a-480d-91f3-60e819cee038-btn-wrapper {
    text-align: center;
  }


#s-436f4e64-2e4a-480d-91f3-60e819cee038.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c0679956-0931-4c70-9eae-c590314c383d {
  text-align: center;
}







  img.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
    
    
  }


.s-c0679956-0931-4c70-9eae-c590314c383d .shogun-image-content {
  
    align-items: center;
  
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shg-align-container {
  text-align: center
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
    
    
  }


.s-c0679956-0931-4c70-9eae-c590314c383d .shogun-image-content {
  
    align-items: center;
  
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shg-align-container {
  text-align: center
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
    
    
  }


.s-c0679956-0931-4c70-9eae-c590314c383d .shogun-image-content {
  
    align-items: center;
  
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shg-align-container {
  text-align: center
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
    
    
  }


.s-c0679956-0931-4c70-9eae-c590314c383d .shogun-image-content {
  
    align-items: center;
  
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shg-align-container {
  text-align: center
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
  box-sizing: border-box;
}


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





  img.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
    
    
  }


.s-c0679956-0931-4c70-9eae-c590314c383d .shogun-image-content {
  
    align-items: center;
  
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shg-align-container {
  text-align: center
}

.s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c0679956-0931-4c70-9eae-c590314c383d.shogun-image {
  box-sizing: border-box;
}


}
#s-b2a3b5db-4616-4063-a13d-4fde806b71ff {
  margin-top: 9px;
margin-bottom: 9px;
opacity: 1;
}

#s-b2a3b5db-4616-4063-a13d-4fde806b71ff hr {
  border-top: 2px solid rgba(250, 245, 245, 1);
}

#s-a0faf707-2bfc-4ca1-af07-eeb672060e3e {
  min-height: 50px;
}








#s-a0faf707-2bfc-4ca1-af07-eeb672060e3e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0faf707-2bfc-4ca1-af07-eeb672060e3e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-bf89bcf4-de39-41ef-843f-184171a12a8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf89bcf4-de39-41ef-843f-184171a12a8c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bf89bcf4-de39-41ef-843f-184171a12a8c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf89bcf4-de39-41ef-843f-184171a12a8c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-0bebb166-8184-4abf-8465-25fe1a16fb47 {
  display: none;
}
#s-c7bd0a0d-00b0-4737-bf1f-c8a654953749 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c7bd0a0d-00b0-4737-bf1f-c8a654953749 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 {
  text-align: left;
}



.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-30f1250e-b97d-432a-91f7-4e06ed6f7cb6 img.shogun-image {
  width: 100%;
}



}
#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c .shg-gallery-scroll-button {
  color: #FFF;
}

#s-93568ff7-5b81-49ad-a8b9-092c26b7ee7c .shg-gallery-dot {
  background-color: #FFF;
}

#s-0440a03b-3416-40b7-92ae-43fc1dffe15d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-0440a03b-3416-40b7-92ae-43fc1dffe15d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0440a03b-3416-40b7-92ae-43fc1dffe15d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0440a03b-3416-40b7-92ae-43fc1dffe15d-btn-wrapper {
    text-align: center;
  }


#s-0440a03b-3416-40b7-92ae-43fc1dffe15d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0440a03b-3416-40b7-92ae-43fc1dffe15d-btn-wrapper {
    text-align: center;
  }


#s-0440a03b-3416-40b7-92ae-43fc1dffe15d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0440a03b-3416-40b7-92ae-43fc1dffe15d-btn-wrapper {
    text-align: center;
  }


#s-0440a03b-3416-40b7-92ae-43fc1dffe15d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0440a03b-3416-40b7-92ae-43fc1dffe15d-btn-wrapper {
    text-align: center;
  }


#s-0440a03b-3416-40b7-92ae-43fc1dffe15d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0440a03b-3416-40b7-92ae-43fc1dffe15d-btn-wrapper {
    text-align: center;
  }


#s-0440a03b-3416-40b7-92ae-43fc1dffe15d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-9b3330c9-fdb1-486d-80c4-613a5f6ca374 {
  display: none;
}
#s-a3f14a3f-8a6d-4841-8595-722240d4cc92 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a3f14a3f-8a6d-4841-8595-722240d4cc92 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 {
  text-align: left;
}



.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f2d78320-0d52-4d7f-afa3-a9c86ecd90c2 img.shogun-image {
  width: 100%;
}



}
#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-4ecfadb3-0c8b-4c92-a00e-ac767953ef18 .shg-gallery-dot {
  background-color: #FFF;
}

#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c1361ba4-3026-49e2-a4d8-c5ff3724650b-btn-wrapper {
    text-align: center;
  }


#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c1361ba4-3026-49e2-a4d8-c5ff3724650b-btn-wrapper {
    text-align: center;
  }


#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c1361ba4-3026-49e2-a4d8-c5ff3724650b-btn-wrapper {
    text-align: center;
  }


#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c1361ba4-3026-49e2-a4d8-c5ff3724650b-btn-wrapper {
    text-align: center;
  }


#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c1361ba4-3026-49e2-a4d8-c5ff3724650b-btn-wrapper {
    text-align: center;
  }


#s-c1361ba4-3026-49e2-a4d8-c5ff3724650b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8b9c2575-a2d9-47ab-bddd-7f5124ed8615 {
  display: none;
}
#s-54afa88b-874c-47aa-a198-23fad1a31eb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-54afa88b-874c-47aa-a198-23fad1a31eb2 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-02f36b1a-7794-49e2-9599-162b025fcabe {
  text-align: left;
}



.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02f36b1a-7794-49e2-9599-162b025fcabe img.shogun-image {
  width: 100%;
}



}
#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b .shg-gallery-scroll-button {
  color: #FFF;
}

#s-d4a73bfa-fffe-4927-8c3f-d8951dce266b .shg-gallery-dot {
  background-color: #FFF;
}

#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f-btn-wrapper {
    text-align: center;
  }


#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f-btn-wrapper {
    text-align: center;
  }


#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f-btn-wrapper {
    text-align: center;
  }


#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f-btn-wrapper {
    text-align: center;
  }


#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f-btn-wrapper {
    text-align: center;
  }


#s-ef9d703e-f9a5-4769-ad06-efbe4ca7076f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-8aee2130-285c-4e51-8b00-eaac4a5ce152 {
  margin-top: 9px;
margin-bottom: 9px;
opacity: 1;
}

#s-8aee2130-285c-4e51-8b00-eaac4a5ce152 hr {
  border-top: 2px solid rgba(250, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-1496cc3f-0b28-42fa-ad84-80d7bbc017a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1496cc3f-0b28-42fa-ad84-80d7bbc017a8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1496cc3f-0b28-42fa-ad84-80d7bbc017a8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1496cc3f-0b28-42fa-ad84-80d7bbc017a8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-57e94a0c-8175-4f27-afcb-c94d35e15e4b {
  display: none;
}
#s-b7b0465b-0d11-46d3-82a1-80c0e5a46ba6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b7b0465b-0d11-46d3-82a1-80c0e5a46ba6 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-ce0ac405-cbea-429f-9f3d-c5966c20390a {
  text-align: left;
}



.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ce0ac405-cbea-429f-9f3d-c5966c20390a img.shogun-image {
  width: 100%;
}



}
#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-1e947e8c-b020-45c4-94ed-d8f7a026eb98 .shg-gallery-dot {
  background-color: #FFF;
}

#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7-btn-wrapper {
    text-align: center;
  }


#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7-btn-wrapper {
    text-align: center;
  }


#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7-btn-wrapper {
    text-align: center;
  }


#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7-btn-wrapper {
    text-align: center;
  }


#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7-btn-wrapper {
    text-align: center;
  }


#s-bd6ae16c-9f22-4186-83fa-7d28ff8311c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e9d92eb1-a94a-4435-a749-38630b08109c {
  display: none;
}
#s-95bd79dd-7d5d-4f6b-828a-665d927906d2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-95bd79dd-7d5d-4f6b-828a-665d927906d2 .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-390cfcff-bc03-4249-a584-43cb3497ef8c {
  text-align: left;
}



.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-390cfcff-bc03-4249-a584-43cb3497ef8c img.shogun-image {
  width: 100%;
}



}
#s-b3541127-fd80-4c03-af61-dc5d90a5212a {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-b3541127-fd80-4c03-af61-dc5d90a5212a .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-b3541127-fd80-4c03-af61-dc5d90a5212a .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-b3541127-fd80-4c03-af61-dc5d90a5212a .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-b3541127-fd80-4c03-af61-dc5d90a5212a .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-b3541127-fd80-4c03-af61-dc5d90a5212a .shg-gallery-scroll-button {
  color: #FFF;
}

#s-b3541127-fd80-4c03-af61-dc5d90a5212a .shg-gallery-dot {
  background-color: #FFF;
}

#s-106492cc-91e2-4e28-9b19-47aa7d948ef4 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-106492cc-91e2-4e28-9b19-47aa7d948ef4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-106492cc-91e2-4e28-9b19-47aa7d948ef4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-106492cc-91e2-4e28-9b19-47aa7d948ef4-btn-wrapper {
    text-align: center;
  }


#s-106492cc-91e2-4e28-9b19-47aa7d948ef4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-106492cc-91e2-4e28-9b19-47aa7d948ef4-btn-wrapper {
    text-align: center;
  }


#s-106492cc-91e2-4e28-9b19-47aa7d948ef4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-106492cc-91e2-4e28-9b19-47aa7d948ef4-btn-wrapper {
    text-align: center;
  }


#s-106492cc-91e2-4e28-9b19-47aa7d948ef4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-106492cc-91e2-4e28-9b19-47aa7d948ef4-btn-wrapper {
    text-align: center;
  }


#s-106492cc-91e2-4e28-9b19-47aa7d948ef4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-106492cc-91e2-4e28-9b19-47aa7d948ef4-btn-wrapper {
    text-align: center;
  }


#s-106492cc-91e2-4e28-9b19-47aa7d948ef4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-956736bb-9dd2-416d-baea-eedeab74d0d4 {
  display: none;
}
#s-b61e691f-c9e1-4f1d-b47e-a4d31525270a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b61e691f-c9e1-4f1d-b47e-a4d31525270a .shg-product-title-component h1 {
  color: rgba(102, 96, 96, 0.87);
  font-weight:   ;
  font-family: Raleway;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
}

#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e {
  text-align: left;
}



.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ff3fb57b-7c66-4552-adf3-24e011f9ec3e img.shogun-image {
  width: 100%;
}



}
#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: left;
}

#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 .shg-gallery-thumb-image-wrapper {
  

  flex-basis: 25.0%;
  padding-right: 10px;
  padding-bottom: 10px;
}

#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 .shg-gallery-dots-container {
  
    margin-top: -22px;
    padding-bottom: 8px;
  
}

#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 .shg-gallery-thumb-list-margin {
  margin-right: -10px;
}

#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 .shg-gallery-scroll-container {
  
    width: 100%;
  
}

#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 .shg-gallery-scroll-button {
  color: #FFF;
}

#s-58b5cdd2-1f21-44ad-8cb0-8a4501050d43 .shg-gallery-dot {
  background-color: #FFF;
}

#s-0e80659e-3391-440c-8b64-2db0ec44a7e7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(246, 192, 180, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-0e80659e-3391-440c-8b64-2db0ec44a7e7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0e80659e-3391-440c-8b64-2db0ec44a7e7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0e80659e-3391-440c-8b64-2db0ec44a7e7-btn-wrapper {
    text-align: center;
  }


#s-0e80659e-3391-440c-8b64-2db0ec44a7e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0e80659e-3391-440c-8b64-2db0ec44a7e7-btn-wrapper {
    text-align: center;
  }


#s-0e80659e-3391-440c-8b64-2db0ec44a7e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0e80659e-3391-440c-8b64-2db0ec44a7e7-btn-wrapper {
    text-align: center;
  }


#s-0e80659e-3391-440c-8b64-2db0ec44a7e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0e80659e-3391-440c-8b64-2db0ec44a7e7-btn-wrapper {
    text-align: center;
  }


#s-0e80659e-3391-440c-8b64-2db0ec44a7e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0e80659e-3391-440c-8b64-2db0ec44a7e7-btn-wrapper {
    text-align: center;
  }


#s-0e80659e-3391-440c-8b64-2db0ec44a7e7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-ea54a4db-847a-4904-aa8a-937337183618 {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-ea54a4db-847a-4904-aa8a-937337183618 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ea54a4db-847a-4904-aa8a-937337183618 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ea54a4db-847a-4904-aa8a-937337183618 {
  
}
}@media (max-width: 767px){#s-ea54a4db-847a-4904-aa8a-937337183618 {
  
}
}







#s-ea54a4db-847a-4904-aa8a-937337183618 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea54a4db-847a-4904-aa8a-937337183618.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-39c04868-c4c4-4b2d-9925-b69708804772 {
  margin-top: 50px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-39c04868-c4c4-4b2d-9925-b69708804772 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-39c04868-c4c4-4b2d-9925-b69708804772 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-39c04868-c4c4-4b2d-9925-b69708804772 {
  
}
}@media (max-width: 767px){#s-39c04868-c4c4-4b2d-9925-b69708804772 {
  
}
}
@media (min-width: 0px) {
[id="s-39c04868-c4c4-4b2d-9925-b69708804772"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-39c04868-c4c4-4b2d-9925-b69708804772"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-39c04868-c4c4-4b2d-9925-b69708804772"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-39c04868-c4c4-4b2d-9925-b69708804772"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

#s-63cd26da-d3cd-4719-afd3-5dc0669b5d2a {
  border-style: solid;
margin-bottom: 25px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-63cd26da-d3cd-4719-afd3-5dc0669b5d2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63cd26da-d3cd-4719-afd3-5dc0669b5d2a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cc02fd29-ec12-4c8e-9ac1-6a9fff77b3a2 {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-cc02fd29-ec12-4c8e-9ac1-6a9fff77b3a2 .shogun-icon-wrapper {
  text-align: center;
}


#s-cc02fd29-ec12-4c8e-9ac1-6a9fff77b3a2 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(234, 186, 174, 1);
}

#s-1bfd4d5a-1af1-43ea-be1d-8c7ba8de5e1e {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-1bfd4d5a-1af1-43ea-be1d-8c7ba8de5e1e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1bfd4d5a-1af1-43ea-be1d-8c7ba8de5e1e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1bfd4d5a-1af1-43ea-be1d-8c7ba8de5e1e {
  
}
}@media (max-width: 767px){#s-1bfd4d5a-1af1-43ea-be1d-8c7ba8de5e1e {
  
}
}
#s-8e536a1b-a92e-4c76-a507-fffbfbe5b784 {
  border-style: solid;
margin-bottom: 25px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8e536a1b-a92e-4c76-a507-fffbfbe5b784 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e536a1b-a92e-4c76-a507-fffbfbe5b784.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-21b9e24e-3dd8-4d03-b4d5-639f6f3080d2 {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-21b9e24e-3dd8-4d03-b4d5-639f6f3080d2 .shogun-icon-wrapper {
  text-align: center;
}


#s-21b9e24e-3dd8-4d03-b4d5-639f6f3080d2 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(234, 186, 174, 1);
}

#s-dedc4602-cc87-41e1-b054-173670dab476 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-dedc4602-cc87-41e1-b054-173670dab476 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dedc4602-cc87-41e1-b054-173670dab476 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-dedc4602-cc87-41e1-b054-173670dab476 {
  
}
}@media (max-width: 767px){#s-dedc4602-cc87-41e1-b054-173670dab476 {
  
}
}
#s-2d5c9ca4-8fca-4362-b452-9b50b9ee9623 {
  border-style: solid;
margin-bottom: 25px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2d5c9ca4-8fca-4362-b452-9b50b9ee9623 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d5c9ca4-8fca-4362-b452-9b50b9ee9623.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-eeeaa040-7b7e-4a42-b5a1-b8be0b99a454 {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-eeeaa040-7b7e-4a42-b5a1-b8be0b99a454 .shogun-icon-wrapper {
  text-align: center;
}


#s-eeeaa040-7b7e-4a42-b5a1-b8be0b99a454 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(234, 186, 174, 1);
}

#s-9dc752aa-4aa5-493c-abf5-b97834ac6c08 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-9dc752aa-4aa5-493c-abf5-b97834ac6c08 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9dc752aa-4aa5-493c-abf5-b97834ac6c08 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9dc752aa-4aa5-493c-abf5-b97834ac6c08 {
  
}
}@media (max-width: 767px){#s-9dc752aa-4aa5-493c-abf5-b97834ac6c08 {
  
}
}
#s-2bee2e8c-d438-46a6-8eca-494dc6fd2082 hr {
  border-top: 2px solid #ddd;
}

#s-beebec52-0b7f-4b92-8c62-0914c25d9321 {
  text-align: center;
}







  #s-beebec52-0b7f-4b92-8c62-0914c25d9321 img.shogun-image {
    

    
    
    
  }


#s-beebec52-0b7f-4b92-8c62-0914c25d9321 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e0e0e00-8ec4-42ac-8f26-783cccca03b5 hr {
  border-top: 2px solid #ddd;
}

.shg-ig-x {
  overflow-x: hidden;
}

.shg-ig-posts-container {
  display: flex;
  flex-wrap: wrap;
}

.shg-ig-posts {
  box-sizing: border-box;
  height: 100%;
}

.shg-ig-posts-link {
  text-decoration: none;
}

.shg-ig-posts-image {
  max-height: 100%;
  width: 100%;
  display: block;
  aspect-ratio: inherit;
}

.shg-ig-posts-image-square {
  aspect-ratio: 1/1;
  object-fit: cover;
  max-height: 100%;
  width: 100%;
}

.shg-ig-square-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

.shg-ig-posts-caption {
  width: 100%;
  font-size: 12px;
  word-wrap: break-word;
  hyphens: auto;
  text-align: left;
}

.shg-ig-details-container {
  padding-top: 9px;
  border-top: 1px solid #ddd;
}

.shg-ig-user-details {
  display: flex;
  flex-direction: row;
}

.shg-ig-user-image {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}

.shg-ig-username-container {
  display: flex;
  flex-direction: column;
}

.shg-ig-user-full-name {
  margin-bottom: 3px !important;
  font-family: Arial, serif;
  color: #b3b3b3;
  font-size: 12px;
}

.shg-ig-user-createdat {
  margin-bottom: 0 !important;
  font-family: Arial, serif;
  color: #b3b3b3;
  font-size: 12px;
}

@supports not (aspect-ratio: 1/1) {
  .shg-ig-square-wrapper {
    padding: calc((1 / (1 / 1)) * 100%) 0 0;
    position: relative;
  }

  .shg-ig-square-wrapper > .shg-ig-posts-image-square {
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    height: 100%;
  }
}

@media (min-width: 768px) {
  [id="s-84c619e5-32c6-4240-8538-d3da8ccb965f"] .shg-ig-posts-container > .shg-ig-posts {
    width: 33.333333333333336%;
    padding-right: 30px;
  }

  .shg-ig-posts-container {
    width: calc(100% + 30px) !important;
  }
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
