#s-fabaacbb-a3f3-4088-8d36-2461f884ccad {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}

#s-fabaacbb-a3f3-4088-8d36-2461f884ccad {
  display: none;
}
.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f {
  opacity: 1;
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(2, 167, 233, 1);
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(2, 167, 233, 1);
  text-align: left;
  font-family: Open Sans;
  font-weight: 700;
  font-style: ;
  font-size: 18px;
}

#s-4dd5f0b5-2186-4349-91c7-f5119fb0fb2f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

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

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

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

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

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

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

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

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

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

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

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

#s-f3af077c-3cdd-469a-90a9-706ff94db371 {
  min-height: 50px;
}








#s-f3af077c-3cdd-469a-90a9-706ff94db371 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3af077c-3cdd-469a-90a9-706ff94db371.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-543539e4-6f42-4855-b310-2189b395ac19 {
  padding-left: 20px;
padding-right: 20px;
text-align: center;
}







  #s-543539e4-6f42-4855-b310-2189b395ac19 img.shogun-image {
    

    
    
    
  }


#s-543539e4-6f42-4855-b310-2189b395ac19 .shogun-image-content {
  
    align-items: center;
  
}

#s-3141b150-f5d0-4345-9053-cbdb9b54d484 {
  min-height: 50px;
}








#s-3141b150-f5d0-4345-9053-cbdb9b54d484 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3141b150-f5d0-4345-9053-cbdb9b54d484.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-f864cb30-6c71-4ed9-b5e0-c73160ab1d83 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-f864cb30-6c71-4ed9-b5e0-c73160ab1d83"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f864cb30-6c71-4ed9-b5e0-c73160ab1d83"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f864cb30-6c71-4ed9-b5e0-c73160ab1d83"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f864cb30-6c71-4ed9-b5e0-c73160ab1d83"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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

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

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

#s-6dcdf633-8894-40d2-86ff-e99063ddc450 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6dcdf633-8894-40d2-86ff-e99063ddc450 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-7c79825f-6e7e-43bd-ae35-dd3d385333a3 {
  padding-top: 0px;
padding-bottom: 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: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-4dce3d01-3ca3-421a-9703-3c5388f00937 hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-df3f1625-0cfa-4bd5-92b7-209f38725983 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-df3f1625-0cfa-4bd5-92b7-209f38725983"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df3f1625-0cfa-4bd5-92b7-209f38725983"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-df3f1625-0cfa-4bd5-92b7-209f38725983"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-df3f1625-0cfa-4bd5-92b7-209f38725983"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-df3f1625-0cfa-4bd5-92b7-209f38725983"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-af8bf1c2-eb50-495f-92e0-a552cc6a6a95 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-af8bf1c2-eb50-495f-92e0-a552cc6a6a95 .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-8119877f-a7d8-43cc-87b0-49bb2ee5c0e7 {
  text-align: center;
}







  #s-8119877f-a7d8-43cc-87b0-49bb2ee5c0e7 img.shogun-image {
    

    
    
    
  }


#s-8119877f-a7d8-43cc-87b0-49bb2ee5c0e7 .shogun-image-content {
  
    align-items: center;
  
}

#s-a432fcd6-c477-4622-af9d-37afd0aa2bf4 hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-4baa66a5-466f-42ee-a73c-cf1d0c5e78af {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-4baa66a5-466f-42ee-a73c-cf1d0c5e78af"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4baa66a5-466f-42ee-a73c-cf1d0c5e78af"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4baa66a5-466f-42ee-a73c-cf1d0c5e78af"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4baa66a5-466f-42ee-a73c-cf1d0c5e78af"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-dc3646e5-a0a7-47fc-835a-b64122893f58 {
  text-align: center;
}







  #s-dc3646e5-a0a7-47fc-835a-b64122893f58 img.shogun-image {
    

    
    
    
  }


#s-dc3646e5-a0a7-47fc-835a-b64122893f58 .shogun-image-content {
  
    align-items: center;
  
}

#s-60099037-2e72-4795-85a2-72c9b3e2da9c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-60099037-2e72-4795-85a2-72c9b3e2da9c .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-c85aff16-0b7c-479b-98fd-0b9a871989a7 hr {
  border-top: 30px solid rgba(255, 255, 255, 1);
}

#s-604a1f08-49bb-46d3-ad73-cdc66906e6fc {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-604a1f08-49bb-46d3-ad73-cdc66906e6fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-604a1f08-49bb-46d3-ad73-cdc66906e6fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-604a1f08-49bb-46d3-ad73-cdc66906e6fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-604a1f08-49bb-46d3-ad73-cdc66906e6fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-604a1f08-49bb-46d3-ad73-cdc66906e6fc"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-901f38ad-68c2-4ae6-af70-008df37fe2ee {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-901f38ad-68c2-4ae6-af70-008df37fe2ee .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-c46e13ea-488a-470e-b615-6c6047ce8b19 {
  text-align: center;
}







  #s-c46e13ea-488a-470e-b615-6c6047ce8b19 img.shogun-image {
    

    
    
    
  }


#s-c46e13ea-488a-470e-b615-6c6047ce8b19 .shogun-image-content {
  
    align-items: center;
  
}

#s-72606857-08ad-4d5d-b630-dec7baef0aef {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-72606857-08ad-4d5d-b630-dec7baef0aef .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-4ece6c19-fb48-4037-949b-284ee5c1e479 {
  min-height: 50px;
}








#s-4ece6c19-fb48-4037-949b-284ee5c1e479 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ece6c19-fb48-4037-949b-284ee5c1e479.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-f651d124-7fd4-492d-b035-2e94103c6ddf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f651d124-7fd4-492d-b035-2e94103c6ddf .shg-product-title-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 27px;
  line-height: ;
  letter-spacing: ;
}

#s-02f40e99-3001-4d94-b601-347b3642fd19 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-02f40e99-3001-4d94-b601-347b3642fd19 .shogun-heading-component h3 {
  color: rgba(85, 85, 85, 1);
  font-weight:  normal ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-ec93532d-3069-4a41-8021-8397a769c857 hr {
  border-top: 1px solid #ddd;
}

#s-275f3241-c8d8-497a-b3bd-3eaa0edb980b {
  min-height: 50px;
}








#s-275f3241-c8d8-497a-b3bd-3eaa0edb980b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-275f3241-c8d8-497a-b3bd-3eaa0edb980b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .shg-category-row-hor {
    display: flex;
    flex-wrap: wrap;
  }

  .shg-category-row-hor .shg-category-col,
  .shg-category-row-hor .shg-category-col:first-child,
  .shg-category-row-hor .shg-category-col:last-child {
    min-width: 50%;
    max-width: 50%;
    padding-top: 0;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;
  }
}

#s-9fc43dc4-62c6-4142-a023-7c5203804ec4 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 {
  text-align: left;
}



.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e9fa4b1-230f-4fad-aa6d-8c077083ea18 img.shogun-image {
  width: 100%;
}



}
#s-b9ff0ab2-91c1-4edd-830a-0f01006d7d54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b9ff0ab2-91c1-4edd-830a-0f01006d7d54 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-45ce73ed-2c71-4946-a31c-5b32311ed7b8 {
  text-align: left;
}

#s-45ce73ed-2c71-4946-a31c-5b32311ed7b8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-45ce73ed-2c71-4946-a31c-5b32311ed7b8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-45ce73ed-2c71-4946-a31c-5b32311ed7b8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

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

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

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

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

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

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

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

#s-c041357d-8c62-42b7-b055-cb1c8ea4639d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c041357d-8c62-42b7-b055-cb1c8ea4639d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c041357d-8c62-42b7-b055-cb1c8ea4639d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c041357d-8c62-42b7-b055-cb1c8ea4639d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c041357d-8c62-42b7-b055-cb1c8ea4639d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c041357d-8c62-42b7-b055-cb1c8ea4639d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c041357d-8c62-42b7-b055-cb1c8ea4639d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2aa683ba-a52d-42dd-b3e4-db7b33a05d9c {
  display: none;
}
#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 {
  text-align: left;
}



.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e65bff42-9d32-49c5-b3c7-f5963095dd85 img.shogun-image {
  width: 100%;
}



}
#s-dcfb56a8-2226-416b-b3d2-08169f3790b0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dcfb56a8-2226-416b-b3d2-08169f3790b0 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-d0e4b5e5-bed2-4f9e-aa4f-35cca6e827a5 {
  text-align: left;
}

#s-d0e4b5e5-bed2-4f9e-aa4f-35cca6e827a5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d0e4b5e5-bed2-4f9e-aa4f-35cca6e827a5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-d0e4b5e5-bed2-4f9e-aa4f-35cca6e827a5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-9d59b1d1-b570-4f4c-95ea-15c7722beffd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-020c67be-0c5a-499c-b716-64548546404f {
  display: none;
}
#s-193dfc75-5040-4b94-8932-0b305a993700 {
  text-align: left;
}



.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-193dfc75-5040-4b94-8932-0b305a993700 img.shogun-image {
  width: 100%;
}



}
#s-a6eac418-137f-403a-a1b6-7cce566f3e69 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a6eac418-137f-403a-a1b6-7cce566f3e69 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-cb231121-afcf-4237-98ac-fb373861551d {
  text-align: left;
}

#s-cb231121-afcf-4237-98ac-fb373861551d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cb231121-afcf-4237-98ac-fb373861551d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-cb231121-afcf-4237-98ac-fb373861551d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-71c14e6c-e397-4007-9960-d560616061ce {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-71c14e6c-e397-4007-9960-d560616061ce:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-71c14e6c-e397-4007-9960-d560616061ce:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-71c14e6c-e397-4007-9960-d560616061ce {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-71c14e6c-e397-4007-9960-d560616061ce.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-71c14e6c-e397-4007-9960-d560616061ce.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-71c14e6c-e397-4007-9960-d560616061ce.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9159d62e-90dc-468f-99b7-ac4634da8993 {
  display: none;
}
#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a {
  text-align: left;
}



.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a img.shogun-image {
  width: 100%;
}



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

.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f445b51f-aa90-48b7-9394-f7d8f95b5c4a img.shogun-image {
  width: 100%;
}



}
#s-90d53aae-67a8-4e89-972d-05f99dece09c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-90d53aae-67a8-4e89-972d-05f99dece09c .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-076586c1-4cb0-444c-85df-f8531bfb158b {
  text-align: left;
}

#s-076586c1-4cb0-444c-85df-f8531bfb158b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-076586c1-4cb0-444c-85df-f8531bfb158b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-076586c1-4cb0-444c-85df-f8531bfb158b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-4483f4af-fef4-49f2-853a-6b000ee908c5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-4483f4af-fef4-49f2-853a-6b000ee908c5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4483f4af-fef4-49f2-853a-6b000ee908c5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4483f4af-fef4-49f2-853a-6b000ee908c5 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4483f4af-fef4-49f2-853a-6b000ee908c5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4483f4af-fef4-49f2-853a-6b000ee908c5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-4483f4af-fef4-49f2-853a-6b000ee908c5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d8183d61-6c07-450e-b439-5a8e98e7af42 {
  display: none;
}
#s-23de8490-c748-4e19-afd0-5cc26c25d51b {
  text-align: left;
}



.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-23de8490-c748-4e19-afd0-5cc26c25d51b img.shogun-image {
  width: 100%;
}



}
#s-df1bebb0-4384-436f-b5c5-d3f6fe2001a0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df1bebb0-4384-436f-b5c5-d3f6fe2001a0 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-cdfccfcc-06d6-48c8-bec3-8099169f52ce {
  text-align: left;
}

#s-cdfccfcc-06d6-48c8-bec3-8099169f52ce .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-cdfccfcc-06d6-48c8-bec3-8099169f52ce .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-cdfccfcc-06d6-48c8-bec3-8099169f52ce .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-427ca1c6-ff91-49ff-8e98-583e4f6c2c16.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-911a668b-2f31-4925-bd79-aa2920345bb8 {
  display: none;
}
#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 {
  text-align: left;
}



.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-dd352e15-db84-4208-b5cc-9c16d0f0ca71 img.shogun-image {
  width: 100%;
}



}
#s-ea26aa8c-78f9-464d-af95-49a66c9e5eb2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ea26aa8c-78f9-464d-af95-49a66c9e5eb2 .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-99239c78-52ac-4cb7-93af-d6312d121b3e {
  text-align: left;
}

#s-99239c78-52ac-4cb7-93af-d6312d121b3e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-99239c78-52ac-4cb7-93af-d6312d121b3e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-99239c78-52ac-4cb7-93af-d6312d121b3e .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-60742d08-88b5-4b13-9301-2160ab8b8b86 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-60742d08-88b5-4b13-9301-2160ab8b8b86:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-60742d08-88b5-4b13-9301-2160ab8b8b86:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-60742d08-88b5-4b13-9301-2160ab8b8b86 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-60742d08-88b5-4b13-9301-2160ab8b8b86.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-60742d08-88b5-4b13-9301-2160ab8b8b86.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-60742d08-88b5-4b13-9301-2160ab8b8b86.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ba20c729-1ce2-4dd2-9d77-785d9a2f2881 {
  display: none;
}
#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 {
  text-align: left;
}



.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1aed575d-2e99-4ba5-b963-6eb4e214fbd2 img.shogun-image {
  width: 100%;
}



}
#s-379d9795-7a43-433b-81e5-a072d1ef22af {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-379d9795-7a43-433b-81e5-a072d1ef22af .shg-product-title-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
}

#s-232b490a-16ac-4581-bc09-7d7911eb7703 {
  text-align: left;
}

#s-232b490a-16ac-4581-bc09-7d7911eb7703 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-232b490a-16ac-4581-bc09-7d7911eb7703 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-232b490a-16ac-4581-bc09-7d7911eb7703 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d259d2ea-2f2b-488d-9a41-8b7d11ff865d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bdaee0be-365d-4310-a026-a52e513f2d8c {
  padding-top: 19px;
padding-bottom: 19px;
}

#s-bdaee0be-365d-4310-a026-a52e513f2d8c hr {
  border-top: 2px solid #ddd;
}

#s-5ddc05fd-8e46-4fed-b2ca-acbdc535ba09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5ddc05fd-8e46-4fed-b2ca-acbdc535ba09 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



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

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

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

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

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

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

#s-573d7e97-a707-439f-91f6-3b389be8341b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
color: rgba(255, 255, 255, 1);
}
#s-573d7e97-a707-439f-91f6-3b389be8341b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-573d7e97-a707-439f-91f6-3b389be8341b:active {background-color: #000000 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-573d7e97-a707-439f-91f6-3b389be8341b-root {
    text-align: center;
  }


#s-573d7e97-a707-439f-91f6-3b389be8341b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-573d7e97-a707-439f-91f6-3b389be8341b-root {
    text-align: center;
  }


#s-573d7e97-a707-439f-91f6-3b389be8341b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-573d7e97-a707-439f-91f6-3b389be8341b-root {
    text-align: center;
  }


#s-573d7e97-a707-439f-91f6-3b389be8341b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-573d7e97-a707-439f-91f6-3b389be8341b-root {
    text-align: center;
  }


#s-573d7e97-a707-439f-91f6-3b389be8341b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-573d7e97-a707-439f-91f6-3b389be8341b-root {
    text-align: center;
  }


#s-573d7e97-a707-439f-91f6-3b389be8341b.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2b4ef414-584c-44e6-af50-c4b11e10cc2e {
  padding-top: 19px;
padding-bottom: 19px;
}

#s-2b4ef414-584c-44e6-af50-c4b11e10cc2e hr {
  border-top: 2px solid #ddd;
}

#s-3aa477e3-f6cb-4009-8b4f-f155abc2c969 {
  min-height: 50px;
}








#s-3aa477e3-f6cb-4009-8b4f-f155abc2c969 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3aa477e3-f6cb-4009-8b4f-f155abc2c969.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d1bf5dc-b629-4bd4-9311-d4b0edb9f7a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0d1bf5dc-b629-4bd4-9311-d4b0edb9f7a7 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-e4c40353-300e-4b90-afc1-8d007f5157ea hr {
  border-top: 1px solid #ddd;
}

@media (min-width: 0px) {
[id="s-460f93cf-1be5-47c7-9ad7-b826dd07b141"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-460f93cf-1be5-47c7-9ad7-b826dd07b141"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-460f93cf-1be5-47c7-9ad7-b826dd07b141"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-460f93cf-1be5-47c7-9ad7-b826dd07b141"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2f0ee7cf-e725-41e8-8795-4b2143688008 hr {
  border-top: 2px solid #ddd;
}

#s-5dd5c80d-9427-49ef-80ea-6b392dc8aeef {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5dd5c80d-9427-49ef-80ea-6b392dc8aeef .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



@media (min-width: 0px) {
[id="s-f84c11d3-781d-4181-82fc-bc3fea098c1b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f84c11d3-781d-4181-82fc-bc3fea098c1b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f84c11d3-781d-4181-82fc-bc3fea098c1b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f84c11d3-781d-4181-82fc-bc3fea098c1b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4d0d365c-a2f8-4a12-8ab0-6dfb3ff6b63a {
  min-height: 50px;
}








#s-4d0d365c-a2f8-4a12-8ab0-6dfb3ff6b63a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d0d365c-a2f8-4a12-8ab0-6dfb3ff6b63a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-227a3b9a-917e-4dd8-8e7f-d09f1774d1d9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-227a3b9a-917e-4dd8-8e7f-d09f1774d1d9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-227a3b9a-917e-4dd8-8e7f-d09f1774d1d9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-227a3b9a-917e-4dd8-8e7f-d09f1774d1d9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d431dab4-6e1d-4c3a-aa96-de09c9fb55ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d431dab4-6e1d-4c3a-aa96-de09c9fb55ac .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-78cddb06-3e00-4001-904b-01987bc58e71 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-78cddb06-3e00-4001-904b-01987bc58e71 .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-058aa5c1-a8e6-40e9-a852-8145ff756dcc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-058aa5c1-a8e6-40e9-a852-8145ff756dcc .shogun-heading-component h3 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



#s-99b9217b-3e8e-4caf-b822-709a8f44129e {
  min-height: 50px;
}








#s-99b9217b-3e8e-4caf-b822-709a8f44129e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99b9217b-3e8e-4caf-b822-709a8f44129e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-010c17a5-84b3-4fc6-b9a9-e5e5b283448d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-010c17a5-84b3-4fc6-b9a9-e5e5b283448d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-010c17a5-84b3-4fc6-b9a9-e5e5b283448d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-010c17a5-84b3-4fc6-b9a9-e5e5b283448d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c97e9ac2-60b4-45ab-ac87-b02b16d6fcae {
  padding-top: 19px;
padding-bottom: 19px;
}

#s-c97e9ac2-60b4-45ab-ac87-b02b16d6fcae hr {
  border-top: 2px solid #ddd;
}

#s-317c4a12-12da-4437-aec8-cdc2f1807d78 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-317c4a12-12da-4437-aec8-cdc2f1807d78 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
color: rgba(255, 255, 255, 1);
}
#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-7787bef0-9d85-4d8f-ae4d-1e037830d44d-root {
    text-align: center;
  }


#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-7787bef0-9d85-4d8f-ae4d-1e037830d44d-root {
    text-align: center;
  }


#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-7787bef0-9d85-4d8f-ae4d-1e037830d44d-root {
    text-align: center;
  }


#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-7787bef0-9d85-4d8f-ae4d-1e037830d44d-root {
    text-align: center;
  }


#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-7787bef0-9d85-4d8f-ae4d-1e037830d44d-root {
    text-align: center;
  }


#s-7787bef0-9d85-4d8f-ae4d-1e037830d44d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-cb421982-963d-42c6-acca-8fdd96a717a4 {
  padding-top: 19px;
padding-bottom: 19px;
}

#s-cb421982-963d-42c6-acca-8fdd96a717a4 hr {
  border-top: 2px solid #ddd;
}

#s-5b214f69-8f80-448b-ac63-55613b214ccf hr {
  border-top: 1px solid #ddd;
}

#s-90781084-1cfe-43fe-a09c-bb5a8ebdeba6 {
  min-height: 50px;
}








#s-90781084-1cfe-43fe-a09c-bb5a8ebdeba6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90781084-1cfe-43fe-a09c-bb5a8ebdeba6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3b542252-bab8-460a-9d87-8a6d55255417"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b542252-bab8-460a-9d87-8a6d55255417"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3b542252-bab8-460a-9d87-8a6d55255417"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b542252-bab8-460a-9d87-8a6d55255417"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-ee38096b-4a14-45d8-b0a1-a8e3b4a8ddd3 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-ee38096b-4a14-45d8-b0a1-a8e3b4a8ddd3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee38096b-4a14-45d8-b0a1-a8e3b4a8ddd3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee38096b-4a14-45d8-b0a1-a8e3b4a8ddd3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee38096b-4a14-45d8-b0a1-a8e3b4a8ddd3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-519a6c46-d133-4f2f-875f-23d3d1d44ba6 hr {
  border-top: 2px solid #ddd;
}

#s-0879a4cb-d2fc-4ad9-89b9-038678861037 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0879a4cb-d2fc-4ad9-89b9-038678861037 .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



@media (min-width: 0px) {
[id="s-17119504-c8d3-4db4-a720-020e9a48d226"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-17119504-c8d3-4db4-a720-020e9a48d226"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-17119504-c8d3-4db4-a720-020e9a48d226"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-17119504-c8d3-4db4-a720-020e9a48d226"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-402d483d-4311-4d27-aa03-9bacfd122aca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-402d483d-4311-4d27-aa03-9bacfd122aca .shogun-heading-component h1 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-f038477c-1490-4cb9-9531-8aab17ecc3c3 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f038477c-1490-4cb9-9531-8aab17ecc3c3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-97f0fd92-b545-4a39-b2b9-a0c2d29a8723"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-df786934-2bd8-4eae-a285-afe113e9a7d4 {
  margin-left: 10px;
margin-right: 10px;
padding-left: 21px;
padding-right: 21px;
}

#s-df786934-2bd8-4eae-a285-afe113e9a7d4 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-df786934-2bd8-4eae-a285-afe113e9a7d4 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-df786934-2bd8-4eae-a285-afe113e9a7d4 td.shogun-table-column {
  background-color: rgba(226, 226, 226, 1);
  padding: 10px;
  text-align: inherit;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-df786934-2bd8-4eae-a285-afe113e9a7d4 td.shogun-table-row {
  background-color: #fff;
  padding: 0em;
}

#s-df786934-2bd8-4eae-a285-afe113e9a7d4 td.shogun-table-column, #s-df786934-2bd8-4eae-a285-afe113e9a7d4 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-918aa4fc-cbc3-435a-941e-8f174848db35 .shogun-icon-wrapper {
  text-align: center;
}


#s-918aa4fc-cbc3-435a-941e-8f174848db35 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-27840a7b-994e-4020-b991-b686e44e608d .shogun-icon-wrapper {
  text-align: center;
}


#s-27840a7b-994e-4020-b991-b686e44e608d .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-7cef5965-edec-4611-8025-876e7871a6a0 .shogun-icon-wrapper {
  text-align: center;
}


#s-7cef5965-edec-4611-8025-876e7871a6a0 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-0626d0c6-2dbf-4604-abd5-68fdfe7bfdf9 .shogun-icon-wrapper {
  text-align: center;
}


#s-0626d0c6-2dbf-4604-abd5-68fdfe7bfdf9 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-e6f7ae5f-fa1a-42cf-8e3b-907b95d6bd2c .shogun-icon-wrapper {
  text-align: center;
}


#s-e6f7ae5f-fa1a-42cf-8e3b-907b95d6bd2c .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-28690d04-5765-46de-a44a-c41a8aad6832 .shogun-icon-wrapper {
  text-align: center;
}


#s-28690d04-5765-46de-a44a-c41a8aad6832 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-8f24933a-a052-4d2e-ad53-4a83e4c7ba5a .shogun-icon-wrapper {
  text-align: center;
}


#s-8f24933a-a052-4d2e-ad53-4a83e4c7ba5a .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-13ec636b-73ed-4239-8a3a-5a91622ed045 .shogun-icon-wrapper {
  text-align: center;
}


#s-13ec636b-73ed-4239-8a3a-5a91622ed045 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-bcf7d262-576c-42b0-a5b3-fb9a6fcf822d .shogun-icon-wrapper {
  text-align: center;
}


#s-bcf7d262-576c-42b0-a5b3-fb9a6fcf822d .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-22561dfc-cb08-4cc5-8339-a390b2bb9120 .shogun-icon-wrapper {
  text-align: center;
}


#s-22561dfc-cb08-4cc5-8339-a390b2bb9120 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-cc0f6ee4-4d46-483b-a01b-5c518080bf4d .shogun-icon-wrapper {
  text-align: center;
}


#s-cc0f6ee4-4d46-483b-a01b-5c518080bf4d .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-a5b18690-0c33-4b9b-ab9b-58c4c16262ec .shogun-icon-wrapper {
  text-align: center;
}


#s-a5b18690-0c33-4b9b-ab9b-58c4c16262ec .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-5ebdb681-ba71-4dd0-a90d-0345e3098ffe .shogun-icon-wrapper {
  text-align: center;
}


#s-5ebdb681-ba71-4dd0-a90d-0345e3098ffe .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-cac26c8f-337a-44a7-b653-ba47778e41d7 .shogun-icon-wrapper {
  text-align: center;
}


#s-cac26c8f-337a-44a7-b653-ba47778e41d7 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-198b1640-a62d-4fba-96db-6246ad2982a3 .shogun-icon-wrapper {
  text-align: center;
}


#s-198b1640-a62d-4fba-96db-6246ad2982a3 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-e45adabc-c7e7-40ce-a683-8d46eab4ee89 .shogun-icon-wrapper {
  text-align: center;
}


#s-e45adabc-c7e7-40ce-a683-8d46eab4ee89 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-d7ff647a-9d29-46f4-98d6-32965a35f13d .shogun-icon-wrapper {
  text-align: center;
}


#s-d7ff647a-9d29-46f4-98d6-32965a35f13d .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-0d8e43fe-e8a8-436a-b2a0-1e475310e843 .shogun-icon-wrapper {
  text-align: center;
}


#s-0d8e43fe-e8a8-436a-b2a0-1e475310e843 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-71f3ec5f-3c1b-4fc8-a7bb-e9e9c5dfe990 .shogun-icon-wrapper {
  text-align: center;
}


#s-71f3ec5f-3c1b-4fc8-a7bb-e9e9c5dfe990 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-3f7ad228-466a-4271-91ce-721eeb6fec40 .shogun-icon-wrapper {
  text-align: center;
}


#s-3f7ad228-466a-4271-91ce-721eeb6fec40 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-cfea752a-0a67-4f8a-a6d3-fe1de4129289 .shogun-icon-wrapper {
  text-align: center;
}


#s-cfea752a-0a67-4f8a-a6d3-fe1de4129289 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-25c147db-e72d-428a-b01d-c73f1b2a7b57 .shogun-icon-wrapper {
  text-align: center;
}


#s-25c147db-e72d-428a-b01d-c73f1b2a7b57 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-4433dd9a-9886-4f83-b514-fbdc7139b02a .shogun-icon-wrapper {
  text-align: center;
}


#s-4433dd9a-9886-4f83-b514-fbdc7139b02a .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-6df62e66-167a-4f66-9170-122ab3766163 .shogun-icon-wrapper {
  text-align: center;
}


#s-6df62e66-167a-4f66-9170-122ab3766163 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-1a5bbe12-a141-4278-a2c1-78a3f98095cb .shogun-icon-wrapper {
  text-align: center;
}


#s-1a5bbe12-a141-4278-a2c1-78a3f98095cb .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-6fcc159e-4fa9-4ec3-94d8-f955ebebdcbe .shogun-icon-wrapper {
  text-align: center;
}


#s-6fcc159e-4fa9-4ec3-94d8-f955ebebdcbe .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(8, 194, 64, 1);
}

#s-75c8ebff-24c7-4dea-bd99-004f14fa789a {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-75c8ebff-24c7-4dea-bd99-004f14fa789a hr {
  border-top: 1px solid #ddd;
}

#s-38c7a6b1-89be-43fb-8cf6-1edd43051300 {
  padding-left: 20px;
padding-right: 20px;
}

@media (min-width: 0px) {
[id="s-38c7a6b1-89be-43fb-8cf6-1edd43051300"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-38c7a6b1-89be-43fb-8cf6-1edd43051300"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-38c7a6b1-89be-43fb-8cf6-1edd43051300"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-38c7a6b1-89be-43fb-8cf6-1edd43051300"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-06470bbb-3883-4bbf-b08d-03aed86c87dd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-06470bbb-3883-4bbf-b08d-03aed86c87dd .shogun-heading-component h2 {
  color: rgba(85, 85, 85, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-3aecc087-41ce-4468-b3c4-d68a1a1e2064 {
  max-width: 1110px;
text-align: center;
}

#s-3aecc087-41ce-4468-b3c4-d68a1a1e2064 {
  display: none;
}
#s-0eb93888-082e-4114-a7f8-bac0875c17de {
  min-height: 50px;
background-attachment: scroll;
}








#s-0eb93888-082e-4114-a7f8-bac0875c17de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0eb93888-082e-4114-a7f8-bac0875c17de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-54850f88-2b9b-4a0b-9efe-f990e0c9ee29 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-54850f88-2b9b-4a0b-9efe-f990e0c9ee29 hr {
  border-top: 2px solid #ddd;
}

#s-b7bc71b9-f947-4c33-bc14-9706f3ea9ebc {
  padding-top: 10px;
text-align: center;
}

#s-b7bc71b9-f947-4c33-bc14-9706f3ea9ebc .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  700 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



#s-63224c91-eb40-4cef-b596-fce65b481872 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-63224c91-eb40-4cef-b596-fce65b481872 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-63224c91-eb40-4cef-b596-fce65b481872 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-63224c91-eb40-4cef-b596-fce65b481872 {
  
}
}@media (max-width: 767px){#s-63224c91-eb40-4cef-b596-fce65b481872 {
  
}
}







#s-63224c91-eb40-4cef-b596-fce65b481872 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-63224c91-eb40-4cef-b596-fce65b481872.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2104d2f1-6e9e-4e76-a634-49b81bb03a15 {
  margin-top: 5px;
margin-left: 15px;
margin-bottom: 5px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-2104d2f1-6e9e-4e76-a634-49b81bb03a15"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-2104d2f1-6e9e-4e76-a634-49b81bb03a15"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2104d2f1-6e9e-4e76-a634-49b81bb03a15"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2104d2f1-6e9e-4e76-a634-49b81bb03a15"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-4c101691-93a2-47d3-815e-8c919ac748d6 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-4c101691-93a2-47d3-815e-8c919ac748d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4c101691-93a2-47d3-815e-8c919ac748d6.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1fc1a96c-b7ed-49ed-9051-2b4fb714fd44 {
  margin-left: 20px;
margin-right: 20px;
}

#s-1fc1a96c-b7ed-49ed-9051-2b4fb714fd44 .shogun-icon-wrapper {
  text-align: center;
}


#s-1fc1a96c-b7ed-49ed-9051-2b4fb714fd44 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-ae3c130c-c290-4f37-bf10-b67f3ba3bc87 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae3c130c-c290-4f37-bf10-b67f3ba3bc87 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-552f9054-a8be-4875-bdad-9a7021dfbc8d {
  margin-left: 20px;
margin-right: 20px;
}

#s-a652f7e0-3251-4b7e-b2b3-f7a61e671ef5 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-a652f7e0-3251-4b7e-b2b3-f7a61e671ef5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a652f7e0-3251-4b7e-b2b3-f7a61e671ef5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-84a06626-ef27-479a-8032-60e708e4782c {
  margin-left: 20px;
margin-right: 20px;
}

#s-84a06626-ef27-479a-8032-60e708e4782c .shogun-icon-wrapper {
  text-align: center;
}


#s-84a06626-ef27-479a-8032-60e708e4782c .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-4e3d1a5e-2096-4bb0-9a8f-9ae1a280dc9b {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4e3d1a5e-2096-4bb0-9a8f-9ae1a280dc9b .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-fed4182e-0220-4fea-8577-9db3daf2b5e0 {
  margin-left: 20px;
margin-right: 20px;
}

#s-1ece3864-df6e-48af-8740-2fe68967dbeb {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-1ece3864-df6e-48af-8740-2fe68967dbeb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ece3864-df6e-48af-8740-2fe68967dbeb.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e75c2c92-bac2-46df-bc8e-e211d980ecac {
  margin-left: 20px;
margin-right: 20px;
}

#s-e75c2c92-bac2-46df-bc8e-e211d980ecac .shogun-icon-wrapper {
  text-align: center;
}


#s-e75c2c92-bac2-46df-bc8e-e211d980ecac .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-79905cb8-b30e-4444-91d5-7b2c4c34e853 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-79905cb8-b30e-4444-91d5-7b2c4c34e853 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-dce607c6-17eb-46f9-974b-a5cbd996e98c {
  margin-left: 20px;
margin-right: 20px;
}

#s-49bced01-03a1-4a24-813a-efebf7315094 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(221, 221, 221, 1);
min-height: 50px;
}








#s-49bced01-03a1-4a24-813a-efebf7315094 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49bced01-03a1-4a24-813a-efebf7315094.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4629bd88-4bdd-4b86-808d-f9fd60a13a64 {
  margin-left: 20px;
margin-right: 20px;
}

#s-4629bd88-4bdd-4b86-808d-f9fd60a13a64 .shogun-icon-wrapper {
  text-align: center;
}


#s-4629bd88-4bdd-4b86-808d-f9fd60a13a64 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(89, 89, 89, 1);
}

#s-31e511cc-3018-448a-9f99-9d3e871b97c6 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-31e511cc-3018-448a-9f99-9d3e871b97c6 .shogun-heading-component h2 {
  color: rgba(89, 89, 89, 1);
  font-weight:  600 ;
  font-family: "Open Sans";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-22e9e118-e0d7-42d4-9918-29af9471d5aa {
  margin-left: 20px;
margin-right: 20px;
}

#s-f72d25d0-57d1-4690-880d-17b02c870ff2 {
  padding-top: 20px;
padding-bottom: 20px;
}

#s-f72d25d0-57d1-4690-880d-17b02c870ff2 hr {
  border-top: 1px solid #ddd;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

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

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

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

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

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}