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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-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-25e4919d-6911-4672-90dc-15eb35c91cfd {
  margin-top: 31px;
min-height: 50px;
background-color: rgba(241, 234, 228, 1);
}








#s-25e4919d-6911-4672-90dc-15eb35c91cfd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-25e4919d-6911-4672-90dc-15eb35c91cfd.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;
}
#s-8a900c23-7dd3-4ee1-96fd-0d30e5321ace {
  margin-top: -61px;
text-align: center;
}







  #s-8a900c23-7dd3-4ee1-96fd-0d30e5321ace img.shogun-image {
    

    
    
    
  }


#s-8a900c23-7dd3-4ee1-96fd-0d30e5321ace .shogun-image-content {
  
    align-items: center;
  
}

#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1 {
  padding-top: 5%;
padding-bottom: 5%;
min-height: 500px;
}
@media (min-width: 768px) and (max-width: 991px){#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1 {
  display: none;
}
#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1, #wrap-s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1 { display:none !important; }}@media (max-width: 767px){#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1 {
  display: none;
}
#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1, #wrap-s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1 { display:none !important; }}







#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-595b1e2c-db3a-4ad9-b658-a8ae243cffc1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-afa8af57-e565-4b21-a8b1-59d2a9626b28 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-afa8af57-e565-4b21-a8b1-59d2a9626b28 .shogun-heading-component h2 {
  color: rgba(60, 60, 59, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  
}



#s-98f5cf6f-5fa9-47cc-803b-c007ee4e006f {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-98f5cf6f-5fa9-47cc-803b-c007ee4e006f .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}



#s-98c3610d-09ed-408c-bf0f-bf4a4bb9df41 {
  margin-left: 30%;
margin-right: 30%;
}

#s-e914bc55-8661-4cad-ac81-fe0bcc7b1603 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e914bc55-8661-4cad-ac81-fe0bcc7b1603 .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}



#s-54da2115-9dc4-4e95-8a22-ecc6bdfb0e57 {
  margin-left: 30%;
margin-right: 30%;
}

#s-47d96d55-c5cc-461a-8400-28afa88bfe9d {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-47d96d55-c5cc-461a-8400-28afa88bfe9d .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}



#s-c4ba47ad-aa54-43a4-af9d-893f4a5416d6 {
  margin-left: 30%;
margin-right: 30%;
}

#s-401c852e-e922-406f-addd-7ca3667033b1 {
  padding-top: 10%;
padding-bottom: 10%;
min-height: 500px;
}
@media (min-width: 1200px){#s-401c852e-e922-406f-addd-7ca3667033b1 {
  display: none;
}
#s-401c852e-e922-406f-addd-7ca3667033b1, #wrap-s-401c852e-e922-406f-addd-7ca3667033b1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-401c852e-e922-406f-addd-7ca3667033b1 {
  display: none;
}
#s-401c852e-e922-406f-addd-7ca3667033b1, #wrap-s-401c852e-e922-406f-addd-7ca3667033b1 { display:none !important; }}







#s-401c852e-e922-406f-addd-7ca3667033b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-401c852e-e922-406f-addd-7ca3667033b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-84fca6a6-ab39-457f-ab10-2b866275c309 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-84fca6a6-ab39-457f-ab10-2b866275c309 .shogun-heading-component h2 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  
}



#s-832c3155-addd-403c-a9d4-850241d236b6 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-832c3155-addd-403c-a9d4-850241d236b6 .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}



#s-a549f690-c81f-4e9b-8ef8-b9a0e2444df0 {
  margin-left: 10%;
margin-right: 10%;
}

#s-d329aab0-1069-4181-9882-eff7289e5ad8 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d329aab0-1069-4181-9882-eff7289e5ad8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}



#s-1ddc1742-5f6b-47cd-b30f-ef4d6b8dbfb6 {
  margin-left: 10%;
margin-right: 10%;
}

#s-5f17c11d-1930-490c-b6ee-00929b4ded88 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5f17c11d-1930-490c-b6ee-00929b4ded88 .shogun-heading-component h3 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  
}



#s-ddf61be8-ef37-4b4e-bca5-d054b8fda352 {
  margin-left: 10%;
margin-right: 10%;
}

#s-48bed72b-d6fb-4748-b68e-f739bd99d9c3 {
  margin-top: 20px;
margin-bottom: 100px;
min-height: 50px;
}








#s-48bed72b-d6fb-4748-b68e-f739bd99d9c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48bed72b-d6fb-4748-b68e-f739bd99d9c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c225fe76-213f-410a-a799-c78e1f49e930 {
  min-height: 50px;
}








#s-c225fe76-213f-410a-a799-c78e1f49e930 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c225fe76-213f-410a-a799-c78e1f49e930.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d6878f0-8932-4105-866e-6cc4322183f8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9d6878f0-8932-4105-866e-6cc4322183f8 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  
}



.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-acd632f6-e5a4-449f-afa6-ad610480525f {
  margin-left: 15%;
margin-bottom: 50px;
margin-right: 15%;
padding-top: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-acd632f6-e5a4-449f-afa6-ad610480525f {
  display: none;
}
#s-acd632f6-e5a4-449f-afa6-ad610480525f, #wrap-s-acd632f6-e5a4-449f-afa6-ad610480525f { display:none !important; }}@media (max-width: 767px){#s-acd632f6-e5a4-449f-afa6-ad610480525f {
  display: none;
}
#s-acd632f6-e5a4-449f-afa6-ad610480525f, #wrap-s-acd632f6-e5a4-449f-afa6-ad610480525f { display:none !important; }}
@media (min-width: 0px) {
[id="s-acd632f6-e5a4-449f-afa6-ad610480525f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-acd632f6-e5a4-449f-afa6-ad610480525f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-acd632f6-e5a4-449f-afa6-ad610480525f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-acd632f6-e5a4-449f-afa6-ad610480525f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-be28babb-54d4-435c-9019-2586c88a1e57 {
  display: none;
}
.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-a3262306-abc7-4ad2-8a1e-49e585779999 {
  text-align: left;
}



.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a3262306-abc7-4ad2-8a1e-49e585779999 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: #000;
  font-family: ;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-6f9c92c2-6fa1-46b3-8840-1531ad6431fb {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 130px;
text-align: center;
}

#s-6f9c92c2-6fa1-46b3-8840-1531ad6431fb .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-44a09a61-35cd-43cb-831b-8c0d751bcdce {
  text-align: center;
}

#s-44a09a61-35cd-43cb-831b-8c0d751bcdce .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-44a09a61-35cd-43cb-831b-8c0d751bcdce .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-44a09a61-35cd-43cb-831b-8c0d751bcdce .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.shg-variant-btn {
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  letter-spacing: normal;
}

.shg-variant-btn.hidden {
  display: none;
}

.shg-variant-btn.disabled {
  cursor: not-allowed;
}

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

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

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

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

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb {
  margin-bottom: 10px;
text-align: left;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-7f2921ce-bee6-4404-b4ae-f63483a39cfb-btn-wrapper {
    text-align: center;
  }


#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-variant-btn:hover {
  background: #252525;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-variant-btn:active, #s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-7f2921ce-bee6-4404-b4ae-f63483a39cfb .shg-variant-btn.disabled {
  background: #252525;
}

.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-8c0457c8-8bab-4071-8500-d419fe453500 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-8c0457c8-8bab-4071-8500-d419fe453500:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8c0457c8-8bab-4071-8500-d419fe453500:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8c0457c8-8bab-4071-8500-d419fe453500 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8c0457c8-8bab-4071-8500-d419fe453500.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8c0457c8-8bab-4071-8500-d419fe453500.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-8c0457c8-8bab-4071-8500-d419fe453500.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-8c0457c8-8bab-4071-8500-d419fe453500.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-120f7c56-62c5-475d-95a8-f06ff71b0748 {
  display: none;
}
#s-eb59703e-dc69-46a6-984d-02413dc917a5 {
  text-align: left;
}



.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-eb59703e-dc69-46a6-984d-02413dc917a5 img.shogun-image {
  width: 100%;
}



}
#s-3b185236-2c2e-4b77-b74d-6a7dceb17ed5 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 130px;
text-align: center;
}

#s-3b185236-2c2e-4b77-b74d-6a7dceb17ed5 .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-b2e87ada-5075-4d3c-aa08-689c49a203f1 {
  text-align: center;
}

#s-b2e87ada-5075-4d3c-aa08-689c49a203f1 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-b2e87ada-5075-4d3c-aa08-689c49a203f1 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-b2e87ada-5075-4d3c-aa08-689c49a203f1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 {
  margin-bottom: 10px;
text-align: left;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-500737c3-c32f-4c23-8547-bedcc7813d93-btn-wrapper {
    text-align: center;
  }


#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-variant-btn:hover {
  background: #252525;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-variant-btn:active, #s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-500737c3-c32f-4c23-8547-bedcc7813d93 .shg-variant-btn.disabled {
  background: #252525;
}

#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-9d8b409b-238b-4f67-a63e-8bbe0ab38b17.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-86381610-c268-4e47-a2a9-ae5653e986a5 {
  display: none;
}
#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc {
  text-align: left;
}



.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc img.shogun-image {
  width: 100%;
}



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

.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fbe5c4ea-d123-4ea5-800d-7eaf7eec8fdc img.shogun-image {
  width: 100%;
}



}
#s-a759d5ab-71ed-4c6f-9e0a-26bc65053d71 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 130px;
text-align: center;
}

#s-a759d5ab-71ed-4c6f-9e0a-26bc65053d71 .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-323dac83-3efb-4a0e-9460-552525d41d8a {
  text-align: center;
}

#s-323dac83-3efb-4a0e-9460-552525d41d8a .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-323dac83-3efb-4a0e-9460-552525d41d8a .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-323dac83-3efb-4a0e-9460-552525d41d8a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-db423ede-b6ba-4b4d-9ea0-767c38450aad {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-db423ede-b6ba-4b4d-9ea0-767c38450aad:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-db423ede-b6ba-4b4d-9ea0-767c38450aad:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-db423ede-b6ba-4b4d-9ea0-767c38450aad {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db423ede-b6ba-4b4d-9ea0-767c38450aad.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db423ede-b6ba-4b4d-9ea0-767c38450aad.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-db423ede-b6ba-4b4d-9ea0-767c38450aad.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-db423ede-b6ba-4b4d-9ea0-767c38450aad.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-64a4b74a-d4a0-4998-a8e5-e5fe20e35f1a {
  display: none;
}
#s-97ef7e02-11f1-4583-98c7-13e019065a1d {
  text-align: left;
}



.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-97ef7e02-11f1-4583-98c7-13e019065a1d img.shogun-image {
  width: 100%;
}



}
#s-4427a7b9-8bcd-419d-b254-66481666d6ea {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 130px;
text-align: center;
}

#s-4427a7b9-8bcd-419d-b254-66481666d6ea .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
}

#s-6e26d0ef-50f9-4cd6-8caa-dffc4711fe51 {
  text-align: center;
}

#s-6e26d0ef-50f9-4cd6-8caa-dffc4711fe51 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-6e26d0ef-50f9-4cd6-8caa-dffc4711fe51 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-6e26d0ef-50f9-4cd6-8caa-dffc4711fe51 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c {
  margin-bottom: 10px;
text-align: left;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-84868dae-1567-49a6-8c1b-5cde9dd8a80c-btn-wrapper {
    text-align: center;
  }


#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-variant-btn:hover {
  background: #252525;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-variant-btn:active, #s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-84868dae-1567-49a6-8c1b-5cde9dd8a80c .shg-variant-btn.disabled {
  background: #252525;
}

#s-2772ce74-3467-4dec-90a5-8c8901764c2e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-2772ce74-3467-4dec-90a5-8c8901764c2e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2772ce74-3467-4dec-90a5-8c8901764c2e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2772ce74-3467-4dec-90a5-8c8901764c2e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2772ce74-3467-4dec-90a5-8c8901764c2e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2772ce74-3467-4dec-90a5-8c8901764c2e.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-2772ce74-3467-4dec-90a5-8c8901764c2e.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-2772ce74-3467-4dec-90a5-8c8901764c2e.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-dac3ce3c-bea0-468e-9059-4104fd7c5059 {
  margin-left: 5%;
margin-bottom: 50px;
margin-right: 5%;
padding-top: 15px;
}
@media (min-width: 1200px){#s-dac3ce3c-bea0-468e-9059-4104fd7c5059 {
  display: none;
}
#s-dac3ce3c-bea0-468e-9059-4104fd7c5059, #wrap-s-dac3ce3c-bea0-468e-9059-4104fd7c5059 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dac3ce3c-bea0-468e-9059-4104fd7c5059 {
  display: none;
}
#s-dac3ce3c-bea0-468e-9059-4104fd7c5059, #wrap-s-dac3ce3c-bea0-468e-9059-4104fd7c5059 { display:none !important; }}@media (max-width: 767px){#s-dac3ce3c-bea0-468e-9059-4104fd7c5059 {
  display: none;
}
#s-dac3ce3c-bea0-468e-9059-4104fd7c5059, #wrap-s-dac3ce3c-bea0-468e-9059-4104fd7c5059 { display:none !important; }}
@media (min-width: 0px) {
[id="s-dac3ce3c-bea0-468e-9059-4104fd7c5059"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-dac3ce3c-bea0-468e-9059-4104fd7c5059"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-dac3ce3c-bea0-468e-9059-4104fd7c5059"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-dac3ce3c-bea0-468e-9059-4104fd7c5059"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-511ac794-cd15-4746-8a64-a8fd25479f69 {
  display: none;
}
#s-af64025a-91e4-434b-903e-8ac57d4c444b {
  text-align: left;
}



.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-af64025a-91e4-434b-903e-8ac57d4c444b img.shogun-image {
  width: 100%;
}



}
#s-d3fd2cc9-d669-4cc2-81aa-0e9b57351317 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 140px;
text-align: center;
}

#s-d3fd2cc9-d669-4cc2-81aa-0e9b57351317 .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-0e1e34f2-2581-4a33-b072-8db8bf7a68c1 {
  text-align: center;
}

#s-0e1e34f2-2581-4a33-b072-8db8bf7a68c1 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-0e1e34f2-2581-4a33-b072-8db8bf7a68c1 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-0e1e34f2-2581-4a33-b072-8db8bf7a68c1 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 {
  margin-bottom: 10px;
text-align: left;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-4338b970-f8ae-429d-aac0-eb1bb8689000-btn-wrapper {
    text-align: center;
  }


#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-variant-btn:hover {
  background: #252525;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-variant-btn:active, #s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-4338b970-f8ae-429d-aac0-eb1bb8689000 .shg-variant-btn.disabled {
  background: #252525;
}

#s-d0543b8d-f77a-4a07-bf4a-37f586958652 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-d0543b8d-f77a-4a07-bf4a-37f586958652:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d0543b8d-f77a-4a07-bf4a-37f586958652:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d0543b8d-f77a-4a07-bf4a-37f586958652 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d0543b8d-f77a-4a07-bf4a-37f586958652.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d0543b8d-f77a-4a07-bf4a-37f586958652.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-d0543b8d-f77a-4a07-bf4a-37f586958652.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-d0543b8d-f77a-4a07-bf4a-37f586958652.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-01e84bf7-f0db-466c-964d-484c170bec89 {
  display: none;
}
#s-b4214090-3055-464e-9d16-b9c1a4bcc897 {
  text-align: left;
}



.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b4214090-3055-464e-9d16-b9c1a4bcc897 img.shogun-image {
  width: 100%;
}



}
#s-6f65351e-0677-4767-9320-fa1d441fa109 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 140px;
text-align: center;
}

#s-6f65351e-0677-4767-9320-fa1d441fa109 .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-bd5ab652-8d28-40c6-870f-d8f2bf4fdaa6 {
  text-align: center;
}

#s-bd5ab652-8d28-40c6-870f-d8f2bf4fdaa6 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-bd5ab652-8d28-40c6-870f-d8f2bf4fdaa6 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-bd5ab652-8d28-40c6-870f-d8f2bf4fdaa6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 {
  margin-bottom: 10px;
text-align: left;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-cf44deb4-ffc8-4c71-86e9-64f205730107-btn-wrapper {
    text-align: center;
  }


#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-variant-btn:hover {
  background: #252525;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-variant-btn:active, #s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-cf44deb4-ffc8-4c71-86e9-64f205730107 .shg-variant-btn.disabled {
  background: #252525;
}

#s-2e0709ed-b4e7-43cc-8636-3fc80253d238 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-2e0709ed-b4e7-43cc-8636-3fc80253d238:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2e0709ed-b4e7-43cc-8636-3fc80253d238:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2e0709ed-b4e7-43cc-8636-3fc80253d238 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2e0709ed-b4e7-43cc-8636-3fc80253d238.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2e0709ed-b4e7-43cc-8636-3fc80253d238.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-2e0709ed-b4e7-43cc-8636-3fc80253d238.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-2e0709ed-b4e7-43cc-8636-3fc80253d238.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-df93714e-4f27-487a-84ee-2d538b8479be {
  display: none;
}
#s-96106dac-09a3-48fe-84bf-1de11f211b3f {
  text-align: left;
}



.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-96106dac-09a3-48fe-84bf-1de11f211b3f img.shogun-image {
  width: 100%;
}



}
#s-a97f6f63-4896-4a36-aec8-eea7baf003fb {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 140px;
text-align: center;
}

#s-a97f6f63-4896-4a36-aec8-eea7baf003fb .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-31d03fc8-1aa5-44cb-bad1-fcfdc06910b9 {
  text-align: center;
}

#s-31d03fc8-1aa5-44cb-bad1-fcfdc06910b9 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-31d03fc8-1aa5-44cb-bad1-fcfdc06910b9 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-31d03fc8-1aa5-44cb-bad1-fcfdc06910b9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 {
  margin-bottom: 10px;
text-align: left;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-7e46caf0-5e8e-4e18-888c-8f64133824e9-btn-wrapper {
    text-align: center;
  }


#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-variant-btn:hover {
  background: #252525;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-variant-btn:active, #s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-7e46caf0-5e8e-4e18-888c-8f64133824e9 .shg-variant-btn.disabled {
  background: #252525;
}

#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-3e4be10c-5b42-4ae5-9409-ab3babc49eb0.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-94f5f9e3-c251-4c66-835d-2a2bed86c301 {
  display: none;
}
#s-88471032-88a2-4c28-b5d4-1e150ea8d297 {
  text-align: left;
}



.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-88471032-88a2-4c28-b5d4-1e150ea8d297 img.shogun-image {
  width: 100%;
}



}
#s-5a58db9c-92ee-4d61-924f-76dba4a078a9 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 140px;
text-align: center;
}

#s-5a58db9c-92ee-4d61-924f-76dba4a078a9 .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-1b2319de-480c-4fb6-9e53-c9573ff080a3 {
  text-align: center;
}

#s-1b2319de-480c-4fb6-9e53-c9573ff080a3 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-1b2319de-480c-4fb6-9e53-c9573ff080a3 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-1b2319de-480c-4fb6-9e53-c9573ff080a3 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 {
  margin-bottom: 10px;
text-align: left;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9-btn-wrapper {
    text-align: center;
  }


#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-variant-btn:hover {
  background: #252525;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-variant-btn:active, #s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-a35fc7c9-5162-48db-8a62-ee7eaf0258c9 .shg-variant-btn.disabled {
  background: #252525;
}

#s-53885224-bf92-494f-b398-0636bb8e87ac {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-53885224-bf92-494f-b398-0636bb8e87ac:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-53885224-bf92-494f-b398-0636bb8e87ac:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-53885224-bf92-494f-b398-0636bb8e87ac {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-53885224-bf92-494f-b398-0636bb8e87ac.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-53885224-bf92-494f-b398-0636bb8e87ac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-53885224-bf92-494f-b398-0636bb8e87ac.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-53885224-bf92-494f-b398-0636bb8e87ac.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-08341e09-217a-4d1b-b76a-680631ab6c23 {
  margin-left: 5%;
margin-bottom: 50px;
margin-right: 5%;
padding-top: 15px;
}
@media (min-width: 1200px){#s-08341e09-217a-4d1b-b76a-680631ab6c23 {
  display: none;
}
#s-08341e09-217a-4d1b-b76a-680631ab6c23, #wrap-s-08341e09-217a-4d1b-b76a-680631ab6c23 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-08341e09-217a-4d1b-b76a-680631ab6c23 {
  display: none;
}
#s-08341e09-217a-4d1b-b76a-680631ab6c23, #wrap-s-08341e09-217a-4d1b-b76a-680631ab6c23 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-08341e09-217a-4d1b-b76a-680631ab6c23 {
  display: none;
}
#s-08341e09-217a-4d1b-b76a-680631ab6c23, #wrap-s-08341e09-217a-4d1b-b76a-680631ab6c23 { display:none !important; }}
@media (min-width: 0px) {
[id="s-08341e09-217a-4d1b-b76a-680631ab6c23"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-08341e09-217a-4d1b-b76a-680631ab6c23"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-08341e09-217a-4d1b-b76a-680631ab6c23"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-08341e09-217a-4d1b-b76a-680631ab6c23"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-fb1285a8-f7ed-4454-af83-d8da79873212 {
  display: none;
}
#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 {
  text-align: left;
}



.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-38732d4c-035f-4fe0-a89f-2cdca6cdafa5 img.shogun-image {
  width: 100%;
}



}
#s-2921d14f-f401-4cb7-9bd6-919e075d85fe {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 90px;
text-align: center;
}

#s-2921d14f-f401-4cb7-9bd6-919e075d85fe .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-3ae4006d-854c-47cd-8621-6131bfeaca8c {
  text-align: center;
}

#s-3ae4006d-854c-47cd-8621-6131bfeaca8c .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-3ae4006d-854c-47cd-8621-6131bfeaca8c .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-3ae4006d-854c-47cd-8621-6131bfeaca8c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade {
  margin-bottom: 10px;
text-align: left;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade-btn-wrapper {
    text-align: center;
  }


#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-variant-btn:hover {
  background: #252525;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-variant-btn:active, #s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-cd2905b3-eac6-4f0d-9f8f-e6bc5c4deade .shg-variant-btn.disabled {
  background: #252525;
}

#s-c2fbe9c7-7639-4fff-9218-801309264627 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-c2fbe9c7-7639-4fff-9218-801309264627:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c2fbe9c7-7639-4fff-9218-801309264627:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c2fbe9c7-7639-4fff-9218-801309264627 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c2fbe9c7-7639-4fff-9218-801309264627.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c2fbe9c7-7639-4fff-9218-801309264627.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-c2fbe9c7-7639-4fff-9218-801309264627.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-c2fbe9c7-7639-4fff-9218-801309264627.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-571fc276-80e0-470b-acc0-6c20a0b6c74f {
  display: none;
}
#s-853c1570-41cd-4b33-9a04-854075d1be58 {
  text-align: left;
}



.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-853c1570-41cd-4b33-9a04-854075d1be58 img.shogun-image {
  width: 100%;
}



}
#s-2c5cd058-58f8-44ad-9d15-becb2b73f52a {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 90px;
text-align: center;
}

#s-2c5cd058-58f8-44ad-9d15-becb2b73f52a .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-0812469a-36e8-4c12-b866-2fe973fe01db {
  text-align: center;
}

#s-0812469a-36e8-4c12-b866-2fe973fe01db .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-0812469a-36e8-4c12-b866-2fe973fe01db .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-0812469a-36e8-4c12-b866-2fe973fe01db .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee {
  margin-bottom: 10px;
text-align: left;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee-btn-wrapper {
    text-align: center;
  }


#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-variant-btn:hover {
  background: #252525;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-variant-btn:active, #s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-8c792551-1fde-423c-a3eb-8dd4c7dc6fee .shg-variant-btn.disabled {
  background: #252525;
}

#s-bd484000-679a-4867-a9ce-8a34656605a7 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-bd484000-679a-4867-a9ce-8a34656605a7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bd484000-679a-4867-a9ce-8a34656605a7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bd484000-679a-4867-a9ce-8a34656605a7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bd484000-679a-4867-a9ce-8a34656605a7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bd484000-679a-4867-a9ce-8a34656605a7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-bd484000-679a-4867-a9ce-8a34656605a7.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-bd484000-679a-4867-a9ce-8a34656605a7.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-ec909387-03e9-4815-ba16-efc093d1fc0f {
  display: none;
}
#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e {
  text-align: left;
}



.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2ce0ddc4-d266-45e8-a538-e892e70cdb0e img.shogun-image {
  width: 100%;
}



}
#s-9c1b2a1b-8304-46a0-a771-5879fcbc3e5c {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 90px;
text-align: center;
}

#s-9c1b2a1b-8304-46a0-a771-5879fcbc3e5c .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-6eb2c28e-d6e9-43ce-8a7a-dce1c1f27492 {
  text-align: center;
}

#s-6eb2c28e-d6e9-43ce-8a7a-dce1c1f27492 .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-6eb2c28e-d6e9-43ce-8a7a-dce1c1f27492 .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-6eb2c28e-d6e9-43ce-8a7a-dce1c1f27492 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da {
  margin-bottom: 10px;
text-align: left;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-8919f9f9-82b3-488a-a510-9bfc97ffa2da-btn-wrapper {
    text-align: center;
  }


#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-variant-btn:hover {
  background: #252525;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-variant-btn:active, #s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-8919f9f9-82b3-488a-a510-9bfc97ffa2da .shg-variant-btn.disabled {
  background: #252525;
}

#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-1a4984c6-02bd-4de7-b204-31ee50ee0f93.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-1a4984c6-02bd-4de7-b204-31ee50ee0f93.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-74993b5d-e448-4b44-9588-ead61c628413 {
  display: none;
}
#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e {
  text-align: left;
}



.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3fa731f8-ed13-4930-9e69-8f3a1551e96e img.shogun-image {
  width: 100%;
}



}
#s-113f107a-72d5-4a94-b6ce-654993c3bc3b {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 90px;
text-align: center;
}

#s-113f107a-72d5-4a94-b6ce-654993c3bc3b .shg-product-title-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-3eb1506b-3897-4a35-b82d-150e76bcf04c {
  text-align: center;
}

#s-3eb1506b-3897-4a35-b82d-150e76bcf04c .shg-product-sold-out {
  display: none;
  color: rgba(60, 60, 59, 1);
  font-size: 18px;
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
}

#s-3eb1506b-3897-4a35-b82d-150e76bcf04c .shg-product-price {
  color: rgba(60, 60, 59, 1);
  font-weight:  normal ;
  font-family: Amiri;
  font-style:  normal ;
  font-size: 18px;
}

#s-3eb1506b-3897-4a35-b82d-150e76bcf04c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 {
  margin-bottom: 10px;
text-align: left;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatch.not-available {
  cursor: not-allowed;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='2'/></svg>");
  background-repeat:no-repeat;
  background-position:center center;
  background-size: 100% 100%, auto;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid hsla(230, 13%, 23%, 0.1);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  transition: 0.2s;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465-btn-wrapper {
    text-align: center;
  }


#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-variant-btn:hover {
  background: #252525;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-variant-btn:active, #s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-1483e5e1-05f3-4b8e-9e98-9da99b8eb465 .shg-variant-btn.disabled {
  background: #252525;
}

#s-b66fec9a-c9e2-403e-bb15-40a071947323 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(157, 134, 97, 1);
text-align: center;
cursor: pointer;
}
#s-b66fec9a-c9e2-403e-bb15-40a071947323:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b66fec9a-c9e2-403e-bb15-40a071947323:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b66fec9a-c9e2-403e-bb15-40a071947323 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b66fec9a-c9e2-403e-bb15-40a071947323.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b66fec9a-c9e2-403e-bb15-40a071947323.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-b66fec9a-c9e2-403e-bb15-40a071947323.shg-btn.shg-product-atc-error {
  font-weight: 300;
  font-family: Poppins;
  
  
  color: rgba(247, 247, 247, 1);
}


  #s-b66fec9a-c9e2-403e-bb15-40a071947323.shg-btn.shg-product-atc-success {
    font-weight: 300;
    font-family: Poppins;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
  }


#s-f2cdacf1-c7d8-4c83-b2d5-52658863c810 {
  margin-top: 50px;
margin-left: 15%;
margin-bottom: 0px;
margin-right: 15%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f2cdacf1-c7d8-4c83-b2d5-52658863c810 {
  
}
}@media (max-width: 767px){#s-f2cdacf1-c7d8-4c83-b2d5-52658863c810 {
  
}
}
@media (min-width: 0px) {
[id="s-f2cdacf1-c7d8-4c83-b2d5-52658863c810"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f2cdacf1-c7d8-4c83-b2d5-52658863c810"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-f2cdacf1-c7d8-4c83-b2d5-52658863c810"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-f2cdacf1-c7d8-4c83-b2d5-52658863c810"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-06830adb-a3c8-4eb2-8783-84c29a140977 {
  margin-left: auto;
margin-right: auto;
padding-top: px;
padding-bottom: px;
max-width: 170px;
text-align: center;
}







  #s-06830adb-a3c8-4eb2-8783-84c29a140977 img.shogun-image {
    

    
    
    
  }


#s-06830adb-a3c8-4eb2-8783-84c29a140977 .shogun-image-content {
  
    align-items: center;
  
}

#s-75937e94-c5f9-43ff-ae7e-688198addcfd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-75937e94-c5f9-43ff-ae7e-688198addcfd .shogun-heading-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 1px;
  
}



#s-908c2ed7-9af9-4a3b-9d89-e74a514eb34e {
  margin-left: auto;
margin-right: auto;
max-width: 170px;
text-align: center;
}







  #s-908c2ed7-9af9-4a3b-9d89-e74a514eb34e img.shogun-image {
    

    
    
    
  }


#s-908c2ed7-9af9-4a3b-9d89-e74a514eb34e .shogun-image-content {
  
    align-items: center;
  
}

#s-3d8ee9bd-adba-4601-a6a8-a464633f62f9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3d8ee9bd-adba-4601-a6a8-a464633f62f9 .shogun-heading-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 1px;
  
}



#s-6f621377-cdc2-44e4-9a54-8ab5daa6befe {
  margin-left: auto;
margin-right: auto;
max-width: 170px;
text-align: center;
}







  #s-6f621377-cdc2-44e4-9a54-8ab5daa6befe img.shogun-image {
    

    
    
    
  }


#s-6f621377-cdc2-44e4-9a54-8ab5daa6befe .shogun-image-content {
  
    align-items: center;
  
}

#s-a2c7e3e5-160d-417e-8487-2c85f025330a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a2c7e3e5-160d-417e-8487-2c85f025330a .shogun-heading-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 1px;
  
}



#s-b5647a85-0c89-4dae-bb2e-16eff029316b {
  margin-left: auto;
margin-right: auto;
max-width: 170px;
text-align: center;
}







  #s-b5647a85-0c89-4dae-bb2e-16eff029316b img.shogun-image {
    

    
    
    
  }


#s-b5647a85-0c89-4dae-bb2e-16eff029316b .shogun-image-content {
  
    align-items: center;
  
}

#s-68795da9-8780-41ed-a065-f475e58a8f85 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-68795da9-8780-41ed-a065-f475e58a8f85 .shogun-heading-component h3 {
  color: rgba(60, 60, 59, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: 1px;
  
}



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