.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-1781341f-47f2-4f85-b0e6-64fb04a48845 {
  min-height: 50px;
}








#s-1781341f-47f2-4f85-b0e6-64fb04a48845 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1781341f-47f2-4f85-b0e6-64fb04a48845.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-688107e2-1bc6-4c4e-95f9-7b1c68e7e9a7 {
  min-height: 50px;
}
@media (max-width: 767px){#s-688107e2-1bc6-4c4e-95f9-7b1c68e7e9a7 {
  min-height: 100px;
}
}







#s-688107e2-1bc6-4c4e-95f9-7b1c68e7e9a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-688107e2-1bc6-4c4e-95f9-7b1c68e7e9a7.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-ff754891-319c-44dc-acdd-7247da3811a7 {
  min-height: 320px;
text-align: center;
}
@media (max-width: 767px){#s-ff754891-319c-44dc-acdd-7247da3811a7 {
  min-height: 425px;
}
}







#s-ff754891-319c-44dc-acdd-7247da3811a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-385834e4-6469-476b-8a6b-81d9bd3c9537 {
  min-height: 50px;
}
@media (max-width: 767px){#s-385834e4-6469-476b-8a6b-81d9bd3c9537 {
  margin-top: 15px;
margin-bottom: 0px;
min-height: 100px;
}
}







#s-385834e4-6469-476b-8a6b-81d9bd3c9537 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-385834e4-6469-476b-8a6b-81d9bd3c9537.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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-d90130e1-6c78-4c2f-9d00-40418fbc1150 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-d90130e1-6c78-4c2f-9d00-40418fbc1150 {
  margin-top: 5px;
margin-bottom: 25px;
padding-bottom: 0px;
}
}
#s-d90130e1-6c78-4c2f-9d00-40418fbc1150 .shogun-heading-component h1 {
  color: rgba(254, 254, 254, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-ba00cab8-733e-4e46-95c9-1ad58c77873a {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1200px;
}
@media (max-width: 767px){#s-ba00cab8-733e-4e46-95c9-1ad58c77873a {
  padding-left: 45px;
padding-right: 45px;
}
}
#s-f46007ac-9a07-4f35-8b3a-bebe04cdc368 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
margin-top: 1em;
margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(170, 207, 214, 1);
border-style: solid;
border-radius: 15px;
min-height: 50px;
max-width: 1200px;
background-position: center center;
}
@media (max-width: 767px){#s-f46007ac-9a07-4f35-8b3a-bebe04cdc368 {
  margin-top: 25px;
margin-bottom: 25px;
padding-left: 25px;
padding-right: 25px;
}
}
#s-f46007ac-9a07-4f35-8b3a-bebe04cdc368 {
  background-image: url(https://i.shgcdn.com/e0f6fc56-25cf-4750-b65e-c6c2235df503/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-f46007ac-9a07-4f35-8b3a-bebe04cdc368 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f46007ac-9a07-4f35-8b3a-bebe04cdc368.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cc6d7613-c4fe-4fb5-bdc5-4814642183b2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-cc6d7613-c4fe-4fb5-bdc5-4814642183b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc6d7613-c4fe-4fb5-bdc5-4814642183b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b9448785-93e6-405f-8dd7-338320c35aa7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

}

#s-bee87813-1ce8-469d-962b-4be1a4f6ae16 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-bee87813-1ce8-469d-962b-4be1a4f6ae16 {
  
}
}@media (max-width: 767px){#s-bee87813-1ce8-469d-962b-4be1a4f6ae16 {
  display: none;
}
#s-bee87813-1ce8-469d-962b-4be1a4f6ae16, #wrap-s-bee87813-1ce8-469d-962b-4be1a4f6ae16 { display:none !important; }}







#s-bee87813-1ce8-469d-962b-4be1a4f6ae16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bee87813-1ce8-469d-962b-4be1a4f6ae16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0031b505-20c0-489b-8bb4-5ec3bec28d2a {
  border-style: solid;
margin-left: 0px;
margin-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
text-align: left;
}

@media (min-width: 0px) {
[id="s-3c49be6a-64fc-4c40-b8d4-8d36264a6944"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3c49be6a-64fc-4c40-b8d4-8d36264a6944"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3c49be6a-64fc-4c40-b8d4-8d36264a6944"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3c49be6a-64fc-4c40-b8d4-8d36264a6944"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-d8a846ba-26fa-4f17-ad27-36eee2f22733 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-d8a846ba-26fa-4f17-ad27-36eee2f22733 {
  
}
}
#s-d8a846ba-26fa-4f17-ad27-36eee2f22733 {
  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-d6bbcb2f-9a70-4f56-81a8-54578cd430cb {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6bbcb2f-9a70-4f56-81a8-54578cd430cb img.shogun-image {
  width: 100%;
}



}
#s-710fc872-9921-4303-a6a7-ea8ba4ad8270 {
  min-height: 50px;
}








#s-710fc872-9921-4303-a6a7-ea8ba4ad8270 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-710fc872-9921-4303-a6a7-ea8ba4ad8270.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-8dd04997-4d79-4a13-8a3c-82df5ee6ada3 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8dd04997-4d79-4a13-8a3c-82df5ee6ada3 {
  margin-bottom: 5px;
}
}
#s-8dd04997-4d79-4a13-8a3c-82df5ee6ada3 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

.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-c0f0cd74-9bde-4f41-b988-a376b0120c5a {
  margin-left: 15%;
margin-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .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-c0f0cd74-9bde-4f41-b988-a376b0120c5a .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-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-c0f0cd74-9bde-4f41-b988-a376b0120c5a-btn-wrapper {
    text-align: center;
  }


#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-variant-btn:hover {
  background: #252525;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-variant-btn:active, #s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-c0f0cd74-9bde-4f41-b988-a376b0120c5a .shg-variant-btn.disabled {
  background: #252525;
}

#s-d6da206b-92d1-4eef-9a27-1ee6f1e9d8f1 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-d6da206b-92d1-4eef-9a27-1ee6f1e9d8f1 .shg-product-quantity-wrapper {
  display: flex;
}

#s-d6da206b-92d1-4eef-9a27-1ee6f1e9d8f1 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-d6da206b-92d1-4eef-9a27-1ee6f1e9d8f1 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-d6da206b-92d1-4eef-9a27-1ee6f1e9d8f1 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-d6da206b-92d1-4eef-9a27-1ee6f1e9d8f1 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-eeac2294-1959-4e91-b5f3-caed10f29170 {
  min-height: 50px;
}








#s-eeac2294-1959-4e91-b5f3-caed10f29170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eeac2294-1959-4e91-b5f3-caed10f29170.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d1f8f69-8e6d-4f11-a557-b0be375104d0 {
  text-align: center;
}
@media (max-width: 767px){#s-4d1f8f69-8e6d-4f11-a557-b0be375104d0 {
  margin-top: 10px;
}
}
#s-4d1f8f69-8e6d-4f11-a557-b0be375104d0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4d1f8f69-8e6d-4f11-a557-b0be375104d0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-4d1f8f69-8e6d-4f11-a557-b0be375104d0 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-caf86f92-6255-4dd2-8e3f-1be59fc9b96d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-4927c398-0574-43c6-874a-4eba594123ee {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-4927c398-0574-43c6-874a-4eba594123ee {
  
}
}
#s-4927c398-0574-43c6-874a-4eba594123ee {
  display: none;
}
#s-28611c2d-c505-4cba-afe6-9e1122259318 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-28611c2d-c505-4cba-afe6-9e1122259318 img.shogun-image {
  width: 100%;
}



}
#s-047b0820-673d-4d1a-999c-b804a57dc0b5 {
  min-height: 50px;
}








#s-047b0820-673d-4d1a-999c-b804a57dc0b5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-047b0820-673d-4d1a-999c-b804a57dc0b5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8909cfb5-f35f-42a2-9c86-cc9873b84137 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8909cfb5-f35f-42a2-9c86-cc9873b84137 {
  margin-bottom: 5px;
}
}
#s-8909cfb5-f35f-42a2-9c86-cc9873b84137 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-a3833158-2f4d-493c-bed5-514eb56c9861 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .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-a3833158-2f4d-493c-bed5-514eb56c9861 .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-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-a3833158-2f4d-493c-bed5-514eb56c9861-btn-wrapper {
    text-align: center;
  }


#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-variant-btn:hover {
  background: #252525;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-variant-btn:active, #s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-a3833158-2f4d-493c-bed5-514eb56c9861 .shg-variant-btn.disabled {
  background: #252525;
}

#s-a877b860-ca55-45b2-bb38-ea788c4c664d {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-a877b860-ca55-45b2-bb38-ea788c4c664d .shg-product-quantity-wrapper {
  display: flex;
}

#s-a877b860-ca55-45b2-bb38-ea788c4c664d .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-a877b860-ca55-45b2-bb38-ea788c4c664d .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-a877b860-ca55-45b2-bb38-ea788c4c664d .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-a877b860-ca55-45b2-bb38-ea788c4c664d .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-8444b22e-5a6e-4d61-aba0-d42a3f8d2bbb {
  min-height: 50px;
}








#s-8444b22e-5a6e-4d61-aba0-d42a3f8d2bbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8444b22e-5a6e-4d61-aba0-d42a3f8d2bbb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7a88984a-a9fa-46d4-938f-a178421a7a3a {
  text-align: center;
}
@media (max-width: 767px){#s-7a88984a-a9fa-46d4-938f-a178421a7a3a {
  margin-top: 10px;
}
}
#s-7a88984a-a9fa-46d4-938f-a178421a7a3a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7a88984a-a9fa-46d4-938f-a178421a7a3a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-7a88984a-a9fa-46d4-938f-a178421a7a3a .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-0341bc73-be6a-4089-9881-e3d538adffca {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-0341bc73-be6a-4089-9881-e3d538adffca:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-0341bc73-be6a-4089-9881-e3d538adffca:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-0341bc73-be6a-4089-9881-e3d538adffca {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-0341bc73-be6a-4089-9881-e3d538adffca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0341bc73-be6a-4089-9881-e3d538adffca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0341bc73-be6a-4089-9881-e3d538adffca.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-0341bc73-be6a-4089-9881-e3d538adffca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-0341bc73-be6a-4089-9881-e3d538adffca {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0341bc73-be6a-4089-9881-e3d538adffca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0341bc73-be6a-4089-9881-e3d538adffca.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-0341bc73-be6a-4089-9881-e3d538adffca.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-d54f4308-4ad6-4931-833f-5216a1e39d88 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-d54f4308-4ad6-4931-833f-5216a1e39d88 {
  
}
}
#s-d54f4308-4ad6-4931-833f-5216a1e39d88 {
  display: none;
}
#s-599f4c28-3fe1-4cd3-b373-8fca67970924 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-599f4c28-3fe1-4cd3-b373-8fca67970924 img.shogun-image {
  width: 100%;
}



}
#s-afb4c0ee-aa8f-4367-a038-3c2d67d75bcd {
  min-height: 50px;
}








#s-afb4c0ee-aa8f-4367-a038-3c2d67d75bcd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-afb4c0ee-aa8f-4367-a038-3c2d67d75bcd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23e7d48b-8384-492e-8802-7cf79fc91775 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-23e7d48b-8384-492e-8802-7cf79fc91775 {
  margin-bottom: 5px;
}
}
#s-23e7d48b-8384-492e-8802-7cf79fc91775 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-98616837-f815-4a49-a296-565c1496c744 {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-98616837-f815-4a49-a296-565c1496c744 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-98616837-f815-4a49-a296-565c1496c744 .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-98616837-f815-4a49-a296-565c1496c744 .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-98616837-f815-4a49-a296-565c1496c744 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-98616837-f815-4a49-a296-565c1496c744-btn-wrapper {
    text-align: center;
  }


#s-98616837-f815-4a49-a296-565c1496c744 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-variant-btn:hover {
  background: #252525;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-variant-btn:active, #s-98616837-f815-4a49-a296-565c1496c744 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-98616837-f815-4a49-a296-565c1496c744 .shg-variant-btn.disabled {
  background: #252525;
}

#s-ae902d55-c6e2-4448-b288-bfcdbaeed018 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-ae902d55-c6e2-4448-b288-bfcdbaeed018 .shg-product-quantity-wrapper {
  display: flex;
}

#s-ae902d55-c6e2-4448-b288-bfcdbaeed018 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-ae902d55-c6e2-4448-b288-bfcdbaeed018 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-ae902d55-c6e2-4448-b288-bfcdbaeed018 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-ae902d55-c6e2-4448-b288-bfcdbaeed018 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-8126c961-85b5-43c5-b3c2-e0e5599f024d {
  min-height: 50px;
}








#s-8126c961-85b5-43c5-b3c2-e0e5599f024d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8126c961-85b5-43c5-b3c2-e0e5599f024d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-942fe4d7-4c76-4ef3-b43f-1eb8ee1fd14e {
  text-align: center;
}
@media (max-width: 767px){#s-942fe4d7-4c76-4ef3-b43f-1eb8ee1fd14e {
  margin-top: 10px;
}
}
#s-942fe4d7-4c76-4ef3-b43f-1eb8ee1fd14e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-942fe4d7-4c76-4ef3-b43f-1eb8ee1fd14e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-942fe4d7-4c76-4ef3-b43f-1eb8ee1fd14e .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-01c3545c-b415-40e4-9e63-8ce132695159 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-01c3545c-b415-40e4-9e63-8ce132695159:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-01c3545c-b415-40e4-9e63-8ce132695159:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-01c3545c-b415-40e4-9e63-8ce132695159 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-01c3545c-b415-40e4-9e63-8ce132695159 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-01c3545c-b415-40e4-9e63-8ce132695159.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-01c3545c-b415-40e4-9e63-8ce132695159.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-01c3545c-b415-40e4-9e63-8ce132695159.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-01c3545c-b415-40e4-9e63-8ce132695159 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-01c3545c-b415-40e4-9e63-8ce132695159.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-01c3545c-b415-40e4-9e63-8ce132695159.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-01c3545c-b415-40e4-9e63-8ce132695159.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-7a2f9317-4402-49f3-9ca7-bd0ccbf4550f {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-7a2f9317-4402-49f3-9ca7-bd0ccbf4550f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a2f9317-4402-49f3-9ca7-bd0ccbf4550f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7a2f9317-4402-49f3-9ca7-bd0ccbf4550f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a2f9317-4402-49f3-9ca7-bd0ccbf4550f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-550353da-d37c-4679-9c3e-37b619b83c0d {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-550353da-d37c-4679-9c3e-37b619b83c0d {
  
}
}
#s-550353da-d37c-4679-9c3e-37b619b83c0d {
  display: none;
}
#s-f5e83ce3-f90a-4447-b188-d78cf6911782 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f5e83ce3-f90a-4447-b188-d78cf6911782 img.shogun-image {
  width: 100%;
}



}
#s-590c6455-a2c2-47c0-85c4-d10608644a2b {
  min-height: 50px;
}








#s-590c6455-a2c2-47c0-85c4-d10608644a2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-590c6455-a2c2-47c0-85c4-d10608644a2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb48b039-5938-494c-881e-05a2242b1e22 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-cb48b039-5938-494c-881e-05a2242b1e22 {
  margin-bottom: 5px;
}
}
#s-cb48b039-5938-494c-881e-05a2242b1e22 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 {
  margin-left: 15%;
margin-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .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-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .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-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9-btn-wrapper {
    text-align: center;
  }


#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-variant-btn:hover {
  background: #252525;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-variant-btn:active, #s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-439ca18a-4d77-44bc-bd33-2bd3fcba57d9 .shg-variant-btn.disabled {
  background: #252525;
}

#s-5cd07234-4493-4e46-91a3-bc6433b95d03 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-5cd07234-4493-4e46-91a3-bc6433b95d03 .shg-product-quantity-wrapper {
  display: flex;
}

#s-5cd07234-4493-4e46-91a3-bc6433b95d03 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-5cd07234-4493-4e46-91a3-bc6433b95d03 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-5cd07234-4493-4e46-91a3-bc6433b95d03 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-5cd07234-4493-4e46-91a3-bc6433b95d03 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-8e7f6e74-1bc2-488f-b6ba-c072f96cf029 {
  min-height: 50px;
}








#s-8e7f6e74-1bc2-488f-b6ba-c072f96cf029 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e7f6e74-1bc2-488f-b6ba-c072f96cf029.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8fe3dba-2642-48d5-98ca-3ccfcfa791a6 {
  text-align: center;
}
@media (max-width: 767px){#s-e8fe3dba-2642-48d5-98ca-3ccfcfa791a6 {
  margin-top: 10px;
}
}
#s-e8fe3dba-2642-48d5-98ca-3ccfcfa791a6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-e8fe3dba-2642-48d5-98ca-3ccfcfa791a6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-e8fe3dba-2642-48d5-98ca-3ccfcfa791a6 .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-38a2a431-4adb-43e1-8693-8bb977f75254 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-38a2a431-4adb-43e1-8693-8bb977f75254:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-38a2a431-4adb-43e1-8693-8bb977f75254:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-38a2a431-4adb-43e1-8693-8bb977f75254 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-38a2a431-4adb-43e1-8693-8bb977f75254 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a2a431-4adb-43e1-8693-8bb977f75254.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a2a431-4adb-43e1-8693-8bb977f75254.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-38a2a431-4adb-43e1-8693-8bb977f75254.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-38a2a431-4adb-43e1-8693-8bb977f75254 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-38a2a431-4adb-43e1-8693-8bb977f75254.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-38a2a431-4adb-43e1-8693-8bb977f75254.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-38a2a431-4adb-43e1-8693-8bb977f75254.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-bd11f121-a2c3-40b6-9a59-c90933467948 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-bd11f121-a2c3-40b6-9a59-c90933467948 {
  
}
}
#s-bd11f121-a2c3-40b6-9a59-c90933467948 {
  display: none;
}
#s-77008fef-5550-49b4-abf0-2c607ff85062 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77008fef-5550-49b4-abf0-2c607ff85062 img.shogun-image {
  width: 100%;
}



}
#s-d7daba1d-7197-4e93-b2c9-3f481d22ec5c {
  min-height: 50px;
}








#s-d7daba1d-7197-4e93-b2c9-3f481d22ec5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7daba1d-7197-4e93-b2c9-3f481d22ec5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-82273436-0756-4bc0-bec7-06420599ece5 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-82273436-0756-4bc0-bec7-06420599ece5 {
  margin-bottom: 5px;
}
}
#s-82273436-0756-4bc0-bec7-06420599ece5 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .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-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .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-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f-btn-wrapper {
    text-align: center;
  }


#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-variant-btn:hover {
  background: #252525;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-variant-btn:active, #s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-60ac56d0-43f3-455a-a952-8ccdb1f2ac4f .shg-variant-btn.disabled {
  background: #252525;
}

#s-697cb91e-2d4a-47de-af45-77e817caa419 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-697cb91e-2d4a-47de-af45-77e817caa419 .shg-product-quantity-wrapper {
  display: flex;
}

#s-697cb91e-2d4a-47de-af45-77e817caa419 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-697cb91e-2d4a-47de-af45-77e817caa419 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-697cb91e-2d4a-47de-af45-77e817caa419 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-697cb91e-2d4a-47de-af45-77e817caa419 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-81cbd2c9-4b5d-447e-b323-cccc9403712c {
  min-height: 50px;
}








#s-81cbd2c9-4b5d-447e-b323-cccc9403712c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81cbd2c9-4b5d-447e-b323-cccc9403712c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-001a269c-e9bb-4ec8-82f9-4aefb825c43f {
  text-align: center;
}
@media (max-width: 767px){#s-001a269c-e9bb-4ec8-82f9-4aefb825c43f {
  margin-top: 10px;
}
}
#s-001a269c-e9bb-4ec8-82f9-4aefb825c43f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-001a269c-e9bb-4ec8-82f9-4aefb825c43f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-001a269c-e9bb-4ec8-82f9-4aefb825c43f .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-f4bf3d25-c6d8-450b-b827-6ef26fe76afe {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-f4bf3d25-c6d8-450b-b827-6ef26fe76afe.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-4cc07649-266a-468b-b01a-28eff597c025 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-4cc07649-266a-468b-b01a-28eff597c025 {
  
}
}
#s-4cc07649-266a-468b-b01a-28eff597c025 {
  display: none;
}
#s-bacfed55-239b-4e85-9cad-8c4795f69d61 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bacfed55-239b-4e85-9cad-8c4795f69d61 img.shogun-image {
  width: 100%;
}



}
#s-4255561b-39f8-4c90-83d5-d6c32115e5d7 {
  min-height: 50px;
}








#s-4255561b-39f8-4c90-83d5-d6c32115e5d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4255561b-39f8-4c90-83d5-d6c32115e5d7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ddf35adb-8240-4d0c-89ac-729525e5a022 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-ddf35adb-8240-4d0c-89ac-729525e5a022 {
  margin-bottom: 5px;
}
}
#s-ddf35adb-8240-4d0c-89ac-729525e5a022 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-c96f36e6-4174-44bf-ae60-637cc20457a9 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .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-c96f36e6-4174-44bf-ae60-637cc20457a9 .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-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-c96f36e6-4174-44bf-ae60-637cc20457a9-btn-wrapper {
    text-align: center;
  }


#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-variant-btn:hover {
  background: #252525;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-variant-btn:active, #s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-c96f36e6-4174-44bf-ae60-637cc20457a9 .shg-variant-btn.disabled {
  background: #252525;
}

#s-e8b9f4de-eb90-40d2-aa68-51349357b3bc {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-e8b9f4de-eb90-40d2-aa68-51349357b3bc .shg-product-quantity-wrapper {
  display: flex;
}

#s-e8b9f4de-eb90-40d2-aa68-51349357b3bc .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-e8b9f4de-eb90-40d2-aa68-51349357b3bc .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-e8b9f4de-eb90-40d2-aa68-51349357b3bc .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-e8b9f4de-eb90-40d2-aa68-51349357b3bc .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-7f6c160e-3781-437b-8490-ecc22e3ba9b4 {
  min-height: 50px;
}








#s-7f6c160e-3781-437b-8490-ecc22e3ba9b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f6c160e-3781-437b-8490-ecc22e3ba9b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05ee7bff-0bd9-4a1e-98eb-b5b082918be5 {
  text-align: center;
}
@media (max-width: 767px){#s-05ee7bff-0bd9-4a1e-98eb-b5b082918be5 {
  margin-top: 10px;
}
}
#s-05ee7bff-0bd9-4a1e-98eb-b5b082918be5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-05ee7bff-0bd9-4a1e-98eb-b5b082918be5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-05ee7bff-0bd9-4a1e-98eb-b5b082918be5 .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-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-d1a90f20-03e8-4ef4-9da6-17d18e0af7d1.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-0bef1fc1-f11c-4cc0-8be1-fe030d601849 {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-0bef1fc1-f11c-4cc0-8be1-fe030d601849"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0bef1fc1-f11c-4cc0-8be1-fe030d601849"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0bef1fc1-f11c-4cc0-8be1-fe030d601849"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0bef1fc1-f11c-4cc0-8be1-fe030d601849"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-9b6fc439-3b03-4d4c-b5b8-ea9cdb0e884e {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-9b6fc439-3b03-4d4c-b5b8-ea9cdb0e884e {
  
}
}
#s-9b6fc439-3b03-4d4c-b5b8-ea9cdb0e884e {
  display: none;
}
#s-51747c47-5477-47ee-a333-2d2a62516d22 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-51747c47-5477-47ee-a333-2d2a62516d22 img.shogun-image {
  width: 100%;
}



}
#s-ffb2f0d8-b564-448a-96b9-3ac3f6783f07 {
  min-height: 50px;
}








#s-ffb2f0d8-b564-448a-96b9-3ac3f6783f07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ffb2f0d8-b564-448a-96b9-3ac3f6783f07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e036e8ee-d1c2-484d-b73d-a499d7fe4ec2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-e036e8ee-d1c2-484d-b73d-a499d7fe4ec2 {
  margin-bottom: 5px;
}
}
#s-e036e8ee-d1c2-484d-b73d-a499d7fe4ec2 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 {
  margin-left: 15%;
margin-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .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-e49aebb5-2ff5-44c1-96ae-2780689fb736 .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-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-e49aebb5-2ff5-44c1-96ae-2780689fb736-btn-wrapper {
    text-align: center;
  }


#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-variant-btn:hover {
  background: #252525;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-variant-btn:active, #s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-e49aebb5-2ff5-44c1-96ae-2780689fb736 .shg-variant-btn.disabled {
  background: #252525;
}

#s-b4fb75f6-9ca8-4602-9f29-0c65a595f307 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-b4fb75f6-9ca8-4602-9f29-0c65a595f307 .shg-product-quantity-wrapper {
  display: flex;
}

#s-b4fb75f6-9ca8-4602-9f29-0c65a595f307 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-b4fb75f6-9ca8-4602-9f29-0c65a595f307 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-b4fb75f6-9ca8-4602-9f29-0c65a595f307 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-b4fb75f6-9ca8-4602-9f29-0c65a595f307 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-831c99a8-f60c-451f-b9d4-96510495edf9 {
  min-height: 50px;
}








#s-831c99a8-f60c-451f-b9d4-96510495edf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-831c99a8-f60c-451f-b9d4-96510495edf9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-db53d5b9-872e-4c33-9077-cf3dd7aabbe3 {
  text-align: center;
}
@media (max-width: 767px){#s-db53d5b9-872e-4c33-9077-cf3dd7aabbe3 {
  margin-top: 10px;
}
}
#s-db53d5b9-872e-4c33-9077-cf3dd7aabbe3 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-db53d5b9-872e-4c33-9077-cf3dd7aabbe3 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-db53d5b9-872e-4c33-9077-cf3dd7aabbe3 .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-35a577f6-e4e5-4b43-924b-645787c464e3 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-35a577f6-e4e5-4b43-924b-645787c464e3:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-35a577f6-e4e5-4b43-924b-645787c464e3:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-35a577f6-e4e5-4b43-924b-645787c464e3 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-35a577f6-e4e5-4b43-924b-645787c464e3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-35a577f6-e4e5-4b43-924b-645787c464e3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-35a577f6-e4e5-4b43-924b-645787c464e3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-35a577f6-e4e5-4b43-924b-645787c464e3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-35a577f6-e4e5-4b43-924b-645787c464e3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-35a577f6-e4e5-4b43-924b-645787c464e3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-35a577f6-e4e5-4b43-924b-645787c464e3.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-35a577f6-e4e5-4b43-924b-645787c464e3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-011dce7a-c3c3-4228-a72a-d01a55951692 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-011dce7a-c3c3-4228-a72a-d01a55951692 {
  
}
}
#s-011dce7a-c3c3-4228-a72a-d01a55951692 {
  display: none;
}
#s-4c9d7004-70da-4ca6-b32c-54ef341f344c {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-4c9d7004-70da-4ca6-b32c-54ef341f344c img.shogun-image {
  width: 100%;
}



}
#s-440668f8-30cb-4ff8-a8db-16f8eb4d91db {
  min-height: 50px;
}








#s-440668f8-30cb-4ff8-a8db-16f8eb4d91db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-440668f8-30cb-4ff8-a8db-16f8eb4d91db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a86b15a8-1965-4429-8d30-49d962218529 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-a86b15a8-1965-4429-8d30-49d962218529 {
  margin-bottom: 5px;
}
}
#s-a86b15a8-1965-4429-8d30-49d962218529 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .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-861594cd-e873-4d7b-984a-6c9a4a2f12fa .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-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-861594cd-e873-4d7b-984a-6c9a4a2f12fa-btn-wrapper {
    text-align: center;
  }


#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-variant-btn:hover {
  background: #252525;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-variant-btn:active, #s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-861594cd-e873-4d7b-984a-6c9a4a2f12fa .shg-variant-btn.disabled {
  background: #252525;
}

#s-816f6529-e764-4942-b439-2ce57170ca60 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-816f6529-e764-4942-b439-2ce57170ca60 .shg-product-quantity-wrapper {
  display: flex;
}

#s-816f6529-e764-4942-b439-2ce57170ca60 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-816f6529-e764-4942-b439-2ce57170ca60 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-816f6529-e764-4942-b439-2ce57170ca60 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-816f6529-e764-4942-b439-2ce57170ca60 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-420bece5-8c5d-4475-8052-09eb563d2e9c {
  min-height: 50px;
}








#s-420bece5-8c5d-4475-8052-09eb563d2e9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-420bece5-8c5d-4475-8052-09eb563d2e9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c8df655b-81f8-4788-a9d5-9095625e162a {
  text-align: center;
}
@media (max-width: 767px){#s-c8df655b-81f8-4788-a9d5-9095625e162a {
  margin-top: 10px;
}
}
#s-c8df655b-81f8-4788-a9d5-9095625e162a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c8df655b-81f8-4788-a9d5-9095625e162a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-c8df655b-81f8-4788-a9d5-9095625e162a .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-d68da114-930c-48d0-8ab0-d61062962e7d {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-d68da114-930c-48d0-8ab0-d61062962e7d:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d68da114-930c-48d0-8ab0-d61062962e7d:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-d68da114-930c-48d0-8ab0-d61062962e7d {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-d68da114-930c-48d0-8ab0-d61062962e7d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d68da114-930c-48d0-8ab0-d61062962e7d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d68da114-930c-48d0-8ab0-d61062962e7d.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-d68da114-930c-48d0-8ab0-d61062962e7d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-d68da114-930c-48d0-8ab0-d61062962e7d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d68da114-930c-48d0-8ab0-d61062962e7d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d68da114-930c-48d0-8ab0-d61062962e7d.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-d68da114-930c-48d0-8ab0-d61062962e7d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-8d1da887-a2d4-46b6-9e7a-06c4a1b6f51e {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-8d1da887-a2d4-46b6-9e7a-06c4a1b6f51e {
  
}
}
#s-8d1da887-a2d4-46b6-9e7a-06c4a1b6f51e {
  display: none;
}
#s-b84fe5d2-6e38-499e-aee4-64711542570f {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b84fe5d2-6e38-499e-aee4-64711542570f img.shogun-image {
  width: 100%;
}



}
#s-b943141c-072f-447c-996b-92eb815864b4 {
  min-height: 50px;
}








#s-b943141c-072f-447c-996b-92eb815864b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b943141c-072f-447c-996b-92eb815864b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c14835f-b6d7-4ec2-9708-ed22c0e559a5 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-4c14835f-b6d7-4ec2-9708-ed22c0e559a5 {
  margin-bottom: 5px;
}
}
#s-4c14835f-b6d7-4ec2-9708-ed22c0e559a5 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-ff90b7a6-d9a8-48b1-adfb-58604354000f {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .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-ff90b7a6-d9a8-48b1-adfb-58604354000f .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-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-ff90b7a6-d9a8-48b1-adfb-58604354000f-btn-wrapper {
    text-align: center;
  }


#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-variant-btn:hover {
  background: #252525;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-variant-btn:active, #s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-ff90b7a6-d9a8-48b1-adfb-58604354000f .shg-variant-btn.disabled {
  background: #252525;
}

#s-96dbbac6-0e8a-452e-91d8-6e162012b401 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-96dbbac6-0e8a-452e-91d8-6e162012b401 .shg-product-quantity-wrapper {
  display: flex;
}

#s-96dbbac6-0e8a-452e-91d8-6e162012b401 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-96dbbac6-0e8a-452e-91d8-6e162012b401 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-96dbbac6-0e8a-452e-91d8-6e162012b401 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-96dbbac6-0e8a-452e-91d8-6e162012b401 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-a09d66d3-20c1-4852-b4b9-1b75d6403823 {
  min-height: 50px;
}








#s-a09d66d3-20c1-4852-b4b9-1b75d6403823 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a09d66d3-20c1-4852-b4b9-1b75d6403823.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17c214ee-a822-4146-81e7-bf0acc0b7088 {
  text-align: center;
}
@media (max-width: 767px){#s-17c214ee-a822-4146-81e7-bf0acc0b7088 {
  margin-top: 10px;
}
}
#s-17c214ee-a822-4146-81e7-bf0acc0b7088 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-17c214ee-a822-4146-81e7-bf0acc0b7088 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-17c214ee-a822-4146-81e7-bf0acc0b7088 .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-85899c70-9ca2-4e24-9fb0-b800a12accbc {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-85899c70-9ca2-4e24-9fb0-b800a12accbc:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-85899c70-9ca2-4e24-9fb0-b800a12accbc:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-85899c70-9ca2-4e24-9fb0-b800a12accbc {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-85899c70-9ca2-4e24-9fb0-b800a12accbc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-85899c70-9ca2-4e24-9fb0-b800a12accbc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-9493e39a-85db-4fd5-86c6-e12af2c463bf {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-9493e39a-85db-4fd5-86c6-e12af2c463bf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9493e39a-85db-4fd5-86c6-e12af2c463bf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9493e39a-85db-4fd5-86c6-e12af2c463bf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9493e39a-85db-4fd5-86c6-e12af2c463bf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-554552ac-1c82-450f-8d70-8e6798bddb67 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-554552ac-1c82-450f-8d70-8e6798bddb67 {
  
}
}
#s-554552ac-1c82-450f-8d70-8e6798bddb67 {
  display: none;
}
#s-5d02247b-bbef-445d-87d1-bc20177e5434 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5d02247b-bbef-445d-87d1-bc20177e5434 img.shogun-image {
  width: 100%;
}



}
#s-54aed46b-3316-4870-a60d-02650f3e6bf3 {
  min-height: 50px;
}








#s-54aed46b-3316-4870-a60d-02650f3e6bf3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-54aed46b-3316-4870-a60d-02650f3e6bf3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-78b4298f-0e69-41b0-b271-68007af01755 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-78b4298f-0e69-41b0-b271-68007af01755 {
  margin-bottom: 5px;
}
}
#s-78b4298f-0e69-41b0-b271-68007af01755 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb {
  margin-left: 15%;
margin-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .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-a6a1ae73-ce09-4590-86c5-0a1464957ecb .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-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-a6a1ae73-ce09-4590-86c5-0a1464957ecb-btn-wrapper {
    text-align: center;
  }


#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-variant-btn:hover {
  background: #252525;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-variant-btn:active, #s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-a6a1ae73-ce09-4590-86c5-0a1464957ecb .shg-variant-btn.disabled {
  background: #252525;
}

#s-e6ea7dd5-d0e4-434d-bc0d-c39df55832b3 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-e6ea7dd5-d0e4-434d-bc0d-c39df55832b3 .shg-product-quantity-wrapper {
  display: flex;
}

#s-e6ea7dd5-d0e4-434d-bc0d-c39df55832b3 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-e6ea7dd5-d0e4-434d-bc0d-c39df55832b3 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-e6ea7dd5-d0e4-434d-bc0d-c39df55832b3 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-e6ea7dd5-d0e4-434d-bc0d-c39df55832b3 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-c422c514-c572-4ed1-92ec-23fdfbfe0919 {
  min-height: 50px;
}








#s-c422c514-c572-4ed1-92ec-23fdfbfe0919 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c422c514-c572-4ed1-92ec-23fdfbfe0919.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3390fe78-e37f-444f-85f7-995380f70f89 {
  text-align: center;
}
@media (max-width: 767px){#s-3390fe78-e37f-444f-85f7-995380f70f89 {
  margin-top: 10px;
}
}
#s-3390fe78-e37f-444f-85f7-995380f70f89 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3390fe78-e37f-444f-85f7-995380f70f89 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-3390fe78-e37f-444f-85f7-995380f70f89 .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-5cf225bb-5d51-4a47-b88f-5153bebbeee9 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-5cf225bb-5d51-4a47-b88f-5153bebbeee9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-f6b81556-f320-4527-b9ae-c0e8e2695ac8 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-f6b81556-f320-4527-b9ae-c0e8e2695ac8 {
  
}
}
#s-f6b81556-f320-4527-b9ae-c0e8e2695ac8 {
  display: none;
}
#s-429a5742-bb2e-4933-b648-af8226882cc0 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-429a5742-bb2e-4933-b648-af8226882cc0 img.shogun-image {
  width: 100%;
}



}
#s-75876396-cfba-4e9b-8024-193c7e305f0a {
  min-height: 50px;
}








#s-75876396-cfba-4e9b-8024-193c7e305f0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75876396-cfba-4e9b-8024-193c7e305f0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1178b6b-67c6-4103-a5e0-29915cf2888a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-c1178b6b-67c6-4103-a5e0-29915cf2888a {
  margin-bottom: 5px;
}
}
#s-c1178b6b-67c6-4103-a5e0-29915cf2888a .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .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-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .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-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b-btn-wrapper {
    text-align: center;
  }


#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-variant-btn:hover {
  background: #252525;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-variant-btn:active, #s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-caf2c402-f170-4b3b-ba7e-3ad96c1e4c9b .shg-variant-btn.disabled {
  background: #252525;
}

#s-4309b998-1b72-4eff-ae51-2242e6cee3c9 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-4309b998-1b72-4eff-ae51-2242e6cee3c9 .shg-product-quantity-wrapper {
  display: flex;
}

#s-4309b998-1b72-4eff-ae51-2242e6cee3c9 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-4309b998-1b72-4eff-ae51-2242e6cee3c9 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-4309b998-1b72-4eff-ae51-2242e6cee3c9 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-4309b998-1b72-4eff-ae51-2242e6cee3c9 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-772591bf-1f84-4138-8ca0-252b9f180274 {
  min-height: 50px;
}








#s-772591bf-1f84-4138-8ca0-252b9f180274 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-772591bf-1f84-4138-8ca0-252b9f180274.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c2d3f795-847f-45ad-ae0c-5afed23a91b5 {
  text-align: center;
}
@media (max-width: 767px){#s-c2d3f795-847f-45ad-ae0c-5afed23a91b5 {
  margin-top: 10px;
}
}
#s-c2d3f795-847f-45ad-ae0c-5afed23a91b5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c2d3f795-847f-45ad-ae0c-5afed23a91b5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-c2d3f795-847f-45ad-ae0c-5afed23a91b5 .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-01ff077d-c111-440b-a7df-1e348ba8de9c {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-01ff077d-c111-440b-a7df-1e348ba8de9c:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-01ff077d-c111-440b-a7df-1e348ba8de9c:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-01ff077d-c111-440b-a7df-1e348ba8de9c {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-01ff077d-c111-440b-a7df-1e348ba8de9c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-01ff077d-c111-440b-a7df-1e348ba8de9c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-01ff077d-c111-440b-a7df-1e348ba8de9c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-01ff077d-c111-440b-a7df-1e348ba8de9c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-01ff077d-c111-440b-a7df-1e348ba8de9c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-01ff077d-c111-440b-a7df-1e348ba8de9c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-01ff077d-c111-440b-a7df-1e348ba8de9c.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-01ff077d-c111-440b-a7df-1e348ba8de9c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-b67a5a0a-a70f-4371-b031-7bc35178e121 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-b67a5a0a-a70f-4371-b031-7bc35178e121 {
  
}
}
#s-b67a5a0a-a70f-4371-b031-7bc35178e121 {
  display: none;
}
#s-ee4e28c3-fb48-4486-af79-1064299c2b3e {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e img.shogun-image {
  width: 100%;
}



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

.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ee4e28c3-fb48-4486-af79-1064299c2b3e img.shogun-image {
  width: 100%;
}



}
#s-737f7da8-16ad-4fae-9609-dafca13fec60 {
  min-height: 50px;
}








#s-737f7da8-16ad-4fae-9609-dafca13fec60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-737f7da8-16ad-4fae-9609-dafca13fec60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b62b689b-5d88-4981-94bf-83c4d596d437 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-b62b689b-5d88-4981-94bf-83c4d596d437 {
  margin-bottom: 5px;
}
}
#s-b62b689b-5d88-4981-94bf-83c4d596d437 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .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-f5ba4467-ce30-4411-90ea-8408b39e4ecb .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-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-f5ba4467-ce30-4411-90ea-8408b39e4ecb-btn-wrapper {
    text-align: center;
  }


#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-variant-btn:hover {
  background: #252525;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-variant-btn:active, #s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-f5ba4467-ce30-4411-90ea-8408b39e4ecb .shg-variant-btn.disabled {
  background: #252525;
}

#s-c942f734-d3a3-4fac-b07f-d3207be7a81b {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-c942f734-d3a3-4fac-b07f-d3207be7a81b .shg-product-quantity-wrapper {
  display: flex;
}

#s-c942f734-d3a3-4fac-b07f-d3207be7a81b .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-c942f734-d3a3-4fac-b07f-d3207be7a81b .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-c942f734-d3a3-4fac-b07f-d3207be7a81b .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-c942f734-d3a3-4fac-b07f-d3207be7a81b .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-50cef68b-91ed-488e-a798-41ac10667ad7 {
  min-height: 50px;
}








#s-50cef68b-91ed-488e-a798-41ac10667ad7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50cef68b-91ed-488e-a798-41ac10667ad7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c76abda1-388a-450e-9980-f74a63fe009c {
  text-align: center;
}
@media (max-width: 767px){#s-c76abda1-388a-450e-9980-f74a63fe009c {
  margin-top: 10px;
}
}
#s-c76abda1-388a-450e-9980-f74a63fe009c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c76abda1-388a-450e-9980-f74a63fe009c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-c76abda1-388a-450e-9980-f74a63fe009c .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-d9ae40f8-6912-4f2c-8b14-1a283bb29327 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-d9ae40f8-6912-4f2c-8b14-1a283bb29327.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-efc034a3-e48a-48dd-85b5-18ea0b1ee54e {
  margin-top: 50px;
margin-bottom: 50px;
}

@media (min-width: 0px) {
[id="s-efc034a3-e48a-48dd-85b5-18ea0b1ee54e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-efc034a3-e48a-48dd-85b5-18ea0b1ee54e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-efc034a3-e48a-48dd-85b5-18ea0b1ee54e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-efc034a3-e48a-48dd-85b5-18ea0b1ee54e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-c91c43cd-f8bf-4320-821e-619a127603d6 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-c91c43cd-f8bf-4320-821e-619a127603d6 {
  
}
}
#s-c91c43cd-f8bf-4320-821e-619a127603d6 {
  display: none;
}
#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8db46dbc-35db-48ba-8556-5636fe20f3f6 img.shogun-image {
  width: 100%;
}



}
#s-c7f5a069-e2b1-4802-9db4-70d229b006d2 {
  min-height: 50px;
}








#s-c7f5a069-e2b1-4802-9db4-70d229b006d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7f5a069-e2b1-4802-9db4-70d229b006d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3cc27e67-1dee-4f64-b38d-ecdb0741cfae {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-3cc27e67-1dee-4f64-b38d-ecdb0741cfae {
  margin-bottom: 5px;
}
}
#s-3cc27e67-1dee-4f64-b38d-ecdb0741cfae .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 {
  margin-left: 15%;
margin-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .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-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .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-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712-btn-wrapper {
    text-align: center;
  }


#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-variant-btn:hover {
  background: #252525;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-variant-btn:active, #s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-f4f9c913-3c14-4a65-8ec4-c3c4f527c712 .shg-variant-btn.disabled {
  background: #252525;
}

#s-460e6289-f016-40b8-a135-930e6817cff5 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-460e6289-f016-40b8-a135-930e6817cff5 .shg-product-quantity-wrapper {
  display: flex;
}

#s-460e6289-f016-40b8-a135-930e6817cff5 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-460e6289-f016-40b8-a135-930e6817cff5 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-460e6289-f016-40b8-a135-930e6817cff5 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-460e6289-f016-40b8-a135-930e6817cff5 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-f80efec6-00df-4279-a7ab-df3c96109b8a {
  min-height: 50px;
}








#s-f80efec6-00df-4279-a7ab-df3c96109b8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f80efec6-00df-4279-a7ab-df3c96109b8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-43817248-6b20-4a85-9762-271599197363 {
  text-align: center;
}
@media (max-width: 767px){#s-43817248-6b20-4a85-9762-271599197363 {
  margin-top: 10px;
}
}
#s-43817248-6b20-4a85-9762-271599197363 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-43817248-6b20-4a85-9762-271599197363 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-43817248-6b20-4a85-9762-271599197363 .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-3d7f2db9-789f-498a-889b-a02ba16b9503 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-3d7f2db9-789f-498a-889b-a02ba16b9503:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-3d7f2db9-789f-498a-889b-a02ba16b9503:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-3d7f2db9-789f-498a-889b-a02ba16b9503 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-3d7f2db9-789f-498a-889b-a02ba16b9503 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3d7f2db9-789f-498a-889b-a02ba16b9503.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3d7f2db9-789f-498a-889b-a02ba16b9503.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-3d7f2db9-789f-498a-889b-a02ba16b9503.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-3d7f2db9-789f-498a-889b-a02ba16b9503 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3d7f2db9-789f-498a-889b-a02ba16b9503.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3d7f2db9-789f-498a-889b-a02ba16b9503.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-3d7f2db9-789f-498a-889b-a02ba16b9503.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-fcdc42cf-212e-4ad8-8411-c76d5a76580d {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-fcdc42cf-212e-4ad8-8411-c76d5a76580d {
  
}
}
#s-fcdc42cf-212e-4ad8-8411-c76d5a76580d {
  display: none;
}
#s-aba8f195-05e5-4b00-be52-164253edc95c {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c img.shogun-image {
  width: 100%;
}



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

.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aba8f195-05e5-4b00-be52-164253edc95c img.shogun-image {
  width: 100%;
}



}
#s-e24b7f16-cc3e-4404-9c4d-7dc86dabd4c2 {
  min-height: 50px;
}








#s-e24b7f16-cc3e-4404-9c4d-7dc86dabd4c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e24b7f16-cc3e-4404-9c4d-7dc86dabd4c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b40e369-8d5c-4b5f-bfba-368d4d99e821 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8b40e369-8d5c-4b5f-bfba-368d4d99e821 {
  margin-bottom: 5px;
}
}
#s-8b40e369-8d5c-4b5f-bfba-368d4d99e821 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .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-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .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-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-46bdc5cf-0feb-42f6-a47f-5cd42afab704-btn-wrapper {
    text-align: center;
  }


#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-variant-btn:hover {
  background: #252525;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-variant-btn:active, #s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-46bdc5cf-0feb-42f6-a47f-5cd42afab704 .shg-variant-btn.disabled {
  background: #252525;
}

#s-621ff2d6-896f-4a13-9604-a274cfe3d724 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-621ff2d6-896f-4a13-9604-a274cfe3d724 .shg-product-quantity-wrapper {
  display: flex;
}

#s-621ff2d6-896f-4a13-9604-a274cfe3d724 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-621ff2d6-896f-4a13-9604-a274cfe3d724 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-621ff2d6-896f-4a13-9604-a274cfe3d724 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-621ff2d6-896f-4a13-9604-a274cfe3d724 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-96158b6e-49ef-405b-bea1-f568141c593b {
  min-height: 50px;
}








#s-96158b6e-49ef-405b-bea1-f568141c593b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96158b6e-49ef-405b-bea1-f568141c593b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d10e3b8-7af7-479b-89cd-5d0e3d39666a {
  text-align: center;
}
@media (max-width: 767px){#s-0d10e3b8-7af7-479b-89cd-5d0e3d39666a {
  margin-top: 10px;
}
}
#s-0d10e3b8-7af7-479b-89cd-5d0e3d39666a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0d10e3b8-7af7-479b-89cd-5d0e3d39666a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-0d10e3b8-7af7-479b-89cd-5d0e3d39666a .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-2d638c78-efdb-47d0-a242-37a0144c4d03 {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-2d638c78-efdb-47d0-a242-37a0144c4d03:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2d638c78-efdb-47d0-a242-37a0144c4d03:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-2d638c78-efdb-47d0-a242-37a0144c4d03 {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-2d638c78-efdb-47d0-a242-37a0144c4d03 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2d638c78-efdb-47d0-a242-37a0144c4d03.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2d638c78-efdb-47d0-a242-37a0144c4d03.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-2d638c78-efdb-47d0-a242-37a0144c4d03.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-2d638c78-efdb-47d0-a242-37a0144c4d03 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2d638c78-efdb-47d0-a242-37a0144c4d03.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2d638c78-efdb-47d0-a242-37a0144c4d03.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-2d638c78-efdb-47d0-a242-37a0144c4d03.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-33690a30-8f53-433d-aa5b-1b1e58ad2ab9 {
  border-style: solid;
padding-top: 0px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 1px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-style: solid;
}
@media (min-width: 768px) and (max-width: 991px){#s-33690a30-8f53-433d-aa5b-1b1e58ad2ab9 {
  
}
}
#s-33690a30-8f53-433d-aa5b-1b1e58ad2ab9 {
  display: none;
}
#s-de172a60-89ee-4971-b699-225f6a06353d {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 3%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}



.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d img.shogun-image {
  width: 100%;
}



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

.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-de172a60-89ee-4971-b699-225f6a06353d img.shogun-image {
  width: 100%;
}



}
#s-badfca3f-aeb7-4f78-8482-627e8543d9a7 {
  min-height: 50px;
}








#s-badfca3f-aeb7-4f78-8482-627e8543d9a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-badfca3f-aeb7-4f78-8482-627e8543d9a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2caa8d2f-6d9c-4829-9d36-3976135f3ad6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-2caa8d2f-6d9c-4829-9d36-3976135f3ad6 {
  margin-bottom: 5px;
}
}
#s-2caa8d2f-6d9c-4829-9d36-3976135f3ad6 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 {
  padding-left: 15%;
padding-right: 15%;
text-align: left;
}
@media (max-width: 767px){#s-6c812132-3536-46c1-be7a-65c55d179bd4 {
  margin-top: 5px;
margin-bottom: 0px;
}
}
#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .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-6c812132-3536-46c1-be7a-65c55d179bd4 .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-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-6c812132-3536-46c1-be7a-65c55d179bd4-btn-wrapper {
    text-align: center;
  }


#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-variant-btn {
  color: #ffffff;
  background: #252525;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-variant-btn:hover {
  background: #252525;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-variant-btn:active, #s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-variant-btn.active {
  background: #252525;
  color: #ffffff;
}

#s-6c812132-3536-46c1-be7a-65c55d179bd4 .shg-variant-btn.disabled {
  background: #252525;
}

#s-264984df-054b-4c4a-9b2b-ddf3b4430721 {
  margin-top: 9px;
margin-bottom: 3px;
padding-left: 15%;
padding-right: 15%;
text-align: center;
}

#s-264984df-054b-4c4a-9b2b-ddf3b4430721 .shg-product-quantity-wrapper {
  display: flex;
}

#s-264984df-054b-4c4a-9b2b-ddf3b4430721 .shg-product-quantity-wrapper input {
  flex: auto;
  text-align: center;
  width: calc(100% - 70px);
  margin: 0 !important;
}


  #s-264984df-054b-4c4a-9b2b-ddf3b4430721 .shg-product-quantity-wrapper button.shg-product-quantity-button {
    border: 0 !important;
    margin: 0 !important;
  }

  #s-264984df-054b-4c4a-9b2b-ddf3b4430721 .shg-product-quantity-wrapper button.shg-product-quantity-button-left {
    margin-right: 10px !important;
  }

  #s-264984df-054b-4c4a-9b2b-ddf3b4430721 .shg-product-quantity-wrapper button.shg-product-quantity-button-right {
    margin-left: 10px !important;
  }




#s-bf4d1dec-a15b-4edc-865f-6c58c1dbc47d {
  min-height: 50px;
}








#s-bf4d1dec-a15b-4edc-865f-6c58c1dbc47d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf4d1dec-a15b-4edc-865f-6c58c1dbc47d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea692506-a4e6-4767-b225-28b0c6ec8f3e {
  text-align: center;
}
@media (max-width: 767px){#s-ea692506-a4e6-4767-b225-28b0c6ec8f3e {
  margin-top: 10px;
}
}
#s-ea692506-a4e6-4767-b225-28b0c6ec8f3e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ea692506-a4e6-4767-b225-28b0c6ec8f3e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-ea692506-a4e6-4767-b225-28b0c6ec8f3e .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-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f {
  border-style: solid;
margin-top: 12px;
margin-bottom: 12px;
padding-top: 8px;
padding-left: 25px;
padding-bottom: 8px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 30px;
background-color: rgba(255, 140, 43, 1);
text-align: center;
cursor: pointer;
}
#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f:hover {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f:active {background-color: rgba(226, 112, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 768px) and (max-width: 991px){#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f {
  margin-top: -2px;
margin-bottom: -2px;
}
}


#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (max-width: 767px){

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f.shg-btn {
  color: #ffffff;
  font-size: 24px;
  
  
  
  display:  inline-block ;
}

#s-3163dd4b-c97b-4cf9-9b66-f805ce4ec09f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-8a80d448-f61e-4b9f-9c56-3f88b3194539 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-8a80d448-f61e-4b9f-9c56-3f88b3194539 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a80d448-f61e-4b9f-9c56-3f88b3194539.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe5341dc-4e30-4caf-bdf2-78a7100dfe64 {
  min-height: 50px;
}








#s-fe5341dc-4e30-4caf-bdf2-78a7100dfe64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe5341dc-4e30-4caf-bdf2-78a7100dfe64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f8a1437-4de4-4708-ab20-2f41d4ec5643 {
  margin-top: 55px;
margin-bottom: 65px;
min-height: 50px;
background-color: rgba(104, 184, 193, 1);
}








#s-8f8a1437-4de4-4708-ab20-2f41d4ec5643 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f8a1437-4de4-4708-ab20-2f41d4ec5643.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30a64db8-bd95-4afc-bc8e-fe6447203f34 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 45px;
padding-bottom: 20px;
padding-right: 45px;
min-height: 50px;
max-width: 1290px;
}








#s-30a64db8-bd95-4afc-bc8e-fe6447203f34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30a64db8-bd95-4afc-bc8e-fe6447203f34.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-86b0bece-a6e1-4d48-9ffe-2cce78f09f64 {
  padding-top: 30px;
padding-bottom: 15px;
text-align: center;
}

#s-86b0bece-a6e1-4d48-9ffe-2cce78f09f64 .shogun-heading-component h2 {
  color: rgba(253, 253, 253, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  
}



#s-dc2ca78e-a317-4a16-a3a0-8a19996c1c9b {
  padding-top: 5px;
padding-left: 0px;
padding-bottom: 30px;
padding-right: 0px;
}

#s-4ed5c604-0704-4882-9346-d3ecafc7b723 {
  min-height: 50px;
}








#s-4ed5c604-0704-4882-9346-d3ecafc7b723 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ed5c604-0704-4882-9346-d3ecafc7b723.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4708f54c-66a3-48eb-a6ff-3bf7066ab184 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 45px;
padding-right: 45px;
min-height: 50px;
max-width: 1290px;
}
@media (max-width: 767px){#s-4708f54c-66a3-48eb-a6ff-3bf7066ab184 {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-4708f54c-66a3-48eb-a6ff-3bf7066ab184 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4708f54c-66a3-48eb-a6ff-3bf7066ab184.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body > .shogun-tab-content {
  display: none;
}

.shogun-tabs-body > .shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 0px;
}


  #s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(255, 140, 43, 1);
    border: 1px solid #ddd;
  }
#s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(41, 138, 145, 1);
  font-family: Comfortaa;
  font-weight: 700;
  font-style: ;
  font-size: 18px;
}

#s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 140, 43, 1);
}

#s-36110cea-8f8a-4348-bffc-7e5b09ceedb6 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-e8f89e4e-2613-45fe-ac05-17bd91f9e5ad {
  border-style: solid;
margin-top: 15px;
margin-bottom: 0px;
padding-top: 40px;
padding-left: 85px;
padding-bottom: 60px;
padding-right: 85px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(221, 221, 221, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-e8f89e4e-2613-45fe-ac05-17bd91f9e5ad {
  padding-top: 30px;
padding-left: 45px;
padding-bottom: 30px;
padding-right: 45px;
}
}







#s-e8f89e4e-2613-45fe-ac05-17bd91f9e5ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8f89e4e-2613-45fe-ac05-17bd91f9e5ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-09fa0ce0-2f54-406c-9f88-019202cbe351 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-09fa0ce0-2f54-406c-9f88-019202cbe351 .shogun-heading-component h2 {
  color: rgba(41, 138, 145, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-86ac153a-2fa5-41be-b56f-aa62ccd50938 {
  margin-top: 10px;
}

@media (min-width: 1200px){#s-15d76ccc-4880-4643-9ca2-5c973154ea69 {
  display: none;
}
#s-15d76ccc-4880-4643-9ca2-5c973154ea69, #wrap-s-15d76ccc-4880-4643-9ca2-5c973154ea69 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15d76ccc-4880-4643-9ca2-5c973154ea69 {
  display: none;
}
#s-15d76ccc-4880-4643-9ca2-5c973154ea69, #wrap-s-15d76ccc-4880-4643-9ca2-5c973154ea69 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15d76ccc-4880-4643-9ca2-5c973154ea69 {
  display: none;
}
#s-15d76ccc-4880-4643-9ca2-5c973154ea69, #wrap-s-15d76ccc-4880-4643-9ca2-5c973154ea69 { display:none !important; }}@media (max-width: 767px){#s-15d76ccc-4880-4643-9ca2-5c973154ea69 {
  margin-top: 0px;
margin-bottom: 15px;
}
}
#s-069ca672-ecea-483a-8d21-c9c461aad36f {
  min-height: 50px;
}








#s-069ca672-ecea-483a-8d21-c9c461aad36f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-069ca672-ecea-483a-8d21-c9c461aad36f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7cb14913-b498-4de7-95b9-2f4b3796cea2 {
  margin-top: 0px;
margin-bottom: 10px;
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-cbf50738-d64a-4912-97a7-8ffb42635699 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-cbf50738-d64a-4912-97a7-8ffb42635699 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-cbf50738-d64a-4912-97a7-8ffb42635699 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: center;
}

#s-cbf50738-d64a-4912-97a7-8ffb42635699 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-cbf50738-d64a-4912-97a7-8ffb42635699 td.shogun-table-column, #s-cbf50738-d64a-4912-97a7-8ffb42635699 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-d799615e-6f19-4115-af1c-fbf0afac3217 {
  padding-left: 15px;
padding-right: 15px;
}

#s-cd2b0bdd-38cd-4b96-b74d-6adace34b6f3 {
  padding-left: 15px;
padding-right: 15px;
}

#s-32ad98d8-a977-45a6-b0ee-f8841b4a5207 {
  padding-left: 15px;
padding-right: 15px;
}

#s-a47d7934-8666-4a34-8b78-45790eedd0df {
  padding-left: 15px;
padding-right: 15px;
}

#s-7e6078d2-b92f-4825-a845-510a8a32ce19 {
  padding-left: 15px;
padding-right: 15px;
}

#s-942aa64c-eda2-4ef3-86e6-530962a03a15 {
  padding-left: 15px;
padding-right: 15px;
}

#s-d9834c81-25c8-472c-b540-1e937a963dbb {
  padding-left: 15px;
padding-right: 15px;
}

#s-577ca072-06a8-435c-9d78-3b6a01c5568e {
  padding-left: 15px;
padding-right: 15px;
}

#s-5dd141e5-8452-4f2f-9fd4-bffe2d93f4d0 {
  padding-left: 15px;
padding-right: 15px;
}

#s-93a43dd0-12ee-4769-bbc1-75c240c9ebaa {
  padding-left: 15px;
padding-right: 15px;
}

#s-4e2ead3b-1862-4d44-a7ec-13e2064f705d {
  padding-left: 15px;
padding-right: 15px;
}

#s-a542de66-6974-4780-a459-c1c5452d4412 {
  padding-left: 15px;
padding-right: 15px;
}

#s-0d91fb28-4648-4e8a-b410-5a2a84cfb22c {
  padding-left: 15px;
}

#s-690ebfb6-5f1a-437f-83a1-4fdeecdee946 {
  padding-left: 15px;
padding-right: 0px;
}

#s-18874541-142d-4266-adf3-11f7b56e781f {
  margin-top: 10px;
}
@media (min-width: 1200px){#s-18874541-142d-4266-adf3-11f7b56e781f {
  display: none;
}
#s-18874541-142d-4266-adf3-11f7b56e781f, #wrap-s-18874541-142d-4266-adf3-11f7b56e781f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-18874541-142d-4266-adf3-11f7b56e781f {
  display: none;
}
#s-18874541-142d-4266-adf3-11f7b56e781f, #wrap-s-18874541-142d-4266-adf3-11f7b56e781f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-18874541-142d-4266-adf3-11f7b56e781f {
  display: none;
}
#s-18874541-142d-4266-adf3-11f7b56e781f, #wrap-s-18874541-142d-4266-adf3-11f7b56e781f { display:none !important; }}@media (max-width: 767px){#s-18874541-142d-4266-adf3-11f7b56e781f {
  margin-bottom: 15px;
}
}
#s-061a4415-e13d-47e7-bee9-9d9cd32978f1 {
  margin-top: 25px;
margin-bottom: 10px;
}

#s-6395564f-6b4b-4499-aeff-3649fbee762c .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-6395564f-6b4b-4499-aeff-3649fbee762c table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-6395564f-6b4b-4499-aeff-3649fbee762c td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: center;
}

#s-6395564f-6b4b-4499-aeff-3649fbee762c td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-6395564f-6b4b-4499-aeff-3649fbee762c td.shogun-table-column, #s-6395564f-6b4b-4499-aeff-3649fbee762c td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-0b7366a6-9fba-4ee8-bcb5-6c085e26af5d {
  padding-left: 15px;
padding-right: 15px;
}

#s-6f774056-ae24-4094-98a6-c525d94a4993 {
  padding-left: 15px;
padding-right: 15px;
}

#s-d8a54dc8-2a2b-4dd2-a610-06af03c84ad5 {
  padding-left: 15px;
padding-right: 15px;
}

#s-59a3fbd5-c5e9-41c1-85ee-480adca3a358 {
  padding-left: 15px;
padding-right: 15px;
}

#s-1e2038d9-e79a-472c-b9b8-1299d0d9e713 {
  padding-left: 15px;
padding-right: 15px;
}

#s-85a719b4-8ac9-41fb-adc0-253d53da25b7 {
  padding-left: 15px;
padding-right: 15px;
}

#s-d03146b6-f8d9-4fad-ae2b-fcbd17e85c4b {
  padding-left: 15px;
}

#s-a79c8dac-c5d0-4abd-9100-c8f884281f13 {
  padding-left: 15px;
padding-right: 0px;
}

#s-9ad5409b-bc2b-4838-832a-9fb675786f64 {
  border-style: solid;
margin-top: 10px;
padding-top: 40px;
padding-left: 85px;
padding-bottom: 60px;
padding-right: 85px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(221, 221, 221, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-9ad5409b-bc2b-4838-832a-9fb675786f64 {
  padding-top: 30px;
padding-left: 45px;
padding-bottom: 30px;
padding-right: 45px;
}
}







#s-9ad5409b-bc2b-4838-832a-9fb675786f64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9ad5409b-bc2b-4838-832a-9fb675786f64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-846a05dd-1275-4e00-b9d4-5a60fdbfad80 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-846a05dd-1275-4e00-b9d4-5a60fdbfad80 .shogun-heading-component h2 {
  color: rgba(41, 138, 145, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4863f1a7-7cba-4947-bbd2-e20a07e42fcf {
  border-style: solid;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

#s-ecd1d03b-b346-4af9-8f0b-dfa9d9622b5c {
  border-style: solid;
margin-top: 15px;
margin-bottom: 0px;
padding-top: 40px;
padding-left: 85px;
padding-bottom: 60px;
padding-right: 85px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(221, 221, 221, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-ecd1d03b-b346-4af9-8f0b-dfa9d9622b5c {
  padding-top: 30px;
padding-left: 45px;
padding-bottom: 30px;
padding-right: 45px;
}
}







#s-ecd1d03b-b346-4af9-8f0b-dfa9d9622b5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecd1d03b-b346-4af9-8f0b-dfa9d9622b5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba5329bb-6d9a-40ce-8785-c1fa198855ec {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ba5329bb-6d9a-40ce-8785-c1fa198855ec .shogun-heading-component h2 {
  color: rgba(41, 138, 145, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-d8fe2bb8-a4e2-4aa8-b509-8b56007a02db {
  min-height: 50px;
}








#s-d8fe2bb8-a4e2-4aa8-b509-8b56007a02db > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8fe2bb8-a4e2-4aa8-b509-8b56007a02db.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-525ec047-d903-44d0-9475-03f7be0d1dbe {
  margin-top: 15px;
}

#s-8fbd6ddd-8557-4231-8531-d07bf32539dd {
  margin-top: 0px;
}

#s-ec58a4a4-db3c-4f3b-8c86-a5cf03b42ac7 {
  margin-top: 15px;
}

#s-af0fcc1c-2b9c-4c20-a3f6-861b3dbd01de {
  margin-top: 0px;
}

#s-a90783e2-912c-45bb-a743-e3d6ae01b538 {
  margin-top: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a90783e2-912c-45bb-a743-e3d6ae01b538 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  
}



#s-e989cd9d-4934-4de5-ba55-7b324491b099 {
  padding-left: 45px;
padding-right: 45px;
min-height: 50px;
}
@media (max-width: 767px){#s-e989cd9d-4934-4de5-ba55-7b324491b099 {
  padding-left: 25px;
padding-right: 25px;
}
}







#s-e989cd9d-4934-4de5-ba55-7b324491b099 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e989cd9d-4934-4de5-ba55-7b324491b099.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fafe78c1-40b7-4440-abd5-f300dec494f8 {
  margin-left: auto;
margin-right: auto;
max-width: 1400px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fafe78c1-40b7-4440-abd5-f300dec494f8 {
  padding-left: 15px;
padding-right: 15px;
}
}
@media (min-width: 0px) {
[id="s-fafe78c1-40b7-4440-abd5-f300dec494f8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-fafe78c1-40b7-4440-abd5-f300dec494f8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fafe78c1-40b7-4440-abd5-f300dec494f8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fafe78c1-40b7-4440-abd5-f300dec494f8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-dba105ad-dac4-4b0e-92a2-dd3a481da1ca {
  border-style: solid;
padding-bottom: 45px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(238, 238, 238, 1);
border-style: solid;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-dba105ad-dac4-4b0e-92a2-dd3a481da1ca {
  border-style: solid;
border-color: #000;
border-bottom-width: 1px;
border-right-width: 0px;
}
}@media (max-width: 767px){#s-dba105ad-dac4-4b0e-92a2-dd3a481da1ca {
  border-style: solid;
border-color: #000;
padding-bottom: 35px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
}
}







#s-dba105ad-dac4-4b0e-92a2-dd3a481da1ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dba105ad-dac4-4b0e-92a2-dd3a481da1ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-188b601c-61be-416f-b5f8-d493abecb72d {
  margin-top: 2em;
margin-bottom: 0em;
}

#s-3a3ead29-e857-4185-bfaa-8151164eab17 {
  margin-top: 10px;
text-align: center;
}







  #s-3a3ead29-e857-4185-bfaa-8151164eab17 img.shogun-image {
    

    
    
    
  }


#s-3a3ead29-e857-4185-bfaa-8151164eab17 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

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

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

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

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

#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 28px;
background-color: rgba(247, 116, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf:hover {background-color: rgba(250, 151, 101, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf:active {background-color: rgba(247, 116, 50, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf-btn-wrapper {
    text-align: center;
  }


#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf-btn-wrapper {
    text-align: center;
  }


#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf-btn-wrapper {
    text-align: center;
  }


#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf-btn-wrapper {
    text-align: center;
  }


#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf-btn-wrapper {
    text-align: center;
  }


#s-c2ce0bc5-5514-4965-97ed-4c2e8331a5bf.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}
#s-72c12cc7-6dce-47e1-b129-2c7036c3124e {
  margin-top: 15px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 28px;
background-color: rgba(247, 116, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-72c12cc7-6dce-47e1-b129-2c7036c3124e:hover {background-color: rgba(250, 151, 101, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-72c12cc7-6dce-47e1-b129-2c7036c3124e:active {background-color: rgba(247, 116, 50, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-72c12cc7-6dce-47e1-b129-2c7036c3124e-btn-wrapper {
    text-align: center;
  }


#s-72c12cc7-6dce-47e1-b129-2c7036c3124e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-72c12cc7-6dce-47e1-b129-2c7036c3124e-btn-wrapper {
    text-align: center;
  }


#s-72c12cc7-6dce-47e1-b129-2c7036c3124e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-72c12cc7-6dce-47e1-b129-2c7036c3124e-btn-wrapper {
    text-align: center;
  }


#s-72c12cc7-6dce-47e1-b129-2c7036c3124e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-72c12cc7-6dce-47e1-b129-2c7036c3124e-btn-wrapper {
    text-align: center;
  }


#s-72c12cc7-6dce-47e1-b129-2c7036c3124e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-72c12cc7-6dce-47e1-b129-2c7036c3124e-btn-wrapper {
    text-align: center;
  }


#s-72c12cc7-6dce-47e1-b129-2c7036c3124e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}
#s-cd022700-efe4-4b92-90f5-f83a3cfa7d76 {
  margin-top: 15px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}







  #s-cd022700-efe4-4b92-90f5-f83a3cfa7d76 img.shogun-image {
    

    
    
    
  }


#s-cd022700-efe4-4b92-90f5-f83a3cfa7d76 .shogun-image-content {
  
    align-items: center;
  
}

#s-5219b1a5-bee6-4267-ab4c-cdb44b4942f7 {
  margin-top: 10px;
}

#s-0727b955-49f8-478c-a6b9-f4e0181f8590 {
  border-style: solid;
padding-bottom: 80px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(238, 238, 238, 1);
border-style: solid;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0727b955-49f8-478c-a6b9-f4e0181f8590 {
  border-style: solid;
border-color: #000;
border-right-width: 0px;
}
}@media (max-width: 767px){#s-0727b955-49f8-478c-a6b9-f4e0181f8590 {
  border-style: solid;
border-color: #000;
padding-bottom: 35px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
}
}







#s-0727b955-49f8-478c-a6b9-f4e0181f8590 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0727b955-49f8-478c-a6b9-f4e0181f8590.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c1ab9cb3-1c77-4c0d-bc79-937d924e8349 {
  margin-top: 2em;
margin-bottom: 0em;
}

#s-4d133e3e-09a7-49ae-b103-2053a0321a31 {
  margin-top: 25px;
text-align: center;
}







  #s-4d133e3e-09a7-49ae-b103-2053a0321a31 img.shogun-image {
    

    
    
    
  }


#s-4d133e3e-09a7-49ae-b103-2053a0321a31 .shogun-image-content {
  
    align-items: center;
  
}

#s-e9e044c1-3e94-4910-96eb-c3453d5031e6 {
  margin-top: 15px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 28px;
background-color: rgba(247, 116, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e9e044c1-3e94-4910-96eb-c3453d5031e6:hover {background-color: rgba(250, 151, 101, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e9e044c1-3e94-4910-96eb-c3453d5031e6:active {background-color: rgba(247, 116, 50, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e9e044c1-3e94-4910-96eb-c3453d5031e6-btn-wrapper {
    text-align: center;
  }


#s-e9e044c1-3e94-4910-96eb-c3453d5031e6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e9e044c1-3e94-4910-96eb-c3453d5031e6-btn-wrapper {
    text-align: center;
  }


#s-e9e044c1-3e94-4910-96eb-c3453d5031e6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e9e044c1-3e94-4910-96eb-c3453d5031e6-btn-wrapper {
    text-align: center;
  }


#s-e9e044c1-3e94-4910-96eb-c3453d5031e6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e9e044c1-3e94-4910-96eb-c3453d5031e6-btn-wrapper {
    text-align: center;
  }


#s-e9e044c1-3e94-4910-96eb-c3453d5031e6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e9e044c1-3e94-4910-96eb-c3453d5031e6-btn-wrapper {
    text-align: center;
  }


#s-e9e044c1-3e94-4910-96eb-c3453d5031e6.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}
#s-7b784637-1a2a-4d2a-8859-f1eb391062c4 {
  margin-top: 15px;
text-align: center;
}







  #s-7b784637-1a2a-4d2a-8859-f1eb391062c4 img.shogun-image {
    

    
    
    
  }


#s-7b784637-1a2a-4d2a-8859-f1eb391062c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-f20424db-8a7d-45b4-8906-e76fb2e4cebd {
  margin-top: 10px;
margin-bottom: 0px;
}

#s-fede2339-760d-4a19-ac3f-d9b5e64f6f73 {
  border-style: solid;
padding-bottom: 80px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(238, 238, 238, 1);
border-style: solid;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fede2339-760d-4a19-ac3f-d9b5e64f6f73 {
  border-style: solid;
border-color: #000;
border-top-width: 1px;
border-bottom-width: 1px;
border-right-width: 0px;
}
}@media (max-width: 767px){#s-fede2339-760d-4a19-ac3f-d9b5e64f6f73 {
  border-style: solid;
border-color: #000;
padding-bottom: 0px;
border-left-width: 0px;
border-right-width: 0px;
}
}







#s-fede2339-760d-4a19-ac3f-d9b5e64f6f73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fede2339-760d-4a19-ac3f-d9b5e64f6f73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-847d2eab-8f3c-4eba-9897-411e11922038 {
  margin-top: 2em;
margin-bottom: 0em;
}

#s-b38a2b68-357a-4c7a-bab2-5e57e6649448 {
  margin-top: 25px;
text-align: center;
}







  #s-b38a2b68-357a-4c7a-bab2-5e57e6649448 img.shogun-image {
    

    
    
    
  }


#s-b38a2b68-357a-4c7a-bab2-5e57e6649448 .shogun-image-content {
  
    align-items: center;
  
}

#s-28d69c26-4270-43f3-b899-a613436ec314 {
  margin-top: 15px;
margin-bottom: 25px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 28px;
background-color: rgba(247, 116, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-28d69c26-4270-43f3-b899-a613436ec314:hover {background-color: rgba(250, 151, 101, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-28d69c26-4270-43f3-b899-a613436ec314:active {background-color: rgba(247, 116, 50, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-28d69c26-4270-43f3-b899-a613436ec314-btn-wrapper {
    text-align: center;
  }


#s-28d69c26-4270-43f3-b899-a613436ec314.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-28d69c26-4270-43f3-b899-a613436ec314-btn-wrapper {
    text-align: center;
  }


#s-28d69c26-4270-43f3-b899-a613436ec314.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-28d69c26-4270-43f3-b899-a613436ec314-btn-wrapper {
    text-align: center;
  }


#s-28d69c26-4270-43f3-b899-a613436ec314.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-28d69c26-4270-43f3-b899-a613436ec314-btn-wrapper {
    text-align: center;
  }


#s-28d69c26-4270-43f3-b899-a613436ec314.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-28d69c26-4270-43f3-b899-a613436ec314-btn-wrapper {
    text-align: center;
  }


#s-28d69c26-4270-43f3-b899-a613436ec314.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}
#s-5d02b66f-70d5-4f51-be6b-03d783adf885 {
  margin-top: 15px;
text-align: center;
}







  #s-5d02b66f-70d5-4f51-be6b-03d783adf885 img.shogun-image {
    

    
    
    
  }


#s-5d02b66f-70d5-4f51-be6b-03d783adf885 .shogun-image-content {
  
    align-items: center;
  
}

#s-f02205ad-e24d-4cf9-94f8-978106c67ae8 {
  margin-top: 10px;
}
@media (max-width: 767px){#s-f02205ad-e24d-4cf9-94f8-978106c67ae8 {
  margin-bottom: 39px;
}
}
#s-0eaea8c0-2cc1-4dbf-8655-f2e7ee57df2c {
  border-style: solid;
padding-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(238, 238, 238, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-0eaea8c0-2cc1-4dbf-8655-f2e7ee57df2c {
  border-style: solid;
border-color: #000;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 1px;
}
}







#s-0eaea8c0-2cc1-4dbf-8655-f2e7ee57df2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0eaea8c0-2cc1-4dbf-8655-f2e7ee57df2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-10f14925-4920-4d8e-a3a0-e609a9c51f0a {
  margin-top: 2em;
margin-bottom: 0em;
}

#s-f0380794-1ad8-492a-91d7-3757bf06170c {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  #s-f0380794-1ad8-492a-91d7-3757bf06170c img.shogun-image {
    

    
    
    
  }


#s-f0380794-1ad8-492a-91d7-3757bf06170c .shogun-image-content {
  
    align-items: center;
  
}

#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5 {
  margin-top: 15px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 28px;
background-color: rgba(247, 116, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5:hover {background-color: rgba(250, 151, 101, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5:active {background-color: rgba(247, 116, 50, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5-btn-wrapper {
    text-align: center;
  }


#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5-btn-wrapper {
    text-align: center;
  }


#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5-btn-wrapper {
    text-align: center;
  }


#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5-btn-wrapper {
    text-align: center;
  }


#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5-btn-wrapper {
    text-align: center;
  }


#s-ac6b2dc1-b30a-4fd4-b40d-d57014b654e5.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}
#s-36645822-e18f-4647-a09c-b1b0dd9e44fc {
  border-style: solid;
margin-bottom: 0px;
padding-bottom: 30px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(238, 238, 238, 1);
border-style: solid;
min-height: 50px;
}








#s-36645822-e18f-4647-a09c-b1b0dd9e44fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36645822-e18f-4647-a09c-b1b0dd9e44fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ad1ee1cb-62f5-478a-99de-79b80aebb007 {
  margin-top: 2em;
margin-bottom: 0em;
}

#s-40759aa2-65ec-415f-bea1-7f26b87799b3 {
  margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}







  #s-40759aa2-65ec-415f-bea1-7f26b87799b3 img.shogun-image {
    

    
    
    
  }


#s-40759aa2-65ec-415f-bea1-7f26b87799b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7c5f7c1-390c-4cf2-b241-8e656410557c {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 28px;
background-color: rgba(247, 116, 50, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d7c5f7c1-390c-4cf2-b241-8e656410557c:hover {background-color: rgba(250, 151, 101, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d7c5f7c1-390c-4cf2-b241-8e656410557c:active {background-color: rgba(247, 116, 50, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d7c5f7c1-390c-4cf2-b241-8e656410557c-btn-wrapper {
    text-align: center;
  }


#s-d7c5f7c1-390c-4cf2-b241-8e656410557c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d7c5f7c1-390c-4cf2-b241-8e656410557c-btn-wrapper {
    text-align: center;
  }


#s-d7c5f7c1-390c-4cf2-b241-8e656410557c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d7c5f7c1-390c-4cf2-b241-8e656410557c-btn-wrapper {
    text-align: center;
  }


#s-d7c5f7c1-390c-4cf2-b241-8e656410557c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d7c5f7c1-390c-4cf2-b241-8e656410557c-btn-wrapper {
    text-align: center;
  }


#s-d7c5f7c1-390c-4cf2-b241-8e656410557c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d7c5f7c1-390c-4cf2-b241-8e656410557c-btn-wrapper {
    text-align: center;
  }


#s-d7c5f7c1-390c-4cf2-b241-8e656410557c.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: Nunito;
  display:  inline-block ;
}
}
#s-d90d2a05-8589-4339-98ed-c515f834d114 {
  margin-top: 45px;
margin-bottom: 0px;
padding-top: 1em;
padding-left: 7px;
padding-bottom: 2em;
padding-right: 7px;
min-height: 50px;
background-color: rgba(170, 207, 213, 1);
}
@media (min-width: 1200px){#s-d90d2a05-8589-4339-98ed-c515f834d114 {
  padding-bottom: 2em;
}
}@media (max-width: 767px){#s-d90d2a05-8589-4339-98ed-c515f834d114 {
  padding-bottom: 1em;
}
}







#s-d90d2a05-8589-4339-98ed-c515f834d114 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d90d2a05-8589-4339-98ed-c515f834d114.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1f64023-bb31-4103-a48f-f1e6166a44ce {
  margin-top: 1em;
margin-left: 0px;
margin-bottom: 1em;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a1f64023-bb31-4103-a48f-f1e6166a44ce .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1e6d0e1d-628d-4d93-88c9-f8ae93284db4 {
  margin-left: 1em;
margin-right: 1em;
}

@media (min-width: 0px) {
[id="s-1e6d0e1d-628d-4d93-88c9-f8ae93284db4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e6d0e1d-628d-4d93-88c9-f8ae93284db4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-1e6d0e1d-628d-4d93-88c9-f8ae93284db4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-1e6d0e1d-628d-4d93-88c9-f8ae93284db4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-5c792ba2-02c7-4a5b-9b09-2bca92ccd6aa {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
padding-top: 1em;
padding-left: 10px;
padding-bottom: 1em;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 300px;
background-color: rgba(255, 240, 240, 1);
}








#s-5c792ba2-02c7-4a5b-9b09-2bca92ccd6aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c792ba2-02c7-4a5b-9b09-2bca92ccd6aa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f0a41de5-4d76-40c8-b0a3-efb1d2af3d56 {
  padding-left: 2em;
padding-right: 2em;
text-align: left;
}







  #s-f0a41de5-4d76-40c8-b0a3-efb1d2af3d56 img.shogun-image {
    

    
    
    
  }


#s-f0a41de5-4d76-40c8-b0a3-efb1d2af3d56 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0b37513e-94a6-4008-8255-53ab321b8fa5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b37513e-94a6-4008-8255-53ab321b8fa5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0b37513e-94a6-4008-8255-53ab321b8fa5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0b37513e-94a6-4008-8255-53ab321b8fa5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-0b37513e-94a6-4008-8255-53ab321b8fa5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-50c6bca2-f0a0-4818-b640-dbca5069f6c4 {
  text-align: center;
}







  #s-50c6bca2-f0a0-4818-b640-dbca5069f6c4 img.shogun-image {
    

    
    
    
  }


#s-50c6bca2-f0a0-4818-b640-dbca5069f6c4 .shogun-image-content {
  
    align-items: center;
  
}

#s-d6700610-399e-486c-a7ab-60a41e99686d {
  padding-left: 2em;
padding-right: 2em;
text-align: right;
}







  #s-d6700610-399e-486c-a7ab-60a41e99686d img.shogun-image {
    

    
    
    
  }


#s-d6700610-399e-486c-a7ab-60a41e99686d .shogun-image-content {
  
    align-items: center;
  
}

#s-d1f4e116-5025-4371-8862-0cdb0d6151bd {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
padding-top: 1em;
padding-left: 10px;
padding-bottom: 1em;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 300px;
background-color: rgba(255, 240, 240, 1);
}








#s-d1f4e116-5025-4371-8862-0cdb0d6151bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1f4e116-5025-4371-8862-0cdb0d6151bd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb6fb602-348d-4b68-b4d3-3c797e94df4b {
  padding-left: 2em;
padding-right: 2em;
text-align: left;
}







  #s-fb6fb602-348d-4b68-b4d3-3c797e94df4b img.shogun-image {
    

    
    
    
  }


#s-fb6fb602-348d-4b68-b4d3-3c797e94df4b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0d424a33-d0d9-43c8-8b47-54571eb2b96c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0d424a33-d0d9-43c8-8b47-54571eb2b96c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0d424a33-d0d9-43c8-8b47-54571eb2b96c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d424a33-d0d9-43c8-8b47-54571eb2b96c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-0d424a33-d0d9-43c8-8b47-54571eb2b96c"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-2af9838e-6ee2-49ed-8e4f-ee82e1e18dc3 {
  text-align: center;
}







  #s-2af9838e-6ee2-49ed-8e4f-ee82e1e18dc3 img.shogun-image {
    

    
    
    
  }


#s-2af9838e-6ee2-49ed-8e4f-ee82e1e18dc3 .shogun-image-content {
  
    align-items: center;
  
}

#s-55d1ca32-0171-418c-9281-dc55cbb499ab {
  padding-left: 2em;
padding-right: 2em;
text-align: right;
}







  #s-55d1ca32-0171-418c-9281-dc55cbb499ab img.shogun-image {
    

    
    
    
  }


#s-55d1ca32-0171-418c-9281-dc55cbb499ab .shogun-image-content {
  
    align-items: center;
  
}

#s-8e8fd7c5-13cd-4c65-8202-72785448fb8a {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
padding-top: 1em;
padding-left: 10px;
padding-bottom: 1em;
padding-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 300px;
background-color: rgba(255, 240, 240, 1);
}








#s-8e8fd7c5-13cd-4c65-8202-72785448fb8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e8fd7c5-13cd-4c65-8202-72785448fb8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-46f7312e-6590-423d-b8a2-0e997fef4821 {
  padding-left: 2em;
padding-right: 2em;
text-align: left;
}







  #s-46f7312e-6590-423d-b8a2-0e997fef4821 img.shogun-image {
    

    
    
    
  }


#s-46f7312e-6590-423d-b8a2-0e997fef4821 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-810d21a5-9f8b-4942-913a-d4ed3dc08334"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-810d21a5-9f8b-4942-913a-d4ed3dc08334"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-810d21a5-9f8b-4942-913a-d4ed3dc08334"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-810d21a5-9f8b-4942-913a-d4ed3dc08334"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-810d21a5-9f8b-4942-913a-d4ed3dc08334"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a490078e-51b6-4542-828d-5e92f9e8c7a3 {
  text-align: center;
}







  #s-a490078e-51b6-4542-828d-5e92f9e8c7a3 img.shogun-image {
    

    
    
    
  }


#s-a490078e-51b6-4542-828d-5e92f9e8c7a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-27d7a519-a3c4-4b8b-8262-b1c1f3cadb68 {
  padding-left: 2em;
padding-right: 2em;
text-align: right;
}







  #s-27d7a519-a3c4-4b8b-8262-b1c1f3cadb68 img.shogun-image {
    

    
    
    
  }


#s-27d7a519-a3c4-4b8b-8262-b1c1f3cadb68 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc0bf941-c81c-460e-8b9f-bed6b001e664 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1450px;
}








#s-fc0bf941-c81c-460e-8b9f-bed6b001e664 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc0bf941-c81c-460e-8b9f-bed6b001e664.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-02f47b5b-52ea-4924-b5ee-144c4cdc508c {
  margin-top: 15px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-02f47b5b-52ea-4924-b5ee-144c4cdc508c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-02f47b5b-52ea-4924-b5ee-144c4cdc508c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-02f47b5b-52ea-4924-b5ee-144c4cdc508c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-02f47b5b-52ea-4924-b5ee-144c4cdc508c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-e581b157-8996-43e3-8758-42870c3a1ff0 {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 240, 240, 1);
}








#s-e581b157-8996-43e3-8758-42870c3a1ff0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e581b157-8996-43e3-8758-42870c3a1ff0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7c79744f-df55-49e2-aa17-1d401b18aa90 {
  background-repeat: no-repeat;
background-size: contain;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 145px;
background-position: left center;
}








#s-7c79744f-df55-49e2-aa17-1d401b18aa90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c79744f-df55-49e2-aa17-1d401b18aa90.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd921c6c-735f-402f-a581-b0fcaefab4a8 {
  padding-left: 1em;
padding-right: 1em;
}

#s-c0df328c-28ac-4868-81d5-57cbabd40e5c {
  padding-left: 1em;
padding-right: 1em;
}

#s-62ba049f-8a06-46c2-8cef-a2c84524ae5c {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 240, 240, 1);
}








#s-62ba049f-8a06-46c2-8cef-a2c84524ae5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62ba049f-8a06-46c2-8cef-a2c84524ae5c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0fcfbf47-f26d-4b1d-9280-72cd31c73cd3 {
  background-repeat: no-repeat;
background-size: contain;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 145px;
background-position: left center;
}








#s-0fcfbf47-f26d-4b1d-9280-72cd31c73cd3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0fcfbf47-f26d-4b1d-9280-72cd31c73cd3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9beea4c5-8fab-4c9b-b24e-320674de7327 {
  padding-left: 1em;
padding-right: 1em;
}

#s-3c472f28-dba1-45b7-8eee-35858b47d27f {
  padding-left: 1em;
padding-right: 1em;
}

#s-c3022bad-8b77-496a-930a-839f546fedbd {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 240, 240, 1);
}








#s-c3022bad-8b77-496a-930a-839f546fedbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3022bad-8b77-496a-930a-839f546fedbd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-57f7e967-57d1-4c49-8644-941cfbf3c831 {
  background-repeat: no-repeat;
background-size: contain;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 145px;
background-position: left center;
}








#s-57f7e967-57d1-4c49-8644-941cfbf3c831 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-57f7e967-57d1-4c49-8644-941cfbf3c831.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b50cb12c-c3fb-4a93-8dd8-919221280c4b {
  padding-left: 1em;
padding-right: 1em;
}

#s-51d329c4-f63f-439d-96b5-168bed5c0730 {
  padding-left: 1em;
padding-right: 1em;
}

#s-7209ae82-f997-474c-9f33-a0ceef657fab {
  border-style: solid;
margin-top: 1em;
margin-bottom: 1em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(255, 240, 240, 1);
}








#s-7209ae82-f997-474c-9f33-a0ceef657fab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7209ae82-f997-474c-9f33-a0ceef657fab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd45e5e6-41c9-4990-97c4-65d61f613170 {
  background-repeat: no-repeat;
background-size: contain;
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 145px;
background-position: left center;
}








#s-bd45e5e6-41c9-4990-97c4-65d61f613170 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd45e5e6-41c9-4990-97c4-65d61f613170.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-409c0f7d-3bae-4404-ac2a-94a8866590c2 {
  padding-left: 1em;
padding-right: 1em;
}

#s-236b14a9-c8eb-4a45-bb58-35f43ad91dcd {
  padding-left: 1em;
padding-right: 1em;
}

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