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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

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

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

.shg-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-408461a2-fcb9-48c9-8ab0-9e9d788c6305 {
  min-height: 50px;
}








#s-408461a2-fcb9-48c9-8ab0-9e9d788c6305 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-408461a2-fcb9-48c9-8ab0-9e9d788c6305.shg-box.shg-c {
  justify-content: center;
}

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

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

#s-1005567a-9151-4ad4-af5c-bf4b6e535128 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1005567a-9151-4ad4-af5c-bf4b6e535128 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: "Roboto";
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
justify-content: space-between;
}

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

.shg-c-xs-1,
.shg-c-xs-2,
.shg-c-xs-3,
.shg-c-xs-4,
.shg-c-xs-5,
.shg-c-xs-6,
.shg-c-xs-7,
.shg-c-xs-8,
.shg-c-xs-9,
.shg-c-xs-10,
.shg-c-xs-11,
.shg-c-xs-12,
.shg-c-sm-1,
.shg-c-sm-2,
.shg-c-sm-3,
.shg-c-sm-4,
.shg-c-sm-5,
.shg-c-sm-6,
.shg-c-sm-7,
.shg-c-sm-8,
.shg-c-sm-9,
.shg-c-sm-10,
.shg-c-sm-11,
.shg-c-sm-12,
.shg-c-md-1,
.shg-c-md-2,
.shg-c-md-3,
.shg-c-md-4,
.shg-c-md-5,
.shg-c-md-6,
.shg-c-md-7,
.shg-c-md-8,
.shg-c-md-9,
.shg-c-md-10,
.shg-c-md-11,
.shg-c-md-12,
.shg-c-lg-1,
.shg-c-lg-2,
.shg-c-lg-3,
.shg-c-lg-4,
.shg-c-lg-5,
.shg-c-lg-6,
.shg-c-lg-7,
.shg-c-lg-8,
.shg-c-lg-9,
.shg-c-lg-10,
.shg-c-lg-11,
.shg-c-lg-12 {
  position: relative;
}

@media (min-width: 0px) {
[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-3f067fb5-f5f2-41de-9fb0-3169ed234334"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 25.0px);
}

}

#s-3ba2eea6-b832-4bea-8695-a5cb1b39262e {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

#s-76329065-0ffc-4dc9-897b-27e499cb3605 {
  text-align: left;
}


.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 {
  max-width: 100%;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom,
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 {
  max-width: 100%;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom,
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 {
  max-width: 100%;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom,
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 {
  max-width: 100%;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom,
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 {
  max-width: 100%;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom,
.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-76329065-0ffc-4dc9-897b-27e499cb3605 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-3bd084d6-8266-4e92-a4bf-4e402b0a502f {
  display: none;
}
#s-ba80c72a-eea0-4456-9de3-bc6f084f494c {
  text-align: left;
}


.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c {
  max-width: 100%;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom,
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c {
  max-width: 100%;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom,
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c {
  max-width: 100%;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom,
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c {
  max-width: 100%;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom,
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c {
  max-width: 100%;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom,
.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-ba80c72a-eea0-4456-9de3-bc6f084f494c .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-810f4ab2-e3d5-4388-b49b-fe6704337e7c {
  display: none;
}
#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 {
  text-align: left;
}


.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 {
  max-width: 100%;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom,
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 {
  max-width: 100%;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom,
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 {
  max-width: 100%;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom,
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 {
  max-width: 100%;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom,
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 {
  max-width: 100%;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom,
.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a6e58134-4220-463a-8b24-0c65fb1b7cf8 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-0d2cbf89-1a15-4682-b3f9-b375c737e716 {
  display: none;
}
#s-65963998-5fc6-48a4-9048-0a40dba1dac1 {
  text-align: left;
}


.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 {
  max-width: 100%;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom,
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 {
  max-width: 100%;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom,
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 {
  max-width: 100%;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom,
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 {
  max-width: 100%;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom,
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 {
  max-width: 100%;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom,
.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-65963998-5fc6-48a4-9048-0a40dba1dac1 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b4c43704-24c5-483c-82f5-2ad887d68bb5 {
  display: none;
}
#s-a11ef08d-127e-4e2a-badb-74f65452f92e {
  text-align: left;
}


.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e {
  max-width: 100%;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom,
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e {
  max-width: 100%;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom,
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e {
  max-width: 100%;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom,
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e {
  max-width: 100%;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom,
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e {
  max-width: 100%;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom,
.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a11ef08d-127e-4e2a-badb-74f65452f92e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-341d81e6-3629-42c0-a05c-a159877a2d97 {
  display: none;
}
#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 {
  text-align: left;
}


.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 {
  max-width: 100%;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom,
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 {
  max-width: 100%;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom,
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 {
  max-width: 100%;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom,
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 {
  max-width: 100%;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom,
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 {
  max-width: 100%;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom,
.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1fe198f2-d2e8-40a4-906f-a2040a1d81c2 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-46d59589-3774-4c6e-ad2f-67e26558f6fa {
  margin-top: 50px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
min-height: 50px;
background-color: rgba(222, 247, 250, 1);
}
@media (min-width: 1200px){#s-46d59589-3774-4c6e-ad2f-67e26558f6fa {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-46d59589-3774-4c6e-ad2f-67e26558f6fa {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-46d59589-3774-4c6e-ad2f-67e26558f6fa {
  
}
}@media (max-width: 767px){#s-46d59589-3774-4c6e-ad2f-67e26558f6fa {
  
}
}







#s-46d59589-3774-4c6e-ad2f-67e26558f6fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-46d59589-3774-4c6e-ad2f-67e26558f6fa.shg-box.shg-c {
  justify-content: flex-start;
}

#s-d44fb785-9ba4-4e0c-b1f8-15f17ae6f83e {
  margin-top: 50px;
margin-left: 30px;
margin-right: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d44fb785-9ba4-4e0c-b1f8-15f17ae6f83e .shogun-heading-component h1 {
  color: #000;
  font-weight:  900 ;
  font-family: "Montserrat";
  font-style:   ;
  font-size: 36px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}

.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-bd062112-27be-4b95-a8dd-a8e78444b4b3 {
  margin-top: 25px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
}

#s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs {
  justify-content: center;
}


  #s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
  }
  #s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
  }
#s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: Inconsolata;
  font-weight: 700;
  font-style: ;
  font-size: 14px;
}

#s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(0, 0, 0, 1);
}

#s-bd062112-27be-4b95-a8dd-a8e78444b4b3 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-e0b2ac99-9d33-4579-9eca-9da073cc16b8 {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e0b2ac99-9d33-4579-9eca-9da073cc16b8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-b9e303d7-1f05-4463-a734-95119f94082b {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-b9e303d7-1f05-4463-a734-95119f94082b {
  display: none;
}
#s-749cb84f-c4b6-4728-8778-a885d62b6f85 {
  text-align: left;
}


.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 {
  max-width: 100%;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom,
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 {
  max-width: 100%;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom,
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 {
  max-width: 100%;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom,
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 {
  max-width: 100%;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom,
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 {
  max-width: 100%;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom,
.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-749cb84f-c4b6-4728-8778-a885d62b6f85 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-25cdc807-eaa2-40a2-8563-bb2f0e3d5b06 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-25cdc807-eaa2-40a2-8563-bb2f0e3d5b06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-25cdc807-eaa2-40a2-8563-bb2f0e3d5b06.shg-box.shg-c {
  justify-content: flex-start;
}

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

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

#s-522ee711-af22-450f-bdef-21d8410130f2 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-522ee711-af22-450f-bdef-21d8410130f2 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-91b45e84-4ac3-4f95-9fb2-4cdd1cfb28af {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-91b45e84-4ac3-4f95-9fb2-4cdd1cfb28af .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-91b45e84-4ac3-4f95-9fb2-4cdd1cfb28af .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-91b45e84-4ac3-4f95-9fb2-4cdd1cfb28af .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  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-bb151537-8356-4bae-87a1-1101831d6dcb {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-bb151537-8356-4bae-87a1-1101831d6dcb:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-bb151537-8356-4bae-87a1-1101831d6dcb:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-bb151537-8356-4bae-87a1-1101831d6dcb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bb151537-8356-4bae-87a1-1101831d6dcb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bb151537-8356-4bae-87a1-1101831d6dcb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-bb151537-8356-4bae-87a1-1101831d6dcb.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-6bf28192-57cb-465a-b306-81f3d5622cc6 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-6bf28192-57cb-465a-b306-81f3d5622cc6 {
  display: none;
}
#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 {
  text-align: left;
}


.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 {
  max-width: 100%;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom,
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 {
  max-width: 100%;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom,
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 {
  max-width: 100%;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom,
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 {
  max-width: 100%;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom,
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 {
  max-width: 100%;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom,
.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-b06fdcb9-5209-4198-b725-1f1b3586d9d7 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-8354732e-3796-4096-aa46-509b2955587d {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8354732e-3796-4096-aa46-509b2955587d .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-fbcf625c-be96-48a8-a7c4-d981e8c3465e {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-fbcf625c-be96-48a8-a7c4-d981e8c3465e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-fbcf625c-be96-48a8-a7c4-d981e8c3465e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-fbcf625c-be96-48a8-a7c4-d981e8c3465e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-60ff4d8f-2523-4620-a014-3874ebf47d51 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-60ff4d8f-2523-4620-a014-3874ebf47d51:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-60ff4d8f-2523-4620-a014-3874ebf47d51:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-60ff4d8f-2523-4620-a014-3874ebf47d51 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-60ff4d8f-2523-4620-a014-3874ebf47d51.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-60ff4d8f-2523-4620-a014-3874ebf47d51.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-60ff4d8f-2523-4620-a014-3874ebf47d51.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-ae067fd0-eacb-402b-8bd8-7e0a1093054b {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-ae067fd0-eacb-402b-8bd8-7e0a1093054b {
  display: none;
}
#s-93a39262-fa4e-45c5-9baa-25aac40a86fd {
  text-align: left;
}


.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd {
  max-width: 100%;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom,
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd {
  max-width: 100%;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom,
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd {
  max-width: 100%;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom,
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd {
  max-width: 100%;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom,
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd {
  max-width: 100%;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom,
.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-93a39262-fa4e-45c5-9baa-25aac40a86fd .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c6be3315-d528-422d-9ddb-011de7e45029 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c6be3315-d528-422d-9ddb-011de7e45029 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-7d8c992a-7ec6-4543-9a9f-c9bec5e41f5d {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-7d8c992a-7ec6-4543-9a9f-c9bec5e41f5d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-7d8c992a-7ec6-4543-9a9f-c9bec5e41f5d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-7d8c992a-7ec6-4543-9a9f-c9bec5e41f5d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-fdeba69a-6eff-4879-bde2-36e480e45641 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-fdeba69a-6eff-4879-bde2-36e480e45641:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-fdeba69a-6eff-4879-bde2-36e480e45641:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-fdeba69a-6eff-4879-bde2-36e480e45641 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fdeba69a-6eff-4879-bde2-36e480e45641.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fdeba69a-6eff-4879-bde2-36e480e45641.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-fdeba69a-6eff-4879-bde2-36e480e45641.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-c5b3ff6f-d4a8-4cd7-abcb-0195c2e0af9c {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-c5b3ff6f-d4a8-4cd7-abcb-0195c2e0af9c {
  display: none;
}
#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e {
  text-align: left;
}


.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e {
  max-width: 100%;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom,
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e {
  max-width: 100%;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom,
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e {
  max-width: 100%;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom,
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e {
  max-width: 100%;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom,
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e {
  max-width: 100%;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom,
.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-18f4f33a-906a-4cba-b7cd-2e1c0315726e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-116b597f-5a8d-4358-81d9-d08fe7d48469 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-116b597f-5a8d-4358-81d9-d08fe7d48469 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-ce6b3cf7-fd66-4625-b34f-a2bd994ebb31 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-ce6b3cf7-fd66-4625-b34f-a2bd994ebb31 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-ce6b3cf7-fd66-4625-b34f-a2bd994ebb31 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-ce6b3cf7-fd66-4625-b34f-a2bd994ebb31 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-17efa0d1-45f2-4ec4-9365-85d95e0a8d45.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a {
  margin-top: 25px;
}

@media (min-width: 0px) {
[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-fd43b8e6-49fd-4e41-8d4e-232d21d76d6a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-58fbc61b-ed2b-486c-ba10-a50e706f76e9 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-58fbc61b-ed2b-486c-ba10-a50e706f76e9 {
  display: none;
}
#s-35891a86-4797-4dec-bad3-35ee4fabb52a {
  text-align: left;
}


.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a {
  max-width: 100%;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom,
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a {
  max-width: 100%;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom,
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a {
  max-width: 100%;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom,
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a {
  max-width: 100%;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom,
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a {
  max-width: 100%;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom,
.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-35891a86-4797-4dec-bad3-35ee4fabb52a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-d35272d0-ba8e-458a-b227-21a91c9a5aea {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-d35272d0-ba8e-458a-b227-21a91c9a5aea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d35272d0-ba8e-458a-b227-21a91c9a5aea.shg-box.shg-c {
  justify-content: flex-start;
}

#s-8b8fe981-3725-4220-8b0f-39f940a2186d {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8b8fe981-3725-4220-8b0f-39f940a2186d .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-edb32297-6be4-4224-afdf-15c33c39f052 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-edb32297-6be4-4224-afdf-15c33c39f052 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-edb32297-6be4-4224-afdf-15c33c39f052 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-edb32297-6be4-4224-afdf-15c33c39f052 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-306f8ce4-00bc-4290-afa6-bd397c076782 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-306f8ce4-00bc-4290-afa6-bd397c076782:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-306f8ce4-00bc-4290-afa6-bd397c076782:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-306f8ce4-00bc-4290-afa6-bd397c076782 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-306f8ce4-00bc-4290-afa6-bd397c076782.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-306f8ce4-00bc-4290-afa6-bd397c076782.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-306f8ce4-00bc-4290-afa6-bd397c076782.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-852eb383-97e6-450e-9edb-ea2bea9acecf {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-852eb383-97e6-450e-9edb-ea2bea9acecf {
  display: none;
}
#s-a373362a-c98d-45d2-a585-9194f4a44f04 {
  text-align: left;
}


.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 {
  max-width: 100%;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom,
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 {
  max-width: 100%;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom,
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 {
  max-width: 100%;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom,
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 {
  max-width: 100%;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom,
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 {
  max-width: 100%;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom,
.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a373362a-c98d-45d2-a585-9194f4a44f04 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-16e065d6-4e37-4ae2-9c1a-21736855795c {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-16e065d6-4e37-4ae2-9c1a-21736855795c .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-9e360a20-2e95-47a4-ab8c-53fdbbf9af18 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-9e360a20-2e95-47a4-ab8c-53fdbbf9af18 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-9e360a20-2e95-47a4-ab8c-53fdbbf9af18 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-9e360a20-2e95-47a4-ab8c-53fdbbf9af18 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-64890bd9-06af-46b7-87b6-9b02d950309b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-64890bd9-06af-46b7-87b6-9b02d950309b:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-64890bd9-06af-46b7-87b6-9b02d950309b:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-64890bd9-06af-46b7-87b6-9b02d950309b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-64890bd9-06af-46b7-87b6-9b02d950309b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-64890bd9-06af-46b7-87b6-9b02d950309b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-64890bd9-06af-46b7-87b6-9b02d950309b.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-b28ae97a-4880-4e8c-8d27-138a8a5fdfd5 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-b28ae97a-4880-4e8c-8d27-138a8a5fdfd5 {
  display: none;
}
#s-60080a44-5969-478e-8656-d49a0548e617 {
  text-align: left;
}


.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 {
  max-width: 100%;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom,
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 {
  max-width: 100%;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom,
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 {
  max-width: 100%;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom,
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 {
  max-width: 100%;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom,
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 {
  max-width: 100%;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom,
.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-60080a44-5969-478e-8656-d49a0548e617 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-b79f7ef6-7fac-43c0-9450-1f5d038b6b40 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b79f7ef6-7fac-43c0-9450-1f5d038b6b40 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-0746c51c-91bd-4c7d-829e-0e2fbe32f7fe {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-0746c51c-91bd-4c7d-829e-0e2fbe32f7fe .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-0746c51c-91bd-4c7d-829e-0e2fbe32f7fe .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-0746c51c-91bd-4c7d-829e-0e2fbe32f7fe .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-17f1854b-462e-4c25-9441-36b13494d2bd {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-17f1854b-462e-4c25-9441-36b13494d2bd:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-17f1854b-462e-4c25-9441-36b13494d2bd:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-17f1854b-462e-4c25-9441-36b13494d2bd {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-17f1854b-462e-4c25-9441-36b13494d2bd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-17f1854b-462e-4c25-9441-36b13494d2bd.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-17f1854b-462e-4c25-9441-36b13494d2bd.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-dd50dc20-0bb2-4277-8c3d-2ed10fd70edd {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-dd50dc20-0bb2-4277-8c3d-2ed10fd70edd {
  display: none;
}
#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 {
  text-align: left;
}


.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 {
  max-width: 100%;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom,
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 {
  max-width: 100%;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom,
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 {
  max-width: 100%;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom,
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 {
  max-width: 100%;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom,
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 {
  max-width: 100%;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom,
.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-a08d6e8e-be5f-404b-9586-97dcb4e88488 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-96c70003-acc4-4fbb-9e00-d1a96aa9ac87 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-96c70003-acc4-4fbb-9e00-d1a96aa9ac87 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-bc1829d9-6a99-4138-9f41-94be2cd4b6cb {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-bc1829d9-6a99-4138-9f41-94be2cd4b6cb .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-bc1829d9-6a99-4138-9f41-94be2cd4b6cb .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-bc1829d9-6a99-4138-9f41-94be2cd4b6cb .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-b9c3c7d0-b462-4689-a59b-76f6602ca233 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-b9c3c7d0-b462-4689-a59b-76f6602ca233:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-b9c3c7d0-b462-4689-a59b-76f6602ca233:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-b9c3c7d0-b462-4689-a59b-76f6602ca233 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b9c3c7d0-b462-4689-a59b-76f6602ca233.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b9c3c7d0-b462-4689-a59b-76f6602ca233.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-b9c3c7d0-b462-4689-a59b-76f6602ca233.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-c98e3901-0608-46ac-8993-2c9c7f28b9de {
  margin-top: 0px;
}

@media (min-width: 0px) {
[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c98e3901-0608-46ac-8993-2c9c7f28b9de"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-af114363-1287-4dcf-ab40-445c16f764cd {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-af114363-1287-4dcf-ab40-445c16f764cd {
  display: none;
}
#s-d6781e04-7196-469c-84a4-ace27162e5f9 {
  text-align: left;
}


.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 {
  max-width: 100%;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom,
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 {
  max-width: 100%;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom,
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 {
  max-width: 100%;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom,
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 {
  max-width: 100%;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom,
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 {
  max-width: 100%;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom,
.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-d6781e04-7196-469c-84a4-ace27162e5f9 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-f8e5b4d7-1b3f-44d2-9963-af44e69c0df6 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f8e5b4d7-1b3f-44d2-9963-af44e69c0df6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8e5b4d7-1b3f-44d2-9963-af44e69c0df6.shg-box.shg-c {
  justify-content: flex-start;
}

#s-6f3a015f-8d49-49c6-9019-82f774ca310f {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6f3a015f-8d49-49c6-9019-82f774ca310f .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-55b743bf-331a-483f-a1f6-9ec24d63a09a {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-55b743bf-331a-483f-a1f6-9ec24d63a09a .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-55b743bf-331a-483f-a1f6-9ec24d63a09a .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-55b743bf-331a-483f-a1f6-9ec24d63a09a .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-c2f857c4-7251-46b7-bea0-162efe3c2444 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-c2f857c4-7251-46b7-bea0-162efe3c2444:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-c2f857c4-7251-46b7-bea0-162efe3c2444:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-c2f857c4-7251-46b7-bea0-162efe3c2444 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c2f857c4-7251-46b7-bea0-162efe3c2444.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c2f857c4-7251-46b7-bea0-162efe3c2444.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-c2f857c4-7251-46b7-bea0-162efe3c2444.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-16a06419-9623-4e4f-89aa-f718a8d8b5e3 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-16a06419-9623-4e4f-89aa-f718a8d8b5e3 {
  display: none;
}
#s-de451d6f-87fb-4250-8774-9080b3d688a5 {
  text-align: left;
}


.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 {
  max-width: 100%;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom,
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 {
  max-width: 100%;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom,
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 {
  max-width: 100%;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom,
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 {
  max-width: 100%;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom,
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 {
  max-width: 100%;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom,
.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-de451d6f-87fb-4250-8774-9080b3d688a5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-4af649e3-1ddd-4990-b816-f4f09d901746 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4af649e3-1ddd-4990-b816-f4f09d901746 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-6a859eff-6f53-4b54-86d0-78aab1a152a7 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-6a859eff-6f53-4b54-86d0-78aab1a152a7 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-6a859eff-6f53-4b54-86d0-78aab1a152a7 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-6a859eff-6f53-4b54-86d0-78aab1a152a7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-f1143ea4-f8a3-4526-97d1-309b2dba29eb.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-1d45bb45-1132-485f-b7a0-8770295db75f {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-1d45bb45-1132-485f-b7a0-8770295db75f {
  display: none;
}
#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 {
  text-align: left;
}


.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 {
  max-width: 100%;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom,
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 {
  max-width: 100%;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom,
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 {
  max-width: 100%;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom,
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 {
  max-width: 100%;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom,
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 {
  max-width: 100%;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom,
.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-75520344-1943-4d68-83a4-bf6b4b08d8e5 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-c97c2644-ed51-4b2e-bf55-6a591de9c5cd {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c97c2644-ed51-4b2e-bf55-6a591de9c5cd .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-1d1479e4-3045-414b-ba5b-80f2ce44231e {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-1d1479e4-3045-414b-ba5b-80f2ce44231e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-1d1479e4-3045-414b-ba5b-80f2ce44231e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-1d1479e4-3045-414b-ba5b-80f2ce44231e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-376379a4-7479-41d8-8d53-d32af06988c4 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-376379a4-7479-41d8-8d53-d32af06988c4:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-376379a4-7479-41d8-8d53-d32af06988c4:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-376379a4-7479-41d8-8d53-d32af06988c4 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-376379a4-7479-41d8-8d53-d32af06988c4.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-376379a4-7479-41d8-8d53-d32af06988c4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-376379a4-7479-41d8-8d53-d32af06988c4.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-48123564-7896-4df5-9051-4a2272287361 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-48123564-7896-4df5-9051-4a2272287361 {
  display: none;
}
#s-632ada8f-0dd5-4894-b0fb-8c507104f97e {
  text-align: left;
}


.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e {
  max-width: 100%;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom,
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e {
  max-width: 100%;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom,
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e {
  max-width: 100%;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom,
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e {
  max-width: 100%;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom,
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e {
  max-width: 100%;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom,
.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-632ada8f-0dd5-4894-b0fb-8c507104f97e .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-a21a4a72-20e2-432a-b174-5b0c299a1999 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a21a4a72-20e2-432a-b174-5b0c299a1999 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-50ad1900-fe2b-4036-bfb5-7a3cf6a94f83 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-50ad1900-fe2b-4036-bfb5-7a3cf6a94f83 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-50ad1900-fe2b-4036-bfb5-7a3cf6a94f83 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-50ad1900-fe2b-4036-bfb5-7a3cf6a94f83 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-5323fd8b-425b-4f70-b498-aa1d6dd0bdc9.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-f14b33e6-553a-4529-a0c4-32f46ea3acc4 {
  margin-top: 0px;
}

@media (min-width: 0px) {
[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f14b33e6-553a-4529-a0c4-32f46ea3acc4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-a9cb91c2-58ee-437c-8f47-558b5c034e81 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-a9cb91c2-58ee-437c-8f47-558b5c034e81 {
  display: none;
}
#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be {
  text-align: left;
}


.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be {
  max-width: 100%;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom,
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be {
  max-width: 100%;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom,
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be {
  max-width: 100%;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom,
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be {
  max-width: 100%;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom,
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be {
  max-width: 100%;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom,
.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-1d40314b-7b0f-4e45-9ba2-687cd39ec2be .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-2d34a01b-9541-4bc4-876f-032eb351e0a6 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2d34a01b-9541-4bc4-876f-032eb351e0a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d34a01b-9541-4bc4-876f-032eb351e0a6.shg-box.shg-c {
  justify-content: flex-start;
}

#s-daf86b56-a0d4-4002-b256-461ec992fd12 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-daf86b56-a0d4-4002-b256-461ec992fd12 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-cbbca0c7-fb03-4724-951a-cc4f41bbcf9f {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-cbbca0c7-fb03-4724-951a-cc4f41bbcf9f .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-cbbca0c7-fb03-4724-951a-cc4f41bbcf9f .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-cbbca0c7-fb03-4724-951a-cc4f41bbcf9f .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-b2bd86ef-8625-4775-a888-97749be3f706 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-b2bd86ef-8625-4775-a888-97749be3f706:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-b2bd86ef-8625-4775-a888-97749be3f706:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-b2bd86ef-8625-4775-a888-97749be3f706 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b2bd86ef-8625-4775-a888-97749be3f706.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b2bd86ef-8625-4775-a888-97749be3f706.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-b2bd86ef-8625-4775-a888-97749be3f706.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-a54e2bda-b85c-4c4d-929d-229f33a6950f {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-a54e2bda-b85c-4c4d-929d-229f33a6950f {
  display: none;
}
#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 {
  text-align: left;
}


.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 {
  max-width: 100%;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom,
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 {
  max-width: 100%;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom,
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 {
  max-width: 100%;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom,
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 {
  max-width: 100%;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom,
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 {
  max-width: 100%;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom,
.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-6dc1d8b3-ddc2-46ed-acb9-e58aba84ef44 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-466159ac-2dd8-4e84-8ca7-5dbff450326f {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-466159ac-2dd8-4e84-8ca7-5dbff450326f .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-05fbf8ea-efa1-4e7a-be62-afc3bed9f40b {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-05fbf8ea-efa1-4e7a-be62-afc3bed9f40b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-05fbf8ea-efa1-4e7a-be62-afc3bed9f40b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-05fbf8ea-efa1-4e7a-be62-afc3bed9f40b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-b8c0e014-727a-4658-bddd-3c1a8046857d {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-b8c0e014-727a-4658-bddd-3c1a8046857d:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-b8c0e014-727a-4658-bddd-3c1a8046857d:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-b8c0e014-727a-4658-bddd-3c1a8046857d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b8c0e014-727a-4658-bddd-3c1a8046857d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b8c0e014-727a-4658-bddd-3c1a8046857d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-b8c0e014-727a-4658-bddd-3c1a8046857d.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-4860e4bb-330f-4297-9923-dff789f4f4ef {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-4860e4bb-330f-4297-9923-dff789f4f4ef {
  display: none;
}
#s-9543eadd-da56-49f7-862f-e8bb74c0f918 {
  text-align: left;
}


.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 {
  max-width: 100%;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom,
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 {
  max-width: 100%;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom,
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 {
  max-width: 100%;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom,
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 {
  max-width: 100%;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom,
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 {
  max-width: 100%;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom,
.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-9543eadd-da56-49f7-862f-e8bb74c0f918 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-217e7692-eeea-4ded-9eae-f3e5f6e59593 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-217e7692-eeea-4ded-9eae-f3e5f6e59593 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-58239663-10ae-417b-8bef-2aedb705d894 {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-58239663-10ae-417b-8bef-2aedb705d894 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-58239663-10ae-417b-8bef-2aedb705d894 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-58239663-10ae-417b-8bef-2aedb705d894 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-33d17238-225b-4894-9ae8-a08e4a9f01ca {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-33d17238-225b-4894-9ae8-a08e4a9f01ca:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-33d17238-225b-4894-9ae8-a08e4a9f01ca:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-33d17238-225b-4894-9ae8-a08e4a9f01ca {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-33d17238-225b-4894-9ae8-a08e4a9f01ca.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-33d17238-225b-4894-9ae8-a08e4a9f01ca.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-33d17238-225b-4894-9ae8-a08e4a9f01ca.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-5f3dedcf-3d70-4d78-8d6b-4ea241d52dc9 {
  margin-bottom: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-5f3dedcf-3d70-4d78-8d6b-4ea241d52dc9 {
  display: none;
}
#s-381c9503-0e34-43ae-864b-afeabde646f6 {
  text-align: left;
}


.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 {
  max-width: 100%;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom,
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 {
  max-width: 100%;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom,
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 {
  max-width: 100%;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom,
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 {
  max-width: 100%;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom,
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 {
  max-width: 100%;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom,
.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-381c9503-0e34-43ae-864b-afeabde646f6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ad0e3f72-f0b6-4d45-93fe-e29d56acab83 {
  margin-top: 20px;
margin-left: 25px;
margin-right: 25px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ad0e3f72-f0b6-4d45-93fe-e29d56acab83 .shg-product-title-component h4 {
  color: #000;
  font-weight:  300 ;
  font-family: Montserrat;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}

#s-ea6498bb-37c5-49ca-8097-1ff30bf7730c {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
text-align: center;
}

#s-ea6498bb-37c5-49ca-8097-1ff30bf7730c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 12px;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
}

#s-ea6498bb-37c5-49ca-8097-1ff30bf7730c .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
}

#s-ea6498bb-37c5-49ca-8097-1ff30bf7730c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
  font-weight:   ;
  font-family: Inconsolata;
  font-style:  normal ;
  font-size: 12px;
  padding-left: 10px;
}

#s-3a2ad753-c06e-479c-b969-088a846c0574 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-radius: 0px;
min-width: 100%;
text-align: center;
background-color: rgba(250, 224, 222, 1);
font-size: 11px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
}
#s-3a2ad753-c06e-479c-b969-088a846c0574:hover {opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-3a2ad753-c06e-479c-b969-088a846c0574:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}


#s-3a2ad753-c06e-479c-b969-088a846c0574 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3a2ad753-c06e-479c-b969-088a846c0574.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3a2ad753-c06e-479c-b969-088a846c0574.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-3a2ad753-c06e-479c-b969-088a846c0574.shg-btn.shg-product-atc-error {
  
  font-family: Inconsolata;
  
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}



#s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c {
  border-style: solid;
margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}
@media (min-width: 1200px){#s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c {
  
}
}@media (max-width: 767px){#s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c {
  
}
}
@media (min-width: 0px) {
[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-78ef4d7b-ddc7-4e48-bd60-f4b9d1bb465c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

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

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

.shg-btn.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-5efddc83-84b4-45ca-b64a-d767890680d1 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
font-size: 14px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-5efddc83-84b4-45ca-b64a-d767890680d1:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 0px !important;
opacity: 1 !important;
background-color: rgba(0, 0, 0, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-5efddc83-84b4-45ca-b64a-d767890680d1:active {background-color: #000000 !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-5efddc83-84b4-45ca-b64a-d767890680d1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5efddc83-84b4-45ca-b64a-d767890680d1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5efddc83-84b4-45ca-b64a-d767890680d1 {
  
}
}@media (max-width: 767px){#s-5efddc83-84b4-45ca-b64a-d767890680d1 {
  
}
}


#s-5efddc83-84b4-45ca-b64a-d767890680d1.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-20f4fc42-4407-400c-9600-ae4593d077e8 {
  min-height: 50px;
}








#s-20f4fc42-4407-400c-9600-ae4593d077e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20f4fc42-4407-400c-9600-ae4593d077e8.shg-box.shg-c {
  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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-9bcf95c7-2677-45d9-ac06-7519d1a2bf8f {
  margin-top: 75px;
margin-bottom: 0px;
text-align: center;
}




  #s-9bcf95c7-2677-45d9-ac06-7519d1a2bf8f img.shogun-image {
    
    width: px;
  }


#s-9bcf95c7-2677-45d9-ac06-7519d1a2bf8f .shogun-image-content {
  
    align-items: center;
  
}

#s-e219ad9d-a55a-4fc1-afc9-ec2c70758b76 {
  margin-top: 0px;
margin-bottom: 75px;
padding-top: 40px;
padding-left: 50px;
padding-bottom: 40px;
padding-right: 50px;
background-color: rgba(243, 109, 38, 1);
}

#s-756939b7-b084-43ea-b143-766367c5ee92 {
  min-height: 50px;
}








#s-756939b7-b084-43ea-b143-766367c5ee92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-756939b7-b084-43ea-b143-766367c5ee92.shg-box.shg-c {
  justify-content: center;
}

#s-a53c248e-826a-4ed1-93b0-1329031c521e {
  padding-top: 11px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
background-color: rgba(238, 226, 224, 0.37);
}

#s-024a3190-2d5e-4dd4-9fbf-6134b964d9bd {
  padding-top: 0px;
padding-left: 40px;
padding-bottom: 20px;
padding-right: 40px;
background-color: rgba(238, 226, 224, 0.37);
}

#s-75d097b5-6b2a-438d-bede-0429170991cd {
  border-style: solid;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 6px;
padding-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(238, 226, 224, 0.37);
}
@media (min-width: 1200px){#s-75d097b5-6b2a-438d-bede-0429170991cd {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-75d097b5-6b2a-438d-bede-0429170991cd {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-75d097b5-6b2a-438d-bede-0429170991cd {
  
}
}@media (max-width: 767px){#s-75d097b5-6b2a-438d-bede-0429170991cd {
  
}
}
@media (min-width: 0px) {
[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-75d097b5-6b2a-438d-bede-0429170991cd"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-6cf25b9a-4a03-434a-84ba-9721cc796023 {
  border-style: solid;
margin-left: 16px;
margin-right: 16px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(56, 74, 25, 1);
border-radius: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
font-size: 14px;
font-weight: bold;
color: rgba(0, 0, 0, 1);
text-decoration: none;
}
#s-6cf25b9a-4a03-434a-84ba-9721cc796023:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 0px !important;
opacity: 1 !important;
background-color: rgba(56, 74, 25, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}#s-6cf25b9a-4a03-434a-84ba-9721cc796023:active {background-color: rgba(56, 74, 25, 1) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-6cf25b9a-4a03-434a-84ba-9721cc796023 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6cf25b9a-4a03-434a-84ba-9721cc796023 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6cf25b9a-4a03-434a-84ba-9721cc796023 {
  
}
}@media (max-width: 767px){#s-6cf25b9a-4a03-434a-84ba-9721cc796023 {
  
}
}


#s-6cf25b9a-4a03-434a-84ba-9721cc796023.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  
  
  
  display:  block ;
}

#s-c035b7f9-0b3a-428c-af0c-13ccc166dc34 {
  margin-top: 5px;
background-color: rgba(76, 90, 40, 0.63);
}

@media (min-width: 0px) {
[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-c035b7f9-0b3a-428c-af0c-13ccc166dc34"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-cd899bd7-a0ff-4351-92d2-f59fb0f8ffaa {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}




  #s-cd899bd7-a0ff-4351-92d2-f59fb0f8ffaa img.shogun-image {
    
    width: px;
  }


#s-cd899bd7-a0ff-4351-92d2-f59fb0f8ffaa .shogun-image-content {
  
    align-items: center;
  
}

#s-a994c660-47ab-4fd7-8290-8bec53e6272b {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 30px;
}

#s-3cc96fab-6b8c-4576-b13d-6f9956da5808 {
  margin-top: 5px;
margin-bottom: 0px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
background-color: rgba(76, 90, 40, 1);
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
  and (min-width: 1024px) and (max-height: 1366px)
  and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none)
  and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
	opacity: 0;
}
.shogun-lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}
