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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

#s-5532c1d5-4067-46a2-ab44-8807dfa4027f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-5532c1d5-4067-46a2-ab44-8807dfa4027f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5532c1d5-4067-46a2-ab44-8807dfa4027f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-88a91a08-cb0e-442a-bdac-5751231e9be9 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-88a91a08-cb0e-442a-bdac-5751231e9be9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-88a91a08-cb0e-442a-bdac-5751231e9be9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-88a91a08-cb0e-442a-bdac-5751231e9be9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-88a91a08-cb0e-442a-bdac-5751231e9be9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: #444444;
  font-family: "Roboto+Condensed";
  font-weight: 400;
}

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

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

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

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

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

.shg-default-text-content p {
  font-size: 1em;
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #6D6E70;
  font-family: "Roboto+Condensed";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: #444444;
  font-family: "Roboto+Condensed";
  font-weight: 400;
}

.shg-theme-text-content p {
  color: #6D6E70;
  font-family: "Roboto+Condensed";
  font-weight: 300;
}

#s-da03cc16-a4bf-454b-9632-5703b535e983 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 5%;
padding-right: 5%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 16/9;
text-align: center;
}



.shg-image-margin-container-s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
    
    
  }


.s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
      position: relative;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  
  
  
  
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
    
    
  }


.s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
      position: relative;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  
  
  
  
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
    
    
  }


.s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
      position: relative;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  
  
  
  
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
    
    
  }


.s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
      position: relative;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  
  
  
  
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
    
    
  }


.s-2b2012d0-1ae3-425e-91c4-93762ca84479 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container {
      position: relative;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b2012d0-1ae3-425e-91c4-93762ca84479 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-161a5e08-e0cd-4a66-b460-5179c3dbfa97 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-161a5e08-e0cd-4a66-b460-5179c3dbfa97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-161a5e08-e0cd-4a66-b460-5179c3dbfa97.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d15b9eb-146c-4e07-abad-b42e88767d5b {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
background-color: rgba(255, 255, 255, 1);
}

#s-90aa53da-c5fb-4b86-973f-f004d2361d31 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-90aa53da-c5fb-4b86-973f-f004d2361d31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-90aa53da-c5fb-4b86-973f-f004d2361d31.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1ac3a4a-8219-4757-b936-d13eac593628 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-a1ac3a4a-8219-4757-b936-d13eac593628"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1ac3a4a-8219-4757-b936-d13eac593628"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a1ac3a4a-8219-4757-b936-d13eac593628"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1ac3a4a-8219-4757-b936-d13eac593628"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 16/9;
text-align: center;
}



.shg-image-margin-container-s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
    
    
  }


.s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-content {
  
    align-items: center;
  
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
      position: relative;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  
  
  
  
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
    
    
  }


.s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-content {
  
    align-items: center;
  
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
      position: relative;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  
  
  
  
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
    
    
  }


.s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-content {
  
    align-items: center;
  
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
      position: relative;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  
  
  
  
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
    
    
  }


.s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-content {
  
    align-items: center;
  
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
      position: relative;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  
  
  
  
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
    
    
  }


.s-d74f393d-f839-4f45-abe5-dbf69262ce8d .shogun-image-content {
  
    align-items: center;
  
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container {
      position: relative;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d74f393d-f839-4f45-abe5-dbf69262ce8d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin-left: auto;
margin-right: auto;
max-width: 1024px;
aspect-ratio: 16/9;
text-align: center;
}



.shg-image-margin-container-s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin-left: auto;
  margin-right: auto;
  
  
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
    
    
  }


.s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-content {
  
    align-items: center;
  
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ab46026-9796-4700-9dfc-9875638c2b9a {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
      position: relative;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){

.shg-image-margin-container-s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  
  
  
  
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
    
    
  }


.s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-content {
  
    align-items: center;
  
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ab46026-9796-4700-9dfc-9875638c2b9a {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
      position: relative;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  
  
  
  
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
    
    
  }


.s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-content {
  
    align-items: center;
  
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ab46026-9796-4700-9dfc-9875638c2b9a {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
      position: relative;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  
  
  
  
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
    
    
  }


.s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-content {
  
    align-items: center;
  
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ab46026-9796-4700-9dfc-9875638c2b9a {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
      position: relative;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

.shg-image-margin-container-s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  
  
  
  
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a {
  margin: 0 !important;
}



  @supports  (aspect-ratio: 1/1) {
    
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3ab46026-9796-4700-9dfc-9875638c2b9a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
    
    
  }


.s-3ab46026-9796-4700-9dfc-9875638c2b9a .shogun-image-content {
  
    align-items: center;
  
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3ab46026-9796-4700-9dfc-9875638c2b9a {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container {
      position: relative;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3ab46026-9796-4700-9dfc-9875638c2b9a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0d154ad9-ea9d-4044-8954-2a29f81622a7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0d154ad9-ea9d-4044-8954-2a29f81622a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0d154ad9-ea9d-4044-8954-2a29f81622a7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-e34dfd06-9639-4048-b649-01e91ac38c12 {
  margin-top: -11px;
margin-left: auto;
margin-bottom: -11px;
margin-right: auto;
opacity: 0;
}

#s-e34dfd06-9639-4048-b649-01e91ac38c12 hr {
  border-top: 1px solid #ddd;
}

#s-bcd0456a-c2c9-4d0b-81ad-d7681b04845f {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
}

#s-356d19a3-d090-489e-b5f8-3b0bc899f211 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-356d19a3-d090-489e-b5f8-3b0bc899f211 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-356d19a3-d090-489e-b5f8-3b0bc899f211.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-809a3db1-c4a8-4fc9-b5a2-0ddc77d59448 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-809a3db1-c4a8-4fc9-b5a2-0ddc77d59448 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-809a3db1-c4a8-4fc9-b5a2-0ddc77d59448.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-e436e8e8-e885-47c6-8bc0-73f3a0665c5d {
  margin-left: auto;
margin-right: auto;
}

#s-fb225e2f-5118-4b6f-9a1e-901ce5b9a4c1 {
  margin-left: auto;
margin-right: auto;
opacity: 0;
}

#s-fb225e2f-5118-4b6f-9a1e-901ce5b9a4c1 hr {
  border-top: 2px solid #ddd;
}

#s-fc0aeb15-3f20-4e03-a749-fa9b193110df {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-fc0aeb15-3f20-4e03-a749-fa9b193110df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fc0aeb15-3f20-4e03-a749-fa9b193110df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6ae1ba01-533a-4d86-8705-f466cca5ed4a {
  margin-left: auto;
margin-right: auto;
}

#s-cf3f636a-f970-45be-9c1d-eb170121a491 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-cf3f636a-f970-45be-9c1d-eb170121a491 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cf3f636a-f970-45be-9c1d-eb170121a491.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf133634-ec3f-4d0c-81b3-b227763c1e01 {
  margin-left: auto;
margin-right: auto;
}

#s-3579bc90-3ff7-4e26-a5b9-cbf3adaf5ca5 {
  margin-left: auto;
margin-right: auto;
}

#s-3579bc90-3ff7-4e26-a5b9-cbf3adaf5ca5 hr {
  border-top: 2px solid #ddd;
}

#s-7cb3eab4-e1e2-4708-9e47-3b168bf7e271 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-7cb3eab4-e1e2-4708-9e47-3b168bf7e271 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7cb3eab4-e1e2-4708-9e47-3b168bf7e271.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-450fa915-6b14-49e4-9517-93e53a1dd8d5 {
  margin-left: auto;
margin-right: auto;
background-color: rgba(238, 39, 55, 1);
}

#s-9b816b1a-4f13-4723-88bb-f4226b46762c {
  margin-left: auto;
margin-right: auto;
}

#s-9b816b1a-4f13-4723-88bb-f4226b46762c hr {
  border-top: 2px solid #ddd;
}

.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: #444444;
  font-family: "Roboto+Condensed";
  text-transform: none;
  font-weight: 400;
  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-08bb1293-5b7c-4a3f-b17c-3716d25c4506 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-08bb1293-5b7c-4a3f-b17c-3716d25c4506 .shogun-heading-component h2 {
  
  font-weight:  normal ;
  font-family: "Helvetica";
  font-style:  normal ;
  
  
  
  
}



#s-bd2e5b24-5b34-4e9b-a68a-b1e13c4eef39 {
  margin-left: auto;
margin-right: auto;
}

#s-bd2e5b24-5b34-4e9b-a68a-b1e13c4eef39 hr {
  border-top: 2px solid #ddd;
}

#s-9d49d41c-21ff-426d-a189-1fe08a12c726 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-9d49d41c-21ff-426d-a189-1fe08a12c726 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9d49d41c-21ff-426d-a189-1fe08a12c726.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-61f81dfb-dbb9-406f-af18-3798af9ceddf {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-61f81dfb-dbb9-406f-af18-3798af9ceddf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-61f81dfb-dbb9-406f-af18-3798af9ceddf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-61f81dfb-dbb9-406f-af18-3798af9ceddf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-61f81dfb-dbb9-406f-af18-3798af9ceddf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2b9bf3d7-b668-4b3d-9b09-a2c9666be511 {
  margin-left: auto;
margin-right: auto;
}

#s-8c106bb3-8a8a-43dd-aa0e-365b85ea2703 {
  margin-left: auto;
margin-right: auto;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

#s-fe6bfe95-a75a-405d-982a-d27b445c694c {
  margin-top: -5px;
margin-left: auto;
margin-bottom: -5px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}



.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fe6bfe95-a75a-405d-982a-d27b445c694c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-ff6ec22e-d0a8-4d0b-b652-ee36a9acef57 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-ff6ec22e-d0a8-4d0b-b652-ee36a9acef57 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-ff6ec22e-d0a8-4d0b-b652-ee36a9acef57 .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-ff6ec22e-d0a8-4d0b-b652-ee36a9acef57 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-7d179fa4-75e6-4da4-81ac-8e486016fcf0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-7d179fa4-75e6-4da4-81ac-8e486016fcf0.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-d3699177-db99-4f4f-b177-73200af66d03 {
  margin-left: auto;
margin-right: auto;
}

#s-c7a6a89f-0759-4a3a-8b6e-801ab2b967ef {
  margin-left: auto;
margin-right: auto;
padding-top: 6px;
padding-bottom: 6px;
}

#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c871925d-30fd-4cdb-9ff4-c3a36fa62905 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-2b06d6f5-4771-4c1b-9f1b-97b68824fbbc {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 0px;
text-align: center;
}

#s-2b06d6f5-4771-4c1b-9f1b-97b68824fbbc .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-2b06d6f5-4771-4c1b-9f1b-97b68824fbbc .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-2b06d6f5-4771-4c1b-9f1b-97b68824fbbc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-4478ee3c-54f2-42d5-8a48-1ac67b0a6dfc.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-78a994e2-2ee9-4b81-a741-40ade29efc17 {
  margin-left: auto;
margin-right: auto;
}

#s-3b327909-d9ba-454c-963a-cb52fad9cce0 {
  margin-left: auto;
margin-right: auto;
padding-top: 6px;
padding-bottom: 6px;
}

#s-e0a09874-3eec-4376-8261-5026307a1a71 {
  margin-top: -3px;
margin-left: auto;
margin-bottom: -3px;
margin-right: auto;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: left;
}



.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  aspect-ratio: 2:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  aspect-ratio: 2:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  aspect-ratio: 2:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  aspect-ratio: 2:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  width: 100%;
  height: auto;
}



.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 .shg-image-zoom,
.shg-c#s-e0a09874-3eec-4376-8261-5026307a1a71 img.shogun-image {
  aspect-ratio: 2:1;
}



  .shg-product-image-wrapper {
    display: none;
  }
}
.shg-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

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

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

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

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

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 {
  margin-top: -12px;
margin-left: auto;
margin-bottom: -12px;
margin-right: auto;
padding-top: 12px;
padding-left: 20px;
padding-bottom: 12px;
padding-right: 20px;
min-height: 0px;
text-decoration: none;
text-align: left;
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}



#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-swatches-wrapper {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: repeat(auto-fit, 32px);
  margin-top: 6px;
  min-width: 100px;
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-swatch {
  position: relative;
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  cursor: pointer;
}

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

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

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-swatch:hover::before {
  border-color: hsla(230, 13%, 23%, 0.3);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-swatch.selected::before {
  border-color: hsla(230, 13%, 23%, 0.8);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-product-swatches-title {
  height: 32px;
  display: block;
  font-size: 14px;
  margin-top: 8px;
  overflow-x: clip;
}





  #s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9-btn-wrapper {
    text-align: center;
  }


#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-variant-btn {
  
    background-color: #252525;
  

  color: #ffffff;
  font-size: 14px;
  
  
  
  padding: 10px;
  border-radius: 2px;
  border:  solid ;
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-variant-btn:hover {
  
    background-image: none;
    background-color: #252525;
  
  color: #ffffff;
  
  
  
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-variant-btn:active, #s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-variant-btn.active {
  
    background-image: none;
    background-color: #252525;
  
  color: #ffffff;
  
  
  
}

#s-a9225cce-1df0-4e45-b0e1-ca4c8d09d4b9 .shg-variant-btn.disabled {
  
    background-image: none;
    background-color: #252525;
  
  color: #ffffff;
  
  
  
}

#s-028459f6-06c6-4c0e-8ee8-8c2a3182b477 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-028459f6-06c6-4c0e-8ee8-8c2a3182b477 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-028459f6-06c6-4c0e-8ee8-8c2a3182b477 .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-028459f6-06c6-4c0e-8ee8-8c2a3182b477 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c61c858d-7da0-49c0-97e1-d16743cb5795 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c61c858d-7da0-49c0-97e1-d16743cb5795:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c61c858d-7da0-49c0-97e1-d16743cb5795:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c61c858d-7da0-49c0-97e1-d16743cb5795 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c61c858d-7da0-49c0-97e1-d16743cb5795.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c61c858d-7da0-49c0-97e1-d16743cb5795.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-c61c858d-7da0-49c0-97e1-d16743cb5795.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-c61c858d-7da0-49c0-97e1-d16743cb5795.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-01378ca1-68c7-4de0-932d-19c0f72de199 {
  margin-left: auto;
margin-right: auto;
}

#s-01378ca1-68c7-4de0-932d-19c0f72de199 hr {
  border-top: 2px solid #ddd;
}

#s-292a2ab4-d0a9-43bb-8da0-a815f8d481dc {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-292a2ab4-d0a9-43bb-8da0-a815f8d481dc .shogun-heading-component h2 {
  
  font-weight:  normal ;
  font-family: "Helvetica";
  font-style:  normal ;
  
  
  
  
}



#s-ea318f6f-dd18-4a8f-a086-f99c1a587042 {
  margin-left: auto;
margin-right: auto;
}

#s-ea318f6f-dd18-4a8f-a086-f99c1a587042 hr {
  border-top: 2px solid #ddd;
}

#s-a1cf2cf8-73c5-49a1-ae5f-7cccdf0cf7b9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-a1cf2cf8-73c5-49a1-ae5f-7cccdf0cf7b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a1cf2cf8-73c5-49a1-ae5f-7cccdf0cf7b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36dbdb40-1928-46b0-8c5e-d09c6bff54b7 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-36dbdb40-1928-46b0-8c5e-d09c6bff54b7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-36dbdb40-1928-46b0-8c5e-d09c6bff54b7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-36dbdb40-1928-46b0-8c5e-d09c6bff54b7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-36dbdb40-1928-46b0-8c5e-d09c6bff54b7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-041b4500-8d43-4ab5-8fbe-dd64e01071c6 {
  margin-left: auto;
margin-right: auto;
}

#s-25b4a4cb-f573-461a-90eb-753a2fcb10b9 {
  margin-left: auto;
margin-right: auto;
}

#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-736e1ff8-e647-4a3d-8cc4-c1bbdcac4de3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7c8ecb03-2aad-4794-88b5-5ec4183ab455 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-7c8ecb03-2aad-4794-88b5-5ec4183ab455 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-7c8ecb03-2aad-4794-88b5-5ec4183ab455 .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-7c8ecb03-2aad-4794-88b5-5ec4183ab455 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6f020d30-3fad-4d5c-a822-861ec722e6b9 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-6f020d30-3fad-4d5c-a822-861ec722e6b9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6f020d30-3fad-4d5c-a822-861ec722e6b9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6f020d30-3fad-4d5c-a822-861ec722e6b9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6f020d30-3fad-4d5c-a822-861ec722e6b9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6f020d30-3fad-4d5c-a822-861ec722e6b9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-6f020d30-3fad-4d5c-a822-861ec722e6b9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-6f020d30-3fad-4d5c-a822-861ec722e6b9.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-1bc5c3a4-b996-42ec-b6a8-f4c367a39149 {
  margin-left: auto;
margin-right: auto;
}

#s-aea767cc-0ffd-4b6e-9683-95e925fa14a8 {
  margin-left: auto;
margin-right: auto;
}

#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 {
  margin-left: auto;
margin-right: auto;
padding-top: 11px;
padding-bottom: 11px;
text-align: left;
}



.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55b42d58-ce24-44ac-8d59-f7e3e8c8db17 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-5c4844b4-477a-435b-92d2-e288cbad4241 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
text-align: center;
}

#s-5c4844b4-477a-435b-92d2-e288cbad4241 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-5c4844b4-477a-435b-92d2-e288cbad4241 .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-5c4844b4-477a-435b-92d2-e288cbad4241 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7943c261-5b80-4768-88bc-019a78b288aa {
  margin-top: 2px;
margin-left: auto;
margin-bottom: 2px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-7943c261-5b80-4768-88bc-019a78b288aa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7943c261-5b80-4768-88bc-019a78b288aa:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7943c261-5b80-4768-88bc-019a78b288aa {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7943c261-5b80-4768-88bc-019a78b288aa.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7943c261-5b80-4768-88bc-019a78b288aa.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-7943c261-5b80-4768-88bc-019a78b288aa.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-7943c261-5b80-4768-88bc-019a78b288aa.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-6c1ac862-2c21-4bb0-860b-42a8b3928fde {
  margin-left: auto;
margin-right: auto;
}

#s-9514f551-e50b-4bcf-888a-98846e6bae64 {
  margin-left: auto;
margin-right: auto;
}

#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2e5cb516-d8f1-4ee1-bde9-66e7493b254f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-d9ea35a7-c940-4b55-84fc-f951baaad47c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-d9ea35a7-c940-4b55-84fc-f951baaad47c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-d9ea35a7-c940-4b55-84fc-f951baaad47c .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-d9ea35a7-c940-4b55-84fc-f951baaad47c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-87cd079a-8bec-495d-886d-64fcce68d4eb {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-87cd079a-8bec-495d-886d-64fcce68d4eb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-87cd079a-8bec-495d-886d-64fcce68d4eb:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-87cd079a-8bec-495d-886d-64fcce68d4eb {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-87cd079a-8bec-495d-886d-64fcce68d4eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-87cd079a-8bec-495d-886d-64fcce68d4eb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-87cd079a-8bec-495d-886d-64fcce68d4eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-87cd079a-8bec-495d-886d-64fcce68d4eb.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-8866dda7-0aac-4a6a-8033-42b983cc7f7e {
  margin-left: auto;
margin-right: auto;
}

#s-8866dda7-0aac-4a6a-8033-42b983cc7f7e hr {
  border-top: 2px solid #ddd;
}

#s-47ff301c-7bb9-4af1-86d9-ffad32bf4f1a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-47ff301c-7bb9-4af1-86d9-ffad32bf4f1a .shogun-heading-component h2 {
  
  font-weight:  normal ;
  font-family: "Helvetica";
  font-style:  normal ;
  
  
  
  
}



#s-82731a3b-9626-4f5e-ae40-0be25b652367 {
  margin-left: auto;
margin-right: auto;
}

#s-82731a3b-9626-4f5e-ae40-0be25b652367 hr {
  border-top: 2px solid #ddd;
}

#s-0705dc4e-d9f5-4cee-abd7-9686b70889d9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-0705dc4e-d9f5-4cee-abd7-9686b70889d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0705dc4e-d9f5-4cee-abd7-9686b70889d9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ea34809-205c-436f-9b21-190e5a52c921 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9ea34809-205c-436f-9b21-190e5a52c921"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ea34809-205c-436f-9b21-190e5a52c921"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9ea34809-205c-436f-9b21-190e5a52c921"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ea34809-205c-436f-9b21-190e5a52c921"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-3c34ef02-894e-4cfd-b49f-128d28705b01 {
  margin-left: auto;
margin-right: auto;
}

.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: #444444;
  font-family: "Roboto+Condensed";
  text-transform: none;
  font-weight: 400;
  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-cbd04ba8-1563-4c81-a47c-0aaa7a96cdfd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cbd04ba8-1563-4c81-a47c-0aaa7a96cdfd .shg-product-title-component h5 {
  
  
  font-family: Helvetica;
  
  
  
  
  
}

#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d344f9d0-bb43-46bf-9838-a2a14d2dbc90 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-990cf1e6-2723-47d7-b3c2-e0fbd649815e {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-990cf1e6-2723-47d7-b3c2-e0fbd649815e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-990cf1e6-2723-47d7-b3c2-e0fbd649815e .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-990cf1e6-2723-47d7-b3c2-e0fbd649815e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9dac875c-dca6-4217-8331-216a0b69e69f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9dac875c-dca6-4217-8331-216a0b69e69f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9dac875c-dca6-4217-8331-216a0b69e69f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9dac875c-dca6-4217-8331-216a0b69e69f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9dac875c-dca6-4217-8331-216a0b69e69f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9dac875c-dca6-4217-8331-216a0b69e69f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-9dac875c-dca6-4217-8331-216a0b69e69f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-9dac875c-dca6-4217-8331-216a0b69e69f.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-52ac693c-7144-4b66-8a36-22cbdfb47094 {
  margin-left: auto;
margin-right: auto;
}

#s-c9a30ab7-9cd1-4fab-8a1d-68e0109aa991 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c9a30ab7-9cd1-4fab-8a1d-68e0109aa991 .shg-product-title-component h5 {
  
  
  font-family: Helvetica;
  
  
  
  
  
}

#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a9ec02f-f3c7-4124-9c6d-4c3ee422e6d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-e1074433-491d-44b4-a840-90be93037c5c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-e1074433-491d-44b4-a840-90be93037c5c .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-e1074433-491d-44b4-a840-90be93037c5c .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-e1074433-491d-44b4-a840-90be93037c5c .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-318a27c1-808d-4b08-a4cf-c39356e87232 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-318a27c1-808d-4b08-a4cf-c39356e87232:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-318a27c1-808d-4b08-a4cf-c39356e87232:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-318a27c1-808d-4b08-a4cf-c39356e87232 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-318a27c1-808d-4b08-a4cf-c39356e87232.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-318a27c1-808d-4b08-a4cf-c39356e87232.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-318a27c1-808d-4b08-a4cf-c39356e87232.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-318a27c1-808d-4b08-a4cf-c39356e87232.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


#s-7d38bf4a-a720-445f-bfee-a070ad58b847 {
  margin-left: auto;
margin-right: auto;
}

#s-8a8640cf-3280-48dd-8d13-5cb5a4b15e71 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8a8640cf-3280-48dd-8d13-5cb5a4b15e71 .shg-product-title-component h5 {
  
  
  font-family: Helvetica;
  
  
  
  
  
}

#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-cc9d105f-9b3e-492c-aaf9-b3238c1fe8fd img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7a90d315-e0a5-4808-8825-40a44b44f419 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-7a90d315-e0a5-4808-8825-40a44b44f419 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  
  font-family: Helvetica;
  font-style:  normal ;
}

#s-7a90d315-e0a5-4808-8825-40a44b44f419 .shg-product-price {
  color: #000;
  
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 18px;
}

#s-7a90d315-e0a5-4808-8825-40a44b44f419 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  
  
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-41957b6d-3449-4796-9390-d699cb472af3 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-41957b6d-3449-4796-9390-d699cb472af3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-41957b6d-3449-4796-9390-d699cb472af3:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-41957b6d-3449-4796-9390-d699cb472af3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-41957b6d-3449-4796-9390-d699cb472af3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-41957b6d-3449-4796-9390-d699cb472af3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Helvetica;
  display:  block ;
}

#s-41957b6d-3449-4796-9390-d699cb472af3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-41957b6d-3449-4796-9390-d699cb472af3.shg-btn.shg-product-atc-success {
    
    font-family: Helvetica;
    
    
    
  }


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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-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:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-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:not(.shopify-section *):not([id^="wistia"]){display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
