.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-38a501ec-ce81-405f-98b4-17175c1a6fea {
  background-size: cover;
background-position: center center;
background-color: rgba(0, 0, 0, 1);
}








#s-38a501ec-ce81-405f-98b4-17175c1a6fea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-38a501ec-ce81-405f-98b4-17175c1a6fea.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-1ae2c5e3-1d50-41d3-be5a-be4a6416b1ce {
  min-height: 400px;
text-align: center;
}
@media (max-width: 767px){#s-1ae2c5e3-1d50-41d3-be5a-be4a6416b1ce {
  display: none;
}
#s-1ae2c5e3-1d50-41d3-be5a-be4a6416b1ce, #wrap-s-1ae2c5e3-1d50-41d3-be5a-be4a6416b1ce { display: none !important; }}






  #s-1ae2c5e3-1d50-41d3-be5a-be4a6416b1ce img.shogun-image {
    

    
    
    
  }


#s-1ae2c5e3-1d50-41d3-be5a-be4a6416b1ce .shogun-image-content {
  
    align-items: center;
  
}

#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 {
  min-height: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 {
  display: none;
}
#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9, #wrap-s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 {
  display: none;
}
#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9, #wrap-s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 {
  display: none;
}
#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9, #wrap-s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 { display: none !important; }}






  #s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 img.shogun-image {
    

    
    
    
  }


#s-d8b9bdf7-6770-40b6-9fc8-86f87d22cbf9 .shogun-image-content {
  
    align-items: center;
  
}

#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  padding-top: 30px;
padding-left: 5%;
padding-bottom: 30px;
padding-right: 5%;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86d6f39c-5b09-4b51-9f92-3f8690f9fd7d.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;
}

#s-591d4569-2893-4f6c-9f2d-9d8682cab062 {
  padding-bottom: 40px;
}

@media (min-width: 0px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-591d4569-2893-4f6c-9f2d-9d8682cab062"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-2fe59ba3-1840-4237-bb9d-906063ea24e5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2fe59ba3-1840-4237-bb9d-906063ea24e5 .shogun-heading-component h3 {
  color: rgba(243, 243, 243, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}



.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-698cf57d-4114-46e3-b91f-723915ce312c {
  margin-bottom: 15px;
padding-top: 18px;
padding-left: 45px;
padding-bottom: 18px;
padding-right: 45px;
border-radius: 2px;
background-color: rgba(238, 50, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-698cf57d-4114-46e3-b91f-723915ce312c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-698cf57d-4114-46e3-b91f-723915ce312c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-698cf57d-4114-46e3-b91f-723915ce312c-root {
    text-align: center;
  }


#s-698cf57d-4114-46e3-b91f-723915ce312c.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-698cf57d-4114-46e3-b91f-723915ce312c-root {
    text-align: center;
  }


#s-698cf57d-4114-46e3-b91f-723915ce312c.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-698cf57d-4114-46e3-b91f-723915ce312c-root {
    text-align: center;
  }


#s-698cf57d-4114-46e3-b91f-723915ce312c.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-698cf57d-4114-46e3-b91f-723915ce312c-root {
    text-align: center;
  }


#s-698cf57d-4114-46e3-b91f-723915ce312c.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-698cf57d-4114-46e3-b91f-723915ce312c-root {
    text-align: center;
  }


#s-698cf57d-4114-46e3-b91f-723915ce312c.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}
#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0 {
  margin-bottom: 15px;
padding-top: 18px;
padding-left: 45px;
padding-bottom: 18px;
padding-right: 45px;
border-radius: 2px;
background-color: rgba(238, 50, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0-root {
    text-align: center;
  }


#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0-root {
    text-align: center;
  }


#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0-root {
    text-align: center;
  }


#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0-root {
    text-align: center;
  }


#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0-root {
    text-align: center;
  }


#s-9c4681ff-e5e1-4d1c-9126-aa64b950fcd0.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}
}
#s-a8b94b32-5ab2-47bc-b469-1c547c701ce9 {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-a8b94b32-5ab2-47bc-b469-1c547c701ce9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a8b94b32-5ab2-47bc-b469-1c547c701ce9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a8b94b32-5ab2-47bc-b469-1c547c701ce9 {
  
}
}@media (max-width: 767px){#s-a8b94b32-5ab2-47bc-b469-1c547c701ce9 {
  
}
}
#s-a8b94b32-5ab2-47bc-b469-1c547c701ce9 .shogun-heading-component h1 {
  color: rgba(253, 253, 253, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}



#s-2260510c-b540-435d-86c0-68f5bf30a2ec {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2260510c-b540-435d-86c0-68f5bf30a2ec {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2260510c-b540-435d-86c0-68f5bf30a2ec {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2260510c-b540-435d-86c0-68f5bf30a2ec {
  
}
}@media (max-width: 767px){#s-2260510c-b540-435d-86c0-68f5bf30a2ec {
  
}
}







#s-2260510c-b540-435d-86c0-68f5bf30a2ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2260510c-b540-435d-86c0-68f5bf30a2ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

#s-d12aecaf-ecf7-4069-92ef-607ee7c6b0d0 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-d12aecaf-ecf7-4069-92ef-607ee7c6b0d0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d12aecaf-ecf7-4069-92ef-607ee7c6b0d0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d12aecaf-ecf7-4069-92ef-607ee7c6b0d0 {
  
}
}@media (max-width: 767px){#s-d12aecaf-ecf7-4069-92ef-607ee7c6b0d0 {
  
}
}
.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-00377e08-e58d-4736-b348-bffb571141f7 {
  text-align: left;
}



.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-00377e08-e58d-4736-b348-bffb571141f7 img.shogun-image {
  width: 100%;
}



}
.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-78d46d5a-dd69-4fd1-9241-0491efed5103 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-78d46d5a-dd69-4fd1-9241-0491efed5103 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-ad60912d-b99d-4d36-8079-dffb16e48005 {
  text-align: center;
}

#s-ad60912d-b99d-4d36-8079-dffb16e48005 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-ad60912d-b99d-4d36-8079-dffb16e48005 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-ad60912d-b99d-4d36-8079-dffb16e48005 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-234a51c8-1314-40a8-afee-ae04a8888149 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-234a51c8-1314-40a8-afee-ae04a8888149:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-234a51c8-1314-40a8-afee-ae04a8888149:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-234a51c8-1314-40a8-afee-ae04a8888149 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-234a51c8-1314-40a8-afee-ae04a8888149.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-234a51c8-1314-40a8-afee-ae04a8888149.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-234a51c8-1314-40a8-afee-ae04a8888149.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-81d79225-3980-4556-a38f-f8a9fbcaadde {
  text-align: left;
}



.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde img.shogun-image {
  width: 100%;
}



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

.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-81d79225-3980-4556-a38f-f8a9fbcaadde img.shogun-image {
  width: 100%;
}



}
#s-5a8b3020-dc9b-424a-a67c-38771277d2cf {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5a8b3020-dc9b-424a-a67c-38771277d2cf .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-dac804b4-6c83-4c7b-87e3-b6398aa5ecf2 {
  text-align: center;
}

#s-dac804b4-6c83-4c7b-87e3-b6398aa5ecf2 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-dac804b4-6c83-4c7b-87e3-b6398aa5ecf2 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-dac804b4-6c83-4c7b-87e3-b6398aa5ecf2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-5fae23cc-4497-485b-a908-d6fd89707134 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-5fae23cc-4497-485b-a908-d6fd89707134:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5fae23cc-4497-485b-a908-d6fd89707134:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-5fae23cc-4497-485b-a908-d6fd89707134 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5fae23cc-4497-485b-a908-d6fd89707134.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5fae23cc-4497-485b-a908-d6fd89707134.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-5fae23cc-4497-485b-a908-d6fd89707134.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e {
  text-align: left;
}



.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-59cbac63-0f2e-4813-a164-9fd2d74eb10e img.shogun-image {
  width: 100%;
}



}
#s-2051a8c1-eaea-431d-8092-7da5eb1c34a9 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2051a8c1-eaea-431d-8092-7da5eb1c34a9 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-adc63a12-6d45-428a-bfcd-b3fe2cc87feb {
  text-align: center;
}

#s-adc63a12-6d45-428a-bfcd-b3fe2cc87feb .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-adc63a12-6d45-428a-bfcd-b3fe2cc87feb .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-adc63a12-6d45-428a-bfcd-b3fe2cc87feb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-e23e44b2-4031-43e2-b282-e4c59c75814e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-e23e44b2-4031-43e2-b282-e4c59c75814e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e23e44b2-4031-43e2-b282-e4c59c75814e:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-e23e44b2-4031-43e2-b282-e4c59c75814e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e23e44b2-4031-43e2-b282-e4c59c75814e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e23e44b2-4031-43e2-b282-e4c59c75814e.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-e23e44b2-4031-43e2-b282-e4c59c75814e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



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

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

#s-a55ac732-bb72-4241-8225-89842f8876af hr {
  border-top: 2px solid #ddd;
}

#s-43ce3a56-4d33-42db-a325-319d1d555fc7 {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-43ce3a56-4d33-42db-a325-319d1d555fc7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-43ce3a56-4d33-42db-a325-319d1d555fc7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-43ce3a56-4d33-42db-a325-319d1d555fc7 {
  
}
}@media (max-width: 767px){#s-43ce3a56-4d33-42db-a325-319d1d555fc7 {
  
}
}
#s-43ce3a56-4d33-42db-a325-319d1d555fc7 .shogun-heading-component h1 {
  color: rgba(253, 253, 253, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}



#s-4b42123c-753d-4f7e-9dee-4b08499fac68 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4b42123c-753d-4f7e-9dee-4b08499fac68 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4b42123c-753d-4f7e-9dee-4b08499fac68 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4b42123c-753d-4f7e-9dee-4b08499fac68 {
  
}
}@media (max-width: 767px){#s-4b42123c-753d-4f7e-9dee-4b08499fac68 {
  
}
}







#s-4b42123c-753d-4f7e-9dee-4b08499fac68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b42123c-753d-4f7e-9dee-4b08499fac68.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22e66d41-24df-45f1-af0f-5de455a6f199 {
  margin-left: 6%;
margin-right: 6%;
}
@media (min-width: 1200px){#s-22e66d41-24df-45f1-af0f-5de455a6f199 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-22e66d41-24df-45f1-af0f-5de455a6f199 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-22e66d41-24df-45f1-af0f-5de455a6f199 {
  
}
}@media (max-width: 767px){#s-22e66d41-24df-45f1-af0f-5de455a6f199 {
  
}
}
#s-7861a451-51c9-42fc-9425-91af633d6a11 {
  text-align: left;
}



.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7861a451-51c9-42fc-9425-91af633d6a11 img.shogun-image {
  width: 100%;
}



}
#s-af32ad03-23b0-405c-bebf-f81e4d7fc9a2 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-af32ad03-23b0-405c-bebf-f81e4d7fc9a2 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-52630591-d4c9-45d1-8aa9-aa08fdb2ff11 {
  text-align: center;
}

#s-52630591-d4c9-45d1-8aa9-aa08fdb2ff11 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-52630591-d4c9-45d1-8aa9-aa08fdb2ff11 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-52630591-d4c9-45d1-8aa9-aa08fdb2ff11 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-b9cef16f-b2ce-44eb-a81e-89446f4ad1c0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 {
  text-align: left;
}



.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b46c4fd8-554c-44cd-9a91-1b898dbe2905 img.shogun-image {
  width: 100%;
}



}
#s-24ef1ef3-9999-41b2-829b-a4cdc21e868b {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-24ef1ef3-9999-41b2-829b-a4cdc21e868b .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-3e5a1e51-e71d-4628-962c-d3ad6c4f10fc {
  text-align: center;
}

#s-3e5a1e51-e71d-4628-962c-d3ad6c4f10fc .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-3e5a1e51-e71d-4628-962c-d3ad6c4f10fc .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-3e5a1e51-e71d-4628-962c-d3ad6c4f10fc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-92cf5a89-8ad3-485e-8b8b-3480d73fec0a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 {
  text-align: left;
}



.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d4555e5-731f-4c25-a87c-35bcd6ce50b8 img.shogun-image {
  width: 100%;
}



}
#s-53bbb8ce-95e7-4475-9fb5-7971b5d4dcf6 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-53bbb8ce-95e7-4475-9fb5-7971b5d4dcf6 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-eae1802e-c98b-44cb-8ddd-c83109ae99e9 {
  text-align: center;
}

#s-eae1802e-c98b-44cb-8ddd-c83109ae99e9 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-eae1802e-c98b-44cb-8ddd-c83109ae99e9 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-eae1802e-c98b-44cb-8ddd-c83109ae99e9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-3cb7bc6a-6b9d-4842-905e-88b1d87c82b3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 {
  text-align: left;
}



.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bf7de57-131d-4e72-8298-3f9b9e48b880 img.shogun-image {
  width: 100%;
}



}
#s-3ef6f722-f9fd-41a6-a868-9d52daba3c0d {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3ef6f722-f9fd-41a6-a868-9d52daba3c0d .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-95cbf77b-861a-43ae-9941-a72f4d5c3452 {
  text-align: center;
}

#s-95cbf77b-861a-43ae-9941-a72f4d5c3452 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-95cbf77b-861a-43ae-9941-a72f4d5c3452 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-95cbf77b-861a-43ae-9941-a72f4d5c3452 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-6accc61e-8a4b-4102-99c8-7cd7f08a0121.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-f4312761-0157-4a05-b991-00bae27284b0 {
  text-align: left;
}



.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f4312761-0157-4a05-b991-00bae27284b0 img.shogun-image {
  width: 100%;
}



}
#s-3f19b6aa-9fd5-439f-aa08-719021c46838 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3f19b6aa-9fd5-439f-aa08-719021c46838 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-3697f54c-e266-4481-9450-80a0be5bd37c {
  text-align: center;
}

#s-3697f54c-e266-4481-9450-80a0be5bd37c .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-3697f54c-e266-4481-9450-80a0be5bd37c .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-3697f54c-e266-4481-9450-80a0be5bd37c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-fdc732fc-b155-4a17-a2e1-0533e6a2fac7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c {
  text-align: left;
}



.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32af31e1-b3b9-4272-a0d3-0d4296a86b5c img.shogun-image {
  width: 100%;
}



}
#s-61f128a7-ff2a-40d1-9fcf-aa46ac24cb95 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-61f128a7-ff2a-40d1-9fcf-aa46ac24cb95 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-21f0a42d-d1be-43bf-b8b8-b84ed48edfeb {
  text-align: center;
}

#s-21f0a42d-d1be-43bf-b8b8-b84ed48edfeb .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-21f0a42d-d1be-43bf-b8b8-b84ed48edfeb .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-21f0a42d-d1be-43bf-b8b8-b84ed48edfeb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-baff873f-7ffd-436c-8474-4d562887fc9d {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-baff873f-7ffd-436c-8474-4d562887fc9d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-baff873f-7ffd-436c-8474-4d562887fc9d:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-baff873f-7ffd-436c-8474-4d562887fc9d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-baff873f-7ffd-436c-8474-4d562887fc9d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-baff873f-7ffd-436c-8474-4d562887fc9d.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-baff873f-7ffd-436c-8474-4d562887fc9d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ae5e7e02-32f9-4d78-90c0-b195dd423ccb hr {
  border-top: 2px solid #ddd;
}

#s-5b13ebfb-5f10-4984-9b5e-650f7489abd4 {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-5b13ebfb-5f10-4984-9b5e-650f7489abd4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5b13ebfb-5f10-4984-9b5e-650f7489abd4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5b13ebfb-5f10-4984-9b5e-650f7489abd4 {
  
}
}@media (max-width: 767px){#s-5b13ebfb-5f10-4984-9b5e-650f7489abd4 {
  
}
}
#s-5b13ebfb-5f10-4984-9b5e-650f7489abd4 .shogun-heading-component h1 {
  color: rgba(253, 253, 253, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}



#s-abc88bd9-14b8-404d-9369-62fc1a28d060 {
  margin-left: 3%;
margin-right: 3%;
}
@media (max-width: 767px){#s-abc88bd9-14b8-404d-9369-62fc1a28d060 {
  display: unset;
}
#s-abc88bd9-14b8-404d-9369-62fc1a28d060, #wrap-s-abc88bd9-14b8-404d-9369-62fc1a28d060 { display: unset !important; }}
#s-1f173b18-cb17-4153-acb4-fc889f4d1280 {
  text-align: left;
}



.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1f173b18-cb17-4153-acb4-fc889f4d1280 img.shogun-image {
  width: 100%;
}



}
#s-e721f5ed-11d0-4799-b93c-f1de0336e0e9 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e721f5ed-11d0-4799-b93c-f1de0336e0e9 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-3a948700-18c1-492b-8b8d-49a70ade39bd {
  text-align: center;
}

#s-3a948700-18c1-492b-8b8d-49a70ade39bd .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-3a948700-18c1-492b-8b8d-49a70ade39bd .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-3a948700-18c1-492b-8b8d-49a70ade39bd .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-9d73809a-62c1-42e4-87ab-780cd68d176f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-9d73809a-62c1-42e4-87ab-780cd68d176f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9d73809a-62c1-42e4-87ab-780cd68d176f:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-9d73809a-62c1-42e4-87ab-780cd68d176f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9d73809a-62c1-42e4-87ab-780cd68d176f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9d73809a-62c1-42e4-87ab-780cd68d176f.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-9d73809a-62c1-42e4-87ab-780cd68d176f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-92b67024-e14d-437c-9e4a-3814eca41aa9 {
  text-align: left;
}



.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-92b67024-e14d-437c-9e4a-3814eca41aa9 img.shogun-image {
  width: 100%;
}



}
#s-cb44f8f2-e5bb-4bee-8b0b-bdb7ef185750 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cb44f8f2-e5bb-4bee-8b0b-bdb7ef185750 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-5aa6864b-e2eb-4d96-81f6-dbcc3b3ecd7b {
  text-align: center;
}

#s-5aa6864b-e2eb-4d96-81f6-dbcc3b3ecd7b .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-5aa6864b-e2eb-4d96-81f6-dbcc3b3ecd7b .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-5aa6864b-e2eb-4d96-81f6-dbcc3b3ecd7b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-440d8439-afa0-4114-a794-3ebef3d7d094 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-440d8439-afa0-4114-a794-3ebef3d7d094:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-440d8439-afa0-4114-a794-3ebef3d7d094:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-440d8439-afa0-4114-a794-3ebef3d7d094 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-440d8439-afa0-4114-a794-3ebef3d7d094.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-440d8439-afa0-4114-a794-3ebef3d7d094.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-440d8439-afa0-4114-a794-3ebef3d7d094.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-02757327-b62f-42b4-9e95-af32d9f297f2 {
  text-align: left;
}



.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-02757327-b62f-42b4-9e95-af32d9f297f2 img.shogun-image {
  width: 100%;
}



}
#s-7e92fc07-8e52-4945-ab31-a9f53a6014de {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e92fc07-8e52-4945-ab31-a9f53a6014de .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-651987f6-0786-4ce1-a3f3-07468732be6a {
  text-align: center;
}

#s-651987f6-0786-4ce1-a3f3-07468732be6a .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-651987f6-0786-4ce1-a3f3-07468732be6a .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-651987f6-0786-4ce1-a3f3-07468732be6a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-4134ae47-010d-4837-85e9-220f71b3d390 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-4134ae47-010d-4837-85e9-220f71b3d390:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4134ae47-010d-4837-85e9-220f71b3d390:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-4134ae47-010d-4837-85e9-220f71b3d390 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4134ae47-010d-4837-85e9-220f71b3d390.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4134ae47-010d-4837-85e9-220f71b3d390.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-4134ae47-010d-4837-85e9-220f71b3d390.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 {
  text-align: left;
}



.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-86c48f08-aeef-4ab6-a241-d1f5f023e1f0 img.shogun-image {
  width: 100%;
}



}
#s-b4cd472a-6366-4e17-9b13-3f26a2379b3a {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4cd472a-6366-4e17-9b13-3f26a2379b3a .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-15ec02c2-2143-43cc-a617-b849d688c7fb {
  text-align: center;
}

#s-15ec02c2-2143-43cc-a617-b849d688c7fb .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-15ec02c2-2143-43cc-a617-b849d688c7fb .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-15ec02c2-2143-43cc-a617-b849d688c7fb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-ea55a0c8-9c3c-4b3b-b0ed-e332c246d48a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 {
  text-align: left;
}



.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dfbcff1d-5fb9-4a43-873f-6b542eef68b6 img.shogun-image {
  width: 100%;
}



}
#s-4b538b53-56e6-4a46-a4e9-051f22b39743 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4b538b53-56e6-4a46-a4e9-051f22b39743 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-00fc6aef-6721-456a-8803-6cd5ad490fc3 {
  text-align: center;
}

#s-00fc6aef-6721-456a-8803-6cd5ad490fc3 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-00fc6aef-6721-456a-8803-6cd5ad490fc3 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-00fc6aef-6721-456a-8803-6cd5ad490fc3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-d0c4fba2-fe8a-44e1-b38c-ce2210a53252.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-40b01472-396f-4219-afb4-9adb2d592022 {
  text-align: left;
}



.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-40b01472-396f-4219-afb4-9adb2d592022 img.shogun-image {
  width: 100%;
}



}
#s-3b064a1f-5c0b-49e9-8201-09dab84c5589 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3b064a1f-5c0b-49e9-8201-09dab84c5589 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-0f9b98de-fb21-41d1-b237-6bc9f808227f {
  text-align: center;
}

#s-0f9b98de-fb21-41d1-b237-6bc9f808227f .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-0f9b98de-fb21-41d1-b237-6bc9f808227f .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-0f9b98de-fb21-41d1-b237-6bc9f808227f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-c3b3e2f6-6c02-424e-9b89-01d42fde1396.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-da328b95-dbbf-4319-a3e6-96ad1bb2be5b hr {
  border-top: 2px solid #ddd;
}

#s-92c7ec8c-4a22-420c-8f33-b5c5a87a9d61 {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-92c7ec8c-4a22-420c-8f33-b5c5a87a9d61 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-92c7ec8c-4a22-420c-8f33-b5c5a87a9d61 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-92c7ec8c-4a22-420c-8f33-b5c5a87a9d61 {
  
}
}@media (max-width: 767px){#s-92c7ec8c-4a22-420c-8f33-b5c5a87a9d61 {
  
}
}
#s-92c7ec8c-4a22-420c-8f33-b5c5a87a9d61 .shogun-heading-component h1 {
  color: rgba(253, 253, 253, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}



#s-e3867f7f-6bfd-4c3a-8ee0-f46e740805f0 {
  margin-left: 3%;
margin-right: 3%;
}
@media (max-width: 767px){#s-e3867f7f-6bfd-4c3a-8ee0-f46e740805f0 {
  display: unset;
}
#s-e3867f7f-6bfd-4c3a-8ee0-f46e740805f0, #wrap-s-e3867f7f-6bfd-4c3a-8ee0-f46e740805f0 { display: unset !important; }}
#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 {
  text-align: left;
}



.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7ca1381d-ffdf-489a-95a2-7cb15539c002 img.shogun-image {
  width: 100%;
}



}
#s-726e1e81-ac2a-4072-bcee-21d2051bfb34 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-726e1e81-ac2a-4072-bcee-21d2051bfb34 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-f740f5c6-ed92-426f-9559-2160c355280c {
  text-align: center;
}

#s-f740f5c6-ed92-426f-9559-2160c355280c .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-f740f5c6-ed92-426f-9559-2160c355280c .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-f740f5c6-ed92-426f-9559-2160c355280c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-04109ebc-c667-4856-965a-19a1889a9f9f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-04109ebc-c667-4856-965a-19a1889a9f9f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-04109ebc-c667-4856-965a-19a1889a9f9f:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-04109ebc-c667-4856-965a-19a1889a9f9f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-04109ebc-c667-4856-965a-19a1889a9f9f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-04109ebc-c667-4856-965a-19a1889a9f9f.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-04109ebc-c667-4856-965a-19a1889a9f9f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 {
  text-align: left;
}



.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de685635-e2c3-4c2e-99e5-c2fcda8f1fd2 img.shogun-image {
  width: 100%;
}



}
#s-bbdf0ac0-6df4-43d9-a478-1eb4affd9c29 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bbdf0ac0-6df4-43d9-a478-1eb4affd9c29 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-f3e73204-7332-4bb8-9d4b-2d9dca1b4928 {
  text-align: center;
}

#s-f3e73204-7332-4bb8-9d4b-2d9dca1b4928 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-f3e73204-7332-4bb8-9d4b-2d9dca1b4928 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-f3e73204-7332-4bb8-9d4b-2d9dca1b4928 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-aa3fbd60-2024-4bd8-b310-ced8f4896ac3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ab5159b7-a094-4087-82e9-b66543867231 {
  text-align: left;
}



.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ab5159b7-a094-4087-82e9-b66543867231 img.shogun-image {
  width: 100%;
}



}
#s-cedd3c58-0d9d-415b-ad07-cc052f56c2d6 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cedd3c58-0d9d-415b-ad07-cc052f56c2d6 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-f17b39f8-5559-4a85-b648-af64caee43c1 {
  text-align: center;
}

#s-f17b39f8-5559-4a85-b648-af64caee43c1 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-f17b39f8-5559-4a85-b648-af64caee43c1 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-f17b39f8-5559-4a85-b648-af64caee43c1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-afec5fed-d02c-421c-bb9b-d2b6b5b54ccf.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-95c9107e-8524-4992-ab0c-a58a16b59862 {
  margin-left: 12%;
margin-right: 12%;
}
@media (min-width: 1200px){#s-95c9107e-8524-4992-ab0c-a58a16b59862 {
  display: none;
}
#s-95c9107e-8524-4992-ab0c-a58a16b59862, #wrap-s-95c9107e-8524-4992-ab0c-a58a16b59862 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-95c9107e-8524-4992-ab0c-a58a16b59862 {
  display: none;
}
#s-95c9107e-8524-4992-ab0c-a58a16b59862, #wrap-s-95c9107e-8524-4992-ab0c-a58a16b59862 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-95c9107e-8524-4992-ab0c-a58a16b59862 {
  display: none;
}
#s-95c9107e-8524-4992-ab0c-a58a16b59862, #wrap-s-95c9107e-8524-4992-ab0c-a58a16b59862 { display: none !important; }}@media (max-width: 767px){#s-95c9107e-8524-4992-ab0c-a58a16b59862 {
  display: none;
}
#s-95c9107e-8524-4992-ab0c-a58a16b59862, #wrap-s-95c9107e-8524-4992-ab0c-a58a16b59862 { display: none !important; }}
#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 {
  text-align: left;
}



.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cf616334-b3eb-48c2-99ea-9fc0097b08d2 img.shogun-image {
  width: 100%;
}



}
#s-41605cfa-e037-4225-a180-6f9a8169c968 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-41605cfa-e037-4225-a180-6f9a8169c968 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-12fb478e-0968-4a12-b584-80cbe91f0360 {
  text-align: center;
}

#s-12fb478e-0968-4a12-b584-80cbe91f0360 .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-12fb478e-0968-4a12-b584-80cbe91f0360 .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-12fb478e-0968-4a12-b584-80cbe91f0360 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-d12c9445-cc4f-43cb-a89e-6c03b8d57abc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-68af6262-37fd-425e-bfc8-a8c78529895b {
  text-align: left;
}



.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-68af6262-37fd-425e-bfc8-a8c78529895b img.shogun-image {
  width: 100%;
}



}
#s-7b5afc29-fdce-46a5-ad23-20d1ce2ca335 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7b5afc29-fdce-46a5-ad23-20d1ce2ca335 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-9d73ab9a-2e05-4dc5-be11-81aaf4833463 {
  text-align: center;
}

#s-9d73ab9a-2e05-4dc5-be11-81aaf4833463 .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-9d73ab9a-2e05-4dc5-be11-81aaf4833463 .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-9d73ab9a-2e05-4dc5-be11-81aaf4833463 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-536376d6-8c3b-47a4-9201-b15fb9429039 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-536376d6-8c3b-47a4-9201-b15fb9429039:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-536376d6-8c3b-47a4-9201-b15fb9429039:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-536376d6-8c3b-47a4-9201-b15fb9429039 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-536376d6-8c3b-47a4-9201-b15fb9429039.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-536376d6-8c3b-47a4-9201-b15fb9429039.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-536376d6-8c3b-47a4-9201-b15fb9429039.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 {
  text-align: left;
}



.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2a8d44f0-b72a-4c8a-9dab-fd3dee18c701 img.shogun-image {
  width: 100%;
}



}
#s-75056d2e-d906-41be-8a77-35b6c661eb8a {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-75056d2e-d906-41be-8a77-35b6c661eb8a .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-bd1a11c3-9879-494e-aa1b-6f59b5c9ad96 {
  text-align: center;
}

#s-bd1a11c3-9879-494e-aa1b-6f59b5c9ad96 .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-bd1a11c3-9879-494e-aa1b-6f59b5c9ad96 .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-bd1a11c3-9879-494e-aa1b-6f59b5c9ad96 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-24d1da01-73ed-499b-86b0-8cf351066e40 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-24d1da01-73ed-499b-86b0-8cf351066e40:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-24d1da01-73ed-499b-86b0-8cf351066e40:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-24d1da01-73ed-499b-86b0-8cf351066e40 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-24d1da01-73ed-499b-86b0-8cf351066e40.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-24d1da01-73ed-499b-86b0-8cf351066e40.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-24d1da01-73ed-499b-86b0-8cf351066e40.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 {
  text-align: left;
}



.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-477d5fb7-3751-4385-acce-45bcddf2a7e0 img.shogun-image {
  width: 100%;
}



}
#s-3c75c884-50f4-4682-b32a-cd5207233e98 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c75c884-50f4-4682-b32a-cd5207233e98 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-cfa36637-82d7-44ad-b77e-fa8d6c660760 {
  text-align: center;
}

#s-cfa36637-82d7-44ad-b77e-fa8d6c660760 .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-cfa36637-82d7-44ad-b77e-fa8d6c660760 .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-cfa36637-82d7-44ad-b77e-fa8d6c660760 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-64fe2986-ecac-46c4-80ba-28e9f268eab6 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-64fe2986-ecac-46c4-80ba-28e9f268eab6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-64fe2986-ecac-46c4-80ba-28e9f268eab6:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-64fe2986-ecac-46c4-80ba-28e9f268eab6 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-64fe2986-ecac-46c4-80ba-28e9f268eab6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-64fe2986-ecac-46c4-80ba-28e9f268eab6.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-64fe2986-ecac-46c4-80ba-28e9f268eab6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-eeec2982-739d-47f7-bb91-5f6ac861bf0b hr {
  border-top: 2px solid #ddd;
}

#s-217c5289-d9c1-4e4c-bcc9-6b9d741ae585 {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-217c5289-d9c1-4e4c-bcc9-6b9d741ae585 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-217c5289-d9c1-4e4c-bcc9-6b9d741ae585 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-217c5289-d9c1-4e4c-bcc9-6b9d741ae585 {
  
}
}@media (max-width: 767px){#s-217c5289-d9c1-4e4c-bcc9-6b9d741ae585 {
  
}
}
#s-217c5289-d9c1-4e4c-bcc9-6b9d741ae585 .shogun-heading-component h1 {
  color: rgba(253, 253, 253, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}



#s-11042a49-690e-493a-8c83-040f27d4850d {
  margin-left: 3%;
margin-right: 3%;
}
@media (max-width: 767px){#s-11042a49-690e-493a-8c83-040f27d4850d {
  
}
}
#s-463313b1-9920-4358-89c9-73b995c86c4a {
  text-align: left;
}



.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-463313b1-9920-4358-89c9-73b995c86c4a img.shogun-image {
  width: 100%;
}



}
#s-e448eb3f-30f4-46d2-8843-6b65fbfae682 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e448eb3f-30f4-46d2-8843-6b65fbfae682 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-2b5b9bef-8a6b-4f66-a48a-bdc8319c20a8 {
  text-align: center;
}

#s-2b5b9bef-8a6b-4f66-a48a-bdc8319c20a8 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-2b5b9bef-8a6b-4f66-a48a-bdc8319c20a8 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-2b5b9bef-8a6b-4f66-a48a-bdc8319c20a8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-3cbd05e1-0b49-4b28-9c9b-0e72dfacd746.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c82f285b-3150-483e-9394-fae95ea1d9bb {
  text-align: left;
}



.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c82f285b-3150-483e-9394-fae95ea1d9bb img.shogun-image {
  width: 100%;
}



}
#s-9eb6de5c-b6e4-48c0-96a1-01dd2709f3ad {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9eb6de5c-b6e4-48c0-96a1-01dd2709f3ad .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-e7581e8e-be8b-4aaa-9743-6876c1ce1767 {
  text-align: center;
}

#s-e7581e8e-be8b-4aaa-9743-6876c1ce1767 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-e7581e8e-be8b-4aaa-9743-6876c1ce1767 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-e7581e8e-be8b-4aaa-9743-6876c1ce1767 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-a48d6015-04f4-4a89-9d84-94439fe45c49 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-a48d6015-04f4-4a89-9d84-94439fe45c49:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a48d6015-04f4-4a89-9d84-94439fe45c49:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-a48d6015-04f4-4a89-9d84-94439fe45c49 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a48d6015-04f4-4a89-9d84-94439fe45c49.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a48d6015-04f4-4a89-9d84-94439fe45c49.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-a48d6015-04f4-4a89-9d84-94439fe45c49.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e {
  text-align: left;
}



.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0dce0e47-24ac-4d7a-a67a-11deb3bcee3e img.shogun-image {
  width: 100%;
}



}
#s-08452002-8192-4493-a9dd-ec84a8483324 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-08452002-8192-4493-a9dd-ec84a8483324 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-cdd7aa4f-acdc-4a4d-a2f2-6627f8af4c11 {
  text-align: center;
}

#s-cdd7aa4f-acdc-4a4d-a2f2-6627f8af4c11 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-cdd7aa4f-acdc-4a4d-a2f2-6627f8af4c11 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-cdd7aa4f-acdc-4a4d-a2f2-6627f8af4c11 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-bf6c62c5-86bd-42be-be75-23bc57c0495f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-bf6c62c5-86bd-42be-be75-23bc57c0495f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bf6c62c5-86bd-42be-be75-23bc57c0495f:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-bf6c62c5-86bd-42be-be75-23bc57c0495f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bf6c62c5-86bd-42be-be75-23bc57c0495f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bf6c62c5-86bd-42be-be75-23bc57c0495f.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-bf6c62c5-86bd-42be-be75-23bc57c0495f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-10da6f65-c225-4b50-8287-d13946e3afbc {
  text-align: left;
}



.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-10da6f65-c225-4b50-8287-d13946e3afbc img.shogun-image {
  width: 100%;
}



}
#s-84c3dce6-b4e3-41e0-885b-4cca078f1c66 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-84c3dce6-b4e3-41e0-885b-4cca078f1c66 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-f888ffd5-2ad2-4217-bb6d-7515a0849aad {
  text-align: center;
}

#s-f888ffd5-2ad2-4217-bb6d-7515a0849aad .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-f888ffd5-2ad2-4217-bb6d-7515a0849aad .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-f888ffd5-2ad2-4217-bb6d-7515a0849aad .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-215ccdeb-4ebf-4052-955f-9a1ccaff17a1.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9ae73802-7a0f-4189-a8c6-d0eff6087dcf hr {
  border-top: 2px solid #ddd;
}

#s-46632ad8-1730-4196-8eb9-e6988dea6f2b {
  padding-top: 10px;
padding-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-46632ad8-1730-4196-8eb9-e6988dea6f2b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-46632ad8-1730-4196-8eb9-e6988dea6f2b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-46632ad8-1730-4196-8eb9-e6988dea6f2b {
  
}
}@media (max-width: 767px){#s-46632ad8-1730-4196-8eb9-e6988dea6f2b {
  
}
}
#s-46632ad8-1730-4196-8eb9-e6988dea6f2b .shogun-heading-component h1 {
  color: rgba(253, 253, 253, 1);
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 34px;
  
  
  
}



#s-b600c1ee-ca71-4d11-9d0b-5f4aee3e1695 {
  margin-left: 3%;
margin-right: 3%;
}
@media (max-width: 767px){#s-b600c1ee-ca71-4d11-9d0b-5f4aee3e1695 {
  
}
}
#s-7410c03c-8556-49ae-8760-d0c43d1fe05f {
  text-align: left;
}



.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7410c03c-8556-49ae-8760-d0c43d1fe05f img.shogun-image {
  width: 100%;
}



}
#s-32d249fe-667d-4dbd-bf9a-73d8b23aaa85 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-32d249fe-667d-4dbd-bf9a-73d8b23aaa85 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-1b14c005-03fa-41f2-ad41-87571a85b899 {
  text-align: center;
}

#s-1b14c005-03fa-41f2-ad41-87571a85b899 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-1b14c005-03fa-41f2-ad41-87571a85b899 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-1b14c005-03fa-41f2-ad41-87571a85b899 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-ac7ece91-6111-4cb4-a7ba-8134ec249367 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-ac7ece91-6111-4cb4-a7ba-8134ec249367:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ac7ece91-6111-4cb4-a7ba-8134ec249367:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-ac7ece91-6111-4cb4-a7ba-8134ec249367 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ac7ece91-6111-4cb4-a7ba-8134ec249367.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ac7ece91-6111-4cb4-a7ba-8134ec249367.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-ac7ece91-6111-4cb4-a7ba-8134ec249367.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 {
  text-align: left;
}



.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-abd485fa-230f-4ea3-b2d7-9aca0acc9687 img.shogun-image {
  width: 100%;
}



}
#s-595a4857-835f-41bb-bf12-95ee21bcb712 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-595a4857-835f-41bb-bf12-95ee21bcb712 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-3c149def-ade3-4ead-adb1-68e40b4f89e7 {
  text-align: center;
}

#s-3c149def-ade3-4ead-adb1-68e40b4f89e7 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-3c149def-ade3-4ead-adb1-68e40b4f89e7 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-3c149def-ade3-4ead-adb1-68e40b4f89e7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-c16e533f-2181-4b3f-98b0-471983a38792 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-c16e533f-2181-4b3f-98b0-471983a38792:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c16e533f-2181-4b3f-98b0-471983a38792:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-c16e533f-2181-4b3f-98b0-471983a38792 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c16e533f-2181-4b3f-98b0-471983a38792.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c16e533f-2181-4b3f-98b0-471983a38792.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-c16e533f-2181-4b3f-98b0-471983a38792.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8116f48b-49d5-43c0-9b36-95a4abe65910 {
  text-align: left;
}



.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8116f48b-49d5-43c0-9b36-95a4abe65910 img.shogun-image {
  width: 100%;
}



}
#s-9dc1e93b-5b68-4997-bd34-4f1e0c6ab318 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9dc1e93b-5b68-4997-bd34-4f1e0c6ab318 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-624bbaf0-b882-4f18-b2ff-b30598526779 {
  text-align: center;
}

#s-624bbaf0-b882-4f18-b2ff-b30598526779 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-624bbaf0-b882-4f18-b2ff-b30598526779 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-624bbaf0-b882-4f18-b2ff-b30598526779 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-c1c3b127-f5e1-49dd-b584-31ad02217b4e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 {
  text-align: left;
}



.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32c3b60d-2437-45f8-99ef-79badb2c3e75 img.shogun-image {
  width: 100%;
}



}
#s-07d1bc9e-d603-435f-b90a-063d49980b73 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-07d1bc9e-d603-435f-b90a-063d49980b73 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-c97c92ed-a3d1-43d8-91d2-99bfd8dd00f8 {
  text-align: center;
}

#s-c97c92ed-a3d1-43d8-91d2-99bfd8dd00f8 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-c97c92ed-a3d1-43d8-91d2-99bfd8dd00f8 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-c97c92ed-a3d1-43d8-91d2-99bfd8dd00f8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-a7ce842f-e299-4f1f-8ca7-d1c0337dff14.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 {
  text-align: left;
}



.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8d00e0b4-60d6-48ba-9fc4-39a407d0b976 img.shogun-image {
  width: 100%;
}



}
#s-d86d5b69-5f31-498f-ba46-36215e3388b5 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d86d5b69-5f31-498f-ba46-36215e3388b5 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-014e03a1-8840-40e4-8d51-30bb41256b09 {
  text-align: center;
}

#s-014e03a1-8840-40e4-8d51-30bb41256b09 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-014e03a1-8840-40e4-8d51-30bb41256b09 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-014e03a1-8840-40e4-8d51-30bb41256b09 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-3ca3e0a8-2df0-4d32-8e34-e8b3cd8d9c8f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7a7440bb-7030-48a3-9657-949e3374ff53 {
  text-align: left;
}



.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a7440bb-7030-48a3-9657-949e3374ff53 img.shogun-image {
  width: 100%;
}



}
#s-f995afb2-1854-4cb2-b189-0b1c7d7d1a36 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f995afb2-1854-4cb2-b189-0b1c7d7d1a36 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-b788c8e4-72aa-4d0f-947c-6f70ffa3a24a {
  text-align: center;
}

#s-b788c8e4-72aa-4d0f-947c-6f70ffa3a24a .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-b788c8e4-72aa-4d0f-947c-6f70ffa3a24a .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-b788c8e4-72aa-4d0f-947c-6f70ffa3a24a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-5ef336d7-f95d-4c3e-b8d9-d4fe2dbfdc5c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-94da03a9-2149-4258-8f68-8346a8086b60 {
  text-align: left;
}



.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-94da03a9-2149-4258-8f68-8346a8086b60 img.shogun-image {
  width: 100%;
}



}
#s-f84ee2d9-83c7-412c-ac3b-e23e8b6d0cd7 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f84ee2d9-83c7-412c-ac3b-e23e8b6d0cd7 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-fee3ab58-504b-4080-8ec0-1384e89242f0 {
  text-align: center;
}

#s-fee3ab58-504b-4080-8ec0-1384e89242f0 .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-fee3ab58-504b-4080-8ec0-1384e89242f0 .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-fee3ab58-504b-4080-8ec0-1384e89242f0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-3d189773-02e1-47c5-ad15-f6aba282900c {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-3d189773-02e1-47c5-ad15-f6aba282900c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3d189773-02e1-47c5-ad15-f6aba282900c:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-3d189773-02e1-47c5-ad15-f6aba282900c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3d189773-02e1-47c5-ad15-f6aba282900c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3d189773-02e1-47c5-ad15-f6aba282900c.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-3d189773-02e1-47c5-ad15-f6aba282900c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a4eb417f-4464-4949-b439-d1b357ca5f78 {
  text-align: left;
}



.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a4eb417f-4464-4949-b439-d1b357ca5f78 img.shogun-image {
  width: 100%;
}



}
#s-3e647ad3-d9cb-4b2b-bda2-0f8b59d0cf58 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3e647ad3-d9cb-4b2b-bda2-0f8b59d0cf58 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-4e018ed2-cbe6-4033-85a4-4b421e969d7a {
  text-align: center;
}

#s-4e018ed2-cbe6-4033-85a4-4b421e969d7a .shg-product-sold-out {
  display: none;
  color: rgba(233, 231, 222, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
}

#s-4e018ed2-cbe6-4033-85a4-4b421e969d7a .shg-product-price {
  color: rgba(233, 231, 222, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
}

#s-4e018ed2-cbe6-4033-85a4-4b421e969d7a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(255, 116, 116, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:  normal ;
  font-size: 25px;
  padding-left: 10px;
}

#s-266c729b-734d-4416-a2ae-155bb94a779d {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-266c729b-734d-4416-a2ae-155bb94a779d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-266c729b-734d-4416-a2ae-155bb94a779d:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-266c729b-734d-4416-a2ae-155bb94a779d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-266c729b-734d-4416-a2ae-155bb94a779d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-266c729b-734d-4416-a2ae-155bb94a779d.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-266c729b-734d-4416-a2ae-155bb94a779d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 {
  margin-left: 11%;
margin-right: 11%;
}
@media (min-width: 1200px){#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 {
  display: none;
}
#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7, #wrap-s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 {
  display: none;
}
#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7, #wrap-s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 {
  display: none;
}
#s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7, #wrap-s-4fa50be5-68ba-47c8-bc0a-8091aca0d5f7 { display: none !important; }}
#s-c200a5b8-2663-4f68-9de2-a80e0301b94a {
  text-align: left;
}



.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c200a5b8-2663-4f68-9de2-a80e0301b94a img.shogun-image {
  width: 100%;
}



}
#s-1fb5f942-d3a7-4a4e-9a76-fd23bf9a7d37 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1fb5f942-d3a7-4a4e-9a76-fd23bf9a7d37 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-cf31ff1e-a083-4a52-b4d1-171b0c87485d {
  text-align: center;
}

#s-cf31ff1e-a083-4a52-b4d1-171b0c87485d .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-cf31ff1e-a083-4a52-b4d1-171b0c87485d .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-cf31ff1e-a083-4a52-b4d1-171b0c87485d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-fa44b1b8-dee2-4ef9-b6df-8d3f0b6ee787.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-4759ac2f-78de-40d9-8f26-19c6d40be89a {
  text-align: left;
}



.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4759ac2f-78de-40d9-8f26-19c6d40be89a img.shogun-image {
  width: 100%;
}



}
#s-f55dd375-04cd-470e-8ed6-df07ab4a77c7 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f55dd375-04cd-470e-8ed6-df07ab4a77c7 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-f2e4b741-7001-4ffc-9f10-68b92fbca53e {
  text-align: center;
}

#s-f2e4b741-7001-4ffc-9f10-68b92fbca53e .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-f2e4b741-7001-4ffc-9f10-68b92fbca53e .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-f2e4b741-7001-4ffc-9f10-68b92fbca53e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-6bb9155d-a704-45df-9bdd-5ae333708bc5 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-6bb9155d-a704-45df-9bdd-5ae333708bc5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6bb9155d-a704-45df-9bdd-5ae333708bc5:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-6bb9155d-a704-45df-9bdd-5ae333708bc5 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6bb9155d-a704-45df-9bdd-5ae333708bc5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6bb9155d-a704-45df-9bdd-5ae333708bc5.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-6bb9155d-a704-45df-9bdd-5ae333708bc5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 {
  text-align: left;
}



.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5668a5ee-df0a-499b-b111-4c6cb79258a3 img.shogun-image {
  width: 100%;
}



}
#s-12db820c-7bf2-4b73-8c53-298000b48d37 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-12db820c-7bf2-4b73-8c53-298000b48d37 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-09d5279a-2a78-481d-8348-2dde62fda97c {
  text-align: center;
}

#s-09d5279a-2a78-481d-8348-2dde62fda97c .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-09d5279a-2a78-481d-8348-2dde62fda97c .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-09d5279a-2a78-481d-8348-2dde62fda97c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-de4c65dd-7633-4297-8104-cf27ac823cbb {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-de4c65dd-7633-4297-8104-cf27ac823cbb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-de4c65dd-7633-4297-8104-cf27ac823cbb:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-de4c65dd-7633-4297-8104-cf27ac823cbb {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-de4c65dd-7633-4297-8104-cf27ac823cbb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-de4c65dd-7633-4297-8104-cf27ac823cbb.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-de4c65dd-7633-4297-8104-cf27ac823cbb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a {
  text-align: left;
}



.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-accf4e9a-e5a6-45ef-a610-1f8de4b5ed1a img.shogun-image {
  width: 100%;
}



}
#s-42d224e8-01a3-47b3-ac75-b13c9e57f444 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-42d224e8-01a3-47b3-ac75-b13c9e57f444 .shg-product-title-component h3 {
  color: rgba(235, 235, 235, 1);
  font-weight:   ;
  font-family: Playfair Display;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
}

#s-6413f6dd-2978-4fb7-8a8e-b3bbc19f6312 {
  text-align: center;
}

#s-6413f6dd-2978-4fb7-8a8e-b3bbc19f6312 .shg-product-sold-out {
  display: none;
  color: rgba(236, 236, 236, 1);
  font-size: 22px;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-6413f6dd-2978-4fb7-8a8e-b3bbc19f6312 .shg-product-price {
  color: rgba(236, 236, 236, 1);
  font-weight:  500 ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 22px;
}

#s-6413f6dd-2978-4fb7-8a8e-b3bbc19f6312 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(219, 61, 61, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 22px;
  padding-left: 10px;
}

#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-left: 19px;
padding-bottom: 15px;
padding-right: 19px;
border-radius: 2px;
background-color: rgba(219, 61, 61, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(14, 1, 1, 1);
}
#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(17, 17, 17, 1) !important;}


#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e.shg-btn {
  color: rgba(14, 1, 1, 1);
  font-size: ;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}

#s-6d7f330e-8632-4b73-a23d-d58e5fc5c92e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-95067fe7-0112-4b0a-83b9-fd8ca02b71b2 {
  padding-top: 120px;
padding-bottom: 120px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-95067fe7-0112-4b0a-83b9-fd8ca02b71b2 {
  padding-top: 60px;
padding-bottom: 60px;
}
}@media (max-width: 767px){#s-95067fe7-0112-4b0a-83b9-fd8ca02b71b2 {
  padding-top: 60px;
padding-bottom: 60px;
}
}







#s-95067fe7-0112-4b0a-83b9-fd8ca02b71b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95067fe7-0112-4b0a-83b9-fd8ca02b71b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-223323e7-4f01-496e-9e85-9c606738219c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-223323e7-4f01-496e-9e85-9c606738219c .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  font-family: "Playfair Display";
  font-style:  normal ;
  font-size: 24px;
  
  letter-spacing: 2px;
  
}



#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5 {
  margin-top: 35px;
margin-bottom: 35px;
padding-top: 24px;
padding-left: 30px;
padding-bottom: 24px;
padding-right: 30px;
border-radius: 0px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
}
#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5:hover {background-color: rgba(51, 51, 51, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5:active {background-color: rgba(102, 102, 102, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5-root {
    text-align: center;
  }


#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5.shg-btn {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5-root {
    text-align: center;
  }


#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5.shg-btn {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5-root {
    text-align: center;
  }


#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5.shg-btn {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5-root {
    text-align: center;
  }


#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5.shg-btn {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5-root {
    text-align: center;
  }


#s-59e2bc16-24c0-4ae3-bfcc-aad6b68987a5.shg-btn {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  
  font-family: Playfair Display;
  display:  inline-block ;
}
}
/*
  $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}
