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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-6bb6db26-78f3-4204-8d66-68c7879046af {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-6bb6db26-78f3-4204-8d66-68c7879046af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6bb6db26-78f3-4204-8d66-68c7879046af.shg-box.shg-c {
  justify-content: flex-start;
}

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

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body>.shogun-tab-content {
  display: none;
}

.shogun-tabs-body>.shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 {
  margin-left: 2%;
margin-right: 2%;
}

#s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs {
  justify-content: flex-start;
}


  #s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(141, 198, 63, 1);
    border: 1px solid #ddd;
  }
#s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(112, 112, 112, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(141, 198, 63, 1);
}

#s-3598cb05-32cc-4d57-acb4-e7e4e1caa474 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

#s-778c804a-3739-4baa-b914-4307c0eb0a44 {
  min-height: 50px;
}








#s-778c804a-3739-4baa-b914-4307c0eb0a44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-778c804a-3739-4baa-b914-4307c0eb0a44.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b94d6099-89e5-4ace-b20a-8082c00e9a9c {
  min-height: 50px;
}








#s-b94d6099-89e5-4ace-b20a-8082c00e9a9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b94d6099-89e5-4ace-b20a-8082c00e9a9c.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f5bcadf5-4f23-4f13-93b0-475086282068 {
  min-height: 50px;
}








#s-f5bcadf5-4f23-4f13-93b0-475086282068 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f5bcadf5-4f23-4f13-93b0-475086282068.shg-box.shg-c {
  justify-content: center;
}

#s-04613058-0dbd-4eb7-b38f-56067895c483 {
  min-height: 500px;
}








#s-04613058-0dbd-4eb7-b38f-56067895c483 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04613058-0dbd-4eb7-b38f-56067895c483.shg-box.shg-c {
  justify-content: flex-start;
}

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

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

#s-58874b99-afeb-4842-9552-ea7ea3f00e5c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-58874b99-afeb-4842-9552-ea7ea3f00e5c .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e000e544-36fd-4239-be51-7d510215abd0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e000e544-36fd-4239-be51-7d510215abd0 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-237af148-89b5-4926-ade2-c707029612fb {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}

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

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

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

@media (min-width: 0px) {
[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5d9c5c1c-6537-4fa8-aa3c-59ccc60d5b00"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-72fc7d30-b0b7-4c6b-8ed0-3f9eca209fbf {
  background-repeat: no-repeat;
background-size: contain;
min-height: 400px;
background-position: center center;
}








#s-72fc7d30-b0b7-4c6b-8ed0-3f9eca209fbf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72fc7d30-b0b7-4c6b-8ed0-3f9eca209fbf.shg-box.shg-c {
  justify-content: center;
}

#s-9df305ae-dc38-4984-880f-6ffd4d1d6ac1 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 450px;
}








#s-9df305ae-dc38-4984-880f-6ffd4d1d6ac1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9df305ae-dc38-4984-880f-6ffd4d1d6ac1.shg-box.shg-c {
  justify-content: center;
}

#s-ed739999-1068-4ed2-9284-b5673f505da7 {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed739999-1068-4ed2-9284-b5673f505da7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-134830c4-e7c2-4874-9d7f-3b01d2a43cf7 {
  max-width: 80px;
text-align: center;
}




  #s-134830c4-e7c2-4874-9d7f-3b01d2a43cf7 img.shogun-image {
    
    width: px;
  }


#s-134830c4-e7c2-4874-9d7f-3b01d2a43cf7 .shogun-image-content {
  
    align-items: center;
  
}

#s-fef70521-b758-473a-9bd3-138a08b188da {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fef70521-b758-473a-9bd3-138a08b188da .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-bb9bcbe8-4c8c-4f49-8ffe-f9e3e601e5cc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-6cd9f976-5f7f-45d8-b9ff-7665e75aabf8 {
  max-width: 80px;
text-align: center;
}




  #s-6cd9f976-5f7f-45d8-b9ff-7665e75aabf8 img.shogun-image {
    
    width: px;
  }


#s-6cd9f976-5f7f-45d8-b9ff-7665e75aabf8 .shogun-image-content {
  
    align-items: center;
  
}

#s-83610a17-53e0-48c1-8667-a9479f29c5c8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-83610a17-53e0-48c1-8667-a9479f29c5c8 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-07c3a5eb-54ee-4637-ab78-77fabee7686b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-39363337-ae4d-4df9-aa2e-fa9928231a89 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-39363337-ae4d-4df9-aa2e-fa9928231a89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39363337-ae4d-4df9-aa2e-fa9928231a89.shg-box.shg-c {
  justify-content: center;
}

#s-436fe460-ea47-4d2d-90c4-80af00142a4d {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-436fe460-ea47-4d2d-90c4-80af00142a4d .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d7f8b0df-7d93-4152-b375-be73e8a27b47"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-41e11fe6-6654-4a79-9a90-6376b8595e3c {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-41e11fe6-6654-4a79-9a90-6376b8595e3c img.shogun-image {
    
    width: px;
  }


#s-41e11fe6-6654-4a79-9a90-6376b8595e3c .shogun-image-content {
  
    align-items: center;
  
}

#s-0da391a3-c888-476e-b625-8328a0214b90 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0da391a3-c888-476e-b625-8328a0214b90 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-43f65e5e-73d6-40ab-94be-69fd7efd4691 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d25e3c29-8c24-463e-bcbf-93cee1588fd7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-05b136a2-2131-404d-ad7d-fbe70b16bdab {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-05b136a2-2131-404d-ad7d-fbe70b16bdab img.shogun-image {
    
    width: px;
  }


#s-05b136a2-2131-404d-ad7d-fbe70b16bdab .shogun-image-content {
  
    align-items: center;
  
}

#s-6ed80d9d-8c2d-4bbd-a01c-fed8139094bb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6ed80d9d-8c2d-4bbd-a01c-fed8139094bb .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-ba0e69d7-75f9-457e-8a72-1153519b8ed5 {
  margin-left: auto;
margin-right: auto;
}

#s-6108f6cf-c0ff-485e-b735-0d3a3de8f4df {
  text-align: center;
}





#s-6108f6cf-c0ff-485e-b735-0d3a3de8f4df .shogun-image-content {
  
    align-items: center;
  
}

#s-a5e58ac3-9ad3-4a70-b89c-ab929473e201 {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 2%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
min-height: 50px;
background-position: center center;
}








#s-a5e58ac3-9ad3-4a70-b89c-ab929473e201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5e58ac3-9ad3-4a70-b89c-ab929473e201.shg-box.shg-c {
  justify-content: center;
}

#s-3c44d723-ad00-4bfa-9253-7daba1423e03 {
  min-height: 50px;
}








#s-3c44d723-ad00-4bfa-9253-7daba1423e03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c44d723-ad00-4bfa-9253-7daba1423e03.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-18bd5ca1-880c-4f6c-826c-25a9006195e9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-537b9f4f-8107-4966-9e1b-55cdf55357cc {
  text-align: center;
}




  #s-537b9f4f-8107-4966-9e1b-55cdf55357cc img.shogun-image {
    
    width: px;
  }


#s-537b9f4f-8107-4966-9e1b-55cdf55357cc .shogun-image-content {
  
    align-items: center;
  
}

#s-ca8ff4f7-1c6e-40e1-a6b7-61dd71823f62 {
  margin-top: 2%;
margin-left: 4%;
margin-bottom: 2%;
margin-right: 4%;
padding-top: 5%;
padding-left: 2%;
padding-bottom: 5%;
padding-right: 2%;
min-height: 50px;
background-color: rgba(141, 198, 63, 1);
}








#s-ca8ff4f7-1c6e-40e1-a6b7-61dd71823f62 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca8ff4f7-1c6e-40e1-a6b7-61dd71823f62.shg-box.shg-c {
  justify-content: center;
}

#s-88d68ab1-9f69-4649-9b48-7d4ee58b729b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-88d68ab1-9f69-4649-9b48-7d4ee58b729b .shogun-heading-component h2 {
  color: rgba(253, 253, 253, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 38px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-cb7eec91-ffc1-45c2-a299-4049ed781e2d {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-dc2636d6-1c9f-4891-928a-bece07c2ae5a {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

@media (min-width: 0px) {
[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cb928b85-f67a-4b8e-b8ea-1aa5530e0c4f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-423017bf-c0f1-4462-8d12-81f94caa464d {
  text-align: center;
}





#s-423017bf-c0f1-4462-8d12-81f94caa464d .shogun-image-content {
  
    align-items: center;
  
}

#s-05e4aad7-6f88-44bc-be50-e35400de0e24 {
  padding-top: 3%;
padding-left: 5%;
padding-bottom: 3%;
padding-right: 5%;
min-height: 400px;
}








#s-05e4aad7-6f88-44bc-be50-e35400de0e24 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05e4aad7-6f88-44bc-be50-e35400de0e24.shg-box.shg-c {
  justify-content: center;
}

#s-f987bfb8-1cb4-4e9d-a618-03f7dc2879c6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f987bfb8-1cb4-4e9d-a618-03f7dc2879c6 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-6ec783cd-a010-400c-aa4c-c46886d0c0b5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-34c60dc4-d0a1-4d4a-a9e2-eb83e59f8a86 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-34c60dc4-d0a1-4d4a-a9e2-eb83e59f8a86 img.shogun-image {
    
    width: px;
  }


#s-34c60dc4-d0a1-4d4a-a9e2-eb83e59f8a86 .shogun-image-content {
  
    align-items: center;
  
}

#s-846e2d57-a4c8-4475-a160-1d8b00be03f4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-846e2d57-a4c8-4475-a160-1d8b00be03f4 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-7bd92963-5667-4d9f-8d6d-a143f45a465a {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-413d0059-9861-4959-8ee5-7609c973c3eb"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-b49a3d98-d8f5-49ee-8564-60439b47ea44 {
  text-align: center;
}




  #s-b49a3d98-d8f5-49ee-8564-60439b47ea44 img.shogun-image {
    
    width: px;
  }


#s-b49a3d98-d8f5-49ee-8564-60439b47ea44 .shogun-image-content {
  
    align-items: center;
  
}

#s-824c7f4c-4386-4b45-81f7-d76100cd5ee8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-824c7f4c-4386-4b45-81f7-d76100cd5ee8 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-2be60e2b-e77c-42ac-9fdd-45328afe8d7d {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0ac40394-6503-453c-81bc-383691cb81fb"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-5c9cabd1-3c43-49a6-9496-1f02dcb7b5a1 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-5c9cabd1-3c43-49a6-9496-1f02dcb7b5a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c9cabd1-3c43-49a6-9496-1f02dcb7b5a1.shg-box.shg-c {
  justify-content: center;
}

#s-e4faebfa-8461-45e6-b4e4-f275a7e6657b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e4faebfa-8461-45e6-b4e4-f275a7e6657b .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-980c35fe-7222-47a3-b20e-5ade079ba6c0 {
  min-height: 50px;
}








#s-980c35fe-7222-47a3-b20e-5ade079ba6c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-980c35fe-7222-47a3-b20e-5ade079ba6c0.shg-box.shg-c {
  justify-content: center;
}

#s-92ab449a-de00-45e1-9a40-0c9c9027ed42 {
  margin-top: 3%;
margin-left: auto;
margin-bottom: 3%;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-92ab449a-de00-45e1-9a40-0c9c9027ed42 img.shogun-image {
    
    width: px;
  }


#s-92ab449a-de00-45e1-9a40-0c9c9027ed42 .shogun-image-content {
  
    align-items: center;
  
}

#s-fe2f7d67-075e-4b6b-b673-84a44d3ac36e {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-0d228ed1-bab9-46eb-b883-c98b972277b7 {
  text-align: center;
}





#s-0d228ed1-bab9-46eb-b883-c98b972277b7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dea36a35-8afc-4d29-8da8-76b407539cb2"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-e8df2a10-7488-4f3d-a8c6-0d2909adf566 {
  text-align: center;
}





#s-e8df2a10-7488-4f3d-a8c6-0d2909adf566 .shogun-image-content {
  
    align-items: center;
  
}

#s-179a6255-10fe-475e-848e-1d0c0fda0e52 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-179a6255-10fe-475e-848e-1d0c0fda0e52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-179a6255-10fe-475e-848e-1d0c0fda0e52.shg-box.shg-c {
  justify-content: center;
}

#s-c6ec7b72-3a33-4bbe-adb3-4ded52bf9566 {
  min-height: 50px;
}








#s-c6ec7b72-3a33-4bbe-adb3-4ded52bf9566 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6ec7b72-3a33-4bbe-adb3-4ded52bf9566.shg-box.shg-c {
  justify-content: center;
}

#s-c7365ac3-00f2-4b19-a04f-456a87eabb2e {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-c7365ac3-00f2-4b19-a04f-456a87eabb2e img.shogun-image {
    
    width: px;
  }


#s-c7365ac3-00f2-4b19-a04f-456a87eabb2e .shogun-image-content {
  
    align-items: center;
  
}

#s-ae647a63-8040-4da2-a669-8b8fb3621913 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae647a63-8040-4da2-a669-8b8fb3621913 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1f1433d0-271d-401e-a966-0764ff1b85f0 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-23daaf5f-fffe-43f6-8838-6d5f539abab7 {
  min-height: 50px;
}








#s-23daaf5f-fffe-43f6-8838-6d5f539abab7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23daaf5f-fffe-43f6-8838-6d5f539abab7.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-97812c09-ce15-444f-b76d-b7df7e4c3c73"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-1dc1429a-4eca-40c5-98d6-3aa7a29a44af {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-1dc1429a-4eca-40c5-98d6-3aa7a29a44af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1dc1429a-4eca-40c5-98d6-3aa7a29a44af.shg-box.shg-c {
  justify-content: flex-start;
}

#s-0574ae13-28a9-45d0-9425-78d5a1fc8865 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0574ae13-28a9-45d0-9425-78d5a1fc8865 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3aa552e8-2d90-460d-aeb2-2e4e7c317fbe {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-3aa552e8-2d90-460d-aeb2-2e4e7c317fbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3aa552e8-2d90-460d-aeb2-2e4e7c317fbe.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f79b926f-2aac-4d7c-96be-e3c7554cb15b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f79b926f-2aac-4d7c-96be-e3c7554cb15b .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-98a2a4f3-776e-497f-b67b-d66b3e2020e5 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-98a2a4f3-776e-497f-b67b-d66b3e2020e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98a2a4f3-776e-497f-b67b-d66b3e2020e5.shg-box.shg-c {
  justify-content: flex-start;
}

#s-865b6527-a872-40fd-8e5e-a0c3b422d7e2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-865b6527-a872-40fd-8e5e-a0c3b422d7e2 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b7c4afff-63af-468e-b0f3-7c0d1593152d .shogun-icon-wrapper {
  text-align: center;
}


#s-b7c4afff-63af-468e-b0f3-7c0d1593152d .shogun-icon-wrapper > a > .shogun-icon {

  font-size: 64px !important;
  color: rgba(141, 198, 63, 1);
}

#s-3591ed27-0f6c-43a2-832c-f270819896ee {
  min-height: 50px;
}








#s-3591ed27-0f6c-43a2-832c-f270819896ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3591ed27-0f6c-43a2-832c-f270819896ee.shg-box.shg-c {
  justify-content: flex-start;
}

#s-3eb5faee-bbf9-4bff-82ba-24c82e49d474 {
  margin-top: 0%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-3eb5faee-bbf9-4bff-82ba-24c82e49d474"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

#s-cca6d854-ca98-4030-a0c9-af5ba3e9462d {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-cca6d854-ca98-4030-a0c9-af5ba3e9462d {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

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

#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d {
  text-align: center;
}


.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d {
  max-width: 100%;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom,
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d {
  max-width: 100%;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom,
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d {
  max-width: 100%;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom,
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d {
  max-width: 100%;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom,
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d {
  max-width: 100%;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom,
.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-752ffeb2-053d-44fa-ac29-f7a09443cc0d .shg-image-zoom {
  
    margin: 0 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: #000;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-36d27ace-fa00-438f-a2a8-cab70bc33e4c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-36d27ace-fa00-438f-a2a8-cab70bc33e4c .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-cdc40c16-c21b-43cb-ae72-a99d6f6666fd {
  text-align: center;
}

#s-cdc40c16-c21b-43cb-ae72-a99d6f6666fd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-cdc40c16-c21b-43cb-ae72-a99d6f6666fd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-cdc40c16-c21b-43cb-ae72-a99d6f6666fd .shg-product-compare-price {
  display: none;
  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-8c9985a6-f461-46ba-bc49-ff75f3231e6b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-8c9985a6-f461-46ba-bc49-ff75f3231e6b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8c9985a6-f461-46ba-bc49-ff75f3231e6b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8c9985a6-f461-46ba-bc49-ff75f3231e6b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8c9985a6-f461-46ba-bc49-ff75f3231e6b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8c9985a6-f461-46ba-bc49-ff75f3231e6b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-8c9985a6-f461-46ba-bc49-ff75f3231e6b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-8c9985a6-f461-46ba-bc49-ff75f3231e6b.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-f2fa29e5-ca49-412c-8471-1ce980e5a5ac {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-f2fa29e5-ca49-412c-8471-1ce980e5a5ac {
  display: none;
}
#s-51499515-a0b6-4a76-b83d-683f33e71c90 {
  text-align: center;
}


.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 {
  max-width: 100%;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom,
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 {
  max-width: 100%;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom,
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 {
  max-width: 100%;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom,
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 {
  max-width: 100%;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom,
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 {
  max-width: 100%;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom,
.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-51499515-a0b6-4a76-b83d-683f33e71c90 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-8f5f210b-47dc-44bc-b44d-32b84d2f2113 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8f5f210b-47dc-44bc-b44d-32b84d2f2113 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-f0413763-5df1-468d-a98f-cc09de7de143 {
  text-align: center;
}

#s-f0413763-5df1-468d-a98f-cc09de7de143 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-f0413763-5df1-468d-a98f-cc09de7de143 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-f0413763-5df1-468d-a98f-cc09de7de143 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-ca584054-7ff2-458d-ae9e-01730ed6d6d0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-ca584054-7ff2-458d-ae9e-01730ed6d6d0.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-75144601-8a5b-4678-9f76-a917797f2779 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-75144601-8a5b-4678-9f76-a917797f2779 {
  display: none;
}
#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b {
  text-align: center;
}


.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b {
  max-width: 100%;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom,
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b {
  max-width: 100%;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom,
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b {
  max-width: 100%;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom,
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b {
  max-width: 100%;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom,
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b {
  max-width: 100%;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom,
.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-1a55c339-4d8e-4b8f-aaf9-8aac84f4601b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-733d3926-cc20-444c-9fdf-98465aaff987 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-733d3926-cc20-444c-9fdf-98465aaff987 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-b60d37c0-0040-4b02-a176-f88c05cc839b {
  text-align: center;
}

#s-b60d37c0-0040-4b02-a176-f88c05cc839b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-b60d37c0-0040-4b02-a176-f88c05cc839b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-b60d37c0-0040-4b02-a176-f88c05cc839b .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-4aeabe8d-e90a-47fc-8448-709b627051dd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-4aeabe8d-e90a-47fc-8448-709b627051dd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4aeabe8d-e90a-47fc-8448-709b627051dd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-4aeabe8d-e90a-47fc-8448-709b627051dd {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-4aeabe8d-e90a-47fc-8448-709b627051dd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-4aeabe8d-e90a-47fc-8448-709b627051dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-4aeabe8d-e90a-47fc-8448-709b627051dd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-4aeabe8d-e90a-47fc-8448-709b627051dd.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


@media (min-width: 0px) {
[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 6.666666666666667px);
}

[id="s-183cdc07-6396-46a8-9c34-fc71a466ff2a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 6.666666666666667px);
}

}

#s-4601ffe3-0810-4699-af6a-dac1de9de8a0 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-4601ffe3-0810-4699-af6a-dac1de9de8a0 {
  display: none;
}
#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 {
  text-align: center;
}


.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 {
  max-width: 100%;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom,
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 {
  max-width: 100%;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom,
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 {
  max-width: 100%;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom,
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 {
  max-width: 100%;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom,
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 {
  max-width: 100%;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom,
.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5252dd9c-eb3f-4d5e-9812-3ce792a76ff0 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-306c3d75-b2cf-4ba0-9e2b-4df0d101c556 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-306c3d75-b2cf-4ba0-9e2b-4df0d101c556 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-276ce30b-982f-4c41-83f5-44559fbd5bf4 {
  text-align: center;
}

#s-276ce30b-982f-4c41-83f5-44559fbd5bf4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-276ce30b-982f-4c41-83f5-44559fbd5bf4 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-276ce30b-982f-4c41-83f5-44559fbd5bf4 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 {
  margin-top: 1%;
margin-bottom: 1%;
text-align: center;
}

#s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}


  #s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 .shg-product-selector-wrapper label {
    color: ;
    font-weight:   ;
    font-family: ;
    font-style:  normal ;
    font-size: 16px;
  }

       
    #s-d89c1c38-29ce-44c7-a97b-6e6199db2de5 .shg-product-selector-wrapper label:after {
      display: block;
      content: ' ';
      margin-bottom: ;
    }
  

#s-7670f096-a14c-49cc-b196-16caee238599 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-7670f096-a14c-49cc-b196-16caee238599:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7670f096-a14c-49cc-b196-16caee238599:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7670f096-a14c-49cc-b196-16caee238599 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7670f096-a14c-49cc-b196-16caee238599.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7670f096-a14c-49cc-b196-16caee238599.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-7670f096-a14c-49cc-b196-16caee238599.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-7670f096-a14c-49cc-b196-16caee238599.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-975071eb-2a6a-4ce8-be74-c854feae3046 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-975071eb-2a6a-4ce8-be74-c854feae3046 {
  display: none;
}
#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 {
  text-align: center;
}


.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 {
  max-width: 100%;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom,
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 {
  max-width: 100%;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom,
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 {
  max-width: 100%;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom,
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 {
  max-width: 100%;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom,
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 {
  max-width: 100%;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom,
.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-87a5731f-9460-40e1-96ce-ecbd92a6c4d7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-ffec1491-1903-4059-a4d3-b7f35d5735a1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ffec1491-1903-4059-a4d3-b7f35d5735a1 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-eb8f57b8-66b3-440f-9081-719d388386da {
  text-align: center;
}

#s-eb8f57b8-66b3-440f-9081-719d388386da .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-eb8f57b8-66b3-440f-9081-719d388386da .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-eb8f57b8-66b3-440f-9081-719d388386da .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-e7a3dca2-4553-4135-a157-09c6ecbfad0c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-e7a3dca2-4553-4135-a157-09c6ecbfad0c.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-053c9297-4fb1-477a-a2f0-14110cea39f2 {
  min-height: 50px;
}








#s-053c9297-4fb1-477a-a2f0-14110cea39f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-053c9297-4fb1-477a-a2f0-14110cea39f2.shg-box.shg-c {
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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